14 releases
0.52.6 | Jul 3, 2024 |
---|---|
0.52.4 | Feb 28, 2024 |
0.52.0 | Nov 15, 2023 |
0.48.1 | Jun 28, 2023 |
0.0.0 | Sep 9, 2022 |
#334 in Rust patterns
12,407,089 downloads per month
Used in 67,818 crates
(20 directly)
8MB
51 lines
Import libs for Windows
The windows-targets crate includes import libs, supports semantic versioning, and optional support for raw-dylib.
Start by adding the following to your Cargo.toml file:
[dependencies.windows-targets]
version = "0.52"
Use the link
macro to define the external functions you wish to call:
windows_targets::link!("kernel32.dll" "system" fn SetLastError(code: u32));
windows_targets::link!("kernel32.dll" "system" fn GetLastError() -> u32);
fn main() {
unsafe {
SetLastError(1234);
assert_eq!(GetLastError(), 1234);
}
}
lib.rs
:
Learn more about Rust for Windows here: https://github.com/microsoft/windows-rs