summaryrefslogtreecommitdiffstats
path: root/vendor/windows-sys/src/Windows/Security/DataProtection/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/windows-sys/src/Windows/Security/DataProtection/mod.rs')
-rw-r--r--vendor/windows-sys/src/Windows/Security/DataProtection/mod.rs45
1 files changed, 0 insertions, 45 deletions
diff --git a/vendor/windows-sys/src/Windows/Security/DataProtection/mod.rs b/vendor/windows-sys/src/Windows/Security/DataProtection/mod.rs
deleted file mode 100644
index 42ed61155..000000000
--- a/vendor/windows-sys/src/Windows/Security/DataProtection/mod.rs
+++ /dev/null
@@ -1,45 +0,0 @@
-#[doc = "*Required features: `\"Security_DataProtection\"`*"]
-#[repr(transparent)]
-pub struct UserDataAvailability(pub i32);
-impl UserDataAvailability {
- pub const Always: Self = Self(0i32);
- pub const AfterFirstUnlock: Self = Self(1i32);
- pub const WhileUnlocked: Self = Self(2i32);
-}
-impl ::core::marker::Copy for UserDataAvailability {}
-impl ::core::clone::Clone for UserDataAvailability {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type UserDataAvailabilityStateChangedEventArgs = *mut ::core::ffi::c_void;
-pub type UserDataBufferUnprotectResult = *mut ::core::ffi::c_void;
-#[doc = "*Required features: `\"Security_DataProtection\"`*"]
-#[repr(transparent)]
-pub struct UserDataBufferUnprotectStatus(pub i32);
-impl UserDataBufferUnprotectStatus {
- pub const Succeeded: Self = Self(0i32);
- pub const Unavailable: Self = Self(1i32);
-}
-impl ::core::marker::Copy for UserDataBufferUnprotectStatus {}
-impl ::core::clone::Clone for UserDataBufferUnprotectStatus {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type UserDataProtectionManager = *mut ::core::ffi::c_void;
-pub type UserDataStorageItemProtectionInfo = *mut ::core::ffi::c_void;
-#[doc = "*Required features: `\"Security_DataProtection\"`*"]
-#[repr(transparent)]
-pub struct UserDataStorageItemProtectionStatus(pub i32);
-impl UserDataStorageItemProtectionStatus {
- pub const Succeeded: Self = Self(0i32);
- pub const NotProtectable: Self = Self(1i32);
- pub const DataUnavailable: Self = Self(2i32);
-}
-impl ::core::marker::Copy for UserDataStorageItemProtectionStatus {}
-impl ::core::clone::Clone for UserDataStorageItemProtectionStatus {
- fn clone(&self) -> Self {
- *self
- }
-}