find-msvc-tools 0.1.5

Find windows-specific tools, read MSVC versions from the registry and from COM interfaces
Documentation
//! 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)]
mod find_tools;
pub use find_tools::*;

mod tool;
pub use tool::*;

#[cfg(windows)]
#[doc(hidden)]
pub mod windows_link;
#[cfg(windows)]
#[doc(hidden)]
pub 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;