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