winapi 0.1.17

Types and constants for WinAPI bindings. See README for list of crates providing function bindings.
docs.rs failed to build winapi-0.1.17
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: winapi-0.3.9

winapi-rs Build status Gitter Crates.io

Documentation

This crate provides types and constants for WinAPI FFI bindings. They are gathered by hand using the very latest official SDK from Microsoft. I aim to replace all existing Windows FFI in other crates with this set of crates through the "Embrace, extend, and extinguish" technique.

If this crate is missing something you need, feel free to create an issue, open a pull request, or contact me via other means.

Example

Cargo.toml:

[dependencies]
winapi = "*"
winmm-sys = "*"

example.rs:

extern crate winapi;
extern crate winmm;
fn func() {
    winmm::PlaySoundA(...);
}

Functions

Bindings to library functions are in separate crates. The source to each crate is in the relevant subdirectory under the lib directory.

Usable crates

These are the ones that actually have functions in them:

Reserved crates

These are the ones that are reserved for future use: