summaryrefslogtreecommitdiffstats
path: root/vendor/windows-sys/src/Windows/ApplicationModel/UserDataAccounts/SystemAccess/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/windows-sys/src/Windows/ApplicationModel/UserDataAccounts/SystemAccess/mod.rs')
-rw-r--r--vendor/windows-sys/src/Windows/ApplicationModel/UserDataAccounts/SystemAccess/mod.rs80
1 files changed, 80 insertions, 0 deletions
diff --git a/vendor/windows-sys/src/Windows/ApplicationModel/UserDataAccounts/SystemAccess/mod.rs b/vendor/windows-sys/src/Windows/ApplicationModel/UserDataAccounts/SystemAccess/mod.rs
new file mode 100644
index 000000000..fff4fe0fb
--- /dev/null
+++ b/vendor/windows-sys/src/Windows/ApplicationModel/UserDataAccounts/SystemAccess/mod.rs
@@ -0,0 +1,80 @@
+#[doc = "*Required features: `\"ApplicationModel_UserDataAccounts_SystemAccess\"`*"]
+#[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;
+#[doc = "*Required features: `\"ApplicationModel_UserDataAccounts_SystemAccess\"`*"]
+#[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
+ }
+}
+#[doc = "*Required features: `\"ApplicationModel_UserDataAccounts_SystemAccess\"`*"]
+#[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
+ }
+}
+#[doc = "*Required features: `\"ApplicationModel_UserDataAccounts_SystemAccess\"`*"]
+#[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
+ }
+}
+#[doc = "*Required features: `\"ApplicationModel_UserDataAccounts_SystemAccess\"`*"]
+#[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
+ }
+}