summaryrefslogtreecommitdiffstats
path: root/vendor/windows-sys-0.28.0/src/Windows/Security/Credentials/UI/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/windows-sys-0.28.0/src/Windows/Security/Credentials/UI/mod.rs')
-rw-r--r--vendor/windows-sys-0.28.0/src/Windows/Security/Credentials/UI/mod.rs67
1 files changed, 0 insertions, 67 deletions
diff --git a/vendor/windows-sys-0.28.0/src/Windows/Security/Credentials/UI/mod.rs b/vendor/windows-sys-0.28.0/src/Windows/Security/Credentials/UI/mod.rs
deleted file mode 100644
index 72fe4e097..000000000
--- a/vendor/windows-sys-0.28.0/src/Windows/Security/Credentials/UI/mod.rs
+++ /dev/null
@@ -1,67 +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 AuthenticationProtocol(pub i32);
-impl AuthenticationProtocol {
- pub const Basic: Self = Self(0i32);
- pub const Digest: Self = Self(1i32);
- pub const Ntlm: Self = Self(2i32);
- pub const Kerberos: Self = Self(3i32);
- pub const Negotiate: Self = Self(4i32);
- pub const CredSsp: Self = Self(5i32);
- pub const Custom: Self = Self(6i32);
-}
-impl ::core::marker::Copy for AuthenticationProtocol {}
-impl ::core::clone::Clone for AuthenticationProtocol {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type CredentialPickerOptions = *mut ::core::ffi::c_void;
-pub type CredentialPickerResults = *mut ::core::ffi::c_void;
-#[repr(transparent)]
-pub struct CredentialSaveOption(pub i32);
-impl CredentialSaveOption {
- pub const Unselected: Self = Self(0i32);
- pub const Selected: Self = Self(1i32);
- pub const Hidden: Self = Self(2i32);
-}
-impl ::core::marker::Copy for CredentialSaveOption {}
-impl ::core::clone::Clone for CredentialSaveOption {
- fn clone(&self) -> Self {
- *self
- }
-}
-#[repr(transparent)]
-pub struct UserConsentVerificationResult(pub i32);
-impl UserConsentVerificationResult {
- pub const Verified: Self = Self(0i32);
- pub const DeviceNotPresent: Self = Self(1i32);
- pub const NotConfiguredForUser: Self = Self(2i32);
- pub const DisabledByPolicy: Self = Self(3i32);
- pub const DeviceBusy: Self = Self(4i32);
- pub const RetriesExhausted: Self = Self(5i32);
- pub const Canceled: Self = Self(6i32);
-}
-impl ::core::marker::Copy for UserConsentVerificationResult {}
-impl ::core::clone::Clone for UserConsentVerificationResult {
- fn clone(&self) -> Self {
- *self
- }
-}
-#[repr(transparent)]
-pub struct UserConsentVerifierAvailability(pub i32);
-impl UserConsentVerifierAvailability {
- pub const Available: Self = Self(0i32);
- pub const DeviceNotPresent: Self = Self(1i32);
- pub const NotConfiguredForUser: Self = Self(2i32);
- pub const DisabledByPolicy: Self = Self(3i32);
- pub const DeviceBusy: Self = Self(4i32);
-}
-impl ::core::marker::Copy for UserConsentVerifierAvailability {}
-impl ::core::clone::Clone for UserConsentVerifierAvailability {
- fn clone(&self) -> Self {
- *self
- }
-}