diff options
Diffstat (limited to 'vendor/cc/src/windows/mod.rs')
| -rw-r--r-- | vendor/cc/src/windows/mod.rs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/vendor/cc/src/windows/mod.rs b/vendor/cc/src/windows/mod.rs new file mode 100644 index 00000000..07b3e7b1 --- /dev/null +++ b/vendor/cc/src/windows/mod.rs @@ -0,0 +1,22 @@ +//! These modules are all glue to support reading the MSVC version from +//! the registry and from COM interfaces. + +// This is used in the crate's public API, so don't use #[cfg(windows)] +pub mod find_tools; + +#[cfg(windows)] +mod windows_link; +#[cfg(windows)] +pub(crate) mod windows_sys; + +#[cfg(windows)] +mod registry; +#[cfg(windows)] +#[macro_use] +mod winapi; +#[cfg(windows)] +mod com; +#[cfg(windows)] +mod setup_config; +#[cfg(windows)] +mod vs_instances; |
