1 /*!
2 The Rust language projection follows in the tradition established by [C++/WinRT](https://github.com/microsoft/cppwinrt)
3 of building language projections for Windows using standard languages and compilers, providing a natural and idiomatic
4 way for Rust developers to call Windows APIs. The [`windows`] crate lets you call any Windows API past, present, and
5 future using code generated on the fly directly from the metadata describing the API and right into your Rust package
6 where you can call them as if they were just another Rust module.
7 
8 Learn more here: <https://github.com/microsoft/windows-rs>
9 */
10 
11 #![doc(html_no_source)]
12 
13 extern crate self as windows;
14 mod Windows;
15 pub mod runtime;
16 pub use Windows::*;
17