Skip to content

contextfree/winapi-rs

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

winapi-rs Build status Build Status Gitter Crates.io

Documentation

Official IRC channel: #winapi on Mozilla IRC

This crate provides types and constants for WinAPI FFI bindings. They are gathered by hand using the Windows 10 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.

This crate depends on Rust 1.4 on Windows. On other platforms this crate is a no-op and should compile with Rust 1.0.

Example

Cargo.toml:

[dependencies]
winapi = "0.2"
winmm-sys = "0.1"

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:

About

Rust types and constants for WinAPI bindings

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Rust 100.0%