summaryrefslogtreecommitdiffstats
path: root/vendor/windows-sys-0.28.0/src/Windows/ApplicationModel/UserDataAccounts/SystemAccess/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/windows-sys-0.28.0/src/Windows/ApplicationModel/UserDataAccounts/SystemAccess/mod.rs')
-rw-r--r--vendor/windows-sys-0.28.0/src/Windows/ApplicationModel/UserDataAccounts/SystemAccess/mod.rs78
1 files changed, 0 insertions, 78 deletions
diff --git a/vendor/windows-sys-0.28.0/src/Windows/ApplicationModel/UserDataAccounts/SystemAccess/mod.rs b/vendor/windows-sys-0.28.0/src/Windows/ApplicationModel/UserDataAccounts/SystemAccess/mod.rs
deleted file mode 100644
index 31a49dcc3..000000000
--- a/vendor/windows-sys-0.28.0/src/Windows/ApplicationModel/UserDataAccounts/SystemAccess/mod.rs
+++ /dev/null
@@ -1,78 +0,0 @@
-#![allow(non_snake_case, non_camel_case_types, non_upper_case_globals, clashing_extern_declarations, clippy::all)]
-#[link(name = "windows")]
-extern "system" {}
-#[repr(transparent)]
-pub struct DeviceAccountAuthenticationType(pub i32);
-impl DeviceAccountAuthenticationType {
- pub const Basic: Self = Self(0i32);
- pub const OAuth: Self = Self(1i32);
- pub const SingleSignOn: Self = Self(2i32);
-}
-impl ::core::marker::Copy for DeviceAccountAuthenticationType {}
-impl ::core::clone::Clone for DeviceAccountAuthenticationType {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type DeviceAccountConfiguration = *mut ::core::ffi::c_void;
-#[repr(transparent)]
-pub struct DeviceAccountIconId(pub i32);
-impl DeviceAccountIconId {
- pub const Exchange: Self = Self(0i32);
- pub const Msa: Self = Self(1i32);
- pub const Outlook: Self = Self(2i32);
- pub const Generic: Self = Self(3i32);
-}
-impl ::core::marker::Copy for DeviceAccountIconId {}
-impl ::core::clone::Clone for DeviceAccountIconId {
- fn clone(&self) -> Self {
- *self
- }
-}
-#[repr(transparent)]
-pub struct DeviceAccountMailAgeFilter(pub i32);
-impl DeviceAccountMailAgeFilter {
- pub const All: Self = Self(0i32);
- pub const Last1Day: Self = Self(1i32);
- pub const Last3Days: Self = Self(2i32);
- pub const Last7Days: Self = Self(3i32);
- pub const Last14Days: Self = Self(4i32);
- pub const Last30Days: Self = Self(5i32);
- pub const Last90Days: Self = Self(6i32);
-}
-impl ::core::marker::Copy for DeviceAccountMailAgeFilter {}
-impl ::core::clone::Clone for DeviceAccountMailAgeFilter {
- fn clone(&self) -> Self {
- *self
- }
-}
-#[repr(transparent)]
-pub struct DeviceAccountServerType(pub i32);
-impl DeviceAccountServerType {
- pub const Exchange: Self = Self(0i32);
- pub const Pop: Self = Self(1i32);
- pub const Imap: Self = Self(2i32);
-}
-impl ::core::marker::Copy for DeviceAccountServerType {}
-impl ::core::clone::Clone for DeviceAccountServerType {
- fn clone(&self) -> Self {
- *self
- }
-}
-#[repr(transparent)]
-pub struct DeviceAccountSyncScheduleKind(pub i32);
-impl DeviceAccountSyncScheduleKind {
- pub const Manual: Self = Self(0i32);
- pub const Every15Minutes: Self = Self(1i32);
- pub const Every30Minutes: Self = Self(2i32);
- pub const Every60Minutes: Self = Self(3i32);
- pub const Every2Hours: Self = Self(4i32);
- pub const Daily: Self = Self(5i32);
- pub const AsItemsArrive: Self = Self(6i32);
-}
-impl ::core::marker::Copy for DeviceAccountSyncScheduleKind {}
-impl ::core::clone::Clone for DeviceAccountSyncScheduleKind {
- fn clone(&self) -> Self {
- *self
- }
-}