blob: 592ef0d26dc04f05e7e6df926159975411aa45db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/*!
Learn more about Rust for Windows here: <https://github.com/microsoft/windows-rs>
*/
#![no_std]
#![doc(html_no_source)]
#![allow(non_snake_case, non_upper_case_globals, non_camel_case_types, clippy::all)]
#![cfg_attr(not(feature = "docs"), doc(hidden))]
extern crate self as windows_sys;
pub mod core;
include!("Windows/mod.rs");
|