summaryrefslogtreecommitdiffstats
path: root/vendor/windows-sys-0.28.0/src/Windows/Security/Authentication/Web/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/windows-sys-0.28.0/src/Windows/Security/Authentication/Web/mod.rs')
-rw-r--r--vendor/windows-sys-0.28.0/src/Windows/Security/Authentication/Web/mod.rs49
1 files changed, 0 insertions, 49 deletions
diff --git a/vendor/windows-sys-0.28.0/src/Windows/Security/Authentication/Web/mod.rs b/vendor/windows-sys-0.28.0/src/Windows/Security/Authentication/Web/mod.rs
deleted file mode 100644
index c1e141099..000000000
--- a/vendor/windows-sys-0.28.0/src/Windows/Security/Authentication/Web/mod.rs
+++ /dev/null
@@ -1,49 +0,0 @@
-#![allow(non_snake_case, non_camel_case_types, non_upper_case_globals, clashing_extern_declarations, clippy::all)]
-#[cfg(feature = "Security_Authentication_Web_Core")]
-pub mod Core;
-#[cfg(feature = "Security_Authentication_Web_Provider")]
-pub mod Provider;
-#[link(name = "windows")]
-extern "system" {}
-#[repr(transparent)]
-pub struct TokenBindingKeyType(pub i32);
-impl TokenBindingKeyType {
- pub const Rsa2048: Self = Self(0i32);
- pub const EcdsaP256: Self = Self(1i32);
- pub const AnyExisting: Self = Self(2i32);
-}
-impl ::core::marker::Copy for TokenBindingKeyType {}
-impl ::core::clone::Clone for TokenBindingKeyType {
- fn clone(&self) -> Self {
- *self
- }
-}
-#[repr(transparent)]
-pub struct WebAuthenticationOptions(pub u32);
-impl WebAuthenticationOptions {
- pub const None: Self = Self(0u32);
- pub const SilentMode: Self = Self(1u32);
- pub const UseTitle: Self = Self(2u32);
- pub const UseHttpPost: Self = Self(4u32);
- pub const UseCorporateNetwork: Self = Self(8u32);
-}
-impl ::core::marker::Copy for WebAuthenticationOptions {}
-impl ::core::clone::Clone for WebAuthenticationOptions {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type WebAuthenticationResult = *mut ::core::ffi::c_void;
-#[repr(transparent)]
-pub struct WebAuthenticationStatus(pub i32);
-impl WebAuthenticationStatus {
- pub const Success: Self = Self(0i32);
- pub const UserCancel: Self = Self(1i32);
- pub const ErrorHttp: Self = Self(2i32);
-}
-impl ::core::marker::Copy for WebAuthenticationStatus {}
-impl ::core::clone::Clone for WebAuthenticationStatus {
- fn clone(&self) -> Self {
- *self
- }
-}