find_msvc_tools/
lib.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)]
5mod find_tools;
6pub use find_tools::*;
7
8mod tool;
9pub use tool::*;
10
11#[cfg(windows)]
12#[doc(hidden)]
13pub mod windows_link;
14#[cfg(windows)]
15#[doc(hidden)]
16pub mod windows_sys;
17
18#[cfg(windows)]
19mod registry;
20#[cfg(windows)]
21#[macro_use]
22mod winapi;
23#[cfg(windows)]
24mod com;
25#[cfg(windows)]
26mod setup_config;
27#[cfg(windows)]
28mod vs_instances;