winapi 0.1.8

Types and constants for WinAPI bindings. See README for list of crates providing function bindings.
docs.rs failed to build winapi-0.1.8
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 Gitter

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-sys" as winmm;
fn func() {
    winmm::PlaySoundA(...);
}

Functions

Bindings to library functions are in separate crates. The source to each crate is in the relevant subdirectory. Crossed out crates are currently empty and reserved for future use. Feel free to get in touch with me if you are interested in any of these crates.