15 releases
new 0.53.0 | Jan 7, 2025 |
---|---|
0.52.6 | Jul 3, 2024 |
0.52.5 | Apr 12, 2024 |
0.52.4 | Feb 28, 2024 |
0.0.0 | Sep 9, 2022 |
#344 in Windows APIs
9,795,443 downloads per month
Used in 70,386 crates
(20 directly)
14MB
52 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.53"
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);
unsafe {
SetLastError(1234);
assert_eq!(GetLastError(), 1234);
}