Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 592 Bytes

File metadata and controls

22 lines (16 loc) · 592 Bytes

windows-default

The windows-default crate provides the default metadata for Windows APIs as embedded byte slices. Build tools can use WINRT and WIN32 without locating or distributing separate .winmd files.

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

[dependencies.windows-default]
version = "0.100"
use windows_default::{WIN32, WINRT};

assert!(!WINRT.is_empty());
assert!(!WIN32.is_empty());