summaryrefslogtreecommitdiffstats
path: root/vendor/windows-sys/src/Windows/System/Profile/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/windows-sys/src/Windows/System/Profile/mod.rs')
-rw-r--r--vendor/windows-sys/src/Windows/System/Profile/mod.rs63
1 files changed, 0 insertions, 63 deletions
diff --git a/vendor/windows-sys/src/Windows/System/Profile/mod.rs b/vendor/windows-sys/src/Windows/System/Profile/mod.rs
deleted file mode 100644
index 61d4f82ab..000000000
--- a/vendor/windows-sys/src/Windows/System/Profile/mod.rs
+++ /dev/null
@@ -1,63 +0,0 @@
-#[cfg(feature = "System_Profile_SystemManufacturers")]
-pub mod SystemManufacturers;
-pub type AnalyticsVersionInfo = *mut ::core::ffi::c_void;
-pub type HardwareToken = *mut ::core::ffi::c_void;
-#[doc = "*Required features: `\"System_Profile\"`*"]
-#[repr(transparent)]
-pub struct PlatformDataCollectionLevel(pub i32);
-impl PlatformDataCollectionLevel {
- pub const Security: Self = Self(0i32);
- pub const Basic: Self = Self(1i32);
- pub const Enhanced: Self = Self(2i32);
- pub const Full: Self = Self(3i32);
-}
-impl ::core::marker::Copy for PlatformDataCollectionLevel {}
-impl ::core::clone::Clone for PlatformDataCollectionLevel {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type SystemIdentificationInfo = *mut ::core::ffi::c_void;
-#[doc = "*Required features: `\"System_Profile\"`*"]
-#[repr(transparent)]
-pub struct SystemIdentificationSource(pub i32);
-impl SystemIdentificationSource {
- pub const None: Self = Self(0i32);
- pub const Tpm: Self = Self(1i32);
- pub const Uefi: Self = Self(2i32);
- pub const Registry: Self = Self(3i32);
-}
-impl ::core::marker::Copy for SystemIdentificationSource {}
-impl ::core::clone::Clone for SystemIdentificationSource {
- fn clone(&self) -> Self {
- *self
- }
-}
-#[doc = "*Required features: `\"System_Profile\"`*"]
-#[repr(transparent)]
-pub struct SystemOutOfBoxExperienceState(pub i32);
-impl SystemOutOfBoxExperienceState {
- pub const NotStarted: Self = Self(0i32);
- pub const InProgress: Self = Self(1i32);
- pub const Completed: Self = Self(2i32);
-}
-impl ::core::marker::Copy for SystemOutOfBoxExperienceState {}
-impl ::core::clone::Clone for SystemOutOfBoxExperienceState {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type UnsupportedAppRequirement = *mut ::core::ffi::c_void;
-#[doc = "*Required features: `\"System_Profile\"`*"]
-#[repr(transparent)]
-pub struct UnsupportedAppRequirementReasons(pub u32);
-impl UnsupportedAppRequirementReasons {
- pub const Unknown: Self = Self(0u32);
- pub const DeniedBySystem: Self = Self(1u32);
-}
-impl ::core::marker::Copy for UnsupportedAppRequirementReasons {}
-impl ::core::clone::Clone for UnsupportedAppRequirementReasons {
- fn clone(&self) -> Self {
- *self
- }
-}