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)]
8pub(crate) mod windows_sys;
9
10#[cfg(windows)]
11mod registry;
12#[cfg(windows)]
13#[macro_use]
14mod winapi;
15#[cfg(windows)]
16mod com;
17#[cfg(windows)]
18mod setup_config;
19#[cfg(windows)]
20mod vs_instances;
21