cc/windows/
mod.rs

1//! These modules are all glue to support reading the MSVC version from
2//! the registry and from COM interfaces.
3
4// This is used in the crate's public API, so don't use #[cfg(windows)]
5pub mod find_tools;
6
7#[cfg(windows)]
8mod windows_link;
9#[cfg(windows)]
10pub(crate) mod windows_sys;
11
12#[cfg(windows)]
13mod registry;
14#[cfg(windows)]
15#[macro_use]
16mod winapi;
17#[cfg(windows)]
18mod com;
19#[cfg(windows)]
20mod setup_config;
21#[cfg(windows)]
22mod vs_instances;