windows-bindgen 0.65.0

Code generator for Windows metadata
Documentation
## Code generator for Windows metadata

The [windows-bindgen](https://crates.io/crates/windows-bindgen) crate automatically generates Rust bindings from Windows metadata.

* [Getting started]https://kennykerr.ca/rust-getting-started/
* [Samples]https://github.com/microsoft/windows-rs/tree/master/crates/samples
* [Releases]https://github.com/microsoft/windows-rs/releases

Start by adding the following to your Cargo.toml file:

```toml
[dependencies.windows-link]
version = "0.2"

[build-dependencies.windows-bindgen]
version = "0.63"
```

Generate Rust bindings in a build script as follows:

```rust,no_run
let args = [
    "--out",
    "src/bindings.rs",
    "--flat",
    "--sys",
    "--filter",
    "GetTickCount",
];

windows_bindgen::bindgen(args).unwrap();
```

And then use the bindings as follows:

```rust,ignore
mod bindings;

unsafe {
    println!("{}", bindings::GetTickCount());
}
```