summaryrefslogtreecommitdiffstats
path: root/vendor/windows-sys/src/Windows/Management/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/windows-sys/src/Windows/Management/mod.rs')
-rw-r--r--vendor/windows-sys/src/Windows/Management/mod.rs61
1 files changed, 0 insertions, 61 deletions
diff --git a/vendor/windows-sys/src/Windows/Management/mod.rs b/vendor/windows-sys/src/Windows/Management/mod.rs
deleted file mode 100644
index 1fb9168bf..000000000
--- a/vendor/windows-sys/src/Windows/Management/mod.rs
+++ /dev/null
@@ -1,61 +0,0 @@
-#[cfg(feature = "Management_Core")]
-pub mod Core;
-#[cfg(feature = "Management_Deployment")]
-pub mod Deployment;
-#[cfg(feature = "Management_Policies")]
-pub mod Policies;
-#[cfg(feature = "Management_Update")]
-pub mod Update;
-#[cfg(feature = "Management_Workplace")]
-pub mod Workplace;
-pub type MdmAlert = *mut ::core::ffi::c_void;
-#[doc = "*Required features: `\"Management\"`*"]
-#[repr(transparent)]
-pub struct MdmAlertDataType(pub i32);
-impl MdmAlertDataType {
- pub const String: Self = Self(0i32);
- pub const Base64: Self = Self(1i32);
- pub const Boolean: Self = Self(2i32);
- pub const Integer: Self = Self(3i32);
-}
-impl ::core::marker::Copy for MdmAlertDataType {}
-impl ::core::clone::Clone for MdmAlertDataType {
- fn clone(&self) -> Self {
- *self
- }
-}
-#[doc = "*Required features: `\"Management\"`*"]
-#[repr(transparent)]
-pub struct MdmAlertMark(pub i32);
-impl MdmAlertMark {
- pub const None: Self = Self(0i32);
- pub const Fatal: Self = Self(1i32);
- pub const Critical: Self = Self(2i32);
- pub const Warning: Self = Self(3i32);
- pub const Informational: Self = Self(4i32);
-}
-impl ::core::marker::Copy for MdmAlertMark {}
-impl ::core::clone::Clone for MdmAlertMark {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type MdmSession = *mut ::core::ffi::c_void;
-#[doc = "*Required features: `\"Management\"`*"]
-#[repr(transparent)]
-pub struct MdmSessionState(pub i32);
-impl MdmSessionState {
- pub const NotStarted: Self = Self(0i32);
- pub const Starting: Self = Self(1i32);
- pub const Connecting: Self = Self(2i32);
- pub const Communicating: Self = Self(3i32);
- pub const AlertStatusAvailable: Self = Self(4i32);
- pub const Retrying: Self = Self(5i32);
- pub const Completed: Self = Self(6i32);
-}
-impl ::core::marker::Copy for MdmSessionState {}
-impl ::core::clone::Clone for MdmSessionState {
- fn clone(&self) -> Self {
- *self
- }
-}