summaryrefslogtreecommitdiffstats
path: root/vendor/windows-sys-0.28.0/src/Windows/Win32/System/PasswordManagement/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/windows-sys-0.28.0/src/Windows/Win32/System/PasswordManagement/mod.rs')
-rw-r--r--vendor/windows-sys-0.28.0/src/Windows/Win32/System/PasswordManagement/mod.rs57
1 files changed, 0 insertions, 57 deletions
diff --git a/vendor/windows-sys-0.28.0/src/Windows/Win32/System/PasswordManagement/mod.rs b/vendor/windows-sys-0.28.0/src/Windows/Win32/System/PasswordManagement/mod.rs
deleted file mode 100644
index 5d7b3238a..000000000
--- a/vendor/windows-sys-0.28.0/src/Windows/Win32/System/PasswordManagement/mod.rs
+++ /dev/null
@@ -1,57 +0,0 @@
-#![allow(non_snake_case, non_camel_case_types, non_upper_case_globals, clashing_extern_declarations, clippy::all)]
-#[link(name = "windows")]
-extern "system" {
- #[cfg(feature = "Win32_Foundation")]
- pub fn MSChapSrvChangePassword(servername: super::super::Foundation::PWSTR, username: super::super::Foundation::PWSTR, lmoldpresent: super::super::Foundation::BOOLEAN, lmoldowfpassword: *const LM_OWF_PASSWORD, lmnewowfpassword: *const LM_OWF_PASSWORD, ntoldowfpassword: *const LM_OWF_PASSWORD, ntnewowfpassword: *const LM_OWF_PASSWORD) -> u32;
- #[cfg(feature = "Win32_Foundation")]
- pub fn MSChapSrvChangePassword2(servername: super::super::Foundation::PWSTR, username: super::super::Foundation::PWSTR, newpasswordencryptedwitholdnt: *const SAMPR_ENCRYPTED_USER_PASSWORD, oldntowfpasswordencryptedwithnewnt: *const ENCRYPTED_LM_OWF_PASSWORD, lmpresent: super::super::Foundation::BOOLEAN, newpasswordencryptedwitholdlm: *const SAMPR_ENCRYPTED_USER_PASSWORD, oldlmowfpasswordencryptedwithnewlmornt: *const ENCRYPTED_LM_OWF_PASSWORD) -> u32;
-}
-#[repr(C)]
-#[cfg(feature = "Win32_Foundation")]
-pub struct CYPHER_BLOCK {
- pub data: [super::super::Foundation::CHAR; 8],
-}
-#[cfg(feature = "Win32_Foundation")]
-impl ::core::marker::Copy for CYPHER_BLOCK {}
-#[cfg(feature = "Win32_Foundation")]
-impl ::core::clone::Clone for CYPHER_BLOCK {
- fn clone(&self) -> Self {
- *self
- }
-}
-#[repr(C)]
-#[cfg(feature = "Win32_Foundation")]
-pub struct ENCRYPTED_LM_OWF_PASSWORD {
- pub data: [CYPHER_BLOCK; 2],
-}
-#[cfg(feature = "Win32_Foundation")]
-impl ::core::marker::Copy for ENCRYPTED_LM_OWF_PASSWORD {}
-#[cfg(feature = "Win32_Foundation")]
-impl ::core::clone::Clone for ENCRYPTED_LM_OWF_PASSWORD {
- fn clone(&self) -> Self {
- *self
- }
-}
-#[repr(C)]
-#[cfg(feature = "Win32_Foundation")]
-pub struct LM_OWF_PASSWORD {
- pub data: [CYPHER_BLOCK; 2],
-}
-#[cfg(feature = "Win32_Foundation")]
-impl ::core::marker::Copy for LM_OWF_PASSWORD {}
-#[cfg(feature = "Win32_Foundation")]
-impl ::core::clone::Clone for LM_OWF_PASSWORD {
- fn clone(&self) -> Self {
- *self
- }
-}
-#[repr(C)]
-pub struct SAMPR_ENCRYPTED_USER_PASSWORD {
- pub Buffer: [u8; 516],
-}
-impl ::core::marker::Copy for SAMPR_ENCRYPTED_USER_PASSWORD {}
-impl ::core::clone::Clone for SAMPR_ENCRYPTED_USER_PASSWORD {
- fn clone(&self) -> Self {
- *self
- }
-}