#![cfg(windows)]
mod bindings;
pub use bindings::*;
#[cfg(not(feature = "vendored"))]
#[allow(non_snake_case)]
mod dummy_msi {
use bindings::UINT;
pub unsafe fn Everything_MSIExitAndStopService(_msihandle: *const std::ffi::c_void) -> UINT {
1 }
pub unsafe fn Everything_MSIStartService(_msihandle: *const std::ffi::c_void) -> UINT {
1 }
}
#[cfg(not(feature = "vendored"))]
pub use dummy_msi::*;