aboutsummaryrefslogtreecommitdiff
path: root/vendor/windows-sys/src/Windows/Win32/System/PasswordManagement/mod.rs
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2024-07-19 15:37:58 +0300
committerValentin Popov <valentin@popov.link>2024-07-19 15:37:58 +0300
commita990de90fe41456a23e58bd087d2f107d321f3a1 (patch)
tree15afc392522a9e85dc3332235e311b7d39352ea9 /vendor/windows-sys/src/Windows/Win32/System/PasswordManagement/mod.rs
parent3d48cd3f81164bbfc1a755dc1d4a9a02f98c8ddd (diff)
downloadfparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.tar.xz
fparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.zip
Deleted vendor folder
Diffstat (limited to 'vendor/windows-sys/src/Windows/Win32/System/PasswordManagement/mod.rs')
-rw-r--r--vendor/windows-sys/src/Windows/Win32/System/PasswordManagement/mod.rs44
1 files changed, 0 insertions, 44 deletions
diff --git a/vendor/windows-sys/src/Windows/Win32/System/PasswordManagement/mod.rs b/vendor/windows-sys/src/Windows/Win32/System/PasswordManagement/mod.rs
deleted file mode 100644
index dac213f..0000000
--- a/vendor/windows-sys/src/Windows/Win32/System/PasswordManagement/mod.rs
+++ /dev/null
@@ -1,44 +0,0 @@
-#[cfg(feature = "Win32_Foundation")]
-::windows_targets::link!("advapi32.dll" "system" #[doc = "Required features: `\"Win32_Foundation\"`"] fn MSChapSrvChangePassword(servername : ::windows_sys::core::PCWSTR, username : ::windows_sys::core::PCWSTR, 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")]
-::windows_targets::link!("advapi32.dll" "system" #[doc = "Required features: `\"Win32_Foundation\"`"] fn MSChapSrvChangePassword2(servername : ::windows_sys::core::PCWSTR, username : ::windows_sys::core::PCWSTR, 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)]
-pub struct CYPHER_BLOCK {
- pub data: [u8; 8],
-}
-impl ::core::marker::Copy for CYPHER_BLOCK {}
-impl ::core::clone::Clone for CYPHER_BLOCK {
- fn clone(&self) -> Self {
- *self
- }
-}
-#[repr(C)]
-pub struct ENCRYPTED_LM_OWF_PASSWORD {
- pub data: [CYPHER_BLOCK; 2],
-}
-impl ::core::marker::Copy for ENCRYPTED_LM_OWF_PASSWORD {}
-impl ::core::clone::Clone for ENCRYPTED_LM_OWF_PASSWORD {
- fn clone(&self) -> Self {
- *self
- }
-}
-#[repr(C)]
-pub struct LM_OWF_PASSWORD {
- pub data: [CYPHER_BLOCK; 2],
-}
-impl ::core::marker::Copy for LM_OWF_PASSWORD {}
-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
- }
-}