summaryrefslogtreecommitdiffstats
path: root/vendor/windows-sys/src/Windows/ApplicationModel/UserDataAccounts/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/windows-sys/src/Windows/ApplicationModel/UserDataAccounts/mod.rs')
-rw-r--r--vendor/windows-sys/src/Windows/ApplicationModel/UserDataAccounts/mod.rs49
1 files changed, 0 insertions, 49 deletions
diff --git a/vendor/windows-sys/src/Windows/ApplicationModel/UserDataAccounts/mod.rs b/vendor/windows-sys/src/Windows/ApplicationModel/UserDataAccounts/mod.rs
deleted file mode 100644
index 4bfd6a6cd..000000000
--- a/vendor/windows-sys/src/Windows/ApplicationModel/UserDataAccounts/mod.rs
+++ /dev/null
@@ -1,49 +0,0 @@
-#[cfg(feature = "ApplicationModel_UserDataAccounts_Provider")]
-pub mod Provider;
-#[cfg(feature = "ApplicationModel_UserDataAccounts_SystemAccess")]
-pub mod SystemAccess;
-pub type UserDataAccount = *mut ::core::ffi::c_void;
-#[doc = "*Required features: `\"ApplicationModel_UserDataAccounts\"`*"]
-#[repr(transparent)]
-pub struct UserDataAccountContentKinds(pub u32);
-impl UserDataAccountContentKinds {
- pub const Email: Self = Self(1u32);
- pub const Contact: Self = Self(2u32);
- pub const Appointment: Self = Self(4u32);
-}
-impl ::core::marker::Copy for UserDataAccountContentKinds {}
-impl ::core::clone::Clone for UserDataAccountContentKinds {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type UserDataAccountManagerForUser = *mut ::core::ffi::c_void;
-#[doc = "*Required features: `\"ApplicationModel_UserDataAccounts\"`*"]
-#[repr(transparent)]
-pub struct UserDataAccountOtherAppReadAccess(pub i32);
-impl UserDataAccountOtherAppReadAccess {
- pub const SystemOnly: Self = Self(0i32);
- pub const Full: Self = Self(1i32);
- pub const None: Self = Self(2i32);
-}
-impl ::core::marker::Copy for UserDataAccountOtherAppReadAccess {}
-impl ::core::clone::Clone for UserDataAccountOtherAppReadAccess {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type UserDataAccountStore = *mut ::core::ffi::c_void;
-#[doc = "*Required features: `\"ApplicationModel_UserDataAccounts\"`*"]
-#[repr(transparent)]
-pub struct UserDataAccountStoreAccessType(pub i32);
-impl UserDataAccountStoreAccessType {
- pub const AllAccountsReadOnly: Self = Self(0i32);
- pub const AppAccountsReadWrite: Self = Self(1i32);
-}
-impl ::core::marker::Copy for UserDataAccountStoreAccessType {}
-impl ::core::clone::Clone for UserDataAccountStoreAccessType {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type UserDataAccountStoreChangedEventArgs = *mut ::core::ffi::c_void;