1 #![allow(unused_variables, non_upper_case_globals, non_snake_case, unused_unsafe, non_camel_case_types, dead_code, clippy::all)]
2 pub const APPMODEL_ERROR_DYNAMIC_PROPERTY_INVALID: i32 = 15705i32;
3 pub const APPMODEL_ERROR_DYNAMIC_PROPERTY_READ_FAILED: i32 = 15704i32;
4 pub const APPMODEL_ERROR_NO_APPLICATION: i32 = 15703i32;
5 pub const APPMODEL_ERROR_NO_MUTABLE_DIRECTORY: i32 = 15707i32;
6 pub const APPMODEL_ERROR_NO_PACKAGE: i32 = 15700i32;
7 pub const APPMODEL_ERROR_PACKAGE_IDENTITY_CORRUPT: i32 = 15702i32;
8 pub const APPMODEL_ERROR_PACKAGE_NOT_AVAILABLE: i32 = 15706i32;
9 pub const APPMODEL_ERROR_PACKAGE_RUNTIME_CORRUPT: i32 = 15701i32;
10 pub const APPX_E_BLOCK_HASH_INVALID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146958841i32 as _);
11 pub const APPX_E_CORRUPT_CONTENT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146958842i32 as _);
12 pub const APPX_E_DELTA_APPENDED_PACKAGE_NOT_ALLOWED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146958832i32 as _);
13 pub const APPX_E_DELTA_BASELINE_VERSION_MISMATCH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146958835i32 as _);
14 pub const APPX_E_DELTA_PACKAGE_MISSING_FILE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146958834i32 as _);
15 pub const APPX_E_FILE_COMPRESSION_MISMATCH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146958828i32 as _);
16 pub const APPX_E_INTERLEAVING_NOT_ALLOWED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146958847i32 as _);
17 pub const APPX_E_INVALID_APPINSTALLER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146958836i32 as _);
18 pub const APPX_E_INVALID_BLOCKMAP: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146958843i32 as _);
19 pub const APPX_E_INVALID_CONTENTGROUPMAP: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146958837i32 as _);
20 pub const APPX_E_INVALID_DELTA_PACKAGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146958833i32 as _);
21 pub const APPX_E_INVALID_ENCRYPTION_EXCLUSION_FILE_LIST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146958826i32 as _);
22 pub const APPX_E_INVALID_KEY_INFO: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146958838i32 as _);
23 pub const APPX_E_INVALID_MANIFEST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146958844i32 as _);
24 pub const APPX_E_INVALID_PACKAGESIGNCONFIG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146958830i32 as _);
25 pub const APPX_E_INVALID_PACKAGE_FOLDER_ACLS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146958825i32 as _);
26 pub const APPX_E_INVALID_PACKAGING_LAYOUT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146958831i32 as _);
27 pub const APPX_E_INVALID_PAYLOAD_PACKAGE_EXTENSION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146958827i32 as _);
28 pub const APPX_E_INVALID_PUBLISHER_BRIDGING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146958824i32 as _);
29 pub const APPX_E_INVALID_SIP_CLIENT_DATA: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146958839i32 as _);
30 pub const APPX_E_MISSING_REQUIRED_FILE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146958845i32 as _);
31 pub const APPX_E_PACKAGING_INTERNAL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146958848i32 as _);
32 pub const APPX_E_RELATIONSHIPS_NOT_ALLOWED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146958846i32 as _);
33 pub const APPX_E_REQUESTED_RANGE_TOO_LARGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146958840i32 as _);
34 pub const APPX_E_RESOURCESPRI_NOT_ALLOWED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146958829i32 as _);
35 #[derive(:: std :: clone :: Clone, :: std :: marker :: Copy)]
36 #[repr(C)]
37 pub struct APP_LOCAL_DEVICE_ID {
38     pub value: [u8; 32],
39 }
40 impl APP_LOCAL_DEVICE_ID {}
41 impl ::std::default::Default for APP_LOCAL_DEVICE_ID {
default() -> Self42     fn default() -> Self {
43         unsafe { ::std::mem::zeroed() }
44     }
45 }
46 impl ::std::fmt::Debug for APP_LOCAL_DEVICE_ID {
fmt(&self, fmt: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result47     fn fmt(&self, fmt: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
48         fmt.debug_struct("APP_LOCAL_DEVICE_ID").field("value", &self.value).finish()
49     }
50 }
51 impl ::std::cmp::PartialEq for APP_LOCAL_DEVICE_ID {
eq(&self, other: &Self) -> bool52     fn eq(&self, other: &Self) -> bool {
53         self.value == other.value
54     }
55 }
56 impl ::std::cmp::Eq for APP_LOCAL_DEVICE_ID {}
57 unsafe impl ::windows::runtime::Abi for APP_LOCAL_DEVICE_ID {
58     type Abi = Self;
59     type DefaultType = Self;
60 }
61 pub const APP_LOCAL_DEVICE_ID_SIZE: u32 = 32u32;
62 #[repr(transparent)]
63 #[derive(:: std :: default :: Default, :: std :: clone :: Clone, :: std :: marker :: Copy, :: std :: cmp :: PartialEq, :: std :: cmp :: Eq, :: std :: fmt :: Debug)]
64 pub struct BOOL(pub i32);
65 unsafe impl ::windows::runtime::Abi for BOOL {
66     type Abi = Self;
67     type DefaultType = Self;
68 }
69 impl BOOL {
70     #[inline]
as_bool(self) -> bool71     pub fn as_bool(self) -> bool {
72         !(self.0 == 0)
73     }
74     #[inline]
ok(self) -> ::windows::runtime::Result<()>75     pub fn ok(self) -> ::windows::runtime::Result<()> {
76         if self.as_bool() {
77             Ok(())
78         } else {
79             Err(::windows::runtime::Error::from_win32())
80         }
81     }
82     #[inline]
83     #[track_caller]
unwrap(self)84     pub fn unwrap(self) {
85         self.ok().unwrap();
86     }
87     #[inline]
88     #[track_caller]
expect(self, msg: &str)89     pub fn expect(self, msg: &str) {
90         self.ok().expect(msg);
91     }
92 }
93 impl ::std::convert::From<BOOL> for bool {
from(value: BOOL) -> Self94     fn from(value: BOOL) -> Self {
95         value.as_bool()
96     }
97 }
98 impl ::std::convert::From<&BOOL> for bool {
from(value: &BOOL) -> Self99     fn from(value: &BOOL) -> Self {
100         value.as_bool()
101     }
102 }
103 impl ::std::convert::From<bool> for BOOL {
from(value: bool) -> Self104     fn from(value: bool) -> Self {
105         if value {
106             BOOL(1)
107         } else {
108             BOOL(0)
109         }
110     }
111 }
112 impl ::std::convert::From<&bool> for BOOL {
from(value: &bool) -> Self113     fn from(value: &bool) -> Self {
114         (*value).into()
115     }
116 }
117 impl ::std::cmp::PartialEq<bool> for BOOL {
eq(&self, other: &bool) -> bool118     fn eq(&self, other: &bool) -> bool {
119         self.as_bool() == *other
120     }
121 }
122 impl ::std::cmp::PartialEq<BOOL> for bool {
eq(&self, other: &BOOL) -> bool123     fn eq(&self, other: &BOOL) -> bool {
124         *self == other.as_bool()
125     }
126 }
127 impl std::ops::Not for BOOL {
128     type Output = Self;
not(self) -> Self::Output129     fn not(self) -> Self::Output {
130         if self.as_bool() {
131             BOOL(0)
132         } else {
133             BOOL(1)
134         }
135     }
136 }
137 impl<'a> ::windows::runtime::IntoParam<'a, BOOL> for bool {
into_param(self) -> ::windows::runtime::Param<'a, BOOL>138     fn into_param(self) -> ::windows::runtime::Param<'a, BOOL> {
139         ::windows::runtime::Param::Owned(self.into())
140     }
141 }
142 #[derive(:: std :: clone :: Clone, :: std :: marker :: Copy, :: std :: fmt :: Debug, :: std :: cmp :: PartialEq, :: std :: cmp :: Eq)]
143 #[repr(transparent)]
144 pub struct BOOLEAN(pub u8);
145 impl ::std::default::Default for BOOLEAN {
default() -> Self146     fn default() -> Self {
147         unsafe { ::std::mem::zeroed() }
148     }
149 }
150 unsafe impl ::windows::runtime::Handle for BOOLEAN {}
151 unsafe impl ::windows::runtime::Abi for BOOLEAN {
152     type Abi = Self;
153     type DefaultType = Self;
154 }
155 #[repr(transparent)]
156 #[derive(:: std :: cmp :: Eq)]
157 pub struct BSTR(pub *mut u16);
158 impl BSTR {
new() -> Self159     pub fn new() -> Self {
160         Self(std::ptr::null_mut())
161     }
is_empty(&self) -> bool162     pub fn is_empty(&self) -> bool {
163         self.len() == 0
164     }
len(&self) -> usize165     pub fn len(&self) -> usize {
166         if self.0.is_null() {
167             0
168         } else {
169             unsafe { SysStringLen(self) as usize }
170         }
171     }
from_wide(value: &[u16]) -> Self172     pub fn from_wide(value: &[u16]) -> Self {
173         if value.len() == 0 {
174             return Self(::std::ptr::null_mut());
175         }
176         unsafe { SysAllocStringLen(PWSTR(value.as_ptr() as *mut _), value.len() as u32) }
177     }
as_wide(&self) -> &[u16]178     pub fn as_wide(&self) -> &[u16] {
179         if self.0.is_null() {
180             return &[];
181         }
182         unsafe { ::std::slice::from_raw_parts(self.0 as *const u16, self.len()) }
183     }
184 }
185 impl ::std::clone::Clone for BSTR {
clone(&self) -> Self186     fn clone(&self) -> Self {
187         Self::from_wide(self.as_wide())
188     }
189 }
190 impl ::std::convert::From<&str> for BSTR {
from(value: &str) -> Self191     fn from(value: &str) -> Self {
192         let value: ::std::vec::Vec<u16> = value.encode_utf16().collect();
193         Self::from_wide(&value)
194     }
195 }
196 impl ::std::convert::From<::std::string::String> for BSTR {
from(value: ::std::string::String) -> Self197     fn from(value: ::std::string::String) -> Self {
198         value.as_str().into()
199     }
200 }
201 impl ::std::convert::From<&::std::string::String> for BSTR {
from(value: &::std::string::String) -> Self202     fn from(value: &::std::string::String) -> Self {
203         value.as_str().into()
204     }
205 }
206 impl<'a> ::std::convert::TryFrom<&'a BSTR> for ::std::string::String {
207     type Error = ::std::string::FromUtf16Error;
try_from(value: &BSTR) -> ::std::result::Result<Self, Self::Error>208     fn try_from(value: &BSTR) -> ::std::result::Result<Self, Self::Error> {
209         ::std::string::String::from_utf16(value.as_wide())
210     }
211 }
212 impl ::std::convert::TryFrom<BSTR> for ::std::string::String {
213     type Error = ::std::string::FromUtf16Error;
try_from(value: BSTR) -> ::std::result::Result<Self, Self::Error>214     fn try_from(value: BSTR) -> ::std::result::Result<Self, Self::Error> {
215         ::std::string::String::try_from(&value)
216     }
217 }
218 impl ::std::default::Default for BSTR {
default() -> Self219     fn default() -> Self {
220         Self(::std::ptr::null_mut())
221     }
222 }
223 impl ::std::fmt::Display for BSTR {
fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result224     fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
225         use std::fmt::Write;
226         for c in ::std::char::decode_utf16(self.as_wide().iter().cloned()) {
227             f.write_char(c.map_err(|_| ::std::fmt::Error)?)?
228         }
229         Ok(())
230     }
231 }
232 impl ::std::fmt::Debug for BSTR {
fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result233     fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
234         ::std::write!(f, "{}", self)
235     }
236 }
237 impl ::std::cmp::PartialEq for BSTR {
eq(&self, other: &Self) -> bool238     fn eq(&self, other: &Self) -> bool {
239         self.as_wide() == other.as_wide()
240     }
241 }
242 impl ::std::cmp::PartialEq<::std::string::String> for BSTR {
eq(&self, other: &::std::string::String) -> bool243     fn eq(&self, other: &::std::string::String) -> bool {
244         self == other.as_str()
245     }
246 }
247 impl ::std::cmp::PartialEq<str> for BSTR {
eq(&self, other: &str) -> bool248     fn eq(&self, other: &str) -> bool {
249         self == other
250     }
251 }
252 impl ::std::cmp::PartialEq<&str> for BSTR {
eq(&self, other: &&str) -> bool253     fn eq(&self, other: &&str) -> bool {
254         self.as_wide().iter().copied().eq(other.encode_utf16())
255     }
256 }
257 impl ::std::cmp::PartialEq<BSTR> for &str {
eq(&self, other: &BSTR) -> bool258     fn eq(&self, other: &BSTR) -> bool {
259         other == self
260     }
261 }
262 impl ::std::ops::Drop for BSTR {
drop(&mut self)263     fn drop(&mut self) {
264         if !self.0.is_null() {
265             unsafe { SysFreeString(self as &Self) }
266         }
267     }
268 }
269 unsafe impl ::windows::runtime::Abi for BSTR {
270     type Abi = ::std::mem::ManuallyDrop<Self>;
271     type DefaultType = Self;
272 }
273 pub type BSTR_abi = *mut u16;
274 impl<'a> ::windows::runtime::IntoParam<'a, BSTR> for &str {
into_param(self) -> ::windows::runtime::Param<'a, BSTR>275     fn into_param(self) -> ::windows::runtime::Param<'a, BSTR> {
276         ::windows::runtime::Param::Owned(self.into())
277     }
278 }
279 impl<'a> ::windows::runtime::IntoParam<'a, BSTR> for String {
into_param(self) -> ::windows::runtime::Param<'a, BSTR>280     fn into_param(self) -> ::windows::runtime::Param<'a, BSTR> {
281         ::windows::runtime::Param::Owned(self.into())
282     }
283 }
284 pub const BT_E_SPURIOUS_ACTIVATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146958592i32 as _);
285 pub const CACHE_E_FIRST: i32 = -2147221136i32;
286 pub const CACHE_E_LAST: i32 = -2147221121i32;
287 pub const CACHE_E_NOCACHE_UPDATED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221136i32 as _);
288 pub const CACHE_S_FIRST: i32 = 262512i32;
289 pub const CACHE_S_FORMATETC_NOTSUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(262512i32 as _);
290 pub const CACHE_S_LAST: i32 = 262527i32;
291 pub const CACHE_S_SAMECACHE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(262513i32 as _);
292 pub const CACHE_S_SOMECACHES_NOTUPDATED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(262514i32 as _);
293 pub const CAT_E_CATIDNOEXIST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221152i32 as _);
294 pub const CAT_E_FIRST: i32 = -2147221152i32;
295 pub const CAT_E_LAST: i32 = -2147221151i32;
296 pub const CAT_E_NODESCRIPTION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221151i32 as _);
297 pub const CERTSRV_E_ADMIN_DENIED_REQUEST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146877420i32 as _);
298 pub const CERTSRV_E_ALIGNMENT_FAULT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146877424i32 as _);
299 pub const CERTSRV_E_ARCHIVED_KEY_REQUIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146875388i32 as _);
300 pub const CERTSRV_E_ARCHIVED_KEY_UNEXPECTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146875376i32 as _);
301 pub const CERTSRV_E_BAD_RENEWAL_CERT_ATTRIBUTE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146877426i32 as _);
302 pub const CERTSRV_E_BAD_RENEWAL_SUBJECT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146875386i32 as _);
303 pub const CERTSRV_E_BAD_REQUESTSTATUS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146877437i32 as _);
304 pub const CERTSRV_E_BAD_REQUESTSUBJECT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146877439i32 as _);
305 pub const CERTSRV_E_BAD_REQUEST_KEY_ARCHIVAL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146877428i32 as _);
306 pub const CERTSRV_E_BAD_TEMPLATE_VERSION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146875385i32 as _);
307 pub const CERTSRV_E_CERT_TYPE_OVERLAP: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146875372i32 as _);
308 pub const CERTSRV_E_CORRUPT_KEY_ATTESTATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146875365i32 as _);
309 pub const CERTSRV_E_DOWNLEVEL_DC_SSL_OR_UPGRADE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146877421i32 as _);
310 pub const CERTSRV_E_ENCODING_LENGTH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146877433i32 as _);
311 pub const CERTSRV_E_ENCRYPTION_CERT_REQUIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146877416i32 as _);
312 pub const CERTSRV_E_ENROLL_DENIED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146877423i32 as _);
313 pub const CERTSRV_E_EXPIRED_CHALLENGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146875364i32 as _);
314 pub const CERTSRV_E_INVALID_ATTESTATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146875367i32 as _);
315 pub const CERTSRV_E_INVALID_CA_CERTIFICATE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146877435i32 as _);
316 pub const CERTSRV_E_INVALID_EK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146875369i32 as _);
317 pub const CERTSRV_E_INVALID_IDBINDING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146875368i32 as _);
318 pub const CERTSRV_E_INVALID_REQUESTID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146875362i32 as _);
319 pub const CERTSRV_E_INVALID_RESPONSE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146875363i32 as _);
320 pub const CERTSRV_E_ISSUANCE_POLICY_REQUIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146875380i32 as _);
321 pub const CERTSRV_E_KEY_ARCHIVAL_NOT_CONFIGURED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146877430i32 as _);
322 pub const CERTSRV_E_KEY_ATTESTATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146875366i32 as _);
323 pub const CERTSRV_E_KEY_ATTESTATION_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146877417i32 as _);
324 pub const CERTSRV_E_KEY_LENGTH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146875375i32 as _);
325 pub const CERTSRV_E_NO_CAADMIN_DEFINED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146877427i32 as _);
326 pub const CERTSRV_E_NO_CERT_TYPE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146875391i32 as _);
327 pub const CERTSRV_E_NO_DB_SESSIONS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146877425i32 as _);
328 pub const CERTSRV_E_NO_POLICY_SERVER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146877419i32 as _);
329 pub const CERTSRV_E_NO_REQUEST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146877438i32 as _);
330 pub const CERTSRV_E_NO_VALID_KRA: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146877429i32 as _);
331 pub const CERTSRV_E_PENDING_CLIENT_RESPONSE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146875360i32 as _);
332 pub const CERTSRV_E_PROPERTY_EMPTY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146877436i32 as _);
333 pub const CERTSRV_E_RENEWAL_BAD_PUBLIC_KEY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146875370i32 as _);
334 pub const CERTSRV_E_REQUEST_PRECERTIFICATE_MISMATCH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146875361i32 as _);
335 pub const CERTSRV_E_RESTRICTEDOFFICER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146877431i32 as _);
336 pub const CERTSRV_E_ROLECONFLICT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146877432i32 as _);
337 pub const CERTSRV_E_SERVER_SUSPENDED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146877434i32 as _);
338 pub const CERTSRV_E_SIGNATURE_COUNT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146875382i32 as _);
339 pub const CERTSRV_E_SIGNATURE_POLICY_REQUIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146875383i32 as _);
340 pub const CERTSRV_E_SIGNATURE_REJECTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146875381i32 as _);
341 pub const CERTSRV_E_SMIME_REQUIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146875387i32 as _);
342 pub const CERTSRV_E_SUBJECT_ALT_NAME_REQUIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146875389i32 as _);
343 pub const CERTSRV_E_SUBJECT_DIRECTORY_GUID_REQUIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146875378i32 as _);
344 pub const CERTSRV_E_SUBJECT_DNS_REQUIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146875377i32 as _);
345 pub const CERTSRV_E_SUBJECT_EMAIL_REQUIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146875374i32 as _);
346 pub const CERTSRV_E_SUBJECT_UPN_REQUIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146875379i32 as _);
347 pub const CERTSRV_E_TEMPLATE_CONFLICT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146875390i32 as _);
348 pub const CERTSRV_E_TEMPLATE_DENIED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146877422i32 as _);
349 pub const CERTSRV_E_TEMPLATE_POLICY_REQUIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146875384i32 as _);
350 pub const CERTSRV_E_TOO_MANY_SIGNATURES: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146875371i32 as _);
351 pub const CERTSRV_E_UNKNOWN_CERT_TYPE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146875373i32 as _);
352 pub const CERTSRV_E_UNSUPPORTED_CERT_TYPE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146875392i32 as _);
353 pub const CERTSRV_E_WEAK_SIGNATURE_OR_KEY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146877418i32 as _);
354 pub const CERT_E_CHAINING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146762486i32 as _);
355 pub const CERT_E_CN_NO_MATCH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146762481i32 as _);
356 pub const CERT_E_CRITICAL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146762491i32 as _);
357 pub const CERT_E_EXPIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146762495i32 as _);
358 pub const CERT_E_INVALID_NAME: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146762476i32 as _);
359 pub const CERT_E_INVALID_POLICY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146762477i32 as _);
360 pub const CERT_E_ISSUERCHAINING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146762489i32 as _);
361 pub const CERT_E_MALFORMED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146762488i32 as _);
362 pub const CERT_E_PATHLENCONST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146762492i32 as _);
363 pub const CERT_E_PURPOSE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146762490i32 as _);
364 pub const CERT_E_REVOCATION_FAILURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146762482i32 as _);
365 pub const CERT_E_REVOKED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146762484i32 as _);
366 pub const CERT_E_ROLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146762493i32 as _);
367 pub const CERT_E_UNTRUSTEDCA: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146762478i32 as _);
368 pub const CERT_E_UNTRUSTEDROOT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146762487i32 as _);
369 pub const CERT_E_UNTRUSTEDTESTROOT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146762483i32 as _);
370 pub const CERT_E_VALIDITYPERIODNESTING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146762494i32 as _);
371 pub const CERT_E_WRONG_USAGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146762480i32 as _);
372 #[derive(:: std :: clone :: Clone, :: std :: marker :: Copy, :: std :: fmt :: Debug, :: std :: cmp :: PartialEq, :: std :: cmp :: Eq)]
373 #[repr(transparent)]
374 pub struct CHAR(pub u8);
375 impl ::std::default::Default for CHAR {
default() -> Self376     fn default() -> Self {
377         unsafe { ::std::mem::zeroed() }
378     }
379 }
380 unsafe impl ::windows::runtime::Handle for CHAR {}
381 unsafe impl ::windows::runtime::Abi for CHAR {
382     type Abi = Self;
383     type DefaultType = Self;
384 }
385 pub const CI_CORRUPT_CATALOG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1073473535i32 as _);
386 pub const CI_CORRUPT_DATABASE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1073473536i32 as _);
387 pub const CI_CORRUPT_FILTER_BUFFER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1073473529i32 as _);
388 pub const CI_E_ALREADY_INITIALIZED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215350i32 as _);
389 pub const CI_E_BUFFERTOOSMALL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215348i32 as _);
390 pub const CI_E_CARDINALITY_MISMATCH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215321i32 as _);
391 pub const CI_E_CLIENT_FILTER_ABORT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1073473500i32 as _);
392 pub const CI_E_CONFIG_DISK_FULL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215320i32 as _);
393 pub const CI_E_DISK_FULL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215343i32 as _);
394 pub const CI_E_DISTRIBUTED_GROUPBY_UNSUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215319i32 as _);
395 pub const CI_E_DUPLICATE_NOTIFICATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215337i32 as _);
396 pub const CI_E_ENUMERATION_STARTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1073473502i32 as _);
397 pub const CI_E_FILTERING_DISABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215344i32 as _);
398 pub const CI_E_INVALID_FLAGS_COMBINATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215335i32 as _);
399 pub const CI_E_INVALID_STATE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215345i32 as _);
400 pub const CI_E_LOGON_FAILURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215332i32 as _);
401 pub const CI_E_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215339i32 as _);
402 pub const CI_E_NOT_INITIALIZED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215349i32 as _);
403 pub const CI_E_NOT_RUNNING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215328i32 as _);
404 pub const CI_E_NO_CATALOG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215331i32 as _);
405 pub const CI_E_OUTOFSEQ_INCREMENT_DATA: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215334i32 as _);
406 pub const CI_E_PROPERTY_NOT_CACHED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215347i32 as _);
407 pub const CI_E_PROPERTY_TOOLARGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1073473501i32 as _);
408 pub const CI_E_SHARING_VIOLATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215333i32 as _);
409 pub const CI_E_SHUTDOWN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215342i32 as _);
410 pub const CI_E_STRANGE_PAGEORSECTOR_SIZE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215330i32 as _);
411 pub const CI_E_TIMEOUT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215329i32 as _);
412 pub const CI_E_UPDATES_DISABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215336i32 as _);
413 pub const CI_E_USE_DEFAULT_PID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215338i32 as _);
414 pub const CI_E_WORKID_NOTVALID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215341i32 as _);
415 pub const CI_INCORRECT_VERSION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1073473503i32 as _);
416 pub const CI_INVALID_INDEX: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1073473528i32 as _);
417 pub const CI_INVALID_PARTITION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1073473534i32 as _);
418 pub const CI_INVALID_PRIORITY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1073473533i32 as _);
419 pub const CI_NO_CATALOG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1073473530i32 as _);
420 pub const CI_NO_STARTING_KEY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1073473532i32 as _);
421 pub const CI_OUT_OF_INDEX_IDS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1073473531i32 as _);
422 pub const CI_PROPSTORE_INCONSISTENCY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1073473527i32 as _);
423 pub const CI_S_CAT_STOPPED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(268326i32 as _);
424 pub const CI_S_END_OF_ENUMERATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(268308i32 as _);
425 pub const CI_S_NO_DOCSTORE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(268325i32 as _);
426 pub const CI_S_WORKID_DELETED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(268302i32 as _);
427 pub const CLASSFACTORY_E_FIRST: i32 = -2147221232i32;
428 pub const CLASSFACTORY_E_LAST: i32 = -2147221217i32;
429 pub const CLASSFACTORY_S_FIRST: i32 = 262416i32;
430 pub const CLASSFACTORY_S_LAST: i32 = 262431i32;
431 pub const CLASS_E_CLASSNOTAVAILABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221231i32 as _);
432 pub const CLASS_E_NOAGGREGATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221232i32 as _);
433 pub const CLASS_E_NOTLICENSED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221230i32 as _);
434 pub const CLIENTSITE_E_FIRST: i32 = -2147221104i32;
435 pub const CLIENTSITE_E_LAST: i32 = -2147221089i32;
436 pub const CLIENTSITE_S_FIRST: i32 = 262544i32;
437 pub const CLIENTSITE_S_LAST: i32 = 262559i32;
438 pub const CLIPBRD_E_BAD_DATA: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221037i32 as _);
439 pub const CLIPBRD_E_CANT_CLOSE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221036i32 as _);
440 pub const CLIPBRD_E_CANT_EMPTY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221039i32 as _);
441 pub const CLIPBRD_E_CANT_OPEN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221040i32 as _);
442 pub const CLIPBRD_E_CANT_SET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221038i32 as _);
443 pub const CLIPBRD_E_FIRST: i32 = -2147221040i32;
444 pub const CLIPBRD_E_LAST: i32 = -2147221025i32;
445 pub const CLIPBRD_S_FIRST: i32 = 262608i32;
446 pub const CLIPBRD_S_LAST: i32 = 262623i32;
447 pub const COMADMIN_E_ALREADYINSTALLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368508i32 as _);
448 pub const COMADMIN_E_AMBIGUOUS_APPLICATION_NAME: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368420i32 as _);
449 pub const COMADMIN_E_AMBIGUOUS_PARTITION_NAME: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368419i32 as _);
450 pub const COMADMIN_E_APPDIRNOTFOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368481i32 as _);
451 pub const COMADMIN_E_APPLICATIONEXISTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368501i32 as _);
452 pub const COMADMIN_E_APPLID_MATCHES_CLSID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368442i32 as _);
453 pub const COMADMIN_E_APP_FILE_READFAIL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368504i32 as _);
454 pub const COMADMIN_E_APP_FILE_VERSION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368503i32 as _);
455 pub const COMADMIN_E_APP_FILE_WRITEFAIL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368505i32 as _);
456 pub const COMADMIN_E_APP_NOT_RUNNING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146367478i32 as _);
457 pub const COMADMIN_E_AUTHENTICATIONLEVEL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368493i32 as _);
458 pub const COMADMIN_E_BADPATH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368502i32 as _);
459 pub const COMADMIN_E_BADREGISTRYLIBID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368482i32 as _);
460 pub const COMADMIN_E_BADREGISTRYPROGID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368494i32 as _);
461 pub const COMADMIN_E_BASEPARTITION_REQUIRED_IN_SET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146367457i32 as _);
462 pub const COMADMIN_E_BASE_PARTITION_ONLY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368432i32 as _);
463 pub const COMADMIN_E_CANNOT_ALIAS_EVENTCLASS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146367456i32 as _);
464 pub const COMADMIN_E_CANTCOPYFILE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368499i32 as _);
465 pub const COMADMIN_E_CANTMAKEINPROCSERVICE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146367468i32 as _);
466 pub const COMADMIN_E_CANTRECYCLELIBRARYAPPS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146367473i32 as _);
467 pub const COMADMIN_E_CANTRECYCLESERVICEAPPS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146367471i32 as _);
468 pub const COMADMIN_E_CANT_SUBSCRIBE_TO_COMPONENT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368435i32 as _);
469 pub const COMADMIN_E_CAN_NOT_EXPORT_APP_PROXY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368438i32 as _);
470 pub const COMADMIN_E_CAN_NOT_EXPORT_SYS_APP: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368436i32 as _);
471 pub const COMADMIN_E_CAN_NOT_START_APP: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368437i32 as _);
472 pub const COMADMIN_E_CAT_BITNESSMISMATCH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368382i32 as _);
473 pub const COMADMIN_E_CAT_DUPLICATE_PARTITION_NAME: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368425i32 as _);
474 pub const COMADMIN_E_CAT_IMPORTED_COMPONENTS_NOT_ALLOWED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368421i32 as _);
475 pub const COMADMIN_E_CAT_INVALID_PARTITION_NAME: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368424i32 as _);
476 pub const COMADMIN_E_CAT_PARTITION_IN_USE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368423i32 as _);
477 pub const COMADMIN_E_CAT_PAUSE_RESUME_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368379i32 as _);
478 pub const COMADMIN_E_CAT_SERVERFAULT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368378i32 as _);
479 pub const COMADMIN_E_CAT_UNACCEPTABLEBITNESS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368381i32 as _);
480 pub const COMADMIN_E_CAT_WRONGAPPBITNESS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368380i32 as _);
481 pub const COMADMIN_E_CLSIDORIIDMISMATCH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368488i32 as _);
482 pub const COMADMIN_E_COMPFILE_BADTLB: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368472i32 as _);
483 pub const COMADMIN_E_COMPFILE_CLASSNOTAVAIL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368473i32 as _);
484 pub const COMADMIN_E_COMPFILE_DOESNOTEXIST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368476i32 as _);
485 pub const COMADMIN_E_COMPFILE_GETCLASSOBJ: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368474i32 as _);
486 pub const COMADMIN_E_COMPFILE_LOADDLLFAIL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368475i32 as _);
487 pub const COMADMIN_E_COMPFILE_NOREGISTRAR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368460i32 as _);
488 pub const COMADMIN_E_COMPFILE_NOTINSTALLABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368471i32 as _);
489 pub const COMADMIN_E_COMPONENTEXISTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368455i32 as _);
490 pub const COMADMIN_E_COMP_MOVE_BAD_DEST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368466i32 as _);
491 pub const COMADMIN_E_COMP_MOVE_DEST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146367459i32 as _);
492 pub const COMADMIN_E_COMP_MOVE_LOCKED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368467i32 as _);
493 pub const COMADMIN_E_COMP_MOVE_PRIVATE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146367458i32 as _);
494 pub const COMADMIN_E_COMP_MOVE_SOURCE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146367460i32 as _);
495 pub const COMADMIN_E_COREQCOMPINSTALLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368459i32 as _);
496 pub const COMADMIN_E_DEFAULT_PARTITION_NOT_IN_SET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146367466i32 as _);
497 pub const COMADMIN_E_DLLLOADFAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368483i32 as _);
498 pub const COMADMIN_E_DLLREGISTERSERVER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368486i32 as _);
499 pub const COMADMIN_E_EVENTCLASS_CANT_BE_SUBSCRIBER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368434i32 as _);
500 pub const COMADMIN_E_FILE_PARTITION_DUPLICATE_FILES: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368422i32 as _);
501 pub const COMADMIN_E_INVALIDUSERIDS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368496i32 as _);
502 pub const COMADMIN_E_INVALID_PARTITION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146367477i32 as _);
503 pub const COMADMIN_E_KEYMISSING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368509i32 as _);
504 pub const COMADMIN_E_LEGACYCOMPS_NOT_ALLOWED_IN_1_0_FORMAT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146367462i32 as _);
505 pub const COMADMIN_E_LEGACYCOMPS_NOT_ALLOWED_IN_NONBASE_PARTITIONS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146367461i32 as _);
506 pub const COMADMIN_E_LIB_APP_PROXY_INCOMPATIBLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368433i32 as _);
507 pub const COMADMIN_E_MIG_SCHEMANOTFOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368383i32 as _);
508 pub const COMADMIN_E_MIG_VERSIONNOTSUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368384i32 as _);
509 pub const COMADMIN_E_NOREGISTRYCLSID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368495i32 as _);
510 pub const COMADMIN_E_NOSERVERSHARE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368485i32 as _);
511 pub const COMADMIN_E_NOTCHANGEABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368470i32 as _);
512 pub const COMADMIN_E_NOTDELETEABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368469i32 as _);
513 pub const COMADMIN_E_NOTINREGISTRY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368450i32 as _);
514 pub const COMADMIN_E_NOUSER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368497i32 as _);
515 pub const COMADMIN_E_OBJECTERRORS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368511i32 as _);
516 pub const COMADMIN_E_OBJECTEXISTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368456i32 as _);
517 pub const COMADMIN_E_OBJECTINVALID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368510i32 as _);
518 pub const COMADMIN_E_OBJECTNOTPOOLABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368449i32 as _);
519 pub const COMADMIN_E_OBJECT_DOES_NOT_EXIST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146367479i32 as _);
520 pub const COMADMIN_E_OBJECT_PARENT_MISSING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146367480i32 as _);
521 pub const COMADMIN_E_PARTITIONS_DISABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146367452i32 as _);
522 pub const COMADMIN_E_PARTITION_ACCESSDENIED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146367464i32 as _);
523 pub const COMADMIN_E_PARTITION_MSI_ONLY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146367463i32 as _);
524 pub const COMADMIN_E_PAUSEDPROCESSMAYNOTBERECYCLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146367469i32 as _);
525 pub const COMADMIN_E_PRIVATE_ACCESSDENIED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146367455i32 as _);
526 pub const COMADMIN_E_PROCESSALREADYRECYCLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146367470i32 as _);
527 pub const COMADMIN_E_PROGIDINUSEBYCLSID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146367467i32 as _);
528 pub const COMADMIN_E_PROPERTYSAVEFAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368457i32 as _);
529 pub const COMADMIN_E_PROPERTY_OVERFLOW: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368452i32 as _);
530 pub const COMADMIN_E_RECYCLEDPROCESSMAYNOTBEPAUSED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146367465i32 as _);
531 pub const COMADMIN_E_REGDB_ALREADYRUNNING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368395i32 as _);
532 pub const COMADMIN_E_REGDB_NOTINITIALIZED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368398i32 as _);
533 pub const COMADMIN_E_REGDB_NOTOPEN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368397i32 as _);
534 pub const COMADMIN_E_REGDB_SYSTEMERR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368396i32 as _);
535 pub const COMADMIN_E_REGFILE_CORRUPT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368453i32 as _);
536 pub const COMADMIN_E_REGISTERTLB: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368464i32 as _);
537 pub const COMADMIN_E_REGISTRARFAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368477i32 as _);
538 pub const COMADMIN_E_REGISTRY_ACCESSDENIED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146367453i32 as _);
539 pub const COMADMIN_E_REMOTEINTERFACE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368487i32 as _);
540 pub const COMADMIN_E_REQUIRES_DIFFERENT_PLATFORM: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368439i32 as _);
541 pub const COMADMIN_E_ROLEEXISTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368500i32 as _);
542 pub const COMADMIN_E_ROLE_DOES_NOT_EXIST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368441i32 as _);
543 pub const COMADMIN_E_SAFERINVALID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146367454i32 as _);
544 pub const COMADMIN_E_SERVICENOTINSTALLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368458i32 as _);
545 pub const COMADMIN_E_SESSION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368468i32 as _);
546 pub const COMADMIN_E_START_APP_DISABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368431i32 as _);
547 pub const COMADMIN_E_START_APP_NEEDS_COMPONENTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368440i32 as _);
548 pub const COMADMIN_E_SVCAPP_NOT_POOLABLE_OR_RECYCLABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146367475i32 as _);
549 pub const COMADMIN_E_SYSTEMAPP: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368461i32 as _);
550 pub const COMADMIN_E_USERPASSWDNOTVALID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368492i32 as _);
551 pub const COMADMIN_E_USER_IN_SET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146367474i32 as _);
552 pub const COMQC_E_APPLICATION_NOT_QUEUED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146368000i32 as _);
553 pub const COMQC_E_BAD_MESSAGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146367996i32 as _);
554 pub const COMQC_E_NO_IPERSISTSTREAM: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146367997i32 as _);
555 pub const COMQC_E_NO_QUEUEABLE_INTERFACES: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146367999i32 as _);
556 pub const COMQC_E_QUEUING_SERVICE_NOT_AVAILABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146367998i32 as _);
557 pub const COMQC_E_UNAUTHENTICATED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146367995i32 as _);
558 pub const COMQC_E_UNTRUSTED_ENQUEUER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146367994i32 as _);
559 pub const CONTEXT_E_ABORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147164158i32 as _);
560 pub const CONTEXT_E_ABORTING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147164157i32 as _);
561 pub const CONTEXT_E_FIRST: i32 = -2147164160i32;
562 pub const CONTEXT_E_LAST: i32 = -2147164113i32;
563 pub const CONTEXT_E_NOCONTEXT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147164156i32 as _);
564 pub const CONTEXT_E_NOJIT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147164122i32 as _);
565 pub const CONTEXT_E_NOTRANSACTION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147164121i32 as _);
566 pub const CONTEXT_E_OLDREF: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147164153i32 as _);
567 pub const CONTEXT_E_ROLENOTFOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147164148i32 as _);
568 pub const CONTEXT_E_SYNCH_TIMEOUT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147164154i32 as _);
569 pub const CONTEXT_E_TMNOTAVAILABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147164145i32 as _);
570 pub const CONTEXT_E_WOULD_DEADLOCK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147164155i32 as _);
571 pub const CONTEXT_S_FIRST: i32 = 319488i32;
572 pub const CONTEXT_S_LAST: i32 = 319535i32;
573 pub const CONVERT10_E_FIRST: i32 = -2147221056i32;
574 pub const CONVERT10_E_LAST: i32 = -2147221041i32;
575 pub const CONVERT10_E_OLESTREAM_BITMAP_TO_DIB: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221053i32 as _);
576 pub const CONVERT10_E_OLESTREAM_FMT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221054i32 as _);
577 pub const CONVERT10_E_OLESTREAM_GET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221056i32 as _);
578 pub const CONVERT10_E_OLESTREAM_PUT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221055i32 as _);
579 pub const CONVERT10_E_STG_DIB_TO_BITMAP: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221050i32 as _);
580 pub const CONVERT10_E_STG_FMT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221052i32 as _);
581 pub const CONVERT10_E_STG_NO_STD_STREAM: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221051i32 as _);
582 pub const CONVERT10_S_FIRST: i32 = 262592i32;
583 pub const CONVERT10_S_LAST: i32 = 262607i32;
584 pub const CONVERT10_S_NO_PRESENTATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(262592i32 as _);
585 pub const CO_E_ACCESSCHECKFAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417814i32 as _);
586 pub const CO_E_ACESINWRONGORDER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417798i32 as _);
587 pub const CO_E_ACNOTINITIALIZED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417793i32 as _);
588 pub const CO_E_ACTIVATIONFAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147164127i32 as _);
589 pub const CO_E_ACTIVATIONFAILED_CATALOGERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147164125i32 as _);
590 pub const CO_E_ACTIVATIONFAILED_EVENTLOGGED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147164126i32 as _);
591 pub const CO_E_ACTIVATIONFAILED_TIMEOUT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147164124i32 as _);
592 pub const CO_E_ALREADYINITIALIZED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221007i32 as _);
593 pub const CO_E_APPDIDNTREG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147220994i32 as _);
594 pub const CO_E_APPNOTFOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221003i32 as _);
595 pub const CO_E_APPSINGLEUSE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221002i32 as _);
596 pub const CO_E_ASYNC_WORK_REJECTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147467223i32 as _);
597 pub const CO_E_ATTEMPT_TO_CREATE_OUTSIDE_CLIENT_CONTEXT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147467228i32 as _);
598 pub const CO_E_BAD_PATH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146959356i32 as _);
599 pub const CO_E_BAD_SERVER_NAME: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147467244i32 as _);
600 pub const CO_E_CALL_OUT_OF_TX_SCOPE_NOT_ALLOWED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147164112i32 as _);
601 pub const CO_E_CANCEL_DISABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417792i32 as _);
602 pub const CO_E_CANTDETERMINECLASS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221006i32 as _);
603 pub const CO_E_CANT_REMOTE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147467245i32 as _);
604 pub const CO_E_CLASSSTRING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221005i32 as _);
605 pub const CO_E_CLASS_CREATE_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146959359i32 as _);
606 pub const CO_E_CLASS_DISABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147467225i32 as _);
607 pub const CO_E_CLRNOTAVAILABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147467224i32 as _);
608 pub const CO_E_CLSREG_INCONSISTENT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147467233i32 as _);
609 pub const CO_E_CONVERSIONFAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417810i32 as _);
610 pub const CO_E_CREATEPROCESS_FAILURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147467240i32 as _);
611 pub const CO_E_DBERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147164117i32 as _);
612 pub const CO_E_DECODEFAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417795i32 as _);
613 pub const CO_E_DLLNOTFOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221000i32 as _);
614 pub const CO_E_ELEVATION_DISABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146959337i32 as _);
615 pub const CO_E_ERRORINAPP: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221001i32 as _);
616 pub const CO_E_ERRORINDLL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147220999i32 as _);
617 pub const CO_E_EXCEEDSYSACLLIMIT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417799i32 as _);
618 pub const CO_E_EXIT_TRANSACTION_SCOPE_NOT_CALLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147164111i32 as _);
619 pub const CO_E_FAILEDTOCLOSEHANDLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417800i32 as _);
620 pub const CO_E_FAILEDTOCREATEFILE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417801i32 as _);
621 pub const CO_E_FAILEDTOGENUUID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417802i32 as _);
622 pub const CO_E_FAILEDTOGETSECCTX: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417820i32 as _);
623 pub const CO_E_FAILEDTOGETTOKENINFO: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417818i32 as _);
624 pub const CO_E_FAILEDTOGETWINDIR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417804i32 as _);
625 pub const CO_E_FAILEDTOIMPERSONATE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417821i32 as _);
626 pub const CO_E_FAILEDTOOPENPROCESSTOKEN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417796i32 as _);
627 pub const CO_E_FAILEDTOOPENTHREADTOKEN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417819i32 as _);
628 pub const CO_E_FAILEDTOQUERYCLIENTBLANKET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417816i32 as _);
629 pub const CO_E_FAILEDTOSETDACL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417815i32 as _);
630 pub const CO_E_FIRST: i32 = -2147221008i32;
631 pub const CO_E_IIDREG_INCONSISTENT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147467232i32 as _);
632 pub const CO_E_IIDSTRING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221004i32 as _);
633 pub const CO_E_INCOMPATIBLESTREAMVERSION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417797i32 as _);
634 pub const CO_E_INITIALIZATIONFAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147164123i32 as _);
635 pub const CO_E_INIT_CLASS_CACHE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147467255i32 as _);
636 pub const CO_E_INIT_MEMORY_ALLOCATOR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147467256i32 as _);
637 pub const CO_E_INIT_ONLY_SINGLE_THREADED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147467246i32 as _);
638 pub const CO_E_INIT_RPC_CHANNEL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147467254i32 as _);
639 pub const CO_E_INIT_SCM_EXEC_FAILURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147467247i32 as _);
640 pub const CO_E_INIT_SCM_FILE_MAPPING_EXISTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147467249i32 as _);
641 pub const CO_E_INIT_SCM_MAP_VIEW_OF_FILE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147467248i32 as _);
642 pub const CO_E_INIT_SCM_MUTEX_EXISTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147467250i32 as _);
643 pub const CO_E_INIT_SHARED_ALLOCATOR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147467257i32 as _);
644 pub const CO_E_INIT_TLS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147467258i32 as _);
645 pub const CO_E_INIT_TLS_CHANNEL_CONTROL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147467252i32 as _);
646 pub const CO_E_INIT_TLS_SET_CHANNEL_CONTROL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147467253i32 as _);
647 pub const CO_E_INIT_UNACCEPTED_USER_ALLOCATOR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147467251i32 as _);
648 pub const CO_E_INVALIDSID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417811i32 as _);
649 pub const CO_E_ISOLEVELMISMATCH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147164113i32 as _);
650 pub const CO_E_LAST: i32 = -2147220993i32;
651 pub const CO_E_LAUNCH_PERMSSION_DENIED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147467237i32 as _);
652 pub const CO_E_LOOKUPACCNAMEFAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417806i32 as _);
653 pub const CO_E_LOOKUPACCSIDFAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417808i32 as _);
654 pub const CO_E_MALFORMED_SPN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147467213i32 as _);
655 pub const CO_E_MISSING_DISPLAYNAME: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146959339i32 as _);
656 pub const CO_E_MSI_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147467229i32 as _);
657 pub const CO_E_NETACCESSAPIFAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417813i32 as _);
658 pub const CO_E_NOCOOKIES: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147164118i32 as _);
659 pub const CO_E_NOIISINTRINSICS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147164119i32 as _);
660 pub const CO_E_NOMATCHINGNAMEFOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417807i32 as _);
661 pub const CO_E_NOMATCHINGSIDFOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417809i32 as _);
662 pub const CO_E_NOSYNCHRONIZATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147164114i32 as _);
663 pub const CO_E_NOTCONSTRUCTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147164115i32 as _);
664 pub const CO_E_NOTPOOLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147164116i32 as _);
665 pub const CO_E_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147467231i32 as _);
666 pub const CO_E_NO_SECCTX_IN_ACTIVATE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147467221i32 as _);
667 pub const CO_E_OBJISREG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147220996i32 as _);
668 pub const CO_E_OBJNOTCONNECTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147220995i32 as _);
669 pub const CO_E_OBJNOTREG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147220997i32 as _);
670 pub const CO_E_OBJSRV_RPC_FAILURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146959354i32 as _);
671 pub const CO_E_OLE1DDE_DISABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147467242i32 as _);
672 pub const CO_E_PATHTOOLONG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417803i32 as _);
673 pub const CO_E_PREMATURE_STUB_RUNDOWN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147467211i32 as _);
674 pub const CO_E_RELEASED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147220993i32 as _);
675 pub const CO_E_RELOAD_DLL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147467230i32 as _);
676 pub const CO_E_REMOTE_COMMUNICATION_FAILURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147467235i32 as _);
677 pub const CO_E_RUNAS_CREATEPROCESS_FAILURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147467239i32 as _);
678 pub const CO_E_RUNAS_LOGON_FAILURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147467238i32 as _);
679 pub const CO_E_RUNAS_SYNTAX: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147467241i32 as _);
680 pub const CO_E_RUNAS_VALUE_MUST_BE_AAA: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146959338i32 as _);
681 pub const CO_E_SCM_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146959358i32 as _);
682 pub const CO_E_SCM_RPC_FAILURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146959357i32 as _);
683 pub const CO_E_SERVER_EXEC_FAILURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146959355i32 as _);
684 pub const CO_E_SERVER_INIT_TIMEOUT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147467222i32 as _);
685 pub const CO_E_SERVER_NOT_PAUSED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147467226i32 as _);
686 pub const CO_E_SERVER_PAUSED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147467227i32 as _);
687 pub const CO_E_SERVER_START_TIMEOUT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147467234i32 as _);
688 pub const CO_E_SERVER_STOPPING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146959352i32 as _);
689 pub const CO_E_SETSERLHNDLFAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417805i32 as _);
690 pub const CO_E_START_SERVICE_FAILURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147467236i32 as _);
691 pub const CO_E_SXS_CONFIG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147467214i32 as _);
692 pub const CO_E_THREADINGMODEL_CHANGED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147164120i32 as _);
693 pub const CO_E_THREADPOOL_CONFIG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147467215i32 as _);
694 pub const CO_E_TRACKER_CONFIG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147467216i32 as _);
695 pub const CO_E_TRUSTEEDOESNTMATCHCLIENT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417817i32 as _);
696 pub const CO_E_UNREVOKED_REGISTRATION_ON_APARTMENT_SHUTDOWN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147467212i32 as _);
697 pub const CO_E_WRONGOSFORAPP: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147220998i32 as _);
698 pub const CO_E_WRONGTRUSTEENAMESYNTAX: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417812i32 as _);
699 pub const CO_E_WRONG_SERVER_IDENTITY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147467243i32 as _);
700 pub const CO_S_FIRST: i32 = 262640i32;
701 pub const CO_S_LAST: i32 = 262655i32;
702 pub const CO_S_MACHINENAMENOTFOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(524307i32 as _);
703 pub const CO_S_NOTALLINTERFACES: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(524306i32 as _);
704 pub const CRYPT_E_ALREADY_DECRYPTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146889719i32 as _);
705 pub const CRYPT_E_ASN1_BADARGS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881271i32 as _);
706 pub const CRYPT_E_ASN1_BADPDU: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881272i32 as _);
707 pub const CRYPT_E_ASN1_BADREAL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881270i32 as _);
708 pub const CRYPT_E_ASN1_BADTAG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881269i32 as _);
709 pub const CRYPT_E_ASN1_CHOICE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881268i32 as _);
710 pub const CRYPT_E_ASN1_CONSTRAINT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881275i32 as _);
711 pub const CRYPT_E_ASN1_CORRUPT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881277i32 as _);
712 pub const CRYPT_E_ASN1_EOD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881278i32 as _);
713 pub const CRYPT_E_ASN1_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881280i32 as _);
714 pub const CRYPT_E_ASN1_EXTENDED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881023i32 as _);
715 pub const CRYPT_E_ASN1_INTERNAL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881279i32 as _);
716 pub const CRYPT_E_ASN1_LARGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881276i32 as _);
717 pub const CRYPT_E_ASN1_MEMORY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881274i32 as _);
718 pub const CRYPT_E_ASN1_NOEOD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881022i32 as _);
719 pub const CRYPT_E_ASN1_NYI: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881228i32 as _);
720 pub const CRYPT_E_ASN1_OVERFLOW: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881273i32 as _);
721 pub const CRYPT_E_ASN1_PDU_TYPE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881229i32 as _);
722 pub const CRYPT_E_ASN1_RULE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881267i32 as _);
723 pub const CRYPT_E_ASN1_UTF8: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881266i32 as _);
724 pub const CRYPT_E_ATTRIBUTES_MISSING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146889713i32 as _);
725 pub const CRYPT_E_AUTH_ATTR_MISSING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146889722i32 as _);
726 pub const CRYPT_E_BAD_ENCODE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146885630i32 as _);
727 pub const CRYPT_E_BAD_LEN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146885631i32 as _);
728 pub const CRYPT_E_BAD_MSG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146885619i32 as _);
729 pub const CRYPT_E_CONTROL_TYPE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146889716i32 as _);
730 pub const CRYPT_E_DELETED_PREV: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146885624i32 as _);
731 pub const CRYPT_E_EXISTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146885627i32 as _);
732 pub const CRYPT_E_FILERESIZED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146885595i32 as _);
733 pub const CRYPT_E_FILE_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146885629i32 as _);
734 pub const CRYPT_E_HASH_VALUE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146889721i32 as _);
735 pub const CRYPT_E_INVALID_IA5_STRING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146885598i32 as _);
736 pub const CRYPT_E_INVALID_INDEX: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146889720i32 as _);
737 pub const CRYPT_E_INVALID_MSG_TYPE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146889724i32 as _);
738 pub const CRYPT_E_INVALID_NUMERIC_STRING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146885600i32 as _);
739 pub const CRYPT_E_INVALID_PRINTABLE_STRING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146885599i32 as _);
740 pub const CRYPT_E_INVALID_X500_STRING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146885597i32 as _);
741 pub const CRYPT_E_ISSUER_SERIALNUMBER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146889715i32 as _);
742 pub const CRYPT_E_MISSING_PUBKEY_PARA: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146885588i32 as _);
743 pub const CRYPT_E_MSG_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146889727i32 as _);
744 pub const CRYPT_E_NOT_CHAR_STRING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146885596i32 as _);
745 pub const CRYPT_E_NOT_DECRYPTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146889718i32 as _);
746 pub const CRYPT_E_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146885628i32 as _);
747 pub const CRYPT_E_NOT_IN_CTL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146885590i32 as _);
748 pub const CRYPT_E_NOT_IN_REVOCATION_DATABASE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146885612i32 as _);
749 pub const CRYPT_E_NO_DECRYPT_CERT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146885620i32 as _);
750 pub const CRYPT_E_NO_KEY_PROPERTY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146885621i32 as _);
751 pub const CRYPT_E_NO_MATCH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146885623i32 as _);
752 pub const CRYPT_E_NO_PROVIDER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146885626i32 as _);
753 pub const CRYPT_E_NO_REVOCATION_CHECK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146885614i32 as _);
754 pub const CRYPT_E_NO_REVOCATION_DLL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146885615i32 as _);
755 pub const CRYPT_E_NO_SIGNER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146885618i32 as _);
756 pub const CRYPT_E_NO_TRUSTED_SIGNER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146885589i32 as _);
757 pub const CRYPT_E_NO_VERIFY_USAGE_CHECK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146885592i32 as _);
758 pub const CRYPT_E_NO_VERIFY_USAGE_DLL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146885593i32 as _);
759 pub const CRYPT_E_OBJECT_LOCATOR_OBJECT_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146885587i32 as _);
760 pub const CRYPT_E_OID_FORMAT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146889725i32 as _);
761 pub const CRYPT_E_OSS_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881536i32 as _);
762 pub const CRYPT_E_PENDING_CLOSE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146885617i32 as _);
763 pub const CRYPT_E_RECIPIENT_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146889717i32 as _);
764 pub const CRYPT_E_REVOCATION_OFFLINE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146885613i32 as _);
765 pub const CRYPT_E_REVOKED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146885616i32 as _);
766 pub const CRYPT_E_SECURITY_SETTINGS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146885594i32 as _);
767 pub const CRYPT_E_SELF_SIGNED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146885625i32 as _);
768 pub const CRYPT_E_SIGNER_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146889714i32 as _);
769 pub const CRYPT_E_STREAM_INSUFFICIENT_DATA: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146889711i32 as _);
770 pub const CRYPT_E_STREAM_MSG_NOT_READY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146889712i32 as _);
771 pub const CRYPT_E_UNEXPECTED_ENCODING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146889723i32 as _);
772 pub const CRYPT_E_UNEXPECTED_MSG_TYPE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146885622i32 as _);
773 pub const CRYPT_E_UNKNOWN_ALGO: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146889726i32 as _);
774 pub const CRYPT_E_VERIFY_USAGE_OFFLINE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146885591i32 as _);
775 pub const CRYPT_I_NEW_PROTECTION_REQUIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(593938i32 as _);
776 pub const CS_E_ADMIN_LIMIT_EXCEEDED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221139i32 as _);
777 pub const CS_E_CLASS_NOTFOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221146i32 as _);
778 pub const CS_E_FIRST: i32 = -2147221148i32;
779 pub const CS_E_INTERNAL_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221137i32 as _);
780 pub const CS_E_INVALID_PATH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221141i32 as _);
781 pub const CS_E_INVALID_VERSION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221145i32 as _);
782 pub const CS_E_LAST: i32 = -2147221137i32;
783 pub const CS_E_NETWORK_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221140i32 as _);
784 pub const CS_E_NOT_DELETABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221147i32 as _);
785 pub const CS_E_NO_CLASSSTORE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221144i32 as _);
786 pub const CS_E_OBJECT_ALREADY_EXISTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221142i32 as _);
787 pub const CS_E_OBJECT_NOTFOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221143i32 as _);
788 pub const CS_E_PACKAGE_NOTFOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221148i32 as _);
789 pub const CS_E_SCHEMA_MISMATCH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221138i32 as _);
790 #[inline]
CloseHandle<'a, Param0: ::windows::runtime::IntoParam<'a, HANDLE>>(hobject: Param0) -> BOOL791 pub unsafe fn CloseHandle<'a, Param0: ::windows::runtime::IntoParam<'a, HANDLE>>(hobject: Param0) -> BOOL {
792     #[cfg(windows)]
793     {
794         #[link(name = "windows")]
795         extern "system" {
796             fn CloseHandle(hobject: HANDLE) -> BOOL;
797         }
798         ::std::mem::transmute(CloseHandle(hobject.into_param().abi()))
799     }
800     #[cfg(not(windows))]
801     unimplemented!("Unsupported target OS");
802 }
803 #[inline]
CompareObjectHandles<'a, Param0: ::windows::runtime::IntoParam<'a, HANDLE>, Param1: ::windows::runtime::IntoParam<'a, HANDLE>>(hfirstobjecthandle: Param0, hsecondobjecthandle: Param1) -> BOOL804 pub unsafe fn CompareObjectHandles<'a, Param0: ::windows::runtime::IntoParam<'a, HANDLE>, Param1: ::windows::runtime::IntoParam<'a, HANDLE>>(hfirstobjecthandle: Param0, hsecondobjecthandle: Param1) -> BOOL {
805     #[cfg(windows)]
806     {
807         #[link(name = "windows")]
808         extern "system" {
809             fn CompareObjectHandles(hfirstobjecthandle: HANDLE, hsecondobjecthandle: HANDLE) -> BOOL;
810         }
811         ::std::mem::transmute(CompareObjectHandles(hfirstobjecthandle.into_param().abi(), hsecondobjecthandle.into_param().abi()))
812     }
813     #[cfg(not(windows))]
814     unimplemented!("Unsupported target OS");
815 }
816 pub const D2DERR_BAD_NUMBER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003238895i32 as _);
817 pub const D2DERR_BITMAP_BOUND_AS_TARGET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003238875i32 as _);
818 pub const D2DERR_BITMAP_CANNOT_DRAW: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003238879i32 as _);
819 pub const D2DERR_CYCLIC_GRAPH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003238880i32 as _);
820 pub const D2DERR_DISPLAY_FORMAT_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003238903i32 as _);
821 pub const D2DERR_DISPLAY_STATE_INVALID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003238906i32 as _);
822 pub const D2DERR_EFFECT_IS_NOT_REGISTERED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003238872i32 as _);
823 pub const D2DERR_EXCEEDS_MAX_BITMAP_SIZE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003238883i32 as _);
824 pub const D2DERR_INCOMPATIBLE_BRUSH_TYPES: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003238888i32 as _);
825 pub const D2DERR_INSUFFICIENT_DEVICE_CAPABILITIES: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003238874i32 as _);
826 pub const D2DERR_INTERMEDIATE_TOO_LARGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003238873i32 as _);
827 pub const D2DERR_INTERNAL_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003238904i32 as _);
828 pub const D2DERR_INVALID_CALL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003238902i32 as _);
829 pub const D2DERR_INVALID_GLYPH_IMAGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003238866i32 as _);
830 pub const D2DERR_INVALID_GRAPH_CONFIGURATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003238882i32 as _);
831 pub const D2DERR_INVALID_INTERNAL_GRAPH_CONFIGURATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003238881i32 as _);
832 pub const D2DERR_INVALID_PROPERTY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003238871i32 as _);
833 pub const D2DERR_INVALID_TARGET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003238876i32 as _);
834 pub const D2DERR_LAYER_ALREADY_IN_USE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003238893i32 as _);
835 pub const D2DERR_MAX_TEXTURE_SIZE_EXCEEDED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003238897i32 as _);
836 pub const D2DERR_NOT_INITIALIZED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003238910i32 as _);
837 pub const D2DERR_NO_HARDWARE_DEVICE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003238901i32 as _);
838 pub const D2DERR_NO_SUBPROPERTIES: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003238870i32 as _);
839 pub const D2DERR_ORIGINAL_TARGET_NOT_BOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003238877i32 as _);
840 pub const D2DERR_OUTSTANDING_BITMAP_REFERENCES: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003238878i32 as _);
841 pub const D2DERR_POP_CALL_DID_NOT_MATCH_PUSH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003238892i32 as _);
842 pub const D2DERR_PRINT_FORMAT_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003238868i32 as _);
843 pub const D2DERR_PRINT_JOB_CLOSED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003238869i32 as _);
844 pub const D2DERR_PUSH_POP_UNBALANCED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003238890i32 as _);
845 pub const D2DERR_RECREATE_TARGET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003238900i32 as _);
846 pub const D2DERR_RENDER_TARGET_HAS_LAYER_OR_CLIPRECT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003238889i32 as _);
847 pub const D2DERR_SCANNER_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003238908i32 as _);
848 pub const D2DERR_SCREEN_ACCESS_DENIED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003238907i32 as _);
849 pub const D2DERR_SHADER_COMPILE_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003238898i32 as _);
850 pub const D2DERR_TARGET_NOT_GDI_COMPATIBLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003238886i32 as _);
851 pub const D2DERR_TEXT_EFFECT_IS_WRONG_TYPE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003238885i32 as _);
852 pub const D2DERR_TEXT_RENDERER_NOT_RELEASED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003238884i32 as _);
853 pub const D2DERR_TOO_MANY_SHADER_ELEMENTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003238899i32 as _);
854 pub const D2DERR_TOO_MANY_TRANSFORM_INPUTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003238867i32 as _);
855 pub const D2DERR_UNSUPPORTED_OPERATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003238909i32 as _);
856 pub const D2DERR_UNSUPPORTED_VERSION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003238896i32 as _);
857 pub const D2DERR_WIN32_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003238887i32 as _);
858 pub const D2DERR_WRONG_FACTORY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003238894i32 as _);
859 pub const D2DERR_WRONG_RESOURCE_DOMAIN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003238891i32 as _);
860 pub const D2DERR_WRONG_STATE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003238911i32 as _);
861 pub const D2DERR_ZERO_VECTOR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003238905i32 as _);
862 pub const D3D10_ERROR_FILE_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2005336062i32 as _);
863 pub const D3D10_ERROR_TOO_MANY_UNIQUE_STATE_OBJECTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2005336063i32 as _);
864 pub const D3D11_ERROR_DEFERRED_CONTEXT_MAP_WITHOUT_INITIAL_DISCARD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2005139452i32 as _);
865 pub const D3D11_ERROR_FILE_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2005139454i32 as _);
866 pub const D3D11_ERROR_TOO_MANY_UNIQUE_STATE_OBJECTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2005139455i32 as _);
867 pub const D3D11_ERROR_TOO_MANY_UNIQUE_VIEW_OBJECTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2005139453i32 as _);
868 pub const D3D12_ERROR_ADAPTER_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2005008383i32 as _);
869 pub const D3D12_ERROR_DRIVER_VERSION_MISMATCH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2005008382i32 as _);
870 pub const D3D12_ERROR_INVALID_REDIST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2005008381i32 as _);
871 pub const DATA_E_FIRST: i32 = -2147221200i32;
872 pub const DATA_E_LAST: i32 = -2147221185i32;
873 pub const DATA_S_FIRST: i32 = 262448i32;
874 pub const DATA_S_LAST: i32 = 262463i32;
875 pub const DATA_S_SAMEFORMATETC: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(262448i32 as _);
876 pub const DBG_APP_NOT_IDLE: NTSTATUS = NTSTATUS(-1073676286i32 as _);
877 pub const DBG_COMMAND_EXCEPTION: NTSTATUS = NTSTATUS(1073807369i32 as _);
878 pub const DBG_CONTINUE: NTSTATUS = NTSTATUS(65538i32 as _);
879 pub const DBG_CONTROL_BREAK: NTSTATUS = NTSTATUS(1073807368i32 as _);
880 pub const DBG_CONTROL_C: NTSTATUS = NTSTATUS(1073807365i32 as _);
881 pub const DBG_EXCEPTION_HANDLED: NTSTATUS = NTSTATUS(65537i32 as _);
882 pub const DBG_EXCEPTION_NOT_HANDLED: NTSTATUS = NTSTATUS(-2147418111i32 as _);
883 pub const DBG_NO_STATE_CHANGE: NTSTATUS = NTSTATUS(-1073676287i32 as _);
884 pub const DBG_PRINTEXCEPTION_C: NTSTATUS = NTSTATUS(1073807366i32 as _);
885 pub const DBG_PRINTEXCEPTION_WIDE_C: NTSTATUS = NTSTATUS(1073807370i32 as _);
886 pub const DBG_REPLY_LATER: NTSTATUS = NTSTATUS(1073807361i32 as _);
887 pub const DBG_RIPEXCEPTION: NTSTATUS = NTSTATUS(1073807367i32 as _);
888 pub const DBG_TERMINATE_PROCESS: NTSTATUS = NTSTATUS(1073807364i32 as _);
889 pub const DBG_TERMINATE_THREAD: NTSTATUS = NTSTATUS(1073807363i32 as _);
890 pub const DBG_UNABLE_TO_PROVIDE_HANDLE: NTSTATUS = NTSTATUS(1073807362i32 as _);
891 pub const DCOMPOSITION_ERROR_SURFACE_BEING_RENDERED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003302399i32 as _);
892 pub const DCOMPOSITION_ERROR_SURFACE_NOT_BEING_RENDERED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003302398i32 as _);
893 pub const DCOMPOSITION_ERROR_WINDOW_ALREADY_COMPOSED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003302400i32 as _);
894 #[derive(:: std :: clone :: Clone, :: std :: marker :: Copy)]
895 #[repr(C)]
896 pub struct DECIMAL {
897     pub wReserved: u16,
898     pub Anonymous1: DECIMAL_0,
899     pub Hi32: u32,
900     pub Anonymous2: DECIMAL_1,
901 }
902 impl DECIMAL {}
903 impl ::std::default::Default for DECIMAL {
default() -> Self904     fn default() -> Self {
905         unsafe { ::std::mem::zeroed() }
906     }
907 }
908 impl ::std::cmp::PartialEq for DECIMAL {
eq(&self, _other: &Self) -> bool909     fn eq(&self, _other: &Self) -> bool {
910         unimplemented!()
911     }
912 }
913 impl ::std::cmp::Eq for DECIMAL {}
914 unsafe impl ::windows::runtime::Abi for DECIMAL {
915     type Abi = Self;
916     type DefaultType = Self;
917 }
918 #[derive(:: std :: clone :: Clone, :: std :: marker :: Copy)]
919 #[repr(C)]
920 pub union DECIMAL_0 {
921     pub Anonymous: DECIMAL_0_0,
922     pub signscale: u16,
923 }
924 impl DECIMAL_0 {}
925 impl ::std::default::Default for DECIMAL_0 {
default() -> Self926     fn default() -> Self {
927         unsafe { ::std::mem::zeroed() }
928     }
929 }
930 impl ::std::cmp::PartialEq for DECIMAL_0 {
eq(&self, _other: &Self) -> bool931     fn eq(&self, _other: &Self) -> bool {
932         unimplemented!()
933     }
934 }
935 impl ::std::cmp::Eq for DECIMAL_0 {}
936 unsafe impl ::windows::runtime::Abi for DECIMAL_0 {
937     type Abi = Self;
938     type DefaultType = Self;
939 }
940 #[derive(:: std :: clone :: Clone, :: std :: marker :: Copy)]
941 #[repr(C)]
942 pub struct DECIMAL_0_0 {
943     pub scale: u8,
944     pub sign: u8,
945 }
946 impl DECIMAL_0_0 {}
947 impl ::std::default::Default for DECIMAL_0_0 {
default() -> Self948     fn default() -> Self {
949         unsafe { ::std::mem::zeroed() }
950     }
951 }
952 impl ::std::fmt::Debug for DECIMAL_0_0 {
fmt(&self, fmt: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result953     fn fmt(&self, fmt: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
954         fmt.debug_struct("_Anonymous_e__Struct").field("scale", &self.scale).field("sign", &self.sign).finish()
955     }
956 }
957 impl ::std::cmp::PartialEq for DECIMAL_0_0 {
eq(&self, other: &Self) -> bool958     fn eq(&self, other: &Self) -> bool {
959         self.scale == other.scale && self.sign == other.sign
960     }
961 }
962 impl ::std::cmp::Eq for DECIMAL_0_0 {}
963 unsafe impl ::windows::runtime::Abi for DECIMAL_0_0 {
964     type Abi = Self;
965     type DefaultType = Self;
966 }
967 #[derive(:: std :: clone :: Clone, :: std :: marker :: Copy)]
968 #[repr(C)]
969 pub union DECIMAL_1 {
970     pub Anonymous: DECIMAL_1_0,
971     pub Lo64: u64,
972 }
973 impl DECIMAL_1 {}
974 impl ::std::default::Default for DECIMAL_1 {
default() -> Self975     fn default() -> Self {
976         unsafe { ::std::mem::zeroed() }
977     }
978 }
979 impl ::std::cmp::PartialEq for DECIMAL_1 {
eq(&self, _other: &Self) -> bool980     fn eq(&self, _other: &Self) -> bool {
981         unimplemented!()
982     }
983 }
984 impl ::std::cmp::Eq for DECIMAL_1 {}
985 unsafe impl ::windows::runtime::Abi for DECIMAL_1 {
986     type Abi = Self;
987     type DefaultType = Self;
988 }
989 #[derive(:: std :: clone :: Clone, :: std :: marker :: Copy)]
990 #[repr(C)]
991 pub struct DECIMAL_1_0 {
992     pub Lo32: u32,
993     pub Mid32: u32,
994 }
995 impl DECIMAL_1_0 {}
996 impl ::std::default::Default for DECIMAL_1_0 {
default() -> Self997     fn default() -> Self {
998         unsafe { ::std::mem::zeroed() }
999     }
1000 }
1001 impl ::std::fmt::Debug for DECIMAL_1_0 {
fmt(&self, fmt: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result1002     fn fmt(&self, fmt: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
1003         fmt.debug_struct("_Anonymous_e__Struct").field("Lo32", &self.Lo32).field("Mid32", &self.Mid32).finish()
1004     }
1005 }
1006 impl ::std::cmp::PartialEq for DECIMAL_1_0 {
eq(&self, other: &Self) -> bool1007     fn eq(&self, other: &Self) -> bool {
1008         self.Lo32 == other.Lo32 && self.Mid32 == other.Mid32
1009     }
1010 }
1011 impl ::std::cmp::Eq for DECIMAL_1_0 {}
1012 unsafe impl ::windows::runtime::Abi for DECIMAL_1_0 {
1013     type Abi = Self;
1014     type DefaultType = Self;
1015 }
1016 pub const DIGSIG_E_CRYPTO: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146762744i32 as _);
1017 pub const DIGSIG_E_DECODE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146762746i32 as _);
1018 pub const DIGSIG_E_ENCODE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146762747i32 as _);
1019 pub const DIGSIG_E_EXTENSIBILITY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146762745i32 as _);
1020 pub const DISP_E_ARRAYISLOCKED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147352563i32 as _);
1021 pub const DISP_E_BADCALLEE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147352560i32 as _);
1022 pub const DISP_E_BADINDEX: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147352565i32 as _);
1023 pub const DISP_E_BADPARAMCOUNT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147352562i32 as _);
1024 pub const DISP_E_BADVARTYPE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147352568i32 as _);
1025 pub const DISP_E_BUFFERTOOSMALL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147352557i32 as _);
1026 pub const DISP_E_DIVBYZERO: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147352558i32 as _);
1027 pub const DISP_E_EXCEPTION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147352567i32 as _);
1028 pub const DISP_E_MEMBERNOTFOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147352573i32 as _);
1029 pub const DISP_E_NONAMEDARGS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147352569i32 as _);
1030 pub const DISP_E_NOTACOLLECTION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147352559i32 as _);
1031 pub const DISP_E_OVERFLOW: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147352566i32 as _);
1032 pub const DISP_E_PARAMNOTFOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147352572i32 as _);
1033 pub const DISP_E_PARAMNOTOPTIONAL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147352561i32 as _);
1034 pub const DISP_E_TYPEMISMATCH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147352571i32 as _);
1035 pub const DISP_E_UNKNOWNINTERFACE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147352575i32 as _);
1036 pub const DISP_E_UNKNOWNLCID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147352564i32 as _);
1037 pub const DISP_E_UNKNOWNNAME: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147352570i32 as _);
1038 pub const DM_COPY: u32 = 2u32;
1039 pub const DM_IN_BUFFER: u32 = 8u32;
1040 pub const DM_IN_PROMPT: u32 = 4u32;
1041 pub const DM_MODIFY: u32 = 8u32;
1042 pub const DM_OUT_BUFFER: u32 = 2u32;
1043 pub const DM_OUT_DEFAULT: u32 = 1u32;
1044 pub const DM_PROMPT: u32 = 4u32;
1045 pub const DM_UPDATE: u32 = 1u32;
1046 pub const DNS_INFO_ADDED_LOCAL_WINS: i32 = 9753i32;
1047 pub const DNS_INFO_AXFR_COMPLETE: i32 = 9751i32;
1048 pub const DNS_INFO_NO_RECORDS: i32 = 9501i32;
1049 pub const DNS_REQUEST_PENDING: i32 = 9506i32;
1050 pub const DNS_STATUS_CONTINUE_NEEDED: i32 = 9801i32;
1051 pub const DNS_STATUS_DOTTED_NAME: i32 = 9558i32;
1052 pub const DNS_STATUS_FQDN: i32 = 9557i32;
1053 pub const DNS_STATUS_SINGLE_PART_NAME: i32 = 9559i32;
1054 pub const DNS_WARNING_DOMAIN_UNDELETED: i32 = 9716i32;
1055 pub const DNS_WARNING_PTR_CREATE_FAILED: i32 = 9715i32;
1056 pub const DRAGDROP_E_ALREADYREGISTERED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221247i32 as _);
1057 pub const DRAGDROP_E_CONCURRENT_DRAG_ATTEMPTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221245i32 as _);
1058 pub const DRAGDROP_E_FIRST: i32 = -2147221248i32;
1059 pub const DRAGDROP_E_INVALIDHWND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221246i32 as _);
1060 pub const DRAGDROP_E_LAST: i32 = -2147221233i32;
1061 pub const DRAGDROP_E_NOTREGISTERED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221248i32 as _);
1062 pub const DRAGDROP_S_CANCEL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(262401i32 as _);
1063 pub const DRAGDROP_S_DROP: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(262400i32 as _);
1064 pub const DRAGDROP_S_FIRST: i32 = 262400i32;
1065 pub const DRAGDROP_S_LAST: i32 = 262415i32;
1066 pub const DRAGDROP_S_USEDEFAULTCURSORS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(262402i32 as _);
1067 #[derive(:: std :: cmp :: PartialEq, :: std :: cmp :: Eq, :: std :: marker :: Copy, :: std :: clone :: Clone, :: std :: default :: Default, :: std :: fmt :: Debug)]
1068 #[repr(transparent)]
1069 pub struct DUPLICATE_HANDLE_OPTIONS(pub u32);
1070 pub const DUPLICATE_CLOSE_SOURCE: DUPLICATE_HANDLE_OPTIONS = DUPLICATE_HANDLE_OPTIONS(1u32);
1071 pub const DUPLICATE_SAME_ACCESS: DUPLICATE_HANDLE_OPTIONS = DUPLICATE_HANDLE_OPTIONS(2u32);
1072 impl ::std::convert::From<u32> for DUPLICATE_HANDLE_OPTIONS {
from(value: u32) -> Self1073     fn from(value: u32) -> Self {
1074         Self(value)
1075     }
1076 }
1077 unsafe impl ::windows::runtime::Abi for DUPLICATE_HANDLE_OPTIONS {
1078     type Abi = Self;
1079     type DefaultType = Self;
1080 }
1081 impl ::std::ops::BitOr for DUPLICATE_HANDLE_OPTIONS {
1082     type Output = Self;
bitor(self, rhs: Self) -> Self1083     fn bitor(self, rhs: Self) -> Self {
1084         Self(self.0 | rhs.0)
1085     }
1086 }
1087 impl ::std::ops::BitAnd for DUPLICATE_HANDLE_OPTIONS {
1088     type Output = Self;
bitand(self, rhs: Self) -> Self1089     fn bitand(self, rhs: Self) -> Self {
1090         Self(self.0 & rhs.0)
1091     }
1092 }
1093 impl ::std::ops::BitOrAssign for DUPLICATE_HANDLE_OPTIONS {
bitor_assign(&mut self, rhs: Self)1094     fn bitor_assign(&mut self, rhs: Self) {
1095         self.0.bitor_assign(rhs.0)
1096     }
1097 }
1098 impl ::std::ops::BitAndAssign for DUPLICATE_HANDLE_OPTIONS {
bitand_assign(&mut self, rhs: Self)1099     fn bitand_assign(&mut self, rhs: Self) {
1100         self.0.bitand_assign(rhs.0)
1101     }
1102 }
1103 impl ::std::ops::Not for DUPLICATE_HANDLE_OPTIONS {
1104     type Output = Self;
not(self) -> Self1105     fn not(self) -> Self {
1106         Self(self.0.not())
1107     }
1108 }
1109 pub const DV_E_CLIPFORMAT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221398i32 as _);
1110 pub const DV_E_DVASPECT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221397i32 as _);
1111 pub const DV_E_DVTARGETDEVICE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221403i32 as _);
1112 pub const DV_E_DVTARGETDEVICE_SIZE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221396i32 as _);
1113 pub const DV_E_FORMATETC: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221404i32 as _);
1114 pub const DV_E_LINDEX: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221400i32 as _);
1115 pub const DV_E_NOIVIEWOBJECT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221395i32 as _);
1116 pub const DV_E_STATDATA: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221401i32 as _);
1117 pub const DV_E_STGMEDIUM: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221402i32 as _);
1118 pub const DV_E_TYMED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221399i32 as _);
1119 pub const DWMERR_CATASTROPHIC_FAILURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003302654i32 as _);
1120 pub const DWMERR_STATE_TRANSITION_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003302656i32 as _);
1121 pub const DWMERR_THEME_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003302655i32 as _);
1122 pub const DWM_E_ADAPTER_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144980987i32 as _);
1123 pub const DWM_E_COMPOSITIONDISABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144980991i32 as _);
1124 pub const DWM_E_NOT_QUEUING_PRESENTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144980988i32 as _);
1125 pub const DWM_E_NO_REDIRECTION_SURFACE_AVAILABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144980989i32 as _);
1126 pub const DWM_E_REMOTING_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144980990i32 as _);
1127 pub const DWM_E_TEXTURE_TOO_LARGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144980985i32 as _);
1128 pub const DWM_S_GDI_REDIRECTION_SURFACE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(2502661i32 as _);
1129 pub const DWM_S_GDI_REDIRECTION_SURFACE_BLT_VIA_GDI: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(2502664i32 as _);
1130 pub const DWRITE_E_ALREADYREGISTERED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003283962i32 as _);
1131 pub const DWRITE_E_CACHEFORMAT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003283961i32 as _);
1132 pub const DWRITE_E_CACHEVERSION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003283960i32 as _);
1133 pub const DWRITE_E_FILEACCESS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003283964i32 as _);
1134 pub const DWRITE_E_FILEFORMAT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003283968i32 as _);
1135 pub const DWRITE_E_FILENOTFOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003283965i32 as _);
1136 pub const DWRITE_E_FLOWDIRECTIONCONFLICTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003283957i32 as _);
1137 pub const DWRITE_E_FONTCOLLECTIONOBSOLETE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003283963i32 as _);
1138 pub const DWRITE_E_NOCOLOR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003283956i32 as _);
1139 pub const DWRITE_E_NOFONT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003283966i32 as _);
1140 pub const DWRITE_E_TEXTRENDERERINCOMPATIBLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003283958i32 as _);
1141 pub const DWRITE_E_UNEXPECTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003283967i32 as _);
1142 pub const DWRITE_E_UNSUPPORTEDOPERATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003283959i32 as _);
1143 pub const DXCORE_ERROR_EVENT_NOT_UNREGISTERED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2004877311i32 as _);
1144 pub const DXGI_DDI_ERR_NONEXCLUSIVE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2005204989i32 as _);
1145 pub const DXGI_DDI_ERR_UNSUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2005204990i32 as _);
1146 pub const DXGI_DDI_ERR_WASSTILLDRAWING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2005204991i32 as _);
1147 pub const DXGI_STATUS_CLIPPED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(142213122i32 as _);
1148 pub const DXGI_STATUS_DDA_WAS_STILL_DRAWING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(142213130i32 as _);
1149 pub const DXGI_STATUS_GRAPHICS_VIDPN_SOURCE_IN_USE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(142213126i32 as _);
1150 pub const DXGI_STATUS_MODE_CHANGED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(142213127i32 as _);
1151 pub const DXGI_STATUS_MODE_CHANGE_IN_PROGRESS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(142213128i32 as _);
1152 pub const DXGI_STATUS_NO_DESKTOP_ACCESS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(142213125i32 as _);
1153 pub const DXGI_STATUS_NO_REDIRECTION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(142213124i32 as _);
1154 pub const DXGI_STATUS_OCCLUDED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(142213121i32 as _);
1155 pub const DXGI_STATUS_PRESENT_REQUIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(142213167i32 as _);
1156 pub const DXGI_STATUS_UNOCCLUDED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(142213129i32 as _);
1157 #[inline]
DuplicateHandle<'a, Param0: ::windows::runtime::IntoParam<'a, HANDLE>, Param1: ::windows::runtime::IntoParam<'a, HANDLE>, Param2: ::windows::runtime::IntoParam<'a, HANDLE>, Param5: ::windows::runtime::IntoParam<'a, BOOL>>(hsourceprocesshandle: Param0, hsourcehandle: Param1, htargetprocesshandle: Param2, lptargethandle: *mut HANDLE, dwdesiredaccess: u32, binherithandle: Param5, dwoptions: DUPLICATE_HANDLE_OPTIONS) -> BOOL1158 pub unsafe fn DuplicateHandle<'a, Param0: ::windows::runtime::IntoParam<'a, HANDLE>, Param1: ::windows::runtime::IntoParam<'a, HANDLE>, Param2: ::windows::runtime::IntoParam<'a, HANDLE>, Param5: ::windows::runtime::IntoParam<'a, BOOL>>(hsourceprocesshandle: Param0, hsourcehandle: Param1, htargetprocesshandle: Param2, lptargethandle: *mut HANDLE, dwdesiredaccess: u32, binherithandle: Param5, dwoptions: DUPLICATE_HANDLE_OPTIONS) -> BOOL {
1159     #[cfg(windows)]
1160     {
1161         #[link(name = "windows")]
1162         extern "system" {
1163             fn DuplicateHandle(hsourceprocesshandle: HANDLE, hsourcehandle: HANDLE, htargetprocesshandle: HANDLE, lptargethandle: *mut HANDLE, dwdesiredaccess: u32, binherithandle: BOOL, dwoptions: DUPLICATE_HANDLE_OPTIONS) -> BOOL;
1164         }
1165         ::std::mem::transmute(DuplicateHandle(hsourceprocesshandle.into_param().abi(), hsourcehandle.into_param().abi(), htargetprocesshandle.into_param().abi(), ::std::mem::transmute(lptargethandle), ::std::mem::transmute(dwdesiredaccess), binherithandle.into_param().abi(), ::std::mem::transmute(dwoptions)))
1166     }
1167     #[cfg(not(windows))]
1168     unimplemented!("Unsupported target OS");
1169 }
1170 pub const EAS_E_ADMINS_CANNOT_CHANGE_PASSWORD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2141913080i32 as _);
1171 pub const EAS_E_ADMINS_HAVE_BLANK_PASSWORD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2141913081i32 as _);
1172 pub const EAS_E_CONNECTED_ADMINS_NEED_TO_CHANGE_PASSWORD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2141913077i32 as _);
1173 pub const EAS_E_CURRENT_CONNECTED_USER_NEED_TO_CHANGE_PASSWORD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2141913075i32 as _);
1174 pub const EAS_E_CURRENT_USER_HAS_BLANK_PASSWORD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2141913084i32 as _);
1175 pub const EAS_E_LOCAL_CONTROLLED_USERS_CANNOT_CHANGE_PASSWORD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2141913079i32 as _);
1176 pub const EAS_E_PASSWORD_POLICY_NOT_ENFORCEABLE_FOR_CONNECTED_ADMINS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2141913078i32 as _);
1177 pub const EAS_E_PASSWORD_POLICY_NOT_ENFORCEABLE_FOR_CURRENT_CONNECTED_USER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2141913076i32 as _);
1178 pub const EAS_E_POLICY_COMPLIANT_WITH_ACTIONS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2141913086i32 as _);
1179 pub const EAS_E_POLICY_NOT_MANAGED_BY_OS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2141913087i32 as _);
1180 pub const EAS_E_REQUESTED_POLICY_NOT_ENFORCEABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2141913085i32 as _);
1181 pub const EAS_E_REQUESTED_POLICY_PASSWORD_EXPIRATION_INCOMPATIBLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2141913083i32 as _);
1182 pub const EAS_E_USER_CANNOT_CHANGE_PASSWORD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2141913082i32 as _);
1183 pub const ENUM_E_FIRST: i32 = -2147221072i32;
1184 pub const ENUM_E_LAST: i32 = -2147221057i32;
1185 pub const ENUM_S_FIRST: i32 = 262576i32;
1186 pub const ENUM_S_LAST: i32 = 262591i32;
1187 pub const EPT_NT_CANT_CREATE: NTSTATUS = NTSTATUS(-1073610676i32 as _);
1188 pub const EPT_NT_CANT_PERFORM_OP: NTSTATUS = NTSTATUS(-1073610699i32 as _);
1189 pub const EPT_NT_INVALID_ENTRY: NTSTATUS = NTSTATUS(-1073610700i32 as _);
1190 pub const EPT_NT_NOT_REGISTERED: NTSTATUS = NTSTATUS(-1073610698i32 as _);
1191 pub const ERROR_ALLOWED_PORT_TYPE_RESTRICTION: u32 = 941u32;
1192 pub const ERROR_ALL_SIDS_FILTERED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1073151998i32 as _);
1193 pub const ERROR_ALREADY_CONNECTED: u32 = 901u32;
1194 pub const ERROR_ALREADY_CONNECTING: u32 = 910u32;
1195 pub const ERROR_ATTRIBUTE_NOT_PRESENT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2138898422i32 as _);
1196 pub const ERROR_AUDITING_DISABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1073151999i32 as _);
1197 pub const ERROR_AUTHENTICATOR_MISMATCH: u32 = 955u32;
1198 pub const ERROR_AUTH_PROTOCOL_REJECTED: u32 = 917u32;
1199 pub const ERROR_AUTH_PROTOCOL_RESTRICTION: u32 = 942u32;
1200 pub const ERROR_AUTH_SERVER_TIMEOUT: u32 = 930u32;
1201 pub const ERROR_BAP_DISCONNECTED: u32 = 936u32;
1202 pub const ERROR_BAP_REQUIRED: u32 = 943u32;
1203 pub const ERROR_BIZRULES_NOT_ENABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1073151997i32 as _);
1204 pub const ERROR_CLIENT_INTERFACE_ALREADY_EXISTS: u32 = 915u32;
1205 pub const ERROR_CLIP_DEVICE_LICENSE_MISSING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1058406397i32 as _);
1206 pub const ERROR_CLIP_KEYHOLDER_LICENSE_MISSING_OR_INVALID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1058406395i32 as _);
1207 pub const ERROR_CLIP_LICENSE_DEVICE_ID_MISMATCH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1058406390i32 as _);
1208 pub const ERROR_CLIP_LICENSE_EXPIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1058406394i32 as _);
1209 pub const ERROR_CLIP_LICENSE_HARDWARE_ID_OUT_OF_TOLERANCE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1058406391i32 as _);
1210 pub const ERROR_CLIP_LICENSE_INVALID_SIGNATURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1058406396i32 as _);
1211 pub const ERROR_CLIP_LICENSE_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1058406398i32 as _);
1212 pub const ERROR_CLIP_LICENSE_NOT_SIGNED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1058406392i32 as _);
1213 pub const ERROR_CLIP_LICENSE_SIGNED_BY_UNKNOWN_SOURCE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1058406393i32 as _);
1214 pub const ERROR_CRED_REQUIRES_CONFIRMATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146865127i32 as _);
1215 pub const ERROR_DBG_ATTACH_PROCESS_FAILURE_LOCKDOWN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2135949310i32 as _);
1216 pub const ERROR_DBG_CONNECT_SERVER_FAILURE_LOCKDOWN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2135949309i32 as _);
1217 pub const ERROR_DBG_CREATE_PROCESS_FAILURE_LOCKDOWN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2135949311i32 as _);
1218 pub const ERROR_DBG_START_SERVER_FAILURE_LOCKDOWN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2135949308i32 as _);
1219 pub const ERROR_DDM_NOT_RUNNING: u32 = 903u32;
1220 pub const ERROR_DIALIN_HOURS_RESTRICTION: u32 = 940u32;
1221 pub const ERROR_DIALOUT_HOURS_RESTRICTION: u32 = 944u32;
1222 pub const ERROR_FLT_ALREADY_ENLISTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145452005i32 as _);
1223 pub const ERROR_FLT_CBDQ_DISABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145452018i32 as _);
1224 pub const ERROR_FLT_CONTEXT_ALLOCATION_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145452010i32 as _);
1225 pub const ERROR_FLT_CONTEXT_ALREADY_DEFINED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145452030i32 as _);
1226 pub const ERROR_FLT_CONTEXT_ALREADY_LINKED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145452004i32 as _);
1227 pub const ERROR_FLT_DELETING_OBJECT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145452021i32 as _);
1228 pub const ERROR_FLT_DISALLOW_FAST_IO: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145452028i32 as _);
1229 pub const ERROR_FLT_DO_NOT_ATTACH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145452017i32 as _);
1230 pub const ERROR_FLT_DO_NOT_DETACH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145452016i32 as _);
1231 pub const ERROR_FLT_DUPLICATE_ENTRY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145452019i32 as _);
1232 pub const ERROR_FLT_FILTER_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145452013i32 as _);
1233 pub const ERROR_FLT_FILTER_NOT_READY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145452024i32 as _);
1234 pub const ERROR_FLT_INSTANCE_ALTITUDE_COLLISION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145452015i32 as _);
1235 pub const ERROR_FLT_INSTANCE_NAME_COLLISION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145452014i32 as _);
1236 pub const ERROR_FLT_INSTANCE_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145452011i32 as _);
1237 pub const ERROR_FLT_INTERNAL_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145452022i32 as _);
1238 pub const ERROR_FLT_INVALID_ASYNCHRONOUS_REQUEST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145452029i32 as _);
1239 pub const ERROR_FLT_INVALID_CONTEXT_REGISTRATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145452009i32 as _);
1240 pub const ERROR_FLT_INVALID_NAME_REQUEST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145452027i32 as _);
1241 pub const ERROR_FLT_IO_COMPLETE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(2031617i32 as _);
1242 pub const ERROR_FLT_MUST_BE_NONPAGED_POOL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145452020i32 as _);
1243 pub const ERROR_FLT_NAME_CACHE_MISS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145452008i32 as _);
1244 pub const ERROR_FLT_NOT_INITIALIZED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145452025i32 as _);
1245 pub const ERROR_FLT_NOT_SAFE_TO_POST_OPERATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145452026i32 as _);
1246 pub const ERROR_FLT_NO_DEVICE_OBJECT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145452007i32 as _);
1247 pub const ERROR_FLT_NO_HANDLER_DEFINED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145452031i32 as _);
1248 pub const ERROR_FLT_NO_WAITER_FOR_REPLY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145452000i32 as _);
1249 pub const ERROR_FLT_POST_OPERATION_CLEANUP: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145452023i32 as _);
1250 pub const ERROR_FLT_REGISTRATION_BUSY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145451997i32 as _);
1251 pub const ERROR_FLT_VOLUME_ALREADY_MOUNTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145452006i32 as _);
1252 pub const ERROR_FLT_VOLUME_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145452012i32 as _);
1253 pub const ERROR_FLT_WCOS_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145451996i32 as _);
1254 pub const ERROR_GRAPHICS_ADAPTER_ACCESS_NOT_EXCLUDED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242181i32 as _);
1255 pub const ERROR_GRAPHICS_ADAPTER_CHAIN_NOT_READY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242189i32 as _);
1256 pub const ERROR_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_SOURCE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242456i32 as _);
1257 pub const ERROR_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_TARGET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242455i32 as _);
1258 pub const ERROR_GRAPHICS_ADAPTER_WAS_RESET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071243261i32 as _);
1259 pub const ERROR_GRAPHICS_ALLOCATION_BUSY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071243006i32 as _);
1260 pub const ERROR_GRAPHICS_ALLOCATION_CLOSED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242990i32 as _);
1261 pub const ERROR_GRAPHICS_ALLOCATION_CONTENT_LOST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242986i32 as _);
1262 pub const ERROR_GRAPHICS_ALLOCATION_INVALID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071243002i32 as _);
1263 pub const ERROR_GRAPHICS_CANCEL_VIDPN_TOPOLOGY_AUGMENTATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242406i32 as _);
1264 pub const ERROR_GRAPHICS_CANNOTCOLORCONVERT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071243256i32 as _);
1265 pub const ERROR_GRAPHICS_CANT_ACCESS_ACTIVE_VIDPN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242429i32 as _);
1266 pub const ERROR_GRAPHICS_CANT_EVICT_PINNED_ALLOCATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242999i32 as _);
1267 pub const ERROR_GRAPHICS_CANT_LOCK_MEMORY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071243007i32 as _);
1268 pub const ERROR_GRAPHICS_CANT_RENDER_LOCKED_ALLOCATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242991i32 as _);
1269 pub const ERROR_GRAPHICS_CHAINLINKS_NOT_ENUMERATED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242190i32 as _);
1270 pub const ERROR_GRAPHICS_CHAINLINKS_NOT_POWERED_ON: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242187i32 as _);
1271 pub const ERROR_GRAPHICS_CHAINLINKS_NOT_STARTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242188i32 as _);
1272 pub const ERROR_GRAPHICS_CHILD_DESCRIPTOR_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242239i32 as _);
1273 pub const ERROR_GRAPHICS_CLIENTVIDPN_NOT_SET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242404i32 as _);
1274 pub const ERROR_GRAPHICS_COPP_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241983i32 as _);
1275 pub const ERROR_GRAPHICS_DATASET_IS_EMPTY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(2499403i32 as _);
1276 pub const ERROR_GRAPHICS_DDCCI_CURRENT_CURRENT_VALUE_GREATER_THAN_MAXIMUM_VALUE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241768i32 as _);
1277 pub const ERROR_GRAPHICS_DDCCI_INVALID_DATA: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241851i32 as _);
1278 pub const ERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_CHECKSUM: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241845i32 as _);
1279 pub const ERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_COMMAND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241847i32 as _);
1280 pub const ERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_LENGTH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241846i32 as _);
1281 pub const ERROR_GRAPHICS_DDCCI_MONITOR_RETURNED_INVALID_TIMING_STATUS_BYTE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241850i32 as _);
1282 pub const ERROR_GRAPHICS_DDCCI_VCP_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241852i32 as _);
1283 pub const ERROR_GRAPHICS_DEPENDABLE_CHILD_STATUS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(1076241468i32 as _);
1284 pub const ERROR_GRAPHICS_DISPLAY_DEVICE_NOT_ATTACHED_TO_DESKTOP: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241758i32 as _);
1285 pub const ERROR_GRAPHICS_DRIVER_MISMATCH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071243255i32 as _);
1286 pub const ERROR_GRAPHICS_EMPTY_ADAPTER_MONITOR_MODE_SUPPORT_INTERSECTION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242459i32 as _);
1287 pub const ERROR_GRAPHICS_FREQUENCYRANGE_ALREADY_IN_SET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242465i32 as _);
1288 pub const ERROR_GRAPHICS_FREQUENCYRANGE_NOT_IN_SET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242467i32 as _);
1289 pub const ERROR_GRAPHICS_GAMMA_RAMP_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242424i32 as _);
1290 pub const ERROR_GRAPHICS_GPU_EXCEPTION_ON_DEVICE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242752i32 as _);
1291 pub const ERROR_GRAPHICS_I2C_DEVICE_DOES_NOT_EXIST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241855i32 as _);
1292 pub const ERROR_GRAPHICS_I2C_ERROR_RECEIVING_DATA: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241853i32 as _);
1293 pub const ERROR_GRAPHICS_I2C_ERROR_TRANSMITTING_DATA: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241854i32 as _);
1294 pub const ERROR_GRAPHICS_I2C_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241856i32 as _);
1295 pub const ERROR_GRAPHICS_INCOMPATIBLE_PRIVATE_FORMAT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242411i32 as _);
1296 pub const ERROR_GRAPHICS_INCONSISTENT_DEVICE_LINK_STATE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242186i32 as _);
1297 pub const ERROR_GRAPHICS_INDIRECT_DISPLAY_ABANDON_SWAPCHAIN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071243246i32 as _);
1298 pub const ERROR_GRAPHICS_INDIRECT_DISPLAY_DEVICE_STOPPED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071243245i32 as _);
1299 pub const ERROR_GRAPHICS_INSUFFICIENT_DMA_BUFFER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071243263i32 as _);
1300 pub const ERROR_GRAPHICS_INTERNAL_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241753i32 as _);
1301 pub const ERROR_GRAPHICS_INVALID_ACTIVE_REGION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242485i32 as _);
1302 pub const ERROR_GRAPHICS_INVALID_ALLOCATION_HANDLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242988i32 as _);
1303 pub const ERROR_GRAPHICS_INVALID_ALLOCATION_INSTANCE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242989i32 as _);
1304 pub const ERROR_GRAPHICS_INVALID_ALLOCATION_USAGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242992i32 as _);
1305 pub const ERROR_GRAPHICS_INVALID_CLIENT_TYPE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242405i32 as _);
1306 pub const ERROR_GRAPHICS_INVALID_COLORBASIS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242434i32 as _);
1307 pub const ERROR_GRAPHICS_INVALID_COPYPROTECTION_TYPE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242417i32 as _);
1308 pub const ERROR_GRAPHICS_INVALID_DISPLAY_ADAPTER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071243262i32 as _);
1309 pub const ERROR_GRAPHICS_INVALID_DRIVER_MODEL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071243260i32 as _);
1310 pub const ERROR_GRAPHICS_INVALID_FREQUENCY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242486i32 as _);
1311 pub const ERROR_GRAPHICS_INVALID_GAMMA_RAMP: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242425i32 as _);
1312 pub const ERROR_GRAPHICS_INVALID_MODE_PRUNING_ALGORITHM: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242410i32 as _);
1313 pub const ERROR_GRAPHICS_INVALID_MONITORDESCRIPTOR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242453i32 as _);
1314 pub const ERROR_GRAPHICS_INVALID_MONITORDESCRIPTORSET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242454i32 as _);
1315 pub const ERROR_GRAPHICS_INVALID_MONITOR_CAPABILITY_ORIGIN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242409i32 as _);
1316 pub const ERROR_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242468i32 as _);
1317 pub const ERROR_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGESET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242469i32 as _);
1318 pub const ERROR_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE_CONSTRAINT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242408i32 as _);
1319 pub const ERROR_GRAPHICS_INVALID_MONITOR_SOURCEMODESET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242463i32 as _);
1320 pub const ERROR_GRAPHICS_INVALID_MONITOR_SOURCE_MODE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242462i32 as _);
1321 pub const ERROR_GRAPHICS_INVALID_PATH_CONTENT_GEOMETRY_TRANSFORMATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242427i32 as _);
1322 pub const ERROR_GRAPHICS_INVALID_PATH_CONTENT_TYPE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242418i32 as _);
1323 pub const ERROR_GRAPHICS_INVALID_PATH_IMPORTANCE_ORDINAL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242428i32 as _);
1324 pub const ERROR_GRAPHICS_INVALID_PHYSICAL_MONITOR_HANDLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241844i32 as _);
1325 pub const ERROR_GRAPHICS_INVALID_PIXELFORMAT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242435i32 as _);
1326 pub const ERROR_GRAPHICS_INVALID_PIXELVALUEACCESSMODE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242433i32 as _);
1327 pub const ERROR_GRAPHICS_INVALID_POINTER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241756i32 as _);
1328 pub const ERROR_GRAPHICS_INVALID_PRIMARYSURFACE_SIZE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242438i32 as _);
1329 pub const ERROR_GRAPHICS_INVALID_SCANLINE_ORDERING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242414i32 as _);
1330 pub const ERROR_GRAPHICS_INVALID_STRIDE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242436i32 as _);
1331 pub const ERROR_GRAPHICS_INVALID_TOTAL_REGION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242484i32 as _);
1332 pub const ERROR_GRAPHICS_INVALID_VIDEOPRESENTSOURCESET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242475i32 as _);
1333 pub const ERROR_GRAPHICS_INVALID_VIDEOPRESENTTARGETSET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242474i32 as _);
1334 pub const ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242492i32 as _);
1335 pub const ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE_MODE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242480i32 as _);
1336 pub const ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242491i32 as _);
1337 pub const ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET_MODE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242479i32 as _);
1338 pub const ERROR_GRAPHICS_INVALID_VIDPN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242493i32 as _);
1339 pub const ERROR_GRAPHICS_INVALID_VIDPN_PRESENT_PATH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242471i32 as _);
1340 pub const ERROR_GRAPHICS_INVALID_VIDPN_SOURCEMODESET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242488i32 as _);
1341 pub const ERROR_GRAPHICS_INVALID_VIDPN_TARGETMODESET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242487i32 as _);
1342 pub const ERROR_GRAPHICS_INVALID_VIDPN_TARGET_SUBSET_TYPE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242449i32 as _);
1343 pub const ERROR_GRAPHICS_INVALID_VIDPN_TOPOLOGY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242496i32 as _);
1344 pub const ERROR_GRAPHICS_INVALID_VIDPN_TOPOLOGY_RECOMMENDATION_REASON: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242419i32 as _);
1345 pub const ERROR_GRAPHICS_INVALID_VISIBLEREGION_SIZE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242437i32 as _);
1346 pub const ERROR_GRAPHICS_LEADLINK_NOT_ENUMERATED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242191i32 as _);
1347 pub const ERROR_GRAPHICS_LEADLINK_START_DEFERRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(1076241463i32 as _);
1348 pub const ERROR_GRAPHICS_MAX_NUM_PATHS_REACHED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242407i32 as _);
1349 pub const ERROR_GRAPHICS_MCA_INTERNAL_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241848i32 as _);
1350 pub const ERROR_GRAPHICS_MCA_INVALID_CAPABILITIES_STRING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241849i32 as _);
1351 pub const ERROR_GRAPHICS_MCA_INVALID_TECHNOLOGY_TYPE_RETURNED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241762i32 as _);
1352 pub const ERROR_GRAPHICS_MCA_INVALID_VCP_VERSION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241767i32 as _);
1353 pub const ERROR_GRAPHICS_MCA_MCCS_VERSION_MISMATCH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241765i32 as _);
1354 pub const ERROR_GRAPHICS_MCA_MONITOR_VIOLATES_MCCS_SPECIFICATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241766i32 as _);
1355 pub const ERROR_GRAPHICS_MCA_UNSUPPORTED_COLOR_TEMPERATURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241761i32 as _);
1356 pub const ERROR_GRAPHICS_MCA_UNSUPPORTED_MCCS_VERSION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241764i32 as _);
1357 pub const ERROR_GRAPHICS_MIRRORING_DEVICES_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241757i32 as _);
1358 pub const ERROR_GRAPHICS_MODE_ALREADY_IN_MODESET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242476i32 as _);
1359 pub const ERROR_GRAPHICS_MODE_ID_MUST_BE_UNIQUE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242460i32 as _);
1360 pub const ERROR_GRAPHICS_MODE_NOT_IN_MODESET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242422i32 as _);
1361 pub const ERROR_GRAPHICS_MODE_NOT_PINNED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(2499335i32 as _);
1362 pub const ERROR_GRAPHICS_MONITORDESCRIPTOR_ALREADY_IN_SET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242451i32 as _);
1363 pub const ERROR_GRAPHICS_MONITORDESCRIPTOR_ID_MUST_BE_UNIQUE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242450i32 as _);
1364 pub const ERROR_GRAPHICS_MONITORDESCRIPTOR_NOT_IN_SET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242452i32 as _);
1365 pub const ERROR_GRAPHICS_MONITOR_COULD_NOT_BE_ASSOCIATED_WITH_ADAPTER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242444i32 as _);
1366 pub const ERROR_GRAPHICS_MONITOR_NOT_CONNECTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242440i32 as _);
1367 pub const ERROR_GRAPHICS_MONITOR_NO_LONGER_EXISTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241843i32 as _);
1368 pub const ERROR_GRAPHICS_MULTISAMPLING_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242423i32 as _);
1369 pub const ERROR_GRAPHICS_NOT_A_LINKED_ADAPTER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242192i32 as _);
1370 pub const ERROR_GRAPHICS_NOT_EXCLUSIVE_MODE_OWNER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071243264i32 as _);
1371 pub const ERROR_GRAPHICS_NOT_POST_DEVICE_DRIVER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242184i32 as _);
1372 pub const ERROR_GRAPHICS_NO_ACTIVE_VIDPN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242442i32 as _);
1373 pub const ERROR_GRAPHICS_NO_AVAILABLE_IMPORTANCE_ORDINALS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242412i32 as _);
1374 pub const ERROR_GRAPHICS_NO_AVAILABLE_VIDPN_TARGET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242445i32 as _);
1375 pub const ERROR_GRAPHICS_NO_DISPLAY_DEVICE_CORRESPONDS_TO_NAME: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241759i32 as _);
1376 pub const ERROR_GRAPHICS_NO_DISPLAY_MODE_MANAGEMENT_SUPPORT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242431i32 as _);
1377 pub const ERROR_GRAPHICS_NO_MONITORS_CORRESPOND_TO_DISPLAY_DEVICE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241755i32 as _);
1378 pub const ERROR_GRAPHICS_NO_MORE_ELEMENTS_IN_DATASET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(2499404i32 as _);
1379 pub const ERROR_GRAPHICS_NO_PREFERRED_MODE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(2499358i32 as _);
1380 pub const ERROR_GRAPHICS_NO_RECOMMENDED_FUNCTIONAL_VIDPN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242461i32 as _);
1381 pub const ERROR_GRAPHICS_NO_RECOMMENDED_VIDPN_TOPOLOGY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242470i32 as _);
1382 pub const ERROR_GRAPHICS_NO_VIDEO_MEMORY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071243008i32 as _);
1383 pub const ERROR_GRAPHICS_NO_VIDPNMGR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242443i32 as _);
1384 pub const ERROR_GRAPHICS_ONLY_CONSOLE_SESSION_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241760i32 as _);
1385 pub const ERROR_GRAPHICS_OPM_ALL_HDCP_HARDWARE_ALREADY_IN_USE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241960i32 as _);
1386 pub const ERROR_GRAPHICS_OPM_DRIVER_INTERNAL_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241954i32 as _);
1387 pub const ERROR_GRAPHICS_OPM_HDCP_SRM_NEVER_SET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241962i32 as _);
1388 pub const ERROR_GRAPHICS_OPM_INTERNAL_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241973i32 as _);
1389 pub const ERROR_GRAPHICS_OPM_INVALID_CONFIGURATION_REQUEST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241951i32 as _);
1390 pub const ERROR_GRAPHICS_OPM_INVALID_ENCRYPTED_PARAMETERS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241981i32 as _);
1391 pub const ERROR_GRAPHICS_OPM_INVALID_HANDLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241972i32 as _);
1392 pub const ERROR_GRAPHICS_OPM_INVALID_INFORMATION_REQUEST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241955i32 as _);
1393 pub const ERROR_GRAPHICS_OPM_INVALID_SRM: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241966i32 as _);
1394 pub const ERROR_GRAPHICS_OPM_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241984i32 as _);
1395 pub const ERROR_GRAPHICS_OPM_NO_VIDEO_OUTPUTS_EXIST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241979i32 as _);
1396 pub const ERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_ACP: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241964i32 as _);
1397 pub const ERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_CGMSA: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241963i32 as _);
1398 pub const ERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_HDCP: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241965i32 as _);
1399 pub const ERROR_GRAPHICS_OPM_RESOLUTION_TOO_HIGH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241961i32 as _);
1400 pub const ERROR_GRAPHICS_OPM_SESSION_TYPE_CHANGE_IN_PROGRESS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241957i32 as _);
1401 pub const ERROR_GRAPHICS_OPM_SIGNALING_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241952i32 as _);
1402 pub const ERROR_GRAPHICS_OPM_SPANNING_MODE_ENABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241969i32 as _);
1403 pub const ERROR_GRAPHICS_OPM_THEATER_MODE_ENABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241968i32 as _);
1404 pub const ERROR_GRAPHICS_OPM_VIDEO_OUTPUT_DOES_NOT_HAVE_COPP_SEMANTICS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241956i32 as _);
1405 pub const ERROR_GRAPHICS_OPM_VIDEO_OUTPUT_DOES_NOT_HAVE_OPM_SEMANTICS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241953i32 as _);
1406 pub const ERROR_GRAPHICS_OPM_VIDEO_OUTPUT_NO_LONGER_EXISTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241958i32 as _);
1407 pub const ERROR_GRAPHICS_PARAMETER_ARRAY_TOO_SMALL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241754i32 as _);
1408 pub const ERROR_GRAPHICS_PARTIAL_DATA_POPULATED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(1076240394i32 as _);
1409 pub const ERROR_GRAPHICS_PATH_ALREADY_IN_TOPOLOGY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242477i32 as _);
1410 pub const ERROR_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_PINNED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(2499409i32 as _);
1411 pub const ERROR_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242426i32 as _);
1412 pub const ERROR_GRAPHICS_PATH_NOT_IN_TOPOLOGY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242457i32 as _);
1413 pub const ERROR_GRAPHICS_PINNED_MODE_MUST_REMAIN_IN_SET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242478i32 as _);
1414 pub const ERROR_GRAPHICS_POLLING_TOO_FREQUENTLY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(1076241465i32 as _);
1415 pub const ERROR_GRAPHICS_PRESENT_BUFFER_NOT_BOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071243248i32 as _);
1416 pub const ERROR_GRAPHICS_PRESENT_DENIED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071243257i32 as _);
1417 pub const ERROR_GRAPHICS_PRESENT_INVALID_WINDOW: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071243249i32 as _);
1418 pub const ERROR_GRAPHICS_PRESENT_MODE_CHANGED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071243259i32 as _);
1419 pub const ERROR_GRAPHICS_PRESENT_OCCLUDED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071243258i32 as _);
1420 pub const ERROR_GRAPHICS_PRESENT_REDIRECTION_DISABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071243253i32 as _);
1421 pub const ERROR_GRAPHICS_PRESENT_UNOCCLUDED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071243252i32 as _);
1422 pub const ERROR_GRAPHICS_PVP_HFS_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241967i32 as _);
1423 pub const ERROR_GRAPHICS_PVP_INVALID_CERTIFICATE_LENGTH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241970i32 as _);
1424 pub const ERROR_GRAPHICS_RESOURCES_NOT_RELATED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242448i32 as _);
1425 pub const ERROR_GRAPHICS_SESSION_TYPE_CHANGE_IN_PROGRESS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071249944i32 as _);
1426 pub const ERROR_GRAPHICS_SKIP_ALLOCATION_PREPARATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(1076240897i32 as _);
1427 pub const ERROR_GRAPHICS_SOURCE_ALREADY_IN_SET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242473i32 as _);
1428 pub const ERROR_GRAPHICS_SOURCE_ID_MUST_BE_UNIQUE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242447i32 as _);
1429 pub const ERROR_GRAPHICS_SOURCE_NOT_IN_TOPOLOGY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242439i32 as _);
1430 pub const ERROR_GRAPHICS_SPECIFIED_CHILD_ALREADY_CONNECTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242240i32 as _);
1431 pub const ERROR_GRAPHICS_STALE_MODESET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242464i32 as _);
1432 pub const ERROR_GRAPHICS_STALE_VIDPN_TOPOLOGY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242441i32 as _);
1433 pub const ERROR_GRAPHICS_START_DEFERRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(1076241466i32 as _);
1434 pub const ERROR_GRAPHICS_TARGET_ALREADY_IN_SET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242472i32 as _);
1435 pub const ERROR_GRAPHICS_TARGET_ID_MUST_BE_UNIQUE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242446i32 as _);
1436 pub const ERROR_GRAPHICS_TARGET_NOT_IN_TOPOLOGY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242432i32 as _);
1437 pub const ERROR_GRAPHICS_TOO_MANY_REFERENCES: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071243005i32 as _);
1438 pub const ERROR_GRAPHICS_TOPOLOGY_CHANGES_NOT_ALLOWED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242413i32 as _);
1439 pub const ERROR_GRAPHICS_TRY_AGAIN_LATER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071243004i32 as _);
1440 pub const ERROR_GRAPHICS_TRY_AGAIN_NOW: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071243003i32 as _);
1441 pub const ERROR_GRAPHICS_UAB_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071241982i32 as _);
1442 pub const ERROR_GRAPHICS_UNASSIGNED_MODESET_ALREADY_EXISTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242416i32 as _);
1443 pub const ERROR_GRAPHICS_UNKNOWN_CHILD_STATUS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(1076241455i32 as _);
1444 pub const ERROR_GRAPHICS_UNSWIZZLING_APERTURE_UNAVAILABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071243001i32 as _);
1445 pub const ERROR_GRAPHICS_UNSWIZZLING_APERTURE_UNSUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071243000i32 as _);
1446 pub const ERROR_GRAPHICS_VAIL_FAILED_TO_SEND_COMPOSITION_WINDOW_DPI_MESSAGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071243242i32 as _);
1447 pub const ERROR_GRAPHICS_VAIL_FAILED_TO_SEND_CREATE_SUPERWETINK_MESSAGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071243244i32 as _);
1448 pub const ERROR_GRAPHICS_VAIL_FAILED_TO_SEND_DESTROY_SUPERWETINK_MESSAGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071243243i32 as _);
1449 pub const ERROR_GRAPHICS_VAIL_STATE_CHANGED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071243247i32 as _);
1450 pub const ERROR_GRAPHICS_VIDEO_PRESENT_TARGETS_LESS_THAN_SOURCES: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242458i32 as _);
1451 pub const ERROR_GRAPHICS_VIDPN_MODALITY_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242490i32 as _);
1452 pub const ERROR_GRAPHICS_VIDPN_SOURCE_IN_USE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242430i32 as _);
1453 pub const ERROR_GRAPHICS_VIDPN_TOPOLOGY_CURRENTLY_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242494i32 as _);
1454 pub const ERROR_GRAPHICS_VIDPN_TOPOLOGY_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242495i32 as _);
1455 pub const ERROR_GRAPHICS_WINDOWDC_NOT_AVAILABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071243251i32 as _);
1456 pub const ERROR_GRAPHICS_WINDOWLESS_PRESENT_DISABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071243250i32 as _);
1457 pub const ERROR_GRAPHICS_WRONG_ALLOCATION_DEVICE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071242987i32 as _);
1458 pub const ERROR_HUNG_DISPLAY_DRIVER_THREAD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144993279i32 as _);
1459 pub const ERROR_IDLE_DISCONNECTED: u32 = 926u32;
1460 pub const ERROR_INTERFACE_ALREADY_EXISTS: u32 = 904u32;
1461 pub const ERROR_INTERFACE_CONFIGURATION: u32 = 912u32;
1462 pub const ERROR_INTERFACE_CONNECTED: u32 = 908u32;
1463 pub const ERROR_INTERFACE_DISABLED: u32 = 916u32;
1464 pub const ERROR_INTERFACE_DISCONNECTED: u32 = 929u32;
1465 pub const ERROR_INTERFACE_HAS_NO_DEVICES: u32 = 925u32;
1466 pub const ERROR_INTERFACE_NOT_CONNECTED: u32 = 906u32;
1467 pub const ERROR_INTERFACE_UNREACHABLE: u32 = 927u32;
1468 pub const ERROR_INVALID_ATTRIBUTE_LENGTH: u32 = 953u32;
1469 pub const ERROR_INVALID_PACKET: u32 = 954u32;
1470 pub const ERROR_INVALID_PACKET_LENGTH_OR_ID: u32 = 952u32;
1471 pub const ERROR_INVALID_RADIUS_RESPONSE: u32 = 939u32;
1472 pub const ERROR_INVALID_SIGNATURE: u32 = 950u32;
1473 pub const ERROR_INVALID_SIGNATURE_LENGTH: u32 = 949u32;
1474 pub const ERROR_IO_PREEMPTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1996423167i32 as _);
1475 pub const ERROR_MAX_CLIENT_INTERFACE_LIMIT: u32 = 935u32;
1476 pub const ERROR_MAX_LAN_INTERFACE_LIMIT: u32 = 933u32;
1477 pub const ERROR_MAX_WAN_INTERFACE_LIMIT: u32 = 934u32;
1478 pub const ERROR_MONITOR_INVALID_DESCRIPTOR_CHECKSUM: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071247357i32 as _);
1479 pub const ERROR_MONITOR_INVALID_DETAILED_TIMING_BLOCK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071247351i32 as _);
1480 pub const ERROR_MONITOR_INVALID_MANUFACTURE_DATE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071247350i32 as _);
1481 pub const ERROR_MONITOR_INVALID_SERIAL_NUMBER_MONDSC_BLOCK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071247354i32 as _);
1482 pub const ERROR_MONITOR_INVALID_STANDARD_TIMING_BLOCK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071247356i32 as _);
1483 pub const ERROR_MONITOR_INVALID_USER_FRIENDLY_MONDSC_BLOCK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071247353i32 as _);
1484 pub const ERROR_MONITOR_NO_DESCRIPTOR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(2494465i32 as _);
1485 pub const ERROR_MONITOR_NO_MORE_DESCRIPTOR_DATA: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071247352i32 as _);
1486 pub const ERROR_MONITOR_UNKNOWN_DESCRIPTOR_FORMAT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(2494466i32 as _);
1487 pub const ERROR_MONITOR_WMI_DATABLOCK_REGISTRATION_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1071247355i32 as _);
1488 pub const ERROR_NOT_A_TIERED_VOLUME: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2138898423i32 as _);
1489 pub const ERROR_NOT_CLIENT_PORT: u32 = 913u32;
1490 pub const ERROR_NOT_ROUTER_PORT: u32 = 914u32;
1491 pub const ERROR_NO_APPLICABLE_APP_LICENSES_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1058406399i32 as _);
1492 pub const ERROR_NO_AUTH_PROTOCOL_AVAILABLE: u32 = 918u32;
1493 pub const ERROR_NO_INTERFACE_CREDENTIALS_SET: u32 = 909u32;
1494 pub const ERROR_NO_RADIUS_SERVERS: u32 = 938u32;
1495 pub const ERROR_NO_SIGNATURE: u32 = 951u32;
1496 pub const ERROR_NO_SUCH_INTERFACE: u32 = 905u32;
1497 pub const ERROR_PEER_REFUSED_AUTH: u32 = 919u32;
1498 pub const ERROR_PORT_LIMIT_REACHED: u32 = 931u32;
1499 pub const ERROR_PPP_SESSION_TIMEOUT: u32 = 932u32;
1500 pub const ERROR_PROTOCOL_ALREADY_INSTALLED: u32 = 948u32;
1501 pub const ERROR_PROTOCOL_STOP_PENDING: u32 = 907u32;
1502 pub const ERROR_QUIC_ALPN_NEG_FAILURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143223801i32 as _);
1503 pub const ERROR_QUIC_CONNECTION_IDLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143223803i32 as _);
1504 pub const ERROR_QUIC_CONNECTION_TIMEOUT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143223802i32 as _);
1505 pub const ERROR_QUIC_HANDSHAKE_FAILURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143223808i32 as _);
1506 pub const ERROR_QUIC_INTERNAL_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143223805i32 as _);
1507 pub const ERROR_QUIC_PROTOCOL_VIOLATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143223804i32 as _);
1508 pub const ERROR_QUIC_USER_CANCELED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143223806i32 as _);
1509 pub const ERROR_QUIC_VER_NEG_FAILURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143223807i32 as _);
1510 pub const ERROR_REMOTEACCESS_NOT_CONFIGURED: u32 = 956u32;
1511 pub const ERROR_REMOTE_ACCT_DISABLED: u32 = 922u32;
1512 pub const ERROR_REMOTE_AUTHENTICATION_FAILURE: u32 = 924u32;
1513 pub const ERROR_REMOTE_NO_DIALIN_PERMISSION: u32 = 920u32;
1514 pub const ERROR_REMOTE_PASSWD_EXPIRED: u32 = 921u32;
1515 pub const ERROR_REMOTE_RESTRICTED_LOGON_HOURS: u32 = 923u32;
1516 pub const ERROR_ROUTER_CONFIG_INCOMPATIBLE: u32 = 945u32;
1517 pub const ERROR_ROUTER_STOPPED: u32 = 900u32;
1518 pub const ERROR_SECCORE_INVALID_COMMAND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1058537472i32 as _);
1519 pub const ERROR_SERVICE_IS_PAUSED: u32 = 928u32;
1520 pub const ERROR_SMB_BAD_CLUSTER_DIALECT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1067646975i32 as _);
1521 pub const ERROR_SMB_NO_PREAUTH_INTEGRITY_HASH_OVERLAP: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1067646976i32 as _);
1522 pub const ERROR_SMB_NO_SIGNING_ALGORITHM_OVERLAP: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1067646974i32 as _);
1523 pub const ERROR_SPACES_ALLOCATION_SIZE_INVALID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2132344818i32 as _);
1524 pub const ERROR_SPACES_CACHE_FULL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2132344794i32 as _);
1525 pub const ERROR_SPACES_CORRUPT_METADATA: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2132344808i32 as _);
1526 pub const ERROR_SPACES_DRIVE_LOST_DATA: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2132344801i32 as _);
1527 pub const ERROR_SPACES_DRIVE_NOT_READY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2132344803i32 as _);
1528 pub const ERROR_SPACES_DRIVE_OPERATIONAL_STATE_INVALID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2132344814i32 as _);
1529 pub const ERROR_SPACES_DRIVE_REDUNDANCY_INVALID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2132344826i32 as _);
1530 pub const ERROR_SPACES_DRIVE_SECTOR_SIZE_INVALID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2132344828i32 as _);
1531 pub const ERROR_SPACES_DRIVE_SPLIT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2132344802i32 as _);
1532 pub const ERROR_SPACES_DRT_FULL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2132344807i32 as _);
1533 pub const ERROR_SPACES_ENCLOSURE_AWARE_INVALID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2132344817i32 as _);
1534 pub const ERROR_SPACES_ENTRY_INCOMPLETE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2132344813i32 as _);
1535 pub const ERROR_SPACES_ENTRY_INVALID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2132344812i32 as _);
1536 pub const ERROR_SPACES_EXTENDED_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2132344820i32 as _);
1537 pub const ERROR_SPACES_FAULT_DOMAIN_TYPE_INVALID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2132344831i32 as _);
1538 pub const ERROR_SPACES_FLUSH_METADATA: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2132344795i32 as _);
1539 pub const ERROR_SPACES_INCONSISTENCY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2132344806i32 as _);
1540 pub const ERROR_SPACES_INTERLEAVE_LENGTH_INVALID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2132344823i32 as _);
1541 pub const ERROR_SPACES_INTERNAL_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2132344830i32 as _);
1542 pub const ERROR_SPACES_LOG_NOT_READY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2132344805i32 as _);
1543 pub const ERROR_SPACES_MAP_REQUIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2132344810i32 as _);
1544 pub const ERROR_SPACES_MARK_DIRTY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2132344800i32 as _);
1545 pub const ERROR_SPACES_NOT_ENOUGH_DRIVES: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2132344821i32 as _);
1546 pub const ERROR_SPACES_NO_REDUNDANCY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2132344804i32 as _);
1547 pub const ERROR_SPACES_NUMBER_OF_COLUMNS_INVALID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2132344822i32 as _);
1548 pub const ERROR_SPACES_NUMBER_OF_DATA_COPIES_INVALID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2132344825i32 as _);
1549 pub const ERROR_SPACES_NUMBER_OF_GROUPS_INVALID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2132344815i32 as _);
1550 pub const ERROR_SPACES_PARITY_LAYOUT_INVALID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2132344824i32 as _);
1551 pub const ERROR_SPACES_POOL_WAS_DELETED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(15138817i32 as _);
1552 pub const ERROR_SPACES_PROVISIONING_TYPE_INVALID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2132344819i32 as _);
1553 pub const ERROR_SPACES_RESILIENCY_TYPE_INVALID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2132344829i32 as _);
1554 pub const ERROR_SPACES_UNSUPPORTED_VERSION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2132344809i32 as _);
1555 pub const ERROR_SPACES_UPDATE_COLUMN_STATE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2132344811i32 as _);
1556 pub const ERROR_SPACES_WRITE_CACHE_SIZE_INVALID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2132344816i32 as _);
1557 pub const ERROR_SVHDX_ERROR_NOT_AVAILABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1067647232i32 as _);
1558 pub const ERROR_SVHDX_ERROR_STORED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1067712512i32 as _);
1559 pub const ERROR_SVHDX_NO_INITIATOR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1067647221i32 as _);
1560 pub const ERROR_SVHDX_RESERVATION_CONFLICT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1067647225i32 as _);
1561 pub const ERROR_SVHDX_UNIT_ATTENTION_AVAILABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1067647231i32 as _);
1562 pub const ERROR_SVHDX_UNIT_ATTENTION_CAPACITY_DATA_CHANGED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1067647230i32 as _);
1563 pub const ERROR_SVHDX_UNIT_ATTENTION_OPERATING_DEFINITION_CHANGED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1067647226i32 as _);
1564 pub const ERROR_SVHDX_UNIT_ATTENTION_REGISTRATIONS_PREEMPTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1067647227i32 as _);
1565 pub const ERROR_SVHDX_UNIT_ATTENTION_RESERVATIONS_PREEMPTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1067647229i32 as _);
1566 pub const ERROR_SVHDX_UNIT_ATTENTION_RESERVATIONS_RELEASED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1067647228i32 as _);
1567 pub const ERROR_SVHDX_VERSION_MISMATCH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1067647223i32 as _);
1568 pub const ERROR_SVHDX_WRONG_FILE_TYPE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1067647224i32 as _);
1569 pub const ERROR_TIERING_ALREADY_PROCESSING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2138898426i32 as _);
1570 pub const ERROR_TIERING_CANNOT_PIN_OBJECT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2138898425i32 as _);
1571 pub const ERROR_TIERING_FILE_IS_NOT_PINNED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2138898424i32 as _);
1572 pub const ERROR_TIERING_INVALID_FILE_ID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2138898428i32 as _);
1573 pub const ERROR_TIERING_NOT_SUPPORTED_ON_VOLUME: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2138898431i32 as _);
1574 pub const ERROR_TIERING_STORAGE_TIER_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2138898429i32 as _);
1575 pub const ERROR_TIERING_VOLUME_DISMOUNT_IN_PROGRESS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2138898430i32 as _);
1576 pub const ERROR_TIERING_WRONG_CLUSTER_NODE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2138898427i32 as _);
1577 pub const ERROR_UNKNOWN_PROTOCOL_ID: u32 = 902u32;
1578 pub const ERROR_UPDATE_IN_PROGRESS: u32 = 911u32;
1579 pub const ERROR_USER_LIMIT: u32 = 937u32;
1580 pub const ERROR_VHDSET_BACKING_STORAGE_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1067647220i32 as _);
1581 pub const ERROR_VHD_SHARED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1067647222i32 as _);
1582 pub const ERROR_VOLSNAP_ACTIVATION_TIMEOUT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2138963966i32 as _);
1583 pub const ERROR_VOLSNAP_BOOTFILE_NOT_VALID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2138963967i32 as _);
1584 pub const ERROR_VOLSNAP_NO_BYPASSIO_WITH_SNAPSHOT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2138963965i32 as _);
1585 pub const EVENT_E_ALL_SUBSCRIBERS_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147220991i32 as _);
1586 pub const EVENT_E_CANT_MODIFY_OR_DELETE_CONFIGURED_OBJECT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147220978i32 as _);
1587 pub const EVENT_E_CANT_MODIFY_OR_DELETE_UNCONFIGURED_OBJECT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147220979i32 as _);
1588 pub const EVENT_E_COMPLUS_NOT_INSTALLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147220980i32 as _);
1589 pub const EVENT_E_FIRST: i32 = -2147220992i32;
1590 pub const EVENT_E_INTERNALERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147220986i32 as _);
1591 pub const EVENT_E_INTERNALEXCEPTION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147220987i32 as _);
1592 pub const EVENT_E_INVALID_EVENT_CLASS_PARTITION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147220977i32 as _);
1593 pub const EVENT_E_INVALID_PER_USER_SID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147220985i32 as _);
1594 pub const EVENT_E_LAST: i32 = -2147220961i32;
1595 pub const EVENT_E_MISSING_EVENTCLASS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147220982i32 as _);
1596 pub const EVENT_E_NOT_ALL_REMOVED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147220981i32 as _);
1597 pub const EVENT_E_PER_USER_SID_NOT_LOGGED_ON: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147220976i32 as _);
1598 pub const EVENT_E_QUERYFIELD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147220988i32 as _);
1599 pub const EVENT_E_QUERYSYNTAX: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147220989i32 as _);
1600 pub const EVENT_E_TOO_MANY_METHODS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147220983i32 as _);
1601 pub const EVENT_E_USER_EXCEPTION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147220984i32 as _);
1602 pub const EVENT_S_FIRST: i32 = 262656i32;
1603 pub const EVENT_S_LAST: i32 = 262687i32;
1604 pub const EVENT_S_NOSUBSCRIBERS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(262658i32 as _);
1605 pub const EVENT_S_SOME_SUBSCRIBERS_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(262656i32 as _);
1606 pub const E_ABORT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147467260i32 as _);
1607 pub const E_ACCESSDENIED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147024891i32 as _);
1608 pub const E_APPLICATION_ACTIVATION_EXEC_FAILURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144927141i32 as _);
1609 pub const E_APPLICATION_ACTIVATION_TIMED_OUT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144927142i32 as _);
1610 pub const E_APPLICATION_EXITING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147483622i32 as _);
1611 pub const E_APPLICATION_MANAGER_NOT_RUNNING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144927145i32 as _);
1612 pub const E_APPLICATION_NOT_REGISTERED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144927148i32 as _);
1613 pub const E_APPLICATION_TEMPORARY_LICENSE_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144927140i32 as _);
1614 pub const E_APPLICATION_TRIAL_LICENSE_EXPIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144927139i32 as _);
1615 pub const E_APPLICATION_VIEW_EXITING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147483621i32 as _);
1616 pub const E_ASYNC_OPERATION_NOT_STARTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147483623i32 as _);
1617 pub const E_AUDIO_ENGINE_NODE_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140798975i32 as _);
1618 pub const E_BLUETOOTH_ATT_ATTRIBUTE_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140864502i32 as _);
1619 pub const E_BLUETOOTH_ATT_ATTRIBUTE_NOT_LONG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140864501i32 as _);
1620 pub const E_BLUETOOTH_ATT_INSUFFICIENT_AUTHENTICATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140864507i32 as _);
1621 pub const E_BLUETOOTH_ATT_INSUFFICIENT_AUTHORIZATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140864504i32 as _);
1622 pub const E_BLUETOOTH_ATT_INSUFFICIENT_ENCRYPTION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140864497i32 as _);
1623 pub const E_BLUETOOTH_ATT_INSUFFICIENT_ENCRYPTION_KEY_SIZE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140864500i32 as _);
1624 pub const E_BLUETOOTH_ATT_INSUFFICIENT_RESOURCES: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140864495i32 as _);
1625 pub const E_BLUETOOTH_ATT_INVALID_ATTRIBUTE_VALUE_LENGTH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140864499i32 as _);
1626 pub const E_BLUETOOTH_ATT_INVALID_HANDLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140864511i32 as _);
1627 pub const E_BLUETOOTH_ATT_INVALID_OFFSET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140864505i32 as _);
1628 pub const E_BLUETOOTH_ATT_INVALID_PDU: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140864508i32 as _);
1629 pub const E_BLUETOOTH_ATT_PREPARE_QUEUE_FULL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140864503i32 as _);
1630 pub const E_BLUETOOTH_ATT_READ_NOT_PERMITTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140864510i32 as _);
1631 pub const E_BLUETOOTH_ATT_REQUEST_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140864506i32 as _);
1632 pub const E_BLUETOOTH_ATT_UNKNOWN_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140860416i32 as _);
1633 pub const E_BLUETOOTH_ATT_UNLIKELY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140864498i32 as _);
1634 pub const E_BLUETOOTH_ATT_UNSUPPORTED_GROUP_TYPE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140864496i32 as _);
1635 pub const E_BLUETOOTH_ATT_WRITE_NOT_PERMITTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140864509i32 as _);
1636 pub const E_BOUNDS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147483637i32 as _);
1637 pub const E_CHANGED_STATE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147483636i32 as _);
1638 pub const E_ELEVATED_ACTIVATION_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144927151i32 as _);
1639 pub const E_FAIL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147467259i32 as _);
1640 pub const E_FULL_ADMIN_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144927149i32 as _);
1641 pub const E_HANDLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147024890i32 as _);
1642 pub const E_HDAUDIO_CONNECTION_LIST_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140798973i32 as _);
1643 pub const E_HDAUDIO_EMPTY_CONNECTION_LIST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140798974i32 as _);
1644 pub const E_HDAUDIO_NO_LOGICAL_DEVICES_CREATED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140798972i32 as _);
1645 pub const E_HDAUDIO_NULL_LINKED_LIST_ENTRY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140798971i32 as _);
1646 pub const E_ILLEGAL_DELEGATE_ASSIGNMENT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147483624i32 as _);
1647 pub const E_ILLEGAL_METHOD_CALL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147483634i32 as _);
1648 pub const E_ILLEGAL_STATE_CHANGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147483635i32 as _);
1649 pub const E_INVALIDARG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147024809i32 as _);
1650 pub const E_INVALID_PROTOCOL_FORMAT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2089418750i32 as _);
1651 pub const E_INVALID_PROTOCOL_OPERATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2089418751i32 as _);
1652 pub const E_MBN_BAD_SIM: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2141945342i32 as _);
1653 pub const E_MBN_CONTEXT_NOT_ACTIVATED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2141945343i32 as _);
1654 pub const E_MBN_DATA_CLASS_NOT_AVAILABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2141945341i32 as _);
1655 pub const E_MBN_DEFAULT_PROFILE_EXIST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2141945319i32 as _);
1656 pub const E_MBN_FAILURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2141945326i32 as _);
1657 pub const E_MBN_INVALID_ACCESS_STRING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2141945340i32 as _);
1658 pub const E_MBN_INVALID_CACHE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2141945332i32 as _);
1659 pub const E_MBN_INVALID_PROFILE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2141945320i32 as _);
1660 pub const E_MBN_MAX_ACTIVATED_CONTEXTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2141945339i32 as _);
1661 pub const E_MBN_NOT_REGISTERED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2141945331i32 as _);
1662 pub const E_MBN_PACKET_SVC_DETACHED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2141945338i32 as _);
1663 pub const E_MBN_PIN_DISABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2141945327i32 as _);
1664 pub const E_MBN_PIN_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2141945329i32 as _);
1665 pub const E_MBN_PIN_REQUIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2141945328i32 as _);
1666 pub const E_MBN_PROVIDERS_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2141945330i32 as _);
1667 pub const E_MBN_PROVIDER_NOT_VISIBLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2141945337i32 as _);
1668 pub const E_MBN_RADIO_POWER_OFF: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2141945336i32 as _);
1669 pub const E_MBN_SERVICE_NOT_ACTIVATED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2141945335i32 as _);
1670 pub const E_MBN_SIM_NOT_INSERTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2141945334i32 as _);
1671 pub const E_MBN_SMS_ENCODING_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2141945312i32 as _);
1672 pub const E_MBN_SMS_FILTER_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2141945311i32 as _);
1673 pub const E_MBN_SMS_FORMAT_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2141945305i32 as _);
1674 pub const E_MBN_SMS_INVALID_MEMORY_INDEX: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2141945310i32 as _);
1675 pub const E_MBN_SMS_LANG_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2141945309i32 as _);
1676 pub const E_MBN_SMS_MEMORY_FAILURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2141945308i32 as _);
1677 pub const E_MBN_SMS_MEMORY_FULL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2141945303i32 as _);
1678 pub const E_MBN_SMS_NETWORK_TIMEOUT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2141945307i32 as _);
1679 pub const E_MBN_SMS_OPERATION_NOT_ALLOWED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2141945304i32 as _);
1680 pub const E_MBN_SMS_UNKNOWN_SMSC_ADDRESS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2141945306i32 as _);
1681 pub const E_MBN_VOICE_CALL_IN_PROGRESS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2141945333i32 as _);
1682 pub const E_MONITOR_RESOLUTION_TOO_LOW: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144927152i32 as _);
1683 pub const E_MULTIPLE_EXTENSIONS_FOR_APPLICATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144927147i32 as _);
1684 pub const E_MULTIPLE_PACKAGES_FOR_FAMILY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144927146i32 as _);
1685 pub const E_NOINTERFACE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147467262i32 as _);
1686 pub const E_NOTIMPL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147467263i32 as _);
1687 pub const E_OUTOFMEMORY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147024882i32 as _);
1688 pub const E_POINTER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147467261i32 as _);
1689 pub const E_PROTOCOL_EXTENSIONS_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2089418749i32 as _);
1690 pub const E_PROTOCOL_VERSION_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2089418747i32 as _);
1691 pub const E_SKYDRIVE_FILE_NOT_UPLOADED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144927133i32 as _);
1692 pub const E_SKYDRIVE_ROOT_TARGET_CANNOT_INDEX: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144927134i32 as _);
1693 pub const E_SKYDRIVE_ROOT_TARGET_FILE_SYSTEM_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144927136i32 as _);
1694 pub const E_SKYDRIVE_ROOT_TARGET_OVERLAP: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144927135i32 as _);
1695 pub const E_SKYDRIVE_ROOT_TARGET_VOLUME_ROOT_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144927131i32 as _);
1696 pub const E_SKYDRIVE_UPDATE_AVAILABILITY_FAIL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144927132i32 as _);
1697 pub const E_STRING_NOT_NULL_TERMINATED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147483625i32 as _);
1698 pub const E_SUBPROTOCOL_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2089418748i32 as _);
1699 pub const E_SYNCENGINE_CLIENT_UPDATE_NEEDED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2013081594i32 as _);
1700 pub const E_SYNCENGINE_FILE_IDENTIFIER_UNKNOWN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2013085694i32 as _);
1701 pub const E_SYNCENGINE_FILE_SIZE_EXCEEDS_REMAINING_QUOTA: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2013089790i32 as _);
1702 pub const E_SYNCENGINE_FILE_SIZE_OVER_LIMIT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2013089791i32 as _);
1703 pub const E_SYNCENGINE_FILE_SYNC_PARTNER_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2013089787i32 as _);
1704 pub const E_SYNCENGINE_FOLDER_INACCESSIBLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2013081599i32 as _);
1705 pub const E_SYNCENGINE_FOLDER_IN_REDIRECTION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2013081589i32 as _);
1706 pub const E_SYNCENGINE_FOLDER_ITEM_COUNT_LIMIT_EXCEEDED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2013089788i32 as _);
1707 pub const E_SYNCENGINE_PATH_LENGTH_LIMIT_EXCEEDED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2013081596i32 as _);
1708 pub const E_SYNCENGINE_PROXY_AUTHENTICATION_REQUIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2013081593i32 as _);
1709 pub const E_SYNCENGINE_REMOTE_PATH_LENGTH_LIMIT_EXCEEDED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2013081595i32 as _);
1710 pub const E_SYNCENGINE_REQUEST_BLOCKED_BY_SERVICE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2013085690i32 as _);
1711 pub const E_SYNCENGINE_REQUEST_BLOCKED_DUE_TO_CLIENT_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2013085689i32 as _);
1712 pub const E_SYNCENGINE_SERVICE_AUTHENTICATION_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2013085693i32 as _);
1713 pub const E_SYNCENGINE_SERVICE_RETURNED_UNEXPECTED_SIZE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2013085691i32 as _);
1714 pub const E_SYNCENGINE_STORAGE_SERVICE_BLOCKED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2013081590i32 as _);
1715 pub const E_SYNCENGINE_STORAGE_SERVICE_PROVISIONING_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2013081592i32 as _);
1716 pub const E_SYNCENGINE_SYNC_PAUSED_BY_SERVICE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2013089786i32 as _);
1717 pub const E_SYNCENGINE_UNKNOWN_SERVICE_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2013085692i32 as _);
1718 pub const E_SYNCENGINE_UNSUPPORTED_FILE_NAME: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2013089789i32 as _);
1719 pub const E_SYNCENGINE_UNSUPPORTED_FOLDER_NAME: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2013081598i32 as _);
1720 pub const E_SYNCENGINE_UNSUPPORTED_MARKET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2013081597i32 as _);
1721 pub const E_SYNCENGINE_UNSUPPORTED_REPARSE_POINT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2013081591i32 as _);
1722 pub const E_UAC_DISABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144927150i32 as _);
1723 pub const E_UNEXPECTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147418113i32 as _);
1724 pub const FACILTIY_MUI_ERROR_CODE: u32 = 11u32;
1725 pub type FARPROC = unsafe extern "system" fn() -> isize;
1726 pub const FA_E_HOMEGROUP_NOT_AVAILABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144927198i32 as _);
1727 pub const FA_E_MAX_PERSISTED_ITEMS_REACHED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144927200i32 as _);
1728 pub const FDAEMON_E_CHANGEUPDATEFAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215740i32 as _);
1729 pub const FDAEMON_E_FATALERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215742i32 as _);
1730 pub const FDAEMON_E_LOWRESOURCE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215743i32 as _);
1731 pub const FDAEMON_E_NOWORDLIST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215737i32 as _);
1732 pub const FDAEMON_E_PARTITIONDELETED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215741i32 as _);
1733 pub const FDAEMON_E_TOOMANYFILTEREDBLOCKS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215736i32 as _);
1734 pub const FDAEMON_E_WORDLISTCOMMITFAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215738i32 as _);
1735 pub const FDAEMON_W_EMPTYWORDLIST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(267909i32 as _);
1736 pub const FDAEMON_W_WORDLISTFULL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(267904i32 as _);
1737 #[derive(:: std :: clone :: Clone, :: std :: marker :: Copy)]
1738 #[repr(C)]
1739 pub struct FILETIME {
1740     pub dwLowDateTime: u32,
1741     pub dwHighDateTime: u32,
1742 }
1743 impl FILETIME {}
1744 impl ::std::default::Default for FILETIME {
default() -> Self1745     fn default() -> Self {
1746         unsafe { ::std::mem::zeroed() }
1747     }
1748 }
1749 impl ::std::fmt::Debug for FILETIME {
fmt(&self, fmt: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result1750     fn fmt(&self, fmt: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
1751         fmt.debug_struct("FILETIME").field("dwLowDateTime", &self.dwLowDateTime).field("dwHighDateTime", &self.dwHighDateTime).finish()
1752     }
1753 }
1754 impl ::std::cmp::PartialEq for FILETIME {
eq(&self, other: &Self) -> bool1755     fn eq(&self, other: &Self) -> bool {
1756         self.dwLowDateTime == other.dwLowDateTime && self.dwHighDateTime == other.dwHighDateTime
1757     }
1758 }
1759 impl ::std::cmp::Eq for FILETIME {}
1760 unsafe impl ::windows::runtime::Abi for FILETIME {
1761     type Abi = Self;
1762     type DefaultType = Self;
1763 }
1764 pub const FILTER_E_ALREADY_OPEN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215562i32 as _);
1765 pub const FILTER_E_CONTENTINDEXCORRUPT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1073473740i32 as _);
1766 pub const FILTER_E_IN_USE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215560i32 as _);
1767 pub const FILTER_E_NOT_OPEN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215559i32 as _);
1768 pub const FILTER_E_NO_SUCH_PROPERTY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215557i32 as _);
1769 pub const FILTER_E_OFFLINE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215555i32 as _);
1770 pub const FILTER_E_PARTIALLY_FILTERED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215554i32 as _);
1771 pub const FILTER_E_TOO_BIG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215568i32 as _);
1772 pub const FILTER_E_UNREACHABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215561i32 as _);
1773 pub const FILTER_S_CONTENTSCAN_DELAYED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(268083i32 as _);
1774 pub const FILTER_S_DISK_FULL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(268085i32 as _);
1775 pub const FILTER_S_FULL_CONTENTSCAN_IMMEDIATE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(268082i32 as _);
1776 pub const FILTER_S_NO_PROPSETS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(268090i32 as _);
1777 pub const FILTER_S_NO_SECURITY_DESCRIPTOR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(268092i32 as _);
1778 pub const FILTER_S_PARTIAL_CONTENTSCAN_IMMEDIATE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(268081i32 as _);
1779 #[derive(:: std :: clone :: Clone, :: std :: marker :: Copy)]
1780 #[repr(C)]
1781 pub struct FLOAT128 {
1782     pub LowPart: i64,
1783     pub HighPart: i64,
1784 }
1785 impl FLOAT128 {}
1786 impl ::std::default::Default for FLOAT128 {
default() -> Self1787     fn default() -> Self {
1788         unsafe { ::std::mem::zeroed() }
1789     }
1790 }
1791 impl ::std::fmt::Debug for FLOAT128 {
fmt(&self, fmt: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result1792     fn fmt(&self, fmt: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
1793         fmt.debug_struct("FLOAT128").field("LowPart", &self.LowPart).field("HighPart", &self.HighPart).finish()
1794     }
1795 }
1796 impl ::std::cmp::PartialEq for FLOAT128 {
eq(&self, other: &Self) -> bool1797     fn eq(&self, other: &Self) -> bool {
1798         self.LowPart == other.LowPart && self.HighPart == other.HighPart
1799     }
1800 }
1801 impl ::std::cmp::Eq for FLOAT128 {}
1802 unsafe impl ::windows::runtime::Abi for FLOAT128 {
1803     type Abi = Self;
1804     type DefaultType = Self;
1805 }
1806 pub const FRS_ERR_AUTHENTICATION: i32 = 8008i32;
1807 pub const FRS_ERR_CHILD_TO_PARENT_COMM: i32 = 8011i32;
1808 pub const FRS_ERR_INSUFFICIENT_PRIV: i32 = 8007i32;
1809 pub const FRS_ERR_INTERNAL: i32 = 8005i32;
1810 pub const FRS_ERR_INTERNAL_API: i32 = 8004i32;
1811 pub const FRS_ERR_INVALID_API_SEQUENCE: i32 = 8001i32;
1812 pub const FRS_ERR_INVALID_SERVICE_PARAMETER: i32 = 8017i32;
1813 pub const FRS_ERR_PARENT_AUTHENTICATION: i32 = 8010i32;
1814 pub const FRS_ERR_PARENT_INSUFFICIENT_PRIV: i32 = 8009i32;
1815 pub const FRS_ERR_PARENT_TO_CHILD_COMM: i32 = 8012i32;
1816 pub const FRS_ERR_SERVICE_COMM: i32 = 8006i32;
1817 pub const FRS_ERR_STARTING_SERVICE: i32 = 8002i32;
1818 pub const FRS_ERR_STOPPING_SERVICE: i32 = 8003i32;
1819 pub const FRS_ERR_SYSVOL_DEMOTE: i32 = 8016i32;
1820 pub const FRS_ERR_SYSVOL_IS_BUSY: i32 = 8015i32;
1821 pub const FRS_ERR_SYSVOL_POPULATE: i32 = 8013i32;
1822 pub const FRS_ERR_SYSVOL_POPULATE_TIMEOUT: i32 = 8014i32;
1823 pub const FVE_E_AAD_ENDPOINT_BUSY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272159i32 as _);
1824 pub const FVE_E_ACTION_NOT_ALLOWED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272375i32 as _);
1825 pub const FVE_E_ADBACKUP_NOT_ENABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272171i32 as _);
1826 pub const FVE_E_AD_ATTR_NOT_SET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272370i32 as _);
1827 pub const FVE_E_AD_BACKUP_REQUIRED_POLICY_NOT_SET_FIXED_DRIVE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272165i32 as _);
1828 pub const FVE_E_AD_BACKUP_REQUIRED_POLICY_NOT_SET_OS_DRIVE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272166i32 as _);
1829 pub const FVE_E_AD_BACKUP_REQUIRED_POLICY_NOT_SET_REMOVABLE_DRIVE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272164i32 as _);
1830 pub const FVE_E_AD_GUID_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272369i32 as _);
1831 pub const FVE_E_AD_INSUFFICIENT_BUFFER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272358i32 as _);
1832 pub const FVE_E_AD_INVALID_DATASIZE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272372i32 as _);
1833 pub const FVE_E_AD_INVALID_DATATYPE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272373i32 as _);
1834 pub const FVE_E_AD_NO_VALUES: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272371i32 as _);
1835 pub const FVE_E_AD_SCHEMA_NOT_INSTALLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272374i32 as _);
1836 pub const FVE_E_AUTH_INVALID_APPLICATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272316i32 as _);
1837 pub const FVE_E_AUTH_INVALID_CONFIG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272315i32 as _);
1838 pub const FVE_E_AUTOUNLOCK_ENABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272343i32 as _);
1839 pub const FVE_E_BAD_DATA: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272362i32 as _);
1840 pub const FVE_E_BAD_INFORMATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272368i32 as _);
1841 pub const FVE_E_BAD_PARTITION_SIZE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272364i32 as _);
1842 pub const FVE_E_BCD_APPLICATIONS_PATH_INCORRECT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272302i32 as _);
1843 pub const FVE_E_BOOTABLE_CDDVD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272336i32 as _);
1844 pub const FVE_E_BUFFER_TOO_LARGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272177i32 as _);
1845 pub const FVE_E_CANNOT_ENCRYPT_NO_KEY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272338i32 as _);
1846 pub const FVE_E_CANNOT_SET_FVEK_ENCRYPTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272339i32 as _);
1847 pub const FVE_E_CANT_LOCK_AUTOUNLOCK_ENABLED_VOLUME: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272233i32 as _);
1848 pub const FVE_E_CLUSTERING_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272354i32 as _);
1849 pub const FVE_E_CONV_READ: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272357i32 as _);
1850 pub const FVE_E_CONV_RECOVERY_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272248i32 as _);
1851 pub const FVE_E_CONV_WRITE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272356i32 as _);
1852 pub const FVE_E_DEBUGGER_ENABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272305i32 as _);
1853 pub const FVE_E_DEVICELOCKOUT_COUNTER_MISMATCH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272178i32 as _);
1854 pub const FVE_E_DEVICE_LOCKOUT_COUNTER_UNAVAILABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272179i32 as _);
1855 pub const FVE_E_DEVICE_NOT_JOINED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272160i32 as _);
1856 pub const FVE_E_DE_DEVICE_LOCKEDOUT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272182i32 as _);
1857 pub const FVE_E_DE_FIXED_DATA_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272187i32 as _);
1858 pub const FVE_E_DE_HARDWARE_NOT_COMPLIANT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272186i32 as _);
1859 pub const FVE_E_DE_OS_VOLUME_NOT_PROTECTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272183i32 as _);
1860 pub const FVE_E_DE_PREVENTED_FOR_OS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272175i32 as _);
1861 pub const FVE_E_DE_PROTECTION_NOT_YET_ENABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272181i32 as _);
1862 pub const FVE_E_DE_PROTECTION_SUSPENDED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272184i32 as _);
1863 pub const FVE_E_DE_VOLUME_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272173i32 as _);
1864 pub const FVE_E_DE_VOLUME_OPTED_OUT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272174i32 as _);
1865 pub const FVE_E_DE_WINRE_NOT_CONFIGURED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272185i32 as _);
1866 pub const FVE_E_DRY_RUN_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272307i32 as _);
1867 pub const FVE_E_DV_NOT_ALLOWED_BY_GP: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272271i32 as _);
1868 pub const FVE_E_DV_NOT_SUPPORTED_ON_FS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272272i32 as _);
1869 pub const FVE_E_EDRIVE_BAND_ENUMERATION_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272157i32 as _);
1870 pub const FVE_E_EDRIVE_BAND_IN_USE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272208i32 as _);
1871 pub const FVE_E_EDRIVE_DISALLOWED_BY_GP: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272207i32 as _);
1872 pub const FVE_E_EDRIVE_DRY_RUN_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272196i32 as _);
1873 pub const FVE_E_EDRIVE_DV_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272204i32 as _);
1874 pub const FVE_E_EDRIVE_INCOMPATIBLE_FIRMWARE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272193i32 as _);
1875 pub const FVE_E_EDRIVE_INCOMPATIBLE_VOLUME: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272206i32 as _);
1876 pub const FVE_E_EDRIVE_NO_FAILOVER_TO_SW: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272209i32 as _);
1877 pub const FVE_E_EFI_ONLY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272228i32 as _);
1878 pub const FVE_E_ENH_PIN_INVALID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272231i32 as _);
1879 pub const FVE_E_EOW_NOT_SUPPORTED_IN_VERSION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272172i32 as _);
1880 pub const FVE_E_EXECUTE_REQUEST_SENT_TOO_SOON: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272162i32 as _);
1881 pub const FVE_E_FAILED_AUTHENTICATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272345i32 as _);
1882 pub const FVE_E_FAILED_SECTOR_SIZE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272346i32 as _);
1883 pub const FVE_E_FAILED_WRONG_FS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272365i32 as _);
1884 pub const FVE_E_FIPS_DISABLE_PROTECTION_NOT_ALLOWED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272314i32 as _);
1885 pub const FVE_E_FIPS_HASH_KDF_NOT_ALLOWED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272232i32 as _);
1886 pub const FVE_E_FIPS_PREVENTS_EXTERNAL_KEY_EXPORT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272328i32 as _);
1887 pub const FVE_E_FIPS_PREVENTS_PASSPHRASE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272276i32 as _);
1888 pub const FVE_E_FIPS_PREVENTS_RECOVERY_PASSWORD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272329i32 as _);
1889 pub const FVE_E_FIPS_RNG_CHECK_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272330i32 as _);
1890 pub const FVE_E_FIRMWARE_TYPE_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272312i32 as _);
1891 pub const FVE_E_FOREIGN_VOLUME: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272349i32 as _);
1892 pub const FVE_E_FS_MOUNTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272309i32 as _);
1893 pub const FVE_E_FS_NOT_EXTENDED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272313i32 as _);
1894 pub const FVE_E_FULL_ENCRYPTION_NOT_ALLOWED_ON_TP_STORAGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272219i32 as _);
1895 pub const FVE_E_HIDDEN_VOLUME: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272298i32 as _);
1896 pub const FVE_E_INVALID_BITLOCKER_OID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272274i32 as _);
1897 pub const FVE_E_INVALID_DATUM_TYPE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272229i32 as _);
1898 pub const FVE_E_INVALID_KEY_FORMAT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272332i32 as _);
1899 pub const FVE_E_INVALID_NBP_CERT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272158i32 as _);
1900 pub const FVE_E_INVALID_NKP_CERT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272225i32 as _);
1901 pub const FVE_E_INVALID_PASSWORD_FORMAT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272331i32 as _);
1902 pub const FVE_E_INVALID_PIN_CHARS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272230i32 as _);
1903 pub const FVE_E_INVALID_PIN_CHARS_DETAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272180i32 as _);
1904 pub const FVE_E_INVALID_PROTECTOR_TYPE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272326i32 as _);
1905 pub const FVE_E_INVALID_STARTUP_OPTIONS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272293i32 as _);
1906 pub const FVE_E_KEYFILE_INVALID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272323i32 as _);
1907 pub const FVE_E_KEYFILE_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272324i32 as _);
1908 pub const FVE_E_KEYFILE_NO_VMK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272322i32 as _);
1909 pub const FVE_E_KEY_LENGTH_NOT_SUPPORTED_BY_EDRIVE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272217i32 as _);
1910 pub const FVE_E_KEY_PROTECTOR_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272279i32 as _);
1911 pub const FVE_E_KEY_REQUIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272355i32 as _);
1912 pub const FVE_E_KEY_ROTATION_NOT_ENABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272161i32 as _);
1913 pub const FVE_E_KEY_ROTATION_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272163i32 as _);
1914 pub const FVE_E_LIVEID_ACCOUNT_BLOCKED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272189i32 as _);
1915 pub const FVE_E_LIVEID_ACCOUNT_SUSPENDED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272190i32 as _);
1916 pub const FVE_E_LOCKED_VOLUME: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272384i32 as _);
1917 pub const FVE_E_MOR_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272299i32 as _);
1918 pub const FVE_E_MULTIPLE_NKP_CERTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272227i32 as _);
1919 pub const FVE_E_NON_BITLOCKER_KU: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272237i32 as _);
1920 pub const FVE_E_NON_BITLOCKER_OID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272251i32 as _);
1921 pub const FVE_E_NOT_ACTIVATED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272376i32 as _);
1922 pub const FVE_E_NOT_ALLOWED_IN_SAFE_MODE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272320i32 as _);
1923 pub const FVE_E_NOT_ALLOWED_IN_VERSION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272301i32 as _);
1924 pub const FVE_E_NOT_ALLOWED_ON_CLUSTER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272210i32 as _);
1925 pub const FVE_E_NOT_ALLOWED_ON_CSV_STACK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272211i32 as _);
1926 pub const FVE_E_NOT_ALLOWED_TO_UPGRADE_WHILE_CONVERTING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272205i32 as _);
1927 pub const FVE_E_NOT_DATA_VOLUME: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272359i32 as _);
1928 pub const FVE_E_NOT_DECRYPTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272327i32 as _);
1929 pub const FVE_E_NOT_DE_VOLUME: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272169i32 as _);
1930 pub const FVE_E_NOT_ENCRYPTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272383i32 as _);
1931 pub const FVE_E_NOT_ON_STACK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272310i32 as _);
1932 pub const FVE_E_NOT_OS_VOLUME: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272344i32 as _);
1933 pub const FVE_E_NOT_PROVISIONED_ON_ALL_VOLUMES: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272188i32 as _);
1934 pub const FVE_E_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272363i32 as _);
1935 pub const FVE_E_NO_AUTOUNLOCK_MASTER_KEY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272300i32 as _);
1936 pub const FVE_E_NO_BOOTMGR_METRIC: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272379i32 as _);
1937 pub const FVE_E_NO_BOOTSECTOR_METRIC: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272380i32 as _);
1938 pub const FVE_E_NO_EXISTING_PASSPHRASE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272216i32 as _);
1939 pub const FVE_E_NO_EXISTING_PIN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272224i32 as _);
1940 pub const FVE_E_NO_FEATURE_LICENSE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272294i32 as _);
1941 pub const FVE_E_NO_LICENSE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272311i32 as _);
1942 pub const FVE_E_NO_MBR_METRIC: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272381i32 as _);
1943 pub const FVE_E_NO_PASSPHRASE_WITH_TPM: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272213i32 as _);
1944 pub const FVE_E_NO_PREBOOT_KEYBOARD_DETECTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272203i32 as _);
1945 pub const FVE_E_NO_PREBOOT_KEYBOARD_OR_WINRE_DETECTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272202i32 as _);
1946 pub const FVE_E_NO_PROTECTORS_TO_TEST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272325i32 as _);
1947 pub const FVE_E_NO_SUCH_CAPABILITY_ON_TARGET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272176i32 as _);
1948 pub const FVE_E_NO_TPM_BIOS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272382i32 as _);
1949 pub const FVE_E_NO_TPM_WITH_PASSPHRASE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272212i32 as _);
1950 pub const FVE_E_OPERATION_NOT_SUPPORTED_ON_VISTA_VOLUME: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272234i32 as _);
1951 pub const FVE_E_OSV_KSR_NOT_ALLOWED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272167i32 as _);
1952 pub const FVE_E_OS_NOT_PROTECTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272352i32 as _);
1953 pub const FVE_E_OS_VOLUME_PASSPHRASE_NOT_ALLOWED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272275i32 as _);
1954 pub const FVE_E_OVERLAPPED_UPDATE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272348i32 as _);
1955 pub const FVE_E_PASSPHRASE_PROTECTOR_CHANGE_BY_STD_USER_DISALLOWED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272191i32 as _);
1956 pub const FVE_E_PASSPHRASE_TOO_LONG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272214i32 as _);
1957 pub const FVE_E_PIN_INVALID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272317i32 as _);
1958 pub const FVE_E_PIN_PROTECTOR_CHANGE_BY_STD_USER_DISALLOWED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272222i32 as _);
1959 pub const FVE_E_POLICY_CONFLICT_FDV_RK_OFF_AUK_ON: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272253i32 as _);
1960 pub const FVE_E_POLICY_CONFLICT_FDV_RP_OFF_ADB_ON: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272239i32 as _);
1961 pub const FVE_E_POLICY_CONFLICT_OSV_RP_OFF_ADB_ON: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272240i32 as _);
1962 pub const FVE_E_POLICY_CONFLICT_RDV_RK_OFF_AUK_ON: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272252i32 as _);
1963 pub const FVE_E_POLICY_CONFLICT_RDV_RP_OFF_ADB_ON: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272238i32 as _);
1964 pub const FVE_E_POLICY_CONFLICT_RO_AND_STARTUP_KEY_REQUIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272249i32 as _);
1965 pub const FVE_E_POLICY_INVALID_ENHANCED_BCD_SETTINGS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272194i32 as _);
1966 pub const FVE_E_POLICY_INVALID_PASSPHRASE_LENGTH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272256i32 as _);
1967 pub const FVE_E_POLICY_INVALID_PIN_LENGTH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272280i32 as _);
1968 pub const FVE_E_POLICY_ON_RDV_EXCLUSION_LIST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272156i32 as _);
1969 pub const FVE_E_POLICY_PASSPHRASE_NOT_ALLOWED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272278i32 as _);
1970 pub const FVE_E_POLICY_PASSPHRASE_REQUIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272277i32 as _);
1971 pub const FVE_E_POLICY_PASSPHRASE_REQUIRES_ASCII: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272220i32 as _);
1972 pub const FVE_E_POLICY_PASSPHRASE_TOO_SIMPLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272255i32 as _);
1973 pub const FVE_E_POLICY_PASSWORD_REQUIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272340i32 as _);
1974 pub const FVE_E_POLICY_PROHIBITS_SELFSIGNED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272250i32 as _);
1975 pub const FVE_E_POLICY_RECOVERY_KEY_NOT_ALLOWED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272290i32 as _);
1976 pub const FVE_E_POLICY_RECOVERY_KEY_REQUIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272289i32 as _);
1977 pub const FVE_E_POLICY_RECOVERY_PASSWORD_NOT_ALLOWED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272292i32 as _);
1978 pub const FVE_E_POLICY_RECOVERY_PASSWORD_REQUIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272291i32 as _);
1979 pub const FVE_E_POLICY_REQUIRES_RECOVERY_PASSWORD_ON_TOUCH_DEVICE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272200i32 as _);
1980 pub const FVE_E_POLICY_REQUIRES_STARTUP_PIN_ON_TOUCH_DEVICE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272201i32 as _);
1981 pub const FVE_E_POLICY_STARTUP_KEY_NOT_ALLOWED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272286i32 as _);
1982 pub const FVE_E_POLICY_STARTUP_KEY_REQUIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272285i32 as _);
1983 pub const FVE_E_POLICY_STARTUP_PIN_KEY_NOT_ALLOWED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272284i32 as _);
1984 pub const FVE_E_POLICY_STARTUP_PIN_KEY_REQUIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272283i32 as _);
1985 pub const FVE_E_POLICY_STARTUP_PIN_NOT_ALLOWED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272288i32 as _);
1986 pub const FVE_E_POLICY_STARTUP_PIN_REQUIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272287i32 as _);
1987 pub const FVE_E_POLICY_STARTUP_TPM_NOT_ALLOWED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272282i32 as _);
1988 pub const FVE_E_POLICY_STARTUP_TPM_REQUIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272281i32 as _);
1989 pub const FVE_E_POLICY_USER_CERTIFICATE_NOT_ALLOWED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272270i32 as _);
1990 pub const FVE_E_POLICY_USER_CERTIFICATE_REQUIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272269i32 as _);
1991 pub const FVE_E_POLICY_USER_CERT_MUST_BE_HW: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272268i32 as _);
1992 pub const FVE_E_POLICY_USER_CONFIGURE_FDV_AUTOUNLOCK_NOT_ALLOWED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272267i32 as _);
1993 pub const FVE_E_POLICY_USER_CONFIGURE_RDV_AUTOUNLOCK_NOT_ALLOWED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272266i32 as _);
1994 pub const FVE_E_POLICY_USER_CONFIGURE_RDV_NOT_ALLOWED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272265i32 as _);
1995 pub const FVE_E_POLICY_USER_DISABLE_RDV_NOT_ALLOWED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272263i32 as _);
1996 pub const FVE_E_POLICY_USER_ENABLE_RDV_NOT_ALLOWED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272264i32 as _);
1997 pub const FVE_E_PREDICTED_TPM_PROTECTOR_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272155i32 as _);
1998 pub const FVE_E_PRIVATEKEY_AUTH_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272236i32 as _);
1999 pub const FVE_E_PROTECTION_CANNOT_BE_DISABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272168i32 as _);
2000 pub const FVE_E_PROTECTION_DISABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272351i32 as _);
2001 pub const FVE_E_PROTECTOR_CHANGE_MAX_PASSPHRASE_CHANGE_ATTEMPTS_REACHED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272192i32 as _);
2002 pub const FVE_E_PROTECTOR_CHANGE_MAX_PIN_CHANGE_ATTEMPTS_REACHED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272221i32 as _);
2003 pub const FVE_E_PROTECTOR_CHANGE_PASSPHRASE_MISMATCH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272215i32 as _);
2004 pub const FVE_E_PROTECTOR_CHANGE_PIN_MISMATCH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272223i32 as _);
2005 pub const FVE_E_PROTECTOR_EXISTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272335i32 as _);
2006 pub const FVE_E_PROTECTOR_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272333i32 as _);
2007 pub const FVE_E_PUBKEY_NOT_ALLOWED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272296i32 as _);
2008 pub const FVE_E_RAW_ACCESS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272304i32 as _);
2009 pub const FVE_E_RAW_BLOCKED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272303i32 as _);
2010 pub const FVE_E_REBOOT_REQUIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272306i32 as _);
2011 pub const FVE_E_RECOVERY_KEY_REQUIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272350i32 as _);
2012 pub const FVE_E_RECOVERY_PARTITION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272254i32 as _);
2013 pub const FVE_E_RELATIVE_PATH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272334i32 as _);
2014 pub const FVE_E_REMOVAL_OF_DRA_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272235i32 as _);
2015 pub const FVE_E_REMOVAL_OF_NKP_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272226i32 as _);
2016 pub const FVE_E_SECUREBOOT_CONFIGURATION_INVALID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272197i32 as _);
2017 pub const FVE_E_SECUREBOOT_DISABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272198i32 as _);
2018 pub const FVE_E_SECURE_KEY_REQUIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272377i32 as _);
2019 pub const FVE_E_SETUP_TPM_CALLBACK_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272154i32 as _);
2020 pub const FVE_E_SHADOW_COPY_PRESENT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272195i32 as _);
2021 pub const FVE_E_SYSTEM_VOLUME: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272366i32 as _);
2022 pub const FVE_E_TOKEN_NOT_IMPERSONATED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272308i32 as _);
2023 pub const FVE_E_TOO_SMALL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272367i32 as _);
2024 pub const FVE_E_TPM_CONTEXT_SETUP_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272153i32 as _);
2025 pub const FVE_E_TPM_DISABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272321i32 as _);
2026 pub const FVE_E_TPM_INVALID_PCR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272319i32 as _);
2027 pub const FVE_E_TPM_NOT_OWNED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272360i32 as _);
2028 pub const FVE_E_TPM_NO_VMK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272318i32 as _);
2029 pub const FVE_E_TPM_SRK_AUTH_NOT_ZERO: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272347i32 as _);
2030 pub const FVE_E_TRANSIENT_STATE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272297i32 as _);
2031 pub const FVE_E_VIRTUALIZED_SPACE_TOO_BIG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272247i32 as _);
2032 pub const FVE_E_VOLUME_BOUND_ALREADY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272353i32 as _);
2033 pub const FVE_E_VOLUME_EXTEND_PREVENTS_EOW_DECRYPT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272170i32 as _);
2034 pub const FVE_E_VOLUME_HANDLE_OPEN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272295i32 as _);
2035 pub const FVE_E_VOLUME_NOT_BOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272361i32 as _);
2036 pub const FVE_E_VOLUME_TOO_SMALL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272273i32 as _);
2037 pub const FVE_E_WIPE_CANCEL_NOT_APPLICABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272199i32 as _);
2038 pub const FVE_E_WIPE_NOT_ALLOWED_ON_TP_STORAGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272218i32 as _);
2039 pub const FVE_E_WRONG_BOOTMGR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272378i32 as _);
2040 pub const FVE_E_WRONG_BOOTSECTOR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272342i32 as _);
2041 pub const FVE_E_WRONG_SYSTEM_FS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144272341i32 as _);
2042 pub const FWP_E_ACTION_INCOMPATIBLE_WITH_LAYER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206804i32 as _);
2043 pub const FWP_E_ACTION_INCOMPATIBLE_WITH_SUBLAYER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206803i32 as _);
2044 pub const FWP_E_ALREADY_EXISTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206839i32 as _);
2045 pub const FWP_E_BUILTIN_OBJECT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206825i32 as _);
2046 pub const FWP_E_CALLOUT_NOTIFICATION_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206793i32 as _);
2047 pub const FWP_E_CALLOUT_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206847i32 as _);
2048 pub const FWP_E_CONDITION_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206846i32 as _);
2049 pub const FWP_E_CONNECTIONS_DISABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206783i32 as _);
2050 pub const FWP_E_CONTEXT_INCOMPATIBLE_WITH_CALLOUT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206801i32 as _);
2051 pub const FWP_E_CONTEXT_INCOMPATIBLE_WITH_LAYER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206802i32 as _);
2052 pub const FWP_E_DROP_NOICMP: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206588i32 as _);
2053 pub const FWP_E_DUPLICATE_AUTH_METHOD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206788i32 as _);
2054 pub const FWP_E_DUPLICATE_CONDITION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206806i32 as _);
2055 pub const FWP_E_DUPLICATE_KEYMOD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206805i32 as _);
2056 pub const FWP_E_DYNAMIC_SESSION_IN_PROGRESS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206837i32 as _);
2057 pub const FWP_E_EM_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206798i32 as _);
2058 pub const FWP_E_FILTER_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206845i32 as _);
2059 pub const FWP_E_IKEEXT_NOT_RUNNING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206780i32 as _);
2060 pub const FWP_E_INCOMPATIBLE_AUTH_METHOD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206800i32 as _);
2061 pub const FWP_E_INCOMPATIBLE_CIPHER_TRANSFORM: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206790i32 as _);
2062 pub const FWP_E_INCOMPATIBLE_DH_GROUP: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206799i32 as _);
2063 pub const FWP_E_INCOMPATIBLE_LAYER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206828i32 as _);
2064 pub const FWP_E_INCOMPATIBLE_SA_STATE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206821i32 as _);
2065 pub const FWP_E_INCOMPATIBLE_TXN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206831i32 as _);
2066 pub const FWP_E_INVALID_ACTION_TYPE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206812i32 as _);
2067 pub const FWP_E_INVALID_AUTH_TRANSFORM: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206792i32 as _);
2068 pub const FWP_E_INVALID_CIPHER_TRANSFORM: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206791i32 as _);
2069 pub const FWP_E_INVALID_DNS_NAME: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206782i32 as _);
2070 pub const FWP_E_INVALID_ENUMERATOR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206819i32 as _);
2071 pub const FWP_E_INVALID_FLAGS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206818i32 as _);
2072 pub const FWP_E_INVALID_INTERVAL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206815i32 as _);
2073 pub const FWP_E_INVALID_NET_MASK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206817i32 as _);
2074 pub const FWP_E_INVALID_PARAMETER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206795i32 as _);
2075 pub const FWP_E_INVALID_RANGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206816i32 as _);
2076 pub const FWP_E_INVALID_TRANSFORM_COMBINATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206789i32 as _);
2077 pub const FWP_E_INVALID_TUNNEL_ENDPOINT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206787i32 as _);
2078 pub const FWP_E_INVALID_WEIGHT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206811i32 as _);
2079 pub const FWP_E_IN_USE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206838i32 as _);
2080 pub const FWP_E_KEY_DICTATION_INVALID_KEYING_MATERIAL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206784i32 as _);
2081 pub const FWP_E_KEY_DICTATOR_ALREADY_REGISTERED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206785i32 as _);
2082 pub const FWP_E_KM_CLIENTS_ONLY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206827i32 as _);
2083 pub const FWP_E_L2_DRIVER_NOT_READY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206786i32 as _);
2084 pub const FWP_E_LAYER_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206844i32 as _);
2085 pub const FWP_E_LIFETIME_MISMATCH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206826i32 as _);
2086 pub const FWP_E_MATCH_TYPE_MISMATCH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206810i32 as _);
2087 pub const FWP_E_NET_EVENTS_DISABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206829i32 as _);
2088 pub const FWP_E_NEVER_MATCH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206797i32 as _);
2089 pub const FWP_E_NOTIFICATION_DROPPED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206823i32 as _);
2090 pub const FWP_E_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206840i32 as _);
2091 pub const FWP_E_NO_TXN_IN_PROGRESS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206835i32 as _);
2092 pub const FWP_E_NULL_DISPLAY_NAME: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206813i32 as _);
2093 pub const FWP_E_NULL_POINTER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206820i32 as _);
2094 pub const FWP_E_OUT_OF_BOUNDS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206808i32 as _);
2095 pub const FWP_E_PROVIDER_CONTEXT_MISMATCH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206796i32 as _);
2096 pub const FWP_E_PROVIDER_CONTEXT_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206842i32 as _);
2097 pub const FWP_E_PROVIDER_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206843i32 as _);
2098 pub const FWP_E_RESERVED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206807i32 as _);
2099 pub const FWP_E_SESSION_ABORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206832i32 as _);
2100 pub const FWP_E_STILL_ON: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206781i32 as _);
2101 pub const FWP_E_SUBLAYER_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206841i32 as _);
2102 pub const FWP_E_TIMEOUT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206830i32 as _);
2103 pub const FWP_E_TOO_MANY_CALLOUTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206824i32 as _);
2104 pub const FWP_E_TOO_MANY_SUBLAYERS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206794i32 as _);
2105 pub const FWP_E_TRAFFIC_MISMATCH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206822i32 as _);
2106 pub const FWP_E_TXN_ABORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206833i32 as _);
2107 pub const FWP_E_TXN_IN_PROGRESS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206834i32 as _);
2108 pub const FWP_E_TYPE_MISMATCH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206809i32 as _);
2109 pub const FWP_E_WRONG_SESSION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206836i32 as _);
2110 pub const FWP_E_ZERO_LENGTH_ARRAY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144206814i32 as _);
2111 pub const GCN_E_DEFAULTNAMESPACE_EXISTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143616983i32 as _);
2112 pub const GCN_E_MODULE_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143616991i32 as _);
2113 pub const GCN_E_NETADAPTER_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143616986i32 as _);
2114 pub const GCN_E_NETADAPTER_TIMEOUT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143616987i32 as _);
2115 pub const GCN_E_NETCOMPARTMENT_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143616985i32 as _);
2116 pub const GCN_E_NETINTERFACE_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143616984i32 as _);
2117 pub const GCN_E_NO_REQUEST_HANDLERS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143616990i32 as _);
2118 pub const GCN_E_REQUEST_UNSUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143616989i32 as _);
2119 pub const GCN_E_RUNTIMEKEYS_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143616988i32 as _);
2120 #[inline]
GetHandleInformation<'a, Param0: ::windows::runtime::IntoParam<'a, HANDLE>>(hobject: Param0, lpdwflags: *mut u32) -> BOOL2121 pub unsafe fn GetHandleInformation<'a, Param0: ::windows::runtime::IntoParam<'a, HANDLE>>(hobject: Param0, lpdwflags: *mut u32) -> BOOL {
2122     #[cfg(windows)]
2123     {
2124         #[link(name = "windows")]
2125         extern "system" {
2126             fn GetHandleInformation(hobject: HANDLE, lpdwflags: *mut u32) -> BOOL;
2127         }
2128         ::std::mem::transmute(GetHandleInformation(hobject.into_param().abi(), ::std::mem::transmute(lpdwflags)))
2129     }
2130     #[cfg(not(windows))]
2131     unimplemented!("Unsupported target OS");
2132 }
2133 #[inline]
GetLastError() -> WIN32_ERROR2134 pub unsafe fn GetLastError() -> WIN32_ERROR {
2135     #[cfg(windows)]
2136     {
2137         #[link(name = "windows")]
2138         extern "system" {
2139             fn GetLastError() -> WIN32_ERROR;
2140         }
2141         ::std::mem::transmute(GetLastError())
2142     }
2143     #[cfg(not(windows))]
2144     unimplemented!("Unsupported target OS");
2145 }
2146 #[derive(:: std :: clone :: Clone, :: std :: marker :: Copy, :: std :: default :: Default, :: std :: fmt :: Debug, :: std :: cmp :: PartialEq, :: std :: cmp :: Eq)]
2147 #[repr(transparent)]
2148 pub struct HANDLE(pub isize);
2149 unsafe impl ::windows::runtime::Handle for HANDLE {
is_invalid(&self) -> bool2150     fn is_invalid(&self) -> bool {
2151         self.0 == 0 || self.0 == -1
2152     }
ok(self) -> ::windows::runtime::Result<Self>2153     fn ok(self) -> ::windows::runtime::Result<Self> {
2154         if self.is_invalid() {
2155             Err(::windows::runtime::Error::from_win32())
2156         } else {
2157             Ok(self)
2158         }
2159     }
2160 }
2161 unsafe impl ::windows::runtime::Abi for HANDLE {
2162     type Abi = Self;
2163     type DefaultType = Self;
2164 }
2165 #[derive(:: std :: cmp :: PartialEq, :: std :: cmp :: Eq, :: std :: marker :: Copy, :: std :: clone :: Clone, :: std :: default :: Default, :: std :: fmt :: Debug)]
2166 #[repr(transparent)]
2167 pub struct HANDLE_FLAGS(pub u32);
2168 pub const HANDLE_FLAG_INHERIT: HANDLE_FLAGS = HANDLE_FLAGS(1u32);
2169 pub const HANDLE_FLAG_PROTECT_FROM_CLOSE: HANDLE_FLAGS = HANDLE_FLAGS(2u32);
2170 impl ::std::convert::From<u32> for HANDLE_FLAGS {
from(value: u32) -> Self2171     fn from(value: u32) -> Self {
2172         Self(value)
2173     }
2174 }
2175 unsafe impl ::windows::runtime::Abi for HANDLE_FLAGS {
2176     type Abi = Self;
2177     type DefaultType = Self;
2178 }
2179 impl ::std::ops::BitOr for HANDLE_FLAGS {
2180     type Output = Self;
bitor(self, rhs: Self) -> Self2181     fn bitor(self, rhs: Self) -> Self {
2182         Self(self.0 | rhs.0)
2183     }
2184 }
2185 impl ::std::ops::BitAnd for HANDLE_FLAGS {
2186     type Output = Self;
bitand(self, rhs: Self) -> Self2187     fn bitand(self, rhs: Self) -> Self {
2188         Self(self.0 & rhs.0)
2189     }
2190 }
2191 impl ::std::ops::BitOrAssign for HANDLE_FLAGS {
bitor_assign(&mut self, rhs: Self)2192     fn bitor_assign(&mut self, rhs: Self) {
2193         self.0.bitor_assign(rhs.0)
2194     }
2195 }
2196 impl ::std::ops::BitAndAssign for HANDLE_FLAGS {
bitand_assign(&mut self, rhs: Self)2197     fn bitand_assign(&mut self, rhs: Self) {
2198         self.0.bitand_assign(rhs.0)
2199     }
2200 }
2201 impl ::std::ops::Not for HANDLE_FLAGS {
2202     type Output = Self;
not(self) -> Self2203     fn not(self) -> Self {
2204         Self(self.0.not())
2205     }
2206 }
2207 #[derive(:: std :: clone :: Clone, :: std :: marker :: Copy, :: std :: fmt :: Debug, :: std :: cmp :: PartialEq, :: std :: cmp :: Eq)]
2208 #[repr(transparent)]
2209 pub struct HANDLE_PTR(pub usize);
2210 impl ::std::default::Default for HANDLE_PTR {
default() -> Self2211     fn default() -> Self {
2212         unsafe { ::std::mem::zeroed() }
2213     }
2214 }
2215 unsafe impl ::windows::runtime::Handle for HANDLE_PTR {}
2216 unsafe impl ::windows::runtime::Abi for HANDLE_PTR {
2217     type Abi = Self;
2218     type DefaultType = Self;
2219 }
2220 pub const HCN_E_ADAPTER_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143617018i32 as _);
2221 pub const HCN_E_ADDR_INVALID_OR_RESERVED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143616977i32 as _);
2222 pub const HCN_E_DEGRADED_OPERATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143617001i32 as _);
2223 pub const HCN_E_ENDPOINT_ALREADY_ATTACHED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143617004i32 as _);
2224 pub const HCN_E_ENDPOINT_NAMESPACE_ALREADY_EXISTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143616981i32 as _);
2225 pub const HCN_E_ENDPOINT_NOT_ATTACHED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143616972i32 as _);
2226 pub const HCN_E_ENDPOINT_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143617022i32 as _);
2227 pub const HCN_E_ENDPOINT_NOT_LOCAL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143616971i32 as _);
2228 pub const HCN_E_ENDPOINT_SHARING_DISABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143616995i32 as _);
2229 pub const HCN_E_ENTITY_HAS_REFERENCES: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143616980i32 as _);
2230 pub const HCN_E_GUID_CONVERSION_FAILURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143616999i32 as _);
2231 pub const HCN_E_ICS_DISABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143616982i32 as _);
2232 pub const HCN_E_INVALID_ENDPOINT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143617012i32 as _);
2233 pub const HCN_E_INVALID_INTERNAL_PORT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143616979i32 as _);
2234 pub const HCN_E_INVALID_IP: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143616994i32 as _);
2235 pub const HCN_E_INVALID_IP_SUBNET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143616973i32 as _);
2236 pub const HCN_E_INVALID_JSON: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143616997i32 as _);
2237 pub const HCN_E_INVALID_JSON_REFERENCE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143616996i32 as _);
2238 pub const HCN_E_INVALID_NETWORK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143617014i32 as _);
2239 pub const HCN_E_INVALID_NETWORK_TYPE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143617013i32 as _);
2240 pub const HCN_E_INVALID_POLICY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143617011i32 as _);
2241 pub const HCN_E_INVALID_POLICY_TYPE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143617010i32 as _);
2242 pub const HCN_E_INVALID_PREFIX: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143616976i32 as _);
2243 pub const HCN_E_INVALID_REMOTE_ENDPOINT_OPERATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143617009i32 as _);
2244 pub const HCN_E_INVALID_SUBNET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143616974i32 as _);
2245 pub const HCN_E_LAYER_ALREADY_EXISTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143617007i32 as _);
2246 pub const HCN_E_LAYER_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143617021i32 as _);
2247 pub const HCN_E_MANAGER_STOPPED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143616992i32 as _);
2248 pub const HCN_E_MAPPING_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143617002i32 as _);
2249 pub const HCN_E_NAMESPACE_ATTACH_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143616978i32 as _);
2250 pub const HCN_E_NETWORK_ALREADY_EXISTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143617008i32 as _);
2251 pub const HCN_E_NETWORK_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143617023i32 as _);
2252 pub const HCN_E_OBJECT_USED_AFTER_UNLOAD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143616975i32 as _);
2253 pub const HCN_E_POLICY_ALREADY_EXISTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143617006i32 as _);
2254 pub const HCN_E_POLICY_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143617016i32 as _);
2255 pub const HCN_E_PORT_ALREADY_EXISTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143617005i32 as _);
2256 pub const HCN_E_PORT_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143617017i32 as _);
2257 pub const HCN_E_REGKEY_FAILURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143616998i32 as _);
2258 pub const HCN_E_REQUEST_UNSUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143617003i32 as _);
2259 pub const HCN_E_SHARED_SWITCH_MODIFICATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143617000i32 as _);
2260 pub const HCN_E_SUBNET_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143617019i32 as _);
2261 pub const HCN_E_SWITCH_EXTENSION_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143616993i32 as _);
2262 pub const HCN_E_SWITCH_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143617020i32 as _);
2263 pub const HCN_E_VFP_NOT_ALLOWED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143616969i32 as _);
2264 pub const HCN_E_VFP_PORTSETTING_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143617015i32 as _);
2265 pub const HCN_INTERFACEPARAMETERS_ALREADY_APPLIED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143616970i32 as _);
2266 pub const HCS_E_ACCESS_DENIED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143878885i32 as _);
2267 pub const HCS_E_CONNECTION_CLOSED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143878902i32 as _);
2268 pub const HCS_E_CONNECTION_TIMEOUT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143878903i32 as _);
2269 pub const HCS_E_CONNECT_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143878904i32 as _);
2270 pub const HCS_E_GUEST_CRITICAL_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143878884i32 as _);
2271 pub const HCS_E_HYPERV_NOT_INSTALLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143878910i32 as _);
2272 pub const HCS_E_IMAGE_MISMATCH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143878911i32 as _);
2273 pub const HCS_E_INVALID_JSON: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143878899i32 as _);
2274 pub const HCS_E_INVALID_LAYER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143878894i32 as _);
2275 pub const HCS_E_INVALID_STATE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143878907i32 as _);
2276 pub const HCS_E_OPERATION_ALREADY_STARTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143878890i32 as _);
2277 pub const HCS_E_OPERATION_NOT_STARTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143878891i32 as _);
2278 pub const HCS_E_OPERATION_PENDING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143878889i32 as _);
2279 pub const HCS_E_OPERATION_RESULT_ALLOCATION_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143878886i32 as _);
2280 pub const HCS_E_OPERATION_SYSTEM_CALLBACK_ALREADY_SET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143878887i32 as _);
2281 pub const HCS_E_OPERATION_TIMEOUT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143878888i32 as _);
2282 pub const HCS_E_PROCESS_ALREADY_STOPPED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143878881i32 as _);
2283 pub const HCS_E_PROCESS_INFO_NOT_AVAILABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143878883i32 as _);
2284 pub const HCS_E_PROTOCOL_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143878895i32 as _);
2285 pub const HCS_E_SERVICE_DISCONNECT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143878882i32 as _);
2286 pub const HCS_E_SERVICE_NOT_AVAILABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143878892i32 as _);
2287 pub const HCS_E_SYSTEM_ALREADY_EXISTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143878897i32 as _);
2288 pub const HCS_E_SYSTEM_ALREADY_STOPPED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143878896i32 as _);
2289 pub const HCS_E_SYSTEM_NOT_CONFIGURED_FOR_OPERATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143878880i32 as _);
2290 pub const HCS_E_SYSTEM_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143878898i32 as _);
2291 pub const HCS_E_TERMINATED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143878905i32 as _);
2292 pub const HCS_E_TERMINATED_DURING_START: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143878912i32 as _);
2293 pub const HCS_E_UNEXPECTED_EXIT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143878906i32 as _);
2294 pub const HCS_E_UNKNOWN_MESSAGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143878901i32 as _);
2295 pub const HCS_E_UNSUPPORTED_PROTOCOL_VERSION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143878900i32 as _);
2296 pub const HCS_E_WINDOWS_INSIDER_REQUIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143878893i32 as _);
2297 #[derive(:: std :: clone :: Clone, :: std :: marker :: Copy, :: std :: fmt :: Debug, :: std :: cmp :: PartialEq, :: std :: cmp :: Eq)]
2298 #[repr(transparent)]
2299 pub struct HINSTANCE(pub isize);
2300 impl ::std::default::Default for HINSTANCE {
default() -> Self2301     fn default() -> Self {
2302         unsafe { ::std::mem::zeroed() }
2303     }
2304 }
2305 unsafe impl ::windows::runtime::Handle for HINSTANCE {}
2306 unsafe impl ::windows::runtime::Abi for HINSTANCE {
2307     type Abi = Self;
2308     type DefaultType = Self;
2309 }
2310 pub const HSP_BASE_ERROR_MASK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2128019200i32 as _);
2311 pub const HSP_BASE_INTERNAL_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2128018945i32 as _);
2312 pub const HSP_BS_ERROR_MASK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2128080896i32 as _);
2313 pub const HSP_BS_INTERNAL_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2128080641i32 as _);
2314 pub const HSP_DRV_ERROR_MASK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2128019456i32 as _);
2315 pub const HSP_DRV_INTERNAL_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2128019201i32 as _);
2316 pub const HSP_E_ERROR_MASK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2128084992i32 as _);
2317 pub const HSP_E_INTERNAL_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2128080897i32 as _);
2318 pub const HSP_KSP_ALGORITHM_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2128018935i32 as _);
2319 pub const HSP_KSP_BUFFER_TOO_SMALL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2128018939i32 as _);
2320 pub const HSP_KSP_DEVICE_NOT_READY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2128018943i32 as _);
2321 pub const HSP_KSP_ERROR_MASK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2128018944i32 as _);
2322 pub const HSP_KSP_INTERNAL_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2128018689i32 as _);
2323 pub const HSP_KSP_INVALID_DATA: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2128018937i32 as _);
2324 pub const HSP_KSP_INVALID_FLAGS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2128018936i32 as _);
2325 pub const HSP_KSP_INVALID_KEY_HANDLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2128018941i32 as _);
2326 pub const HSP_KSP_INVALID_KEY_TYPE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2128018932i32 as _);
2327 pub const HSP_KSP_INVALID_PARAMETER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2128018940i32 as _);
2328 pub const HSP_KSP_INVALID_PROVIDER_HANDLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2128018942i32 as _);
2329 pub const HSP_KSP_KEY_ALREADY_FINALIZED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2128018934i32 as _);
2330 pub const HSP_KSP_KEY_EXISTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2128018923i32 as _);
2331 pub const HSP_KSP_KEY_LOAD_FAIL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2128018921i32 as _);
2332 pub const HSP_KSP_KEY_MISSING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2128018922i32 as _);
2333 pub const HSP_KSP_KEY_NOT_FINALIZED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2128018933i32 as _);
2334 pub const HSP_KSP_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2128018938i32 as _);
2335 pub const HSP_KSP_NO_MEMORY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2128018928i32 as _);
2336 pub const HSP_KSP_NO_MORE_ITEMS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2128018920i32 as _);
2337 pub const HSP_KSP_PARAMETER_NOT_SET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2128018927i32 as _);
2338 pub const HTTP_E_STATUS_AMBIGUOUS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145844948i32 as _);
2339 pub const HTTP_E_STATUS_BAD_GATEWAY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145844746i32 as _);
2340 pub const HTTP_E_STATUS_BAD_METHOD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145844843i32 as _);
2341 pub const HTTP_E_STATUS_BAD_REQUEST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145844848i32 as _);
2342 pub const HTTP_E_STATUS_CONFLICT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145844839i32 as _);
2343 pub const HTTP_E_STATUS_DENIED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145844847i32 as _);
2344 pub const HTTP_E_STATUS_EXPECTATION_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145844831i32 as _);
2345 pub const HTTP_E_STATUS_FORBIDDEN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145844845i32 as _);
2346 pub const HTTP_E_STATUS_GATEWAY_TIMEOUT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145844744i32 as _);
2347 pub const HTTP_E_STATUS_GONE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145844838i32 as _);
2348 pub const HTTP_E_STATUS_LENGTH_REQUIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145844837i32 as _);
2349 pub const HTTP_E_STATUS_MOVED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145844947i32 as _);
2350 pub const HTTP_E_STATUS_NONE_ACCEPTABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145844842i32 as _);
2351 pub const HTTP_E_STATUS_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145844844i32 as _);
2352 pub const HTTP_E_STATUS_NOT_MODIFIED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145844944i32 as _);
2353 pub const HTTP_E_STATUS_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145844747i32 as _);
2354 pub const HTTP_E_STATUS_PAYMENT_REQ: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145844846i32 as _);
2355 pub const HTTP_E_STATUS_PRECOND_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145844836i32 as _);
2356 pub const HTTP_E_STATUS_PROXY_AUTH_REQ: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145844841i32 as _);
2357 pub const HTTP_E_STATUS_RANGE_NOT_SATISFIABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145844832i32 as _);
2358 pub const HTTP_E_STATUS_REDIRECT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145844946i32 as _);
2359 pub const HTTP_E_STATUS_REDIRECT_KEEP_VERB: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145844941i32 as _);
2360 pub const HTTP_E_STATUS_REDIRECT_METHOD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145844945i32 as _);
2361 pub const HTTP_E_STATUS_REQUEST_TIMEOUT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145844840i32 as _);
2362 pub const HTTP_E_STATUS_REQUEST_TOO_LARGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145844835i32 as _);
2363 pub const HTTP_E_STATUS_SERVER_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145844748i32 as _);
2364 pub const HTTP_E_STATUS_SERVICE_UNAVAIL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145844745i32 as _);
2365 pub const HTTP_E_STATUS_UNEXPECTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145845247i32 as _);
2366 pub const HTTP_E_STATUS_UNEXPECTED_CLIENT_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145845244i32 as _);
2367 pub const HTTP_E_STATUS_UNEXPECTED_REDIRECTION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145845245i32 as _);
2368 pub const HTTP_E_STATUS_UNEXPECTED_SERVER_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145845243i32 as _);
2369 pub const HTTP_E_STATUS_UNSUPPORTED_MEDIA: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145844833i32 as _);
2370 pub const HTTP_E_STATUS_URI_TOO_LONG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145844834i32 as _);
2371 pub const HTTP_E_STATUS_USE_PROXY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145844943i32 as _);
2372 pub const HTTP_E_STATUS_VERSION_NOT_SUP: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145844743i32 as _);
2373 #[derive(:: std :: clone :: Clone, :: std :: marker :: Copy, :: std :: fmt :: Debug, :: std :: cmp :: PartialEq, :: std :: cmp :: Eq)]
2374 #[repr(transparent)]
2375 pub struct HWND(pub isize);
2376 impl ::std::default::Default for HWND {
default() -> Self2377     fn default() -> Self {
2378         unsafe { ::std::mem::zeroed() }
2379     }
2380 }
2381 unsafe impl ::windows::runtime::Handle for HWND {}
2382 unsafe impl ::windows::runtime::Abi for HWND {
2383     type Abi = Self;
2384     type DefaultType = Self;
2385 }
2386 pub const INPLACE_E_FIRST: i32 = -2147221088i32;
2387 pub const INPLACE_E_LAST: i32 = -2147221073i32;
2388 pub const INPLACE_E_NOTOOLSPACE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221087i32 as _);
2389 pub const INPLACE_E_NOTUNDOABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221088i32 as _);
2390 pub const INPLACE_S_FIRST: i32 = 262560i32;
2391 pub const INPLACE_S_LAST: i32 = 262575i32;
2392 pub const INPLACE_S_TRUNCATED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(262560i32 as _);
2393 pub const INPUT_E_DEVICE_INFO: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143289338i32 as _);
2394 pub const INPUT_E_DEVICE_PROPERTY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143289336i32 as _);
2395 pub const INPUT_E_FRAME: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143289340i32 as _);
2396 pub const INPUT_E_HISTORY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143289339i32 as _);
2397 pub const INPUT_E_MULTIMODAL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143289342i32 as _);
2398 pub const INPUT_E_OUT_OF_ORDER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143289344i32 as _);
2399 pub const INPUT_E_PACKET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143289341i32 as _);
2400 pub const INPUT_E_REENTRANCY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143289343i32 as _);
2401 pub const INPUT_E_TRANSFORM: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143289337i32 as _);
2402 pub const INVALID_HANDLE_VALUE: HANDLE = HANDLE(-1i32 as _);
2403 pub const IORING_E_COMPLETION_QUEUE_TOO_BIG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2142896123i32 as _);
2404 pub const IORING_E_CORRUPT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2142896121i32 as _);
2405 pub const IORING_E_REQUIRED_FLAG_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2142896127i32 as _);
2406 pub const IORING_E_SUBMISSION_QUEUE_FULL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2142896126i32 as _);
2407 pub const IORING_E_SUBMISSION_QUEUE_TOO_BIG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2142896124i32 as _);
2408 pub const IORING_E_SUBMIT_IN_PROGRESS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2142896122i32 as _);
2409 pub const IORING_E_VERSION_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2142896125i32 as _);
2410 pub const JSCRIPT_E_CANTEXECUTE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1996357631i32 as _);
2411 pub const LANGUAGE_E_DATABASE_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215484i32 as _);
2412 pub const LANGUAGE_S_LARGE_WORD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(268161i32 as _);
2413 #[derive(:: std :: clone :: Clone, :: std :: marker :: Copy, :: std :: fmt :: Debug, :: std :: cmp :: PartialEq, :: std :: cmp :: Eq)]
2414 #[repr(transparent)]
2415 pub struct LPARAM(pub isize);
2416 impl ::std::default::Default for LPARAM {
default() -> Self2417     fn default() -> Self {
2418         unsafe { ::std::mem::zeroed() }
2419     }
2420 }
2421 unsafe impl ::windows::runtime::Handle for LPARAM {}
2422 unsafe impl ::windows::runtime::Abi for LPARAM {
2423     type Abi = Self;
2424     type DefaultType = Self;
2425 }
2426 #[derive(:: std :: clone :: Clone, :: std :: marker :: Copy, :: std :: fmt :: Debug, :: std :: cmp :: PartialEq, :: std :: cmp :: Eq)]
2427 #[repr(transparent)]
2428 pub struct LRESULT(pub isize);
2429 impl ::std::default::Default for LRESULT {
default() -> Self2430     fn default() -> Self {
2431         unsafe { ::std::mem::zeroed() }
2432     }
2433 }
2434 unsafe impl ::windows::runtime::Handle for LRESULT {}
2435 unsafe impl ::windows::runtime::Abi for LRESULT {
2436     type Abi = Self;
2437     type DefaultType = Self;
2438 }
2439 #[derive(:: std :: clone :: Clone, :: std :: marker :: Copy, :: std :: fmt :: Debug, :: std :: cmp :: PartialEq, :: std :: cmp :: Eq)]
2440 #[repr(transparent)]
2441 pub struct LSTATUS(pub i32);
2442 impl ::std::default::Default for LSTATUS {
default() -> Self2443     fn default() -> Self {
2444         unsafe { ::std::mem::zeroed() }
2445     }
2446 }
2447 unsafe impl ::windows::runtime::Handle for LSTATUS {}
2448 unsafe impl ::windows::runtime::Abi for LSTATUS {
2449     type Abi = Self;
2450     type DefaultType = Self;
2451 }
2452 #[derive(:: std :: clone :: Clone, :: std :: marker :: Copy)]
2453 #[repr(C)]
2454 pub struct LUID {
2455     pub LowPart: u32,
2456     pub HighPart: i32,
2457 }
2458 impl LUID {}
2459 impl ::std::default::Default for LUID {
default() -> Self2460     fn default() -> Self {
2461         unsafe { ::std::mem::zeroed() }
2462     }
2463 }
2464 impl ::std::fmt::Debug for LUID {
fmt(&self, fmt: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result2465     fn fmt(&self, fmt: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
2466         fmt.debug_struct("LUID").field("LowPart", &self.LowPart).field("HighPart", &self.HighPart).finish()
2467     }
2468 }
2469 impl ::std::cmp::PartialEq for LUID {
eq(&self, other: &Self) -> bool2470     fn eq(&self, other: &Self) -> bool {
2471         self.LowPart == other.LowPart && self.HighPart == other.HighPart
2472     }
2473 }
2474 impl ::std::cmp::Eq for LUID {}
2475 unsafe impl ::windows::runtime::Abi for LUID {
2476     type Abi = Self;
2477     type DefaultType = Self;
2478 }
2479 pub const MARSHAL_E_FIRST: i32 = -2147221216i32;
2480 pub const MARSHAL_E_LAST: i32 = -2147221201i32;
2481 pub const MARSHAL_S_FIRST: i32 = 262432i32;
2482 pub const MARSHAL_S_LAST: i32 = 262447i32;
2483 pub const MAX_PATH: u32 = 260u32;
2484 pub const MEM_E_INVALID_LINK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146959344i32 as _);
2485 pub const MEM_E_INVALID_ROOT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146959351i32 as _);
2486 pub const MEM_E_INVALID_SIZE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146959343i32 as _);
2487 pub const MENROLL_S_ENROLLMENT_SUSPENDED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(1572881i32 as _);
2488 pub const MILAVERR_INSUFFICIENTVIDEORESOURCES: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003303160i32 as _);
2489 pub const MILAVERR_INVALIDWMPVERSION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003303161i32 as _);
2490 pub const MILAVERR_MEDIAPLAYERCLOSED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003303155i32 as _);
2491 pub const MILAVERR_MODULENOTLOADED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003303163i32 as _);
2492 pub const MILAVERR_NOCLOCK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003303168i32 as _);
2493 pub const MILAVERR_NOMEDIATYPE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003303167i32 as _);
2494 pub const MILAVERR_NOREADYFRAMES: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003303164i32 as _);
2495 pub const MILAVERR_NOVIDEOMIXER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003303166i32 as _);
2496 pub const MILAVERR_NOVIDEOPRESENTER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003303165i32 as _);
2497 pub const MILAVERR_REQUESTEDTEXTURETOOBIG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003303158i32 as _);
2498 pub const MILAVERR_SEEKFAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003303157i32 as _);
2499 pub const MILAVERR_UNEXPECTEDWMPFAILURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003303156i32 as _);
2500 pub const MILAVERR_UNKNOWNHARDWAREERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003303154i32 as _);
2501 pub const MILAVERR_VIDEOACCELERATIONNOTAVAILABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003303159i32 as _);
2502 pub const MILAVERR_WMPFACTORYNOTREGISTERED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003303162i32 as _);
2503 pub const MILEFFECTSERR_ALREADYATTACHEDTOLISTENER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003302888i32 as _);
2504 pub const MILEFFECTSERR_CONNECTORNOTASSOCIATEDWITHEFFECT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003302894i32 as _);
2505 pub const MILEFFECTSERR_CONNECTORNOTCONNECTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003302895i32 as _);
2506 pub const MILEFFECTSERR_CYCLEDETECTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003302892i32 as _);
2507 pub const MILEFFECTSERR_EFFECTALREADYINAGRAPH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003302890i32 as _);
2508 pub const MILEFFECTSERR_EFFECTHASNOCHILDREN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003302889i32 as _);
2509 pub const MILEFFECTSERR_EFFECTINMORETHANONEGRAPH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003302891i32 as _);
2510 pub const MILEFFECTSERR_EFFECTNOTPARTOFGROUP: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003302897i32 as _);
2511 pub const MILEFFECTSERR_EMPTYBOUNDS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003302886i32 as _);
2512 pub const MILEFFECTSERR_NOINPUTSOURCEATTACHED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003302896i32 as _);
2513 pub const MILEFFECTSERR_NOTAFFINETRANSFORM: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003302887i32 as _);
2514 pub const MILEFFECTSERR_OUTPUTSIZETOOLARGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003302885i32 as _);
2515 pub const MILEFFECTSERR_RESERVED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003302893i32 as _);
2516 pub const MILEFFECTSERR_UNKNOWNPROPERTY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003302898i32 as _);
2517 pub const MILERR_ADAPTER_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003304290i32 as _);
2518 pub const MILERR_ALREADYLOCKED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003304314i32 as _);
2519 pub const MILERR_ALREADY_INITIALIZED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003304305i32 as _);
2520 pub const MILERR_BADNUMBER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003304438i32 as _);
2521 pub const MILERR_COLORSPACE_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003304289i32 as _);
2522 pub const MILERR_DEVICECANNOTRENDERTEXT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003304312i32 as _);
2523 pub const MILERR_DISPLAYFORMATNOTSUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003304316i32 as _);
2524 pub const MILERR_DISPLAYID_ACCESS_DENIED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003304287i32 as _);
2525 pub const MILERR_DISPLAYSTATEINVALID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003304442i32 as _);
2526 pub const MILERR_DXGI_ENUMERATION_OUT_OF_SYNC: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003304291i32 as _);
2527 pub const MILERR_GENERIC_IGNORE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003304309i32 as _);
2528 pub const MILERR_GLYPHBITMAPMISSED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003304311i32 as _);
2529 pub const MILERR_INSUFFICIENTBUFFER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003304446i32 as _);
2530 pub const MILERR_INTERNALERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003304320i32 as _);
2531 pub const MILERR_INVALIDCALL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003304315i32 as _);
2532 pub const MILERR_MALFORMEDGLYPHCACHE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003304310i32 as _);
2533 pub const MILERR_MALFORMED_GUIDELINE_DATA: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003304308i32 as _);
2534 pub const MILERR_MAX_TEXTURE_SIZE_EXCEEDED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003304294i32 as _);
2535 pub const MILERR_MISMATCHED_SIZE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003304304i32 as _);
2536 pub const MILERR_MROW_READLOCK_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003304297i32 as _);
2537 pub const MILERR_MROW_UPDATE_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003304296i32 as _);
2538 pub const MILERR_NEED_RECREATE_AND_PRESENT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003304306i32 as _);
2539 pub const MILERR_NONINVERTIBLEMATRIX: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003304441i32 as _);
2540 pub const MILERR_NOTLOCKED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003304313i32 as _);
2541 pub const MILERR_NOT_QUEUING_PRESENTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003304300i32 as _);
2542 pub const MILERR_NO_HARDWARE_DEVICE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003304307i32 as _);
2543 pub const MILERR_NO_REDIRECTION_SURFACE_AVAILABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003304303i32 as _);
2544 pub const MILERR_NO_REDIRECTION_SURFACE_RETRY_LATER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003304299i32 as _);
2545 pub const MILERR_OBJECTBUSY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003304447i32 as _);
2546 pub const MILERR_PREFILTER_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003304288i32 as _);
2547 pub const MILERR_QPC_TIME_WENT_BACKWARD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003304293i32 as _);
2548 pub const MILERR_QUEUED_PRESENT_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003304301i32 as _);
2549 pub const MILERR_REMOTING_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003304302i32 as _);
2550 pub const MILERR_SCANNER_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003304444i32 as _);
2551 pub const MILERR_SCREENACCESSDENIED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003304443i32 as _);
2552 pub const MILERR_SHADER_COMPILE_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003304295i32 as _);
2553 pub const MILERR_TERMINATED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003304439i32 as _);
2554 pub const MILERR_TOOMANYSHADERELEMNTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003304298i32 as _);
2555 pub const MILERR_WIN32ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003304445i32 as _);
2556 pub const MILERR_ZEROVECTOR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003304440i32 as _);
2557 pub const MK_E_CANTOPENFILE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221014i32 as _);
2558 pub const MK_E_CONNECTMANUALLY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221024i32 as _);
2559 pub const MK_E_ENUMERATION_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221009i32 as _);
2560 pub const MK_E_EXCEEDEDDEADLINE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221023i32 as _);
2561 pub const MK_E_FIRST: i32 = -2147221024i32;
2562 pub const MK_E_INTERMEDIATEINTERFACENOTSUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221017i32 as _);
2563 pub const MK_E_INVALIDEXTENSION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221018i32 as _);
2564 pub const MK_E_LAST: i32 = -2147221009i32;
2565 pub const MK_E_MUSTBOTHERUSER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221013i32 as _);
2566 pub const MK_E_NEEDGENERIC: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221022i32 as _);
2567 pub const MK_E_NOINVERSE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221012i32 as _);
2568 pub const MK_E_NOOBJECT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221019i32 as _);
2569 pub const MK_E_NOPREFIX: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221010i32 as _);
2570 pub const MK_E_NOSTORAGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221011i32 as _);
2571 pub const MK_E_NOTBINDABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221016i32 as _);
2572 pub const MK_E_NOTBOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221015i32 as _);
2573 pub const MK_E_NO_NORMALIZED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146959353i32 as _);
2574 pub const MK_E_SYNTAX: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221020i32 as _);
2575 pub const MK_E_UNAVAILABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221021i32 as _);
2576 pub const MK_S_FIRST: i32 = 262624i32;
2577 pub const MK_S_HIM: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(262629i32 as _);
2578 pub const MK_S_LAST: i32 = 262639i32;
2579 pub const MK_S_ME: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(262628i32 as _);
2580 pub const MK_S_MONIKERALREADYREGISTERED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(262631i32 as _);
2581 pub const MK_S_REDUCED_TO_SELF: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(262626i32 as _);
2582 pub const MK_S_US: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(262630i32 as _);
2583 pub const MSDTC_E_DUPLICATE_RESOURCE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146367743i32 as _);
2584 pub const MSSIPOTF_E_BADVERSION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146865131i32 as _);
2585 pub const MSSIPOTF_E_BAD_FIRST_TABLE_PLACEMENT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146865144i32 as _);
2586 pub const MSSIPOTF_E_BAD_MAGICNUMBER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146865148i32 as _);
2587 pub const MSSIPOTF_E_BAD_OFFSET_TABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146865147i32 as _);
2588 pub const MSSIPOTF_E_CANTGETOBJECT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146865150i32 as _);
2589 pub const MSSIPOTF_E_CRYPT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146865132i32 as _);
2590 pub const MSSIPOTF_E_DSIG_STRUCTURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146865130i32 as _);
2591 pub const MSSIPOTF_E_FAILED_HINTS_CHECK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146865135i32 as _);
2592 pub const MSSIPOTF_E_FAILED_POLICY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146865136i32 as _);
2593 pub const MSSIPOTF_E_FILE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146865133i32 as _);
2594 pub const MSSIPOTF_E_FILETOOSMALL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146865141i32 as _);
2595 pub const MSSIPOTF_E_FILE_CHECKSUM: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146865139i32 as _);
2596 pub const MSSIPOTF_E_NOHEADTABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146865149i32 as _);
2597 pub const MSSIPOTF_E_NOT_OPENTYPE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146865134i32 as _);
2598 pub const MSSIPOTF_E_OUTOFMEMRANGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146865151i32 as _);
2599 pub const MSSIPOTF_E_PCONST_CHECK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146865129i32 as _);
2600 pub const MSSIPOTF_E_STRUCTURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146865128i32 as _);
2601 pub const MSSIPOTF_E_TABLES_OVERLAP: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146865143i32 as _);
2602 pub const MSSIPOTF_E_TABLE_CHECKSUM: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146865140i32 as _);
2603 pub const MSSIPOTF_E_TABLE_LONGWORD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146865145i32 as _);
2604 pub const MSSIPOTF_E_TABLE_PADBYTES: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146865142i32 as _);
2605 pub const MSSIPOTF_E_TABLE_TAGORDER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146865146i32 as _);
2606 pub const NAP_E_CONFLICTING_ID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144927741i32 as _);
2607 pub const NAP_E_ENTITY_DISABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144927730i32 as _);
2608 pub const NAP_E_ID_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144927734i32 as _);
2609 pub const NAP_E_INVALID_PACKET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144927743i32 as _);
2610 pub const NAP_E_MAXSIZE_TOO_SMALL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144927733i32 as _);
2611 pub const NAP_E_MISMATCHED_ID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144927736i32 as _);
2612 pub const NAP_E_MISSING_SOH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144927742i32 as _);
2613 pub const NAP_E_NETSH_GROUPPOLICY_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144927729i32 as _);
2614 pub const NAP_E_NOT_INITIALIZED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144927737i32 as _);
2615 pub const NAP_E_NOT_PENDING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144927735i32 as _);
2616 pub const NAP_E_NOT_REGISTERED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144927738i32 as _);
2617 pub const NAP_E_NO_CACHED_SOH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144927740i32 as _);
2618 pub const NAP_E_SERVICE_NOT_RUNNING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144927732i32 as _);
2619 pub const NAP_E_SHV_CONFIG_EXISTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144927727i32 as _);
2620 pub const NAP_E_SHV_CONFIG_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144927726i32 as _);
2621 pub const NAP_E_SHV_TIMEOUT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144927725i32 as _);
2622 pub const NAP_E_STILL_BOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144927739i32 as _);
2623 pub const NAP_E_TOO_MANY_CALLS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144927728i32 as _);
2624 pub const NAP_S_CERT_ALREADY_PRESENT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(2555917i32 as _);
2625 pub type NEARPROC = unsafe extern "system" fn() -> isize;
2626 pub const NOERROR: u32 = 0u32;
2627 pub const NOT_AN_ERROR1: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(529920i32 as _);
2628 pub const NTDDI_MAXVER: u32 = 2560u32;
2629 pub const NTE_AUTHENTICATION_IGNORED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893775i32 as _);
2630 pub const NTE_BAD_ALGID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893816i32 as _);
2631 pub const NTE_BAD_DATA: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893819i32 as _);
2632 pub const NTE_BAD_FLAGS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893815i32 as _);
2633 pub const NTE_BAD_HASH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893822i32 as _);
2634 pub const NTE_BAD_HASH_STATE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893812i32 as _);
2635 pub const NTE_BAD_KEY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893821i32 as _);
2636 pub const NTE_BAD_KEYSET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893802i32 as _);
2637 pub const NTE_BAD_KEYSET_PARAM: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893793i32 as _);
2638 pub const NTE_BAD_KEY_STATE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893813i32 as _);
2639 pub const NTE_BAD_LEN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893820i32 as _);
2640 pub const NTE_BAD_PROVIDER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893805i32 as _);
2641 pub const NTE_BAD_PROV_TYPE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893804i32 as _);
2642 pub const NTE_BAD_PUBLIC_KEY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893803i32 as _);
2643 pub const NTE_BAD_SIGNATURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893818i32 as _);
2644 pub const NTE_BAD_TYPE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893814i32 as _);
2645 pub const NTE_BAD_UID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893823i32 as _);
2646 pub const NTE_BAD_VER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893817i32 as _);
2647 pub const NTE_BUFFERS_OVERLAP: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893781i32 as _);
2648 pub const NTE_BUFFER_TOO_SMALL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893784i32 as _);
2649 pub const NTE_DECRYPTION_FAILURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893780i32 as _);
2650 pub const NTE_DEVICE_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893771i32 as _);
2651 pub const NTE_DEVICE_NOT_READY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893776i32 as _);
2652 pub const NTE_DOUBLE_ENCRYPT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893806i32 as _);
2653 pub const NTE_ENCRYPTION_FAILURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893772i32 as _);
2654 pub const NTE_EXISTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893809i32 as _);
2655 pub const NTE_FAIL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893792i32 as _);
2656 pub const NTE_FIXEDPARAMETER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893787i32 as _);
2657 pub const NTE_HMAC_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893777i32 as _);
2658 pub const NTE_INCORRECT_PASSWORD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893773i32 as _);
2659 pub const NTE_INTERNAL_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893779i32 as _);
2660 pub const NTE_INVALID_HANDLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893786i32 as _);
2661 pub const NTE_INVALID_PARAMETER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893785i32 as _);
2662 pub const NTE_KEYSET_ENTRY_BAD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893798i32 as _);
2663 pub const NTE_KEYSET_NOT_DEF: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893799i32 as _);
2664 pub const NTE_NOT_ACTIVE_CONSOLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893768i32 as _);
2665 pub const NTE_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893807i32 as _);
2666 pub const NTE_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893783i32 as _);
2667 pub const NTE_NO_KEY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893811i32 as _);
2668 pub const NTE_NO_MEMORY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893810i32 as _);
2669 pub const NTE_NO_MORE_ITEMS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893782i32 as _);
2670 pub const NTE_OP_OK: u32 = 0u32;
2671 pub const NTE_PASSWORD_CHANGE_REQUIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893769i32 as _);
2672 pub const NTE_PERM: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893808i32 as _);
2673 pub const NTE_PROVIDER_DLL_FAIL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893795i32 as _);
2674 pub const NTE_PROV_DLL_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893794i32 as _);
2675 pub const NTE_PROV_TYPE_ENTRY_BAD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893800i32 as _);
2676 pub const NTE_PROV_TYPE_NOT_DEF: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893801i32 as _);
2677 pub const NTE_PROV_TYPE_NO_MATCH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893797i32 as _);
2678 pub const NTE_SIGNATURE_FILE_BAD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893796i32 as _);
2679 pub const NTE_SILENT_CONTEXT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893790i32 as _);
2680 pub const NTE_SYS_ERR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893791i32 as _);
2681 pub const NTE_TEMPORARY_PROFILE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893788i32 as _);
2682 pub const NTE_TOKEN_KEYSET_STORAGE_FULL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893789i32 as _);
2683 pub const NTE_UI_REQUIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893778i32 as _);
2684 pub const NTE_USER_CANCELLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893770i32 as _);
2685 pub const NTE_VALIDATION_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893774i32 as _);
2686 #[repr(transparent)]
2687 #[derive(:: std :: default :: Default, :: std :: clone :: Clone, :: std :: marker :: Copy, :: std :: cmp :: PartialEq, :: std :: cmp :: Eq, :: std :: fmt :: Debug)]
2688 pub struct NTSTATUS(pub u32);
2689 impl NTSTATUS {
2690     #[inline]
is_ok(self) -> bool2691     pub const fn is_ok(self) -> bool {
2692         self.0 & 0x8000_0000 == 0
2693     }
2694     #[inline]
is_err(self) -> bool2695     pub const fn is_err(self) -> bool {
2696         !self.is_ok()
2697     }
2698     #[inline]
to_hresult(self) -> ::windows::runtime::HRESULT2699     pub const fn to_hresult(self) -> ::windows::runtime::HRESULT {
2700         ::windows::runtime::HRESULT(self.0 | 0x1000_0000)
2701     }
2702     #[inline]
ok(self) -> ::windows::runtime::Result<()>2703     pub fn ok(self) -> ::windows::runtime::Result<()> {
2704         if self.is_ok() {
2705             Ok(())
2706         } else {
2707             Err(::windows::runtime::Error::fast_error(self.to_hresult()))
2708         }
2709     }
2710 }
2711 unsafe impl ::windows::runtime::Abi for NTSTATUS {
2712     type Abi = Self;
2713     type DefaultType = Self;
2714 }
2715 #[derive(:: std :: cmp :: PartialEq, :: std :: cmp :: Eq, :: std :: marker :: Copy, :: std :: clone :: Clone, :: std :: default :: Default, :: std :: fmt :: Debug)]
2716 #[repr(transparent)]
2717 pub struct NTSTATUS_FACILITY_CODE(pub u32);
2718 pub const FACILITY_DEBUGGER: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(1u32);
2719 pub const FACILITY_RPC_RUNTIME: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(2u32);
2720 pub const FACILITY_RPC_STUBS: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(3u32);
2721 pub const FACILITY_IO_ERROR_CODE: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(4u32);
2722 pub const FACILITY_CODCLASS_ERROR_CODE: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(6u32);
2723 pub const FACILITY_NTWIN32: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(7u32);
2724 pub const FACILITY_NTCERT: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(8u32);
2725 pub const FACILITY_NTSSPI: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(9u32);
2726 pub const FACILITY_TERMINAL_SERVER: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(10u32);
2727 pub const FACILITY_USB_ERROR_CODE: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(16u32);
2728 pub const FACILITY_HID_ERROR_CODE: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(17u32);
2729 pub const FACILITY_FIREWIRE_ERROR_CODE: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(18u32);
2730 pub const FACILITY_CLUSTER_ERROR_CODE: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(19u32);
2731 pub const FACILITY_ACPI_ERROR_CODE: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(20u32);
2732 pub const FACILITY_SXS_ERROR_CODE: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(21u32);
2733 pub const FACILITY_TRANSACTION: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(25u32);
2734 pub const FACILITY_COMMONLOG: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(26u32);
2735 pub const FACILITY_VIDEO: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(27u32);
2736 pub const FACILITY_FILTER_MANAGER: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(28u32);
2737 pub const FACILITY_MONITOR: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(29u32);
2738 pub const FACILITY_GRAPHICS_KERNEL: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(30u32);
2739 pub const FACILITY_DRIVER_FRAMEWORK: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(32u32);
2740 pub const FACILITY_FVE_ERROR_CODE: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(33u32);
2741 pub const FACILITY_FWP_ERROR_CODE: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(34u32);
2742 pub const FACILITY_NDIS_ERROR_CODE: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(35u32);
2743 pub const FACILITY_QUIC_ERROR_CODE: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(36u32);
2744 pub const FACILITY_TPM: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(41u32);
2745 pub const FACILITY_RTPM: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(42u32);
2746 pub const FACILITY_HYPERVISOR: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(53u32);
2747 pub const FACILITY_IPSEC: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(54u32);
2748 pub const FACILITY_VIRTUALIZATION: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(55u32);
2749 pub const FACILITY_VOLMGR: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(56u32);
2750 pub const FACILITY_BCD_ERROR_CODE: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(57u32);
2751 pub const FACILITY_WIN32K_NTUSER: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(62u32);
2752 pub const FACILITY_WIN32K_NTGDI: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(63u32);
2753 pub const FACILITY_RESUME_KEY_FILTER: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(64u32);
2754 pub const FACILITY_RDBSS: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(65u32);
2755 pub const FACILITY_BTH_ATT: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(66u32);
2756 pub const FACILITY_SECUREBOOT: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(67u32);
2757 pub const FACILITY_AUDIO_KERNEL: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(68u32);
2758 pub const FACILITY_VSM: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(69u32);
2759 pub const FACILITY_NT_IORING: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(70u32);
2760 pub const FACILITY_VOLSNAP: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(80u32);
2761 pub const FACILITY_SDBUS: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(81u32);
2762 pub const FACILITY_SHARED_VHDX: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(92u32);
2763 pub const FACILITY_SMB: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(93u32);
2764 pub const FACILITY_XVS: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(94u32);
2765 pub const FACILITY_INTERIX: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(153u32);
2766 pub const FACILITY_SPACES: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(231u32);
2767 pub const FACILITY_SECURITY_CORE: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(232u32);
2768 pub const FACILITY_SYSTEM_INTEGRITY: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(233u32);
2769 pub const FACILITY_LICENSING: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(234u32);
2770 pub const FACILITY_PLATFORM_MANIFEST: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(235u32);
2771 pub const FACILITY_APP_EXEC: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(236u32);
2772 pub const FACILITY_MAXIMUM_VALUE: NTSTATUS_FACILITY_CODE = NTSTATUS_FACILITY_CODE(237u32);
2773 impl ::std::convert::From<u32> for NTSTATUS_FACILITY_CODE {
from(value: u32) -> Self2774     fn from(value: u32) -> Self {
2775         Self(value)
2776     }
2777 }
2778 unsafe impl ::windows::runtime::Abi for NTSTATUS_FACILITY_CODE {
2779     type Abi = Self;
2780     type DefaultType = Self;
2781 }
2782 impl ::std::ops::BitOr for NTSTATUS_FACILITY_CODE {
2783     type Output = Self;
bitor(self, rhs: Self) -> Self2784     fn bitor(self, rhs: Self) -> Self {
2785         Self(self.0 | rhs.0)
2786     }
2787 }
2788 impl ::std::ops::BitAnd for NTSTATUS_FACILITY_CODE {
2789     type Output = Self;
bitand(self, rhs: Self) -> Self2790     fn bitand(self, rhs: Self) -> Self {
2791         Self(self.0 & rhs.0)
2792     }
2793 }
2794 impl ::std::ops::BitOrAssign for NTSTATUS_FACILITY_CODE {
bitor_assign(&mut self, rhs: Self)2795     fn bitor_assign(&mut self, rhs: Self) {
2796         self.0.bitor_assign(rhs.0)
2797     }
2798 }
2799 impl ::std::ops::BitAndAssign for NTSTATUS_FACILITY_CODE {
bitand_assign(&mut self, rhs: Self)2800     fn bitand_assign(&mut self, rhs: Self) {
2801         self.0.bitand_assign(rhs.0)
2802     }
2803 }
2804 impl ::std::ops::Not for NTSTATUS_FACILITY_CODE {
2805     type Output = Self;
not(self) -> Self2806     fn not(self) -> Self {
2807         Self(self.0.not())
2808     }
2809 }
2810 pub const OLEOBJ_E_FIRST: i32 = -2147221120i32;
2811 pub const OLEOBJ_E_INVALIDVERB: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221119i32 as _);
2812 pub const OLEOBJ_E_LAST: i32 = -2147221105i32;
2813 pub const OLEOBJ_E_NOVERBS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221120i32 as _);
2814 pub const OLEOBJ_S_CANNOT_DOVERB_NOW: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(262529i32 as _);
2815 pub const OLEOBJ_S_FIRST: i32 = 262528i32;
2816 pub const OLEOBJ_S_INVALIDHWND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(262530i32 as _);
2817 pub const OLEOBJ_S_INVALIDVERB: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(262528i32 as _);
2818 pub const OLEOBJ_S_LAST: i32 = 262543i32;
2819 pub const OLE_E_ADVF: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221503i32 as _);
2820 pub const OLE_E_ADVISENOTSUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221501i32 as _);
2821 pub const OLE_E_BLANK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221497i32 as _);
2822 pub const OLE_E_CANTCONVERT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221487i32 as _);
2823 pub const OLE_E_CANT_BINDTOSOURCE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221494i32 as _);
2824 pub const OLE_E_CANT_GETMONIKER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221495i32 as _);
2825 pub const OLE_E_CLASSDIFF: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221496i32 as _);
2826 pub const OLE_E_ENUM_NOMORE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221502i32 as _);
2827 pub const OLE_E_FIRST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221504i32 as _);
2828 pub const OLE_E_INVALIDHWND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221489i32 as _);
2829 pub const OLE_E_INVALIDRECT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221491i32 as _);
2830 pub const OLE_E_LAST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221249i32 as _);
2831 pub const OLE_E_NOCACHE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221498i32 as _);
2832 pub const OLE_E_NOCONNECTION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221500i32 as _);
2833 pub const OLE_E_NOSTORAGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221486i32 as _);
2834 pub const OLE_E_NOTRUNNING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221499i32 as _);
2835 pub const OLE_E_NOT_INPLACEACTIVE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221488i32 as _);
2836 pub const OLE_E_OLEVERB: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221504i32 as _);
2837 pub const OLE_E_PROMPTSAVECANCELLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221492i32 as _);
2838 pub const OLE_E_STATIC: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221493i32 as _);
2839 pub const OLE_E_WRONGCOMPOBJ: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221490i32 as _);
2840 pub const OLE_S_FIRST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(262144i32 as _);
2841 pub const OLE_S_LAST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(262399i32 as _);
2842 pub const OLE_S_MAC_CLIPFORMAT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(262146i32 as _);
2843 pub const OLE_S_STATIC: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(262145i32 as _);
2844 pub const OLE_S_USEREG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(262144i32 as _);
2845 pub const ONL_CONNECTION_COUNT_LIMIT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2138701811i32 as _);
2846 pub const ONL_E_ACCESS_DENIED_BY_TOU: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2138701822i32 as _);
2847 pub const ONL_E_ACCOUNT_LOCKED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2138701817i32 as _);
2848 pub const ONL_E_ACCOUNT_SUSPENDED_ABUSE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2138701813i32 as _);
2849 pub const ONL_E_ACCOUNT_SUSPENDED_COMPROIMISE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2138701814i32 as _);
2850 pub const ONL_E_ACCOUNT_UPDATE_REQUIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2138701819i32 as _);
2851 pub const ONL_E_ACTION_REQUIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2138701812i32 as _);
2852 pub const ONL_E_CONNECTED_ACCOUNT_CAN_NOT_SIGNOUT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2138701810i32 as _);
2853 pub const ONL_E_EMAIL_VERIFICATION_REQUIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2138701815i32 as _);
2854 pub const ONL_E_FORCESIGNIN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2138701818i32 as _);
2855 pub const ONL_E_INVALID_APPLICATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2138701821i32 as _);
2856 pub const ONL_E_INVALID_AUTHENTICATION_TARGET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2138701823i32 as _);
2857 pub const ONL_E_PARENTAL_CONSENT_REQUIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2138701816i32 as _);
2858 pub const ONL_E_PASSWORD_UPDATE_REQUIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2138701820i32 as _);
2859 pub const ONL_E_REQUEST_THROTTLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2138701808i32 as _);
2860 pub const ONL_E_USER_AUTHENTICATION_REQUIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2138701809i32 as _);
2861 pub const OR_INVALID_OID: i32 = 1911i32;
2862 pub const OR_INVALID_OXID: i32 = 1910i32;
2863 pub const OR_INVALID_SET: i32 = 1912i32;
2864 pub const OSS_ACCESS_SERIALIZATION_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881517i32 as _);
2865 pub const OSS_API_DLL_NOT_LINKED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881495i32 as _);
2866 pub const OSS_BAD_ARG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881530i32 as _);
2867 pub const OSS_BAD_ENCRULES: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881514i32 as _);
2868 pub const OSS_BAD_PTR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881525i32 as _);
2869 pub const OSS_BAD_TABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881521i32 as _);
2870 pub const OSS_BAD_TIME: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881524i32 as _);
2871 pub const OSS_BAD_VERSION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881529i32 as _);
2872 pub const OSS_BERDER_DLL_NOT_LINKED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881494i32 as _);
2873 pub const OSS_CANT_CLOSE_TRACE_FILE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881490i32 as _);
2874 pub const OSS_CANT_OPEN_TRACE_FILE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881509i32 as _);
2875 pub const OSS_CANT_OPEN_TRACE_WINDOW: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881512i32 as _);
2876 pub const OSS_COMPARATOR_CODE_NOT_LINKED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881499i32 as _);
2877 pub const OSS_COMPARATOR_DLL_NOT_LINKED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881500i32 as _);
2878 pub const OSS_CONSTRAINT_DLL_NOT_LINKED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881501i32 as _);
2879 pub const OSS_CONSTRAINT_VIOLATED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881519i32 as _);
2880 pub const OSS_COPIER_DLL_NOT_LINKED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881502i32 as _);
2881 pub const OSS_DATA_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881531i32 as _);
2882 pub const OSS_FATAL_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881518i32 as _);
2883 pub const OSS_INDEFINITE_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881523i32 as _);
2884 pub const OSS_LIMITED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881526i32 as _);
2885 pub const OSS_MEM_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881522i32 as _);
2886 pub const OSS_MEM_MGR_DLL_NOT_LINKED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881498i32 as _);
2887 pub const OSS_MORE_BUF: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881535i32 as _);
2888 pub const OSS_MORE_INPUT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881532i32 as _);
2889 pub const OSS_MUTEX_NOT_CREATED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881491i32 as _);
2890 pub const OSS_NEGATIVE_UINTEGER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881534i32 as _);
2891 pub const OSS_NULL_FCN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881515i32 as _);
2892 pub const OSS_NULL_TBL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881516i32 as _);
2893 pub const OSS_OID_DLL_NOT_LINKED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881510i32 as _);
2894 pub const OSS_OPEN_TYPE_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881492i32 as _);
2895 pub const OSS_OUT_MEMORY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881528i32 as _);
2896 pub const OSS_OUT_OF_RANGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881503i32 as _);
2897 pub const OSS_PDU_MISMATCH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881527i32 as _);
2898 pub const OSS_PDU_RANGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881533i32 as _);
2899 pub const OSS_PDV_CODE_NOT_LINKED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881496i32 as _);
2900 pub const OSS_PDV_DLL_NOT_LINKED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881497i32 as _);
2901 pub const OSS_PER_DLL_NOT_LINKED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881493i32 as _);
2902 pub const OSS_REAL_CODE_NOT_LINKED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881504i32 as _);
2903 pub const OSS_REAL_DLL_NOT_LINKED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881505i32 as _);
2904 pub const OSS_TABLE_MISMATCH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881507i32 as _);
2905 pub const OSS_TOO_LONG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881520i32 as _);
2906 pub const OSS_TRACE_FILE_ALREADY_OPEN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881508i32 as _);
2907 pub const OSS_TYPE_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881506i32 as _);
2908 pub const OSS_UNAVAIL_ENCRULES: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881513i32 as _);
2909 pub const OSS_UNIMPLEMENTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146881511i32 as _);
2910 pub const PEERDIST_ERROR_ALREADY_COMPLETED: i32 = 4060i32;
2911 pub const PEERDIST_ERROR_ALREADY_EXISTS: i32 = 4058i32;
2912 pub const PEERDIST_ERROR_ALREADY_INITIALIZED: i32 = 4055i32;
2913 pub const PEERDIST_ERROR_CANNOT_PARSE_CONTENTINFO: i32 = 4051i32;
2914 pub const PEERDIST_ERROR_CONTENTINFO_VERSION_UNSUPPORTED: i32 = 4050i32;
2915 pub const PEERDIST_ERROR_INVALIDATED: i32 = 4057i32;
2916 pub const PEERDIST_ERROR_INVALID_CONFIGURATION: i32 = 4063i32;
2917 pub const PEERDIST_ERROR_MISSING_DATA: i32 = 4052i32;
2918 pub const PEERDIST_ERROR_NOT_INITIALIZED: i32 = 4054i32;
2919 pub const PEERDIST_ERROR_NOT_LICENSED: i32 = 4064i32;
2920 pub const PEERDIST_ERROR_NO_MORE: i32 = 4053i32;
2921 pub const PEERDIST_ERROR_OPERATION_NOTFOUND: i32 = 4059i32;
2922 pub const PEERDIST_ERROR_OUT_OF_BOUNDS: i32 = 4061i32;
2923 pub const PEERDIST_ERROR_SERVICE_UNAVAILABLE: i32 = 4065i32;
2924 pub const PEERDIST_ERROR_SHUTDOWN_IN_PROGRESS: i32 = 4056i32;
2925 pub const PEERDIST_ERROR_TRUST_FAILURE: i32 = 4066i32;
2926 pub const PEERDIST_ERROR_VERSION_UNSUPPORTED: i32 = 4062i32;
2927 pub const PEER_E_ALREADY_LISTENING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140995321i32 as _);
2928 pub const PEER_E_CANNOT_CONVERT_PEER_NAME: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140979199i32 as _);
2929 pub const PEER_E_CANNOT_START_SERVICE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140995581i32 as _);
2930 pub const PEER_E_CERT_STORE_CORRUPTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140993535i32 as _);
2931 pub const PEER_E_CHAIN_TOO_LONG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140993789i32 as _);
2932 pub const PEER_E_CIRCULAR_CHAIN_DETECTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140993786i32 as _);
2933 pub const PEER_E_CLASSIFIER_TOO_LONG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140995071i32 as _);
2934 pub const PEER_E_CLOUD_NAME_AMBIGUOUS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140991483i32 as _);
2935 pub const PEER_E_CONNECTION_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140995319i32 as _);
2936 pub const PEER_E_CONNECTION_NOT_AUTHENTICATED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140995318i32 as _);
2937 pub const PEER_E_CONNECTION_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140995325i32 as _);
2938 pub const PEER_E_CONNECTION_REFUSED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140995317i32 as _);
2939 pub const PEER_E_CONNECT_SELF: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140995322i32 as _);
2940 pub const PEER_E_CONTACT_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140971007i32 as _);
2941 pub const PEER_E_DATABASE_ACCESSDENIED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140994814i32 as _);
2942 pub const PEER_E_DATABASE_ALREADY_PRESENT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140994811i32 as _);
2943 pub const PEER_E_DATABASE_NOT_PRESENT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140994810i32 as _);
2944 pub const PEER_E_DBINITIALIZATION_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140994813i32 as _);
2945 pub const PEER_E_DBNAME_CHANGED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140995567i32 as _);
2946 pub const PEER_E_DEFERRED_VALIDATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140987344i32 as _);
2947 pub const PEER_E_DUPLICATE_GRAPH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140995566i32 as _);
2948 pub const PEER_E_EVENT_HANDLE_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140994303i32 as _);
2949 pub const PEER_E_FW_BLOCKED_BY_POLICY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140966903i32 as _);
2950 pub const PEER_E_FW_BLOCKED_BY_SHIELDS_UP: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140966902i32 as _);
2951 pub const PEER_E_FW_DECLINED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140966901i32 as _);
2952 pub const PEER_E_FW_EXCEPTION_DISABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140966904i32 as _);
2953 pub const PEER_E_GRAPH_IN_USE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140995563i32 as _);
2954 pub const PEER_E_GRAPH_NOT_READY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140995565i32 as _);
2955 pub const PEER_E_GRAPH_SHUTTING_DOWN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140995564i32 as _);
2956 pub const PEER_E_GROUPS_EXIST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140995068i32 as _);
2957 pub const PEER_E_GROUP_IN_USE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140987246i32 as _);
2958 pub const PEER_E_GROUP_NOT_READY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140987247i32 as _);
2959 pub const PEER_E_IDENTITY_DELETED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140987232i32 as _);
2960 pub const PEER_E_IDENTITY_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140994559i32 as _);
2961 pub const PEER_E_INVALID_ADDRESS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140966905i32 as _);
2962 pub const PEER_E_INVALID_ATTRIBUTES: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140994046i32 as _);
2963 pub const PEER_E_INVALID_CLASSIFIER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140987296i32 as _);
2964 pub const PEER_E_INVALID_CLASSIFIER_PROPERTY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140987278i32 as _);
2965 pub const PEER_E_INVALID_CREDENTIAL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140987262i32 as _);
2966 pub const PEER_E_INVALID_CREDENTIAL_INFO: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140987263i32 as _);
2967 pub const PEER_E_INVALID_DATABASE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140995562i32 as _);
2968 pub const PEER_E_INVALID_FRIENDLY_NAME: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140987280i32 as _);
2969 pub const PEER_E_INVALID_GRAPH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140995568i32 as _);
2970 pub const PEER_E_INVALID_GROUP: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140987245i32 as _);
2971 pub const PEER_E_INVALID_GROUP_PROPERTIES: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140987328i32 as _);
2972 pub const PEER_E_INVALID_PEER_HOST_NAME: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140979198i32 as _);
2973 pub const PEER_E_INVALID_PEER_NAME: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140987312i32 as _);
2974 pub const PEER_E_INVALID_RECORD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140987376i32 as _);
2975 pub const PEER_E_INVALID_RECORD_EXPIRATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140987264i32 as _);
2976 pub const PEER_E_INVALID_RECORD_SIZE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140987261i32 as _);
2977 pub const PEER_E_INVALID_ROLE_PROPERTY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140987279i32 as _);
2978 pub const PEER_E_INVALID_SEARCH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140994047i32 as _);
2979 pub const PEER_E_INVALID_TIME_PERIOD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140993787i32 as _);
2980 pub const PEER_E_INVITATION_NOT_TRUSTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140993791i32 as _);
2981 pub const PEER_E_INVITE_CANCELLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140966912i32 as _);
2982 pub const PEER_E_INVITE_RESPONSE_NOT_AVAILABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140966911i32 as _);
2983 pub const PEER_E_IPV6_NOT_INSTALLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140995583i32 as _);
2984 pub const PEER_E_MAX_RECORD_SIZE_EXCEEDED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140994812i32 as _);
2985 pub const PEER_E_NODE_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140995320i32 as _);
2986 pub const PEER_E_NOT_AUTHORIZED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140987360i32 as _);
2987 pub const PEER_E_NOT_INITIALIZED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140995582i32 as _);
2988 pub const PEER_E_NOT_LICENSED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140995580i32 as _);
2989 pub const PEER_E_NOT_SIGNED_IN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140966909i32 as _);
2990 pub const PEER_E_NO_CLOUD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140991487i32 as _);
2991 pub const PEER_E_NO_KEY_ACCESS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140995069i32 as _);
2992 pub const PEER_E_NO_MEMBERS_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140987244i32 as _);
2993 pub const PEER_E_NO_MEMBER_CONNECTIONS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140987243i32 as _);
2994 pub const PEER_E_NO_MORE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140979197i32 as _);
2995 pub const PEER_E_PASSWORD_DOES_NOT_MEET_POLICY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140987359i32 as _);
2996 pub const PEER_E_PNRP_DUPLICATE_PEER_NAME: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140979195i32 as _);
2997 pub const PEER_E_PRIVACY_DECLINED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140966908i32 as _);
2998 pub const PEER_E_RECORD_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140994815i32 as _);
2999 pub const PEER_E_SERVICE_NOT_AVAILABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140987231i32 as _);
3000 pub const PEER_E_TIMEOUT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140966907i32 as _);
3001 pub const PEER_E_TOO_MANY_ATTRIBUTES: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140995561i32 as _);
3002 pub const PEER_E_TOO_MANY_IDENTITIES: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140995070i32 as _);
3003 pub const PEER_E_UNABLE_TO_LISTEN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140987242i32 as _);
3004 pub const PEER_E_UNSUPPORTED_VERSION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140987248i32 as _);
3005 pub const PEER_S_ALREADY_A_MEMBER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(6488070i32 as _);
3006 pub const PEER_S_ALREADY_CONNECTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(6496256i32 as _);
3007 pub const PEER_S_GRAPH_DATA_CREATED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(6488065i32 as _);
3008 pub const PEER_S_NO_CONNECTIVITY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(6488069i32 as _);
3009 pub const PEER_S_NO_EVENT_DATA: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(6488066i32 as _);
3010 pub const PEER_S_SUBSCRIPTION_EXISTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(6512640i32 as _);
3011 pub const PERSIST_E_NOTSELFSIZING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146762741i32 as _);
3012 pub const PERSIST_E_SIZEDEFINITE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146762743i32 as _);
3013 pub const PERSIST_E_SIZEINDEFINITE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146762742i32 as _);
3014 pub const PLA_E_CABAPI_FAILURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144337645i32 as _);
3015 pub const PLA_E_CONFLICT_INCL_EXCL_API: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144337659i32 as _);
3016 pub const PLA_E_CREDENTIALS_REQUIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144337661i32 as _);
3017 pub const PLA_E_DCS_ALREADY_EXISTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144337737i32 as _);
3018 pub const PLA_E_DCS_IN_USE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144337750i32 as _);
3019 pub const PLA_E_DCS_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144337918i32 as _);
3020 pub const PLA_E_DCS_NOT_RUNNING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144337660i32 as _);
3021 pub const PLA_E_DCS_SINGLETON_REQUIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144337662i32 as _);
3022 pub const PLA_E_DCS_START_WAIT_TIMEOUT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144337654i32 as _);
3023 pub const PLA_E_DC_ALREADY_EXISTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144337655i32 as _);
3024 pub const PLA_E_DC_START_WAIT_TIMEOUT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144337653i32 as _);
3025 pub const PLA_E_EXE_ALREADY_CONFIGURED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144337657i32 as _);
3026 pub const PLA_E_EXE_FULL_PATH_REQUIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144337650i32 as _);
3027 pub const PLA_E_EXE_PATH_NOT_VALID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144337656i32 as _);
3028 pub const PLA_E_INVALID_SESSION_NAME: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144337649i32 as _);
3029 pub const PLA_E_NETWORK_EXE_NOT_VALID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144337658i32 as _);
3030 pub const PLA_E_NO_DUPLICATES: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144337651i32 as _);
3031 pub const PLA_E_NO_MIN_DISK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144337808i32 as _);
3032 pub const PLA_E_PLA_CHANNEL_NOT_ENABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144337648i32 as _);
3033 pub const PLA_E_PROPERTY_CONFLICT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144337663i32 as _);
3034 pub const PLA_E_REPORT_WAIT_TIMEOUT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144337652i32 as _);
3035 pub const PLA_E_RULES_MANAGER_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144337646i32 as _);
3036 pub const PLA_E_TASKSCHED_CHANNEL_NOT_ENABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144337647i32 as _);
3037 pub const PLA_E_TOO_MANY_FOLDERS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144337851i32 as _);
3038 pub const PLA_S_PROPERTY_IGNORED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(3145984i32 as _);
3039 #[derive(:: std :: clone :: Clone, :: std :: marker :: Copy)]
3040 #[repr(C)]
3041 pub struct POINT {
3042     pub x: i32,
3043     pub y: i32,
3044 }
3045 impl POINT {}
3046 impl ::std::default::Default for POINT {
default() -> Self3047     fn default() -> Self {
3048         unsafe { ::std::mem::zeroed() }
3049     }
3050 }
3051 impl ::std::fmt::Debug for POINT {
fmt(&self, fmt: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result3052     fn fmt(&self, fmt: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
3053         fmt.debug_struct("POINT").field("x", &self.x).field("y", &self.y).finish()
3054     }
3055 }
3056 impl ::std::cmp::PartialEq for POINT {
eq(&self, other: &Self) -> bool3057     fn eq(&self, other: &Self) -> bool {
3058         self.x == other.x && self.y == other.y
3059     }
3060 }
3061 impl ::std::cmp::Eq for POINT {}
3062 unsafe impl ::windows::runtime::Abi for POINT {
3063     type Abi = Self;
3064     type DefaultType = Self;
3065 }
3066 #[derive(:: std :: clone :: Clone, :: std :: marker :: Copy)]
3067 #[repr(C)]
3068 pub struct POINTL {
3069     pub x: i32,
3070     pub y: i32,
3071 }
3072 impl POINTL {}
3073 impl ::std::default::Default for POINTL {
default() -> Self3074     fn default() -> Self {
3075         unsafe { ::std::mem::zeroed() }
3076     }
3077 }
3078 impl ::std::fmt::Debug for POINTL {
fmt(&self, fmt: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result3079     fn fmt(&self, fmt: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
3080         fmt.debug_struct("POINTL").field("x", &self.x).field("y", &self.y).finish()
3081     }
3082 }
3083 impl ::std::cmp::PartialEq for POINTL {
eq(&self, other: &Self) -> bool3084     fn eq(&self, other: &Self) -> bool {
3085         self.x == other.x && self.y == other.y
3086     }
3087 }
3088 impl ::std::cmp::Eq for POINTL {}
3089 unsafe impl ::windows::runtime::Abi for POINTL {
3090     type Abi = Self;
3091     type DefaultType = Self;
3092 }
3093 #[derive(:: std :: clone :: Clone, :: std :: marker :: Copy)]
3094 #[repr(C)]
3095 pub struct POINTS {
3096     pub x: i16,
3097     pub y: i16,
3098 }
3099 impl POINTS {}
3100 impl ::std::default::Default for POINTS {
default() -> Self3101     fn default() -> Self {
3102         unsafe { ::std::mem::zeroed() }
3103     }
3104 }
3105 impl ::std::fmt::Debug for POINTS {
fmt(&self, fmt: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result3106     fn fmt(&self, fmt: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
3107         fmt.debug_struct("POINTS").field("x", &self.x).field("y", &self.y).finish()
3108     }
3109 }
3110 impl ::std::cmp::PartialEq for POINTS {
eq(&self, other: &Self) -> bool3111     fn eq(&self, other: &Self) -> bool {
3112         self.x == other.x && self.y == other.y
3113     }
3114 }
3115 impl ::std::cmp::Eq for POINTS {}
3116 unsafe impl ::windows::runtime::Abi for POINTS {
3117     type Abi = Self;
3118     type DefaultType = Self;
3119 }
3120 pub const PRESENTATION_ERROR_LOST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2004811775i32 as _);
3121 pub type PROC = unsafe extern "system" fn() -> isize;
3122 #[derive(:: std :: clone :: Clone, :: std :: marker :: Copy, :: std :: fmt :: Debug, :: std :: cmp :: PartialEq, :: std :: cmp :: Eq)]
3123 #[repr(transparent)]
3124 pub struct PSID(pub isize);
3125 impl ::std::default::Default for PSID {
default() -> Self3126     fn default() -> Self {
3127         unsafe { ::std::mem::zeroed() }
3128     }
3129 }
3130 unsafe impl ::windows::runtime::Handle for PSID {}
3131 unsafe impl ::windows::runtime::Abi for PSID {
3132     type Abi = Self;
3133     type DefaultType = Self;
3134 }
3135 pub const PSINK_E_INDEX_ONLY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215471i32 as _);
3136 pub const PSINK_E_LARGE_ATTACHMENT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215470i32 as _);
3137 pub const PSINK_E_QUERY_ONLY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215472i32 as _);
3138 pub const PSINK_S_LARGE_WORD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(268179i32 as _);
3139 #[derive(:: std :: clone :: Clone, :: std :: marker :: Copy, :: std :: fmt :: Debug, :: std :: cmp :: PartialEq, :: std :: cmp :: Eq)]
3140 #[repr(transparent)]
3141 pub struct PSTR(pub *mut u8);
3142 impl PSTR {
is_null(&self) -> bool3143     pub fn is_null(&self) -> bool {
3144         self.0.is_null()
3145     }
3146 }
3147 impl ::std::default::Default for PSTR {
default() -> Self3148     fn default() -> Self {
3149         Self(::std::ptr::null_mut())
3150     }
3151 }
3152 unsafe impl ::windows::runtime::Abi for PSTR {
3153     type Abi = Self;
3154     type DefaultType = Self;
drop_param(param: &mut ::windows::runtime::Param<'_, Self>)3155     unsafe fn drop_param(param: &mut ::windows::runtime::Param<'_, Self>) {
3156         if let ::windows::runtime::Param::Boxed(value) = param {
3157             if !value.is_null() {
3158                 unsafe {
3159                     ::std::boxed::Box::from_raw(value.0);
3160                 }
3161             }
3162         }
3163     }
3164 }
3165 impl<'a> ::windows::runtime::IntoParam<'a, PSTR> for &str {
into_param(self) -> ::windows::runtime::Param<'a, PSTR>3166     fn into_param(self) -> ::windows::runtime::Param<'a, PSTR> {
3167         ::windows::runtime::Param::Boxed(PSTR(::std::boxed::Box::<[u8]>::into_raw(self.bytes().chain(::std::iter::once(0)).collect::<std::vec::Vec<u8>>().into_boxed_slice()) as _))
3168     }
3169 }
3170 impl<'a> ::windows::runtime::IntoParam<'a, PSTR> for String {
into_param(self) -> ::windows::runtime::Param<'a, PSTR>3171     fn into_param(self) -> ::windows::runtime::Param<'a, PSTR> {
3172         ::windows::runtime::Param::Boxed(PSTR(::std::boxed::Box::<[u8]>::into_raw(self.bytes().chain(::std::iter::once(0)).collect::<std::vec::Vec<u8>>().into_boxed_slice()) as _))
3173     }
3174 }
3175 #[derive(:: std :: clone :: Clone, :: std :: marker :: Copy, :: std :: fmt :: Debug, :: std :: cmp :: PartialEq, :: std :: cmp :: Eq)]
3176 #[repr(transparent)]
3177 pub struct PWSTR(pub *mut u16);
3178 impl PWSTR {
is_null(&self) -> bool3179     pub fn is_null(&self) -> bool {
3180         self.0.is_null()
3181     }
3182 }
3183 impl ::std::default::Default for PWSTR {
default() -> Self3184     fn default() -> Self {
3185         Self(::std::ptr::null_mut())
3186     }
3187 }
3188 unsafe impl ::windows::runtime::Abi for PWSTR {
3189     type Abi = Self;
3190     type DefaultType = Self;
drop_param(param: &mut ::windows::runtime::Param<'_, Self>)3191     unsafe fn drop_param(param: &mut ::windows::runtime::Param<'_, Self>) {
3192         if let ::windows::runtime::Param::Boxed(value) = param {
3193             if !value.is_null() {
3194                 unsafe {
3195                     ::std::boxed::Box::from_raw(value.0);
3196                 }
3197             }
3198         }
3199     }
3200 }
3201 impl<'a> ::windows::runtime::IntoParam<'a, PWSTR> for &str {
into_param(self) -> ::windows::runtime::Param<'a, PWSTR>3202     fn into_param(self) -> ::windows::runtime::Param<'a, PWSTR> {
3203         ::windows::runtime::Param::Boxed(PWSTR(::std::boxed::Box::<[u16]>::into_raw(self.encode_utf16().chain(::std::iter::once(0)).collect::<std::vec::Vec<u16>>().into_boxed_slice()) as _))
3204     }
3205 }
3206 impl<'a> ::windows::runtime::IntoParam<'a, PWSTR> for String {
into_param(self) -> ::windows::runtime::Param<'a, PWSTR>3207     fn into_param(self) -> ::windows::runtime::Param<'a, PWSTR> {
3208         ::windows::runtime::Param::Boxed(PWSTR(::std::boxed::Box::<[u16]>::into_raw(self.encode_utf16().chain(::std::iter::once(0)).collect::<std::vec::Vec<u16>>().into_boxed_slice()) as _))
3209     }
3210 }
3211 #[cfg(windows)]
3212 impl<'a> ::windows::runtime::IntoParam<'a, PWSTR> for &::std::ffi::OsStr {
into_param(self) -> ::windows::runtime::Param<'a, PWSTR>3213     fn into_param(self) -> ::windows::runtime::Param<'a, PWSTR> {
3214         use std::os::windows::ffi::OsStrExt;
3215         ::windows::runtime::Param::Boxed(PWSTR(::std::boxed::Box::<[u16]>::into_raw(self.encode_wide().chain(::std::iter::once(0)).collect::<std::vec::Vec<u16>>().into_boxed_slice()) as _))
3216     }
3217 }
3218 #[cfg(windows)]
3219 impl<'a> ::windows::runtime::IntoParam<'a, PWSTR> for ::std::ffi::OsString {
into_param(self) -> ::windows::runtime::Param<'a, PWSTR>3220     fn into_param(self) -> ::windows::runtime::Param<'a, PWSTR> {
3221         use std::os::windows::ffi::OsStrExt;
3222         ::windows::runtime::Param::Boxed(PWSTR(::std::boxed::Box::<[u16]>::into_raw(self.encode_wide().chain(::std::iter::once(0)).collect::<std::vec::Vec<u16>>().into_boxed_slice()) as _))
3223     }
3224 }
3225 pub const QPARSE_E_EXPECTING_BRACE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215770i32 as _);
3226 pub const QPARSE_E_EXPECTING_COMMA: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215759i32 as _);
3227 pub const QPARSE_E_EXPECTING_CURRENCY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215772i32 as _);
3228 pub const QPARSE_E_EXPECTING_DATE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215773i32 as _);
3229 pub const QPARSE_E_EXPECTING_EOS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215760i32 as _);
3230 pub const QPARSE_E_EXPECTING_GUID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215771i32 as _);
3231 pub const QPARSE_E_EXPECTING_INTEGER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215775i32 as _);
3232 pub const QPARSE_E_EXPECTING_PAREN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215769i32 as _);
3233 pub const QPARSE_E_EXPECTING_PHRASE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215766i32 as _);
3234 pub const QPARSE_E_EXPECTING_PROPERTY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215768i32 as _);
3235 pub const QPARSE_E_EXPECTING_REAL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215774i32 as _);
3236 pub const QPARSE_E_EXPECTING_REGEX: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215764i32 as _);
3237 pub const QPARSE_E_EXPECTING_REGEX_PROPERTY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215763i32 as _);
3238 pub const QPARSE_E_INVALID_GROUPING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215753i32 as _);
3239 pub const QPARSE_E_INVALID_LITERAL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215762i32 as _);
3240 pub const QPARSE_E_INVALID_QUERY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215750i32 as _);
3241 pub const QPARSE_E_INVALID_RANKMETHOD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215749i32 as _);
3242 pub const QPARSE_E_INVALID_SORT_ORDER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215755i32 as _);
3243 pub const QPARSE_E_NOT_YET_IMPLEMENTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215767i32 as _);
3244 pub const QPARSE_E_NO_SUCH_PROPERTY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215761i32 as _);
3245 pub const QPARSE_E_NO_SUCH_SORT_PROPERTY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215756i32 as _);
3246 pub const QPARSE_E_UNEXPECTED_EOS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215758i32 as _);
3247 pub const QPARSE_E_UNEXPECTED_NOT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215776i32 as _);
3248 pub const QPARSE_E_UNSUPPORTED_PROPERTY_TYPE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215765i32 as _);
3249 pub const QPARSE_E_WEIGHT_OUT_OF_RANGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215757i32 as _);
3250 pub const QPLIST_E_BAD_GUID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215783i32 as _);
3251 pub const QPLIST_E_BYREF_USED_WITHOUT_PTRTYPE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215778i32 as _);
3252 pub const QPLIST_E_CANT_OPEN_FILE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215791i32 as _);
3253 pub const QPLIST_E_CANT_SET_PROPERTY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215781i32 as _);
3254 pub const QPLIST_E_DUPLICATE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215780i32 as _);
3255 pub const QPLIST_E_EXPECTING_CLOSE_PAREN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215785i32 as _);
3256 pub const QPLIST_E_EXPECTING_GUID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215784i32 as _);
3257 pub const QPLIST_E_EXPECTING_INTEGER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215786i32 as _);
3258 pub const QPLIST_E_EXPECTING_NAME: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215789i32 as _);
3259 pub const QPLIST_E_EXPECTING_PROP_SPEC: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215782i32 as _);
3260 pub const QPLIST_E_EXPECTING_TYPE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215788i32 as _);
3261 pub const QPLIST_E_READ_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215790i32 as _);
3262 pub const QPLIST_E_UNRECOGNIZED_TYPE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215787i32 as _);
3263 pub const QPLIST_E_VECTORBYREF_USED_ALONE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215779i32 as _);
3264 pub const QPLIST_S_DUPLICATE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(267897i32 as _);
3265 pub const QUERY_E_ALLNOISE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215867i32 as _);
3266 pub const QUERY_E_DIR_ON_REMOVABLE_DRIVE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215861i32 as _);
3267 pub const QUERY_E_DUPLICATE_OUTPUT_COLUMN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215864i32 as _);
3268 pub const QUERY_E_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215872i32 as _);
3269 pub const QUERY_E_INVALIDCATEGORIZE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215868i32 as _);
3270 pub const QUERY_E_INVALIDQUERY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215871i32 as _);
3271 pub const QUERY_E_INVALIDRESTRICTION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215870i32 as _);
3272 pub const QUERY_E_INVALIDSORT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215869i32 as _);
3273 pub const QUERY_E_INVALID_DIRECTORY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215862i32 as _);
3274 pub const QUERY_E_INVALID_OUTPUT_COLUMN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215863i32 as _);
3275 pub const QUERY_E_TIMEDOUT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215865i32 as _);
3276 pub const QUERY_E_TOOCOMPLEX: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215866i32 as _);
3277 pub const QUERY_S_NO_QUERY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215860i32 as _);
3278 pub const QUTIL_E_CANT_CONVERT_VROOT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215754i32 as _);
3279 pub const QUTIL_E_INVALID_CODEPAGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1073473928i32 as _);
3280 #[derive(:: std :: clone :: Clone, :: std :: marker :: Copy)]
3281 #[repr(C)]
3282 pub struct RECT {
3283     pub left: i32,
3284     pub top: i32,
3285     pub right: i32,
3286     pub bottom: i32,
3287 }
3288 impl RECT {}
3289 impl ::std::default::Default for RECT {
default() -> Self3290     fn default() -> Self {
3291         unsafe { ::std::mem::zeroed() }
3292     }
3293 }
3294 impl ::std::fmt::Debug for RECT {
fmt(&self, fmt: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result3295     fn fmt(&self, fmt: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
3296         fmt.debug_struct("RECT").field("left", &self.left).field("top", &self.top).field("right", &self.right).field("bottom", &self.bottom).finish()
3297     }
3298 }
3299 impl ::std::cmp::PartialEq for RECT {
eq(&self, other: &Self) -> bool3300     fn eq(&self, other: &Self) -> bool {
3301         self.left == other.left && self.top == other.top && self.right == other.right && self.bottom == other.bottom
3302     }
3303 }
3304 impl ::std::cmp::Eq for RECT {}
3305 unsafe impl ::windows::runtime::Abi for RECT {
3306     type Abi = Self;
3307     type DefaultType = Self;
3308 }
3309 #[derive(:: std :: clone :: Clone, :: std :: marker :: Copy)]
3310 #[repr(C)]
3311 pub struct RECTL {
3312     pub left: i32,
3313     pub top: i32,
3314     pub right: i32,
3315     pub bottom: i32,
3316 }
3317 impl RECTL {}
3318 impl ::std::default::Default for RECTL {
default() -> Self3319     fn default() -> Self {
3320         unsafe { ::std::mem::zeroed() }
3321     }
3322 }
3323 impl ::std::fmt::Debug for RECTL {
fmt(&self, fmt: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result3324     fn fmt(&self, fmt: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
3325         fmt.debug_struct("RECTL").field("left", &self.left).field("top", &self.top).field("right", &self.right).field("bottom", &self.bottom).finish()
3326     }
3327 }
3328 impl ::std::cmp::PartialEq for RECTL {
eq(&self, other: &Self) -> bool3329     fn eq(&self, other: &Self) -> bool {
3330         self.left == other.left && self.top == other.top && self.right == other.right && self.bottom == other.bottom
3331     }
3332 }
3333 impl ::std::cmp::Eq for RECTL {}
3334 unsafe impl ::windows::runtime::Abi for RECTL {
3335     type Abi = Self;
3336     type DefaultType = Self;
3337 }
3338 pub const REGDB_E_BADTHREADINGMODEL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221162i32 as _);
3339 pub const REGDB_E_CLASSNOTREG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221164i32 as _);
3340 pub const REGDB_E_FIRST: i32 = -2147221168i32;
3341 pub const REGDB_E_IIDNOTREG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221163i32 as _);
3342 pub const REGDB_E_INVALIDVALUE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221165i32 as _);
3343 pub const REGDB_E_KEYMISSING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221166i32 as _);
3344 pub const REGDB_E_LAST: i32 = -2147221153i32;
3345 pub const REGDB_E_PACKAGEPOLICYVIOLATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221161i32 as _);
3346 pub const REGDB_E_READREGDB: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221168i32 as _);
3347 pub const REGDB_E_WRITEREGDB: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221167i32 as _);
3348 pub const REGDB_S_FIRST: i32 = 262480i32;
3349 pub const REGDB_S_LAST: i32 = 262495i32;
3350 pub const ROUTEBASE: u32 = 900u32;
3351 pub const ROUTEBASEEND: u32 = 957u32;
3352 pub const RO_E_BLOCKED_CROSS_ASTA_CALL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147483617i32 as _);
3353 pub const RO_E_CANNOT_ACTIVATE_FULL_TRUST_SERVER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147483616i32 as _);
3354 pub const RO_E_CANNOT_ACTIVATE_UNIVERSAL_APPLICATION_SERVER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147483615i32 as _);
3355 pub const RO_E_CHANGE_NOTIFICATION_IN_PROGRESS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147483627i32 as _);
3356 pub const RO_E_CLOSED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147483629i32 as _);
3357 pub const RO_E_COMMITTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147483618i32 as _);
3358 pub const RO_E_ERROR_STRING_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147483626i32 as _);
3359 pub const RO_E_EXCLUSIVE_WRITE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147483628i32 as _);
3360 pub const RO_E_INVALID_METADATA_FILE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147483630i32 as _);
3361 pub const RO_E_METADATA_INVALID_TYPE_FORMAT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147483631i32 as _);
3362 pub const RO_E_METADATA_NAME_IS_NAMESPACE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147483632i32 as _);
3363 pub const RO_E_METADATA_NAME_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147483633i32 as _);
3364 pub const RO_E_MUST_BE_AGILE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147483620i32 as _);
3365 pub const RO_E_UNSUPPORTED_FROM_MTA: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147483619i32 as _);
3366 pub const RPC_E_ACCESS_DENIED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417829i32 as _);
3367 pub const RPC_E_ATTEMPTED_MULTITHREAD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417854i32 as _);
3368 pub const RPC_E_CALL_CANCELED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147418110i32 as _);
3369 pub const RPC_E_CALL_COMPLETE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417833i32 as _);
3370 pub const RPC_E_CALL_REJECTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147418111i32 as _);
3371 pub const RPC_E_CANTCALLOUT_AGAIN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147418095i32 as _);
3372 pub const RPC_E_CANTCALLOUT_INASYNCCALL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147418108i32 as _);
3373 pub const RPC_E_CANTCALLOUT_INEXTERNALCALL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147418107i32 as _);
3374 pub const RPC_E_CANTCALLOUT_ININPUTSYNCCALL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417843i32 as _);
3375 pub const RPC_E_CANTPOST_INSENDCALL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147418109i32 as _);
3376 pub const RPC_E_CANTTRANSMIT_CALL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147418102i32 as _);
3377 pub const RPC_E_CHANGED_MODE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417850i32 as _);
3378 pub const RPC_E_CLIENT_CANTMARSHAL_DATA: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147418101i32 as _);
3379 pub const RPC_E_CLIENT_CANTUNMARSHAL_DATA: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147418100i32 as _);
3380 pub const RPC_E_CLIENT_DIED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147418104i32 as _);
3381 pub const RPC_E_CONNECTION_TERMINATED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147418106i32 as _);
3382 pub const RPC_E_DISCONNECTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417848i32 as _);
3383 pub const RPC_E_FAULT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417852i32 as _);
3384 pub const RPC_E_FULLSIC_REQUIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417823i32 as _);
3385 pub const RPC_E_INVALIDMETHOD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417849i32 as _);
3386 pub const RPC_E_INVALID_CALLDATA: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417844i32 as _);
3387 pub const RPC_E_INVALID_DATA: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147418097i32 as _);
3388 pub const RPC_E_INVALID_DATAPACKET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147418103i32 as _);
3389 pub const RPC_E_INVALID_EXTENSION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417838i32 as _);
3390 pub const RPC_E_INVALID_HEADER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417839i32 as _);
3391 pub const RPC_E_INVALID_IPID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417837i32 as _);
3392 pub const RPC_E_INVALID_OBJECT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417836i32 as _);
3393 pub const RPC_E_INVALID_OBJREF: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417827i32 as _);
3394 pub const RPC_E_INVALID_PARAMETER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147418096i32 as _);
3395 pub const RPC_E_INVALID_STD_NAME: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417822i32 as _);
3396 pub const RPC_E_NOT_REGISTERED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417853i32 as _);
3397 pub const RPC_E_NO_CONTEXT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417826i32 as _);
3398 pub const RPC_E_NO_GOOD_SECURITY_PACKAGES: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417830i32 as _);
3399 pub const RPC_E_NO_SYNC: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417824i32 as _);
3400 pub const RPC_E_OUT_OF_RESOURCES: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417855i32 as _);
3401 pub const RPC_E_REMOTE_DISABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417828i32 as _);
3402 pub const RPC_E_RETRY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417847i32 as _);
3403 pub const RPC_E_SERVERCALL_REJECTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417845i32 as _);
3404 pub const RPC_E_SERVERCALL_RETRYLATER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417846i32 as _);
3405 pub const RPC_E_SERVERFAULT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417851i32 as _);
3406 pub const RPC_E_SERVER_CANTMARSHAL_DATA: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147418099i32 as _);
3407 pub const RPC_E_SERVER_CANTUNMARSHAL_DATA: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147418098i32 as _);
3408 pub const RPC_E_SERVER_DIED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147418105i32 as _);
3409 pub const RPC_E_SERVER_DIED_DNE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147418094i32 as _);
3410 pub const RPC_E_SYS_CALL_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417856i32 as _);
3411 pub const RPC_E_THREAD_NOT_INIT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417841i32 as _);
3412 pub const RPC_E_TIMEOUT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417825i32 as _);
3413 pub const RPC_E_TOO_LATE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417831i32 as _);
3414 pub const RPC_E_UNEXPECTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147352577i32 as _);
3415 pub const RPC_E_UNSECURE_CALL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417832i32 as _);
3416 pub const RPC_E_VERSION_MISMATCH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417840i32 as _);
3417 pub const RPC_E_WRONG_THREAD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417842i32 as _);
3418 pub const RPC_NT_ADDRESS_ERROR: NTSTATUS = NTSTATUS(-1073610683i32 as _);
3419 pub const RPC_NT_ALREADY_LISTENING: NTSTATUS = NTSTATUS(-1073610738i32 as _);
3420 pub const RPC_NT_ALREADY_REGISTERED: NTSTATUS = NTSTATUS(-1073610740i32 as _);
3421 pub const RPC_NT_BAD_STUB_DATA: NTSTATUS = NTSTATUS(-1073545204i32 as _);
3422 pub const RPC_NT_BINDING_HAS_NO_AUTH: NTSTATUS = NTSTATUS(-1073610705i32 as _);
3423 pub const RPC_NT_BINDING_INCOMPLETE: NTSTATUS = NTSTATUS(-1073610671i32 as _);
3424 pub const RPC_NT_BYTE_COUNT_TOO_SMALL: NTSTATUS = NTSTATUS(-1073545205i32 as _);
3425 pub const RPC_NT_CALL_CANCELLED: NTSTATUS = NTSTATUS(-1073610672i32 as _);
3426 pub const RPC_NT_CALL_FAILED: NTSTATUS = NTSTATUS(-1073610725i32 as _);
3427 pub const RPC_NT_CALL_FAILED_DNE: NTSTATUS = NTSTATUS(-1073610724i32 as _);
3428 pub const RPC_NT_CALL_IN_PROGRESS: NTSTATUS = NTSTATUS(-1073610679i32 as _);
3429 pub const RPC_NT_CANNOT_SUPPORT: NTSTATUS = NTSTATUS(-1073610687i32 as _);
3430 pub const RPC_NT_CANT_CREATE_ENDPOINT: NTSTATUS = NTSTATUS(-1073610731i32 as _);
3431 pub const RPC_NT_COMM_FAILURE: NTSTATUS = NTSTATUS(-1073610670i32 as _);
3432 pub const RPC_NT_COOKIE_AUTH_FAILED: NTSTATUS = NTSTATUS(-1073610651i32 as _);
3433 pub const RPC_NT_DUPLICATE_ENDPOINT: NTSTATUS = NTSTATUS(-1073610711i32 as _);
3434 pub const RPC_NT_ENTRY_ALREADY_EXISTS: NTSTATUS = NTSTATUS(-1073610691i32 as _);
3435 pub const RPC_NT_ENTRY_NOT_FOUND: NTSTATUS = NTSTATUS(-1073610690i32 as _);
3436 pub const RPC_NT_ENUM_VALUE_OUT_OF_RANGE: NTSTATUS = NTSTATUS(-1073545206i32 as _);
3437 pub const RPC_NT_FP_DIV_ZERO: NTSTATUS = NTSTATUS(-1073610682i32 as _);
3438 pub const RPC_NT_FP_OVERFLOW: NTSTATUS = NTSTATUS(-1073610680i32 as _);
3439 pub const RPC_NT_FP_UNDERFLOW: NTSTATUS = NTSTATUS(-1073610681i32 as _);
3440 pub const RPC_NT_GROUP_MEMBER_NOT_FOUND: NTSTATUS = NTSTATUS(-1073610677i32 as _);
3441 pub const RPC_NT_INCOMPLETE_NAME: NTSTATUS = NTSTATUS(-1073610696i32 as _);
3442 pub const RPC_NT_INTERFACE_NOT_FOUND: NTSTATUS = NTSTATUS(-1073610692i32 as _);
3443 pub const RPC_NT_INTERNAL_ERROR: NTSTATUS = NTSTATUS(-1073610685i32 as _);
3444 pub const RPC_NT_INVALID_ASYNC_CALL: NTSTATUS = NTSTATUS(-1073610653i32 as _);
3445 pub const RPC_NT_INVALID_ASYNC_HANDLE: NTSTATUS = NTSTATUS(-1073610654i32 as _);
3446 pub const RPC_NT_INVALID_AUTH_IDENTITY: NTSTATUS = NTSTATUS(-1073610702i32 as _);
3447 pub const RPC_NT_INVALID_BINDING: NTSTATUS = NTSTATUS(-1073610749i32 as _);
3448 pub const RPC_NT_INVALID_BOUND: NTSTATUS = NTSTATUS(-1073610717i32 as _);
3449 pub const RPC_NT_INVALID_ENDPOINT_FORMAT: NTSTATUS = NTSTATUS(-1073610745i32 as _);
3450 pub const RPC_NT_INVALID_ES_ACTION: NTSTATUS = NTSTATUS(-1073545127i32 as _);
3451 pub const RPC_NT_INVALID_NAF_ID: NTSTATUS = NTSTATUS(-1073610688i32 as _);
3452 pub const RPC_NT_INVALID_NAME_SYNTAX: NTSTATUS = NTSTATUS(-1073610715i32 as _);
3453 pub const RPC_NT_INVALID_NETWORK_OPTIONS: NTSTATUS = NTSTATUS(-1073610727i32 as _);
3454 pub const RPC_NT_INVALID_NET_ADDR: NTSTATUS = NTSTATUS(-1073610744i32 as _);
3455 pub const RPC_NT_INVALID_OBJECT: NTSTATUS = NTSTATUS(-1073610675i32 as _);
3456 pub const RPC_NT_INVALID_PIPE_OBJECT: NTSTATUS = NTSTATUS(-1073545124i32 as _);
3457 pub const RPC_NT_INVALID_PIPE_OPERATION: NTSTATUS = NTSTATUS(-1073545123i32 as _);
3458 pub const RPC_NT_INVALID_RPC_PROTSEQ: NTSTATUS = NTSTATUS(-1073610747i32 as _);
3459 pub const RPC_NT_INVALID_STRING_BINDING: NTSTATUS = NTSTATUS(-1073610751i32 as _);
3460 pub const RPC_NT_INVALID_STRING_UUID: NTSTATUS = NTSTATUS(-1073610746i32 as _);
3461 pub const RPC_NT_INVALID_TAG: NTSTATUS = NTSTATUS(-1073610718i32 as _);
3462 pub const RPC_NT_INVALID_TIMEOUT: NTSTATUS = NTSTATUS(-1073610742i32 as _);
3463 pub const RPC_NT_INVALID_VERS_OPTION: NTSTATUS = NTSTATUS(-1073610695i32 as _);
3464 pub const RPC_NT_MAX_CALLS_TOO_SMALL: NTSTATUS = NTSTATUS(-1073610709i32 as _);
3465 pub const RPC_NT_NAME_SERVICE_UNAVAILABLE: NTSTATUS = NTSTATUS(-1073610689i32 as _);
3466 pub const RPC_NT_NOTHING_TO_EXPORT: NTSTATUS = NTSTATUS(-1073610697i32 as _);
3467 pub const RPC_NT_NOT_ALL_OBJS_UNEXPORTED: NTSTATUS = NTSTATUS(-1073610693i32 as _);
3468 pub const RPC_NT_NOT_CANCELLED: NTSTATUS = NTSTATUS(-1073610664i32 as _);
3469 pub const RPC_NT_NOT_LISTENING: NTSTATUS = NTSTATUS(-1073610736i32 as _);
3470 pub const RPC_NT_NOT_RPC_ERROR: NTSTATUS = NTSTATUS(-1073610667i32 as _);
3471 pub const RPC_NT_NO_BINDINGS: NTSTATUS = NTSTATUS(-1073610733i32 as _);
3472 pub const RPC_NT_NO_CALL_ACTIVE: NTSTATUS = NTSTATUS(-1073610726i32 as _);
3473 pub const RPC_NT_NO_CONTEXT_AVAILABLE: NTSTATUS = NTSTATUS(-1073610686i32 as _);
3474 pub const RPC_NT_NO_ENDPOINT_FOUND: NTSTATUS = NTSTATUS(-1073610743i32 as _);
3475 pub const RPC_NT_NO_ENTRY_NAME: NTSTATUS = NTSTATUS(-1073610716i32 as _);
3476 pub const RPC_NT_NO_INTERFACES: NTSTATUS = NTSTATUS(-1073610673i32 as _);
3477 pub const RPC_NT_NO_MORE_BINDINGS: NTSTATUS = NTSTATUS(-1073610678i32 as _);
3478 pub const RPC_NT_NO_MORE_ENTRIES: NTSTATUS = NTSTATUS(-1073545215i32 as _);
3479 pub const RPC_NT_NO_MORE_MEMBERS: NTSTATUS = NTSTATUS(-1073610694i32 as _);
3480 pub const RPC_NT_NO_PRINC_NAME: NTSTATUS = NTSTATUS(-1073610668i32 as _);
3481 pub const RPC_NT_NO_PROTSEQS: NTSTATUS = NTSTATUS(-1073610732i32 as _);
3482 pub const RPC_NT_NO_PROTSEQS_REGISTERED: NTSTATUS = NTSTATUS(-1073610737i32 as _);
3483 pub const RPC_NT_NULL_REF_POINTER: NTSTATUS = NTSTATUS(-1073545207i32 as _);
3484 pub const RPC_NT_OBJECT_NOT_FOUND: NTSTATUS = NTSTATUS(-1073610741i32 as _);
3485 pub const RPC_NT_OUT_OF_RESOURCES: NTSTATUS = NTSTATUS(-1073610730i32 as _);
3486 pub const RPC_NT_PIPE_CLOSED: NTSTATUS = NTSTATUS(-1073545121i32 as _);
3487 pub const RPC_NT_PIPE_DISCIPLINE_ERROR: NTSTATUS = NTSTATUS(-1073545120i32 as _);
3488 pub const RPC_NT_PIPE_EMPTY: NTSTATUS = NTSTATUS(-1073545119i32 as _);
3489 pub const RPC_NT_PROCNUM_OUT_OF_RANGE: NTSTATUS = NTSTATUS(-1073610706i32 as _);
3490 pub const RPC_NT_PROTOCOL_ERROR: NTSTATUS = NTSTATUS(-1073610723i32 as _);
3491 pub const RPC_NT_PROTSEQ_NOT_FOUND: NTSTATUS = NTSTATUS(-1073610707i32 as _);
3492 pub const RPC_NT_PROTSEQ_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1073610748i32 as _);
3493 pub const RPC_NT_PROXY_ACCESS_DENIED: NTSTATUS = NTSTATUS(-1073610652i32 as _);
3494 pub const RPC_NT_SEC_PKG_ERROR: NTSTATUS = NTSTATUS(-1073610665i32 as _);
3495 pub const RPC_NT_SEND_INCOMPLETE: NTSTATUS = NTSTATUS(1073873071i32 as _);
3496 pub const RPC_NT_SERVER_TOO_BUSY: NTSTATUS = NTSTATUS(-1073610728i32 as _);
3497 pub const RPC_NT_SERVER_UNAVAILABLE: NTSTATUS = NTSTATUS(-1073610729i32 as _);
3498 pub const RPC_NT_SS_CANNOT_GET_CALL_HANDLE: NTSTATUS = NTSTATUS(-1073545208i32 as _);
3499 pub const RPC_NT_SS_CHAR_TRANS_OPEN_FAIL: NTSTATUS = NTSTATUS(-1073545214i32 as _);
3500 pub const RPC_NT_SS_CHAR_TRANS_SHORT_FILE: NTSTATUS = NTSTATUS(-1073545213i32 as _);
3501 pub const RPC_NT_SS_CONTEXT_DAMAGED: NTSTATUS = NTSTATUS(-1073545210i32 as _);
3502 pub const RPC_NT_SS_CONTEXT_MISMATCH: NTSTATUS = NTSTATUS(-1073545211i32 as _);
3503 pub const RPC_NT_SS_HANDLES_MISMATCH: NTSTATUS = NTSTATUS(-1073545209i32 as _);
3504 pub const RPC_NT_SS_IN_NULL_CONTEXT: NTSTATUS = NTSTATUS(-1073545212i32 as _);
3505 pub const RPC_NT_STRING_TOO_LONG: NTSTATUS = NTSTATUS(-1073610708i32 as _);
3506 pub const RPC_NT_TYPE_ALREADY_REGISTERED: NTSTATUS = NTSTATUS(-1073610739i32 as _);
3507 pub const RPC_NT_UNKNOWN_AUTHN_LEVEL: NTSTATUS = NTSTATUS(-1073610703i32 as _);
3508 pub const RPC_NT_UNKNOWN_AUTHN_SERVICE: NTSTATUS = NTSTATUS(-1073610704i32 as _);
3509 pub const RPC_NT_UNKNOWN_AUTHN_TYPE: NTSTATUS = NTSTATUS(-1073610710i32 as _);
3510 pub const RPC_NT_UNKNOWN_AUTHZ_SERVICE: NTSTATUS = NTSTATUS(-1073610701i32 as _);
3511 pub const RPC_NT_UNKNOWN_IF: NTSTATUS = NTSTATUS(-1073610734i32 as _);
3512 pub const RPC_NT_UNKNOWN_MGR_TYPE: NTSTATUS = NTSTATUS(-1073610735i32 as _);
3513 pub const RPC_NT_UNSUPPORTED_AUTHN_LEVEL: NTSTATUS = NTSTATUS(-1073610669i32 as _);
3514 pub const RPC_NT_UNSUPPORTED_NAME_SYNTAX: NTSTATUS = NTSTATUS(-1073610714i32 as _);
3515 pub const RPC_NT_UNSUPPORTED_TRANS_SYN: NTSTATUS = NTSTATUS(-1073610721i32 as _);
3516 pub const RPC_NT_UNSUPPORTED_TYPE: NTSTATUS = NTSTATUS(-1073610719i32 as _);
3517 pub const RPC_NT_UUID_LOCAL_ONLY: NTSTATUS = NTSTATUS(1073872982i32 as _);
3518 pub const RPC_NT_UUID_NO_ADDRESS: NTSTATUS = NTSTATUS(-1073610712i32 as _);
3519 pub const RPC_NT_WRONG_ES_VERSION: NTSTATUS = NTSTATUS(-1073545126i32 as _);
3520 pub const RPC_NT_WRONG_KIND_OF_BINDING: NTSTATUS = NTSTATUS(-1073610750i32 as _);
3521 pub const RPC_NT_WRONG_PIPE_VERSION: NTSTATUS = NTSTATUS(-1073545122i32 as _);
3522 pub const RPC_NT_WRONG_STUB_VERSION: NTSTATUS = NTSTATUS(-1073545125i32 as _);
3523 pub const RPC_NT_ZERO_DIVIDE: NTSTATUS = NTSTATUS(-1073610684i32 as _);
3524 pub const RPC_S_CALLPENDING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417835i32 as _);
3525 pub const RPC_S_WAITONTIMER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147417834i32 as _);
3526 pub const RPC_X_BAD_STUB_DATA: i32 = 1783i32;
3527 pub const RPC_X_BYTE_COUNT_TOO_SMALL: i32 = 1782i32;
3528 pub const RPC_X_ENUM_VALUE_OUT_OF_RANGE: i32 = 1781i32;
3529 pub const RPC_X_INVALID_ES_ACTION: i32 = 1827i32;
3530 pub const RPC_X_INVALID_PIPE_OBJECT: i32 = 1830i32;
3531 pub const RPC_X_NO_MORE_ENTRIES: i32 = 1772i32;
3532 pub const RPC_X_NULL_REF_POINTER: i32 = 1780i32;
3533 pub const RPC_X_PIPE_CLOSED: i32 = 1916i32;
3534 pub const RPC_X_PIPE_DISCIPLINE_ERROR: i32 = 1917i32;
3535 pub const RPC_X_PIPE_EMPTY: i32 = 1918i32;
3536 pub const RPC_X_SS_CANNOT_GET_CALL_HANDLE: i32 = 1779i32;
3537 pub const RPC_X_SS_CHAR_TRANS_OPEN_FAIL: i32 = 1773i32;
3538 pub const RPC_X_SS_CHAR_TRANS_SHORT_FILE: i32 = 1774i32;
3539 pub const RPC_X_SS_CONTEXT_DAMAGED: i32 = 1777i32;
3540 pub const RPC_X_SS_HANDLES_MISMATCH: i32 = 1778i32;
3541 pub const RPC_X_SS_IN_NULL_CONTEXT: i32 = 1775i32;
3542 pub const RPC_X_WRONG_ES_VERSION: i32 = 1828i32;
3543 pub const RPC_X_WRONG_PIPE_ORDER: i32 = 1831i32;
3544 pub const RPC_X_WRONG_PIPE_VERSION: i32 = 1832i32;
3545 pub const RPC_X_WRONG_STUB_VERSION: i32 = 1829i32;
3546 #[inline]
RtlNtStatusToDosError<'a, Param0: ::windows::runtime::IntoParam<'a, NTSTATUS>>(status: Param0) -> u323547 pub unsafe fn RtlNtStatusToDosError<'a, Param0: ::windows::runtime::IntoParam<'a, NTSTATUS>>(status: Param0) -> u32 {
3548     #[cfg(windows)]
3549     {
3550         #[link(name = "windows")]
3551         extern "system" {
3552             fn RtlNtStatusToDosError(status: NTSTATUS) -> u32;
3553         }
3554         ::std::mem::transmute(RtlNtStatusToDosError(status.into_param().abi()))
3555     }
3556     #[cfg(not(windows))]
3557     unimplemented!("Unsupported target OS");
3558 }
3559 pub const SCARD_E_BAD_SEEK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435031i32 as _);
3560 pub const SCARD_E_CANCELLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435070i32 as _);
3561 pub const SCARD_E_CANT_DISPOSE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435058i32 as _);
3562 pub const SCARD_E_CARD_UNSUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435044i32 as _);
3563 pub const SCARD_E_CERTIFICATE_UNAVAILABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435027i32 as _);
3564 pub const SCARD_E_COMM_DATA_LOST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435025i32 as _);
3565 pub const SCARD_E_DIR_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435037i32 as _);
3566 pub const SCARD_E_DUPLICATE_READER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435045i32 as _);
3567 pub const SCARD_E_FILE_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435036i32 as _);
3568 pub const SCARD_E_ICC_CREATEORDER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435039i32 as _);
3569 pub const SCARD_E_ICC_INSTALLATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435040i32 as _);
3570 pub const SCARD_E_INSUFFICIENT_BUFFER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435064i32 as _);
3571 pub const SCARD_E_INVALID_ATR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435051i32 as _);
3572 pub const SCARD_E_INVALID_CHV: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435030i32 as _);
3573 pub const SCARD_E_INVALID_HANDLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435069i32 as _);
3574 pub const SCARD_E_INVALID_PARAMETER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435068i32 as _);
3575 pub const SCARD_E_INVALID_TARGET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435067i32 as _);
3576 pub const SCARD_E_INVALID_VALUE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435055i32 as _);
3577 pub const SCARD_E_NOT_READY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435056i32 as _);
3578 pub const SCARD_E_NOT_TRANSACTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435050i32 as _);
3579 pub const SCARD_E_NO_ACCESS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435033i32 as _);
3580 pub const SCARD_E_NO_DIR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435035i32 as _);
3581 pub const SCARD_E_NO_FILE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435034i32 as _);
3582 pub const SCARD_E_NO_KEY_CONTAINER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435024i32 as _);
3583 pub const SCARD_E_NO_MEMORY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435066i32 as _);
3584 pub const SCARD_E_NO_PIN_CACHE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435021i32 as _);
3585 pub const SCARD_E_NO_READERS_AVAILABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435026i32 as _);
3586 pub const SCARD_E_NO_SERVICE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435043i32 as _);
3587 pub const SCARD_E_NO_SMARTCARD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435060i32 as _);
3588 pub const SCARD_E_NO_SUCH_CERTIFICATE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435028i32 as _);
3589 pub const SCARD_E_PCI_TOO_SMALL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435047i32 as _);
3590 pub const SCARD_E_PIN_CACHE_EXPIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435022i32 as _);
3591 pub const SCARD_E_PROTO_MISMATCH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435057i32 as _);
3592 pub const SCARD_E_READER_UNAVAILABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435049i32 as _);
3593 pub const SCARD_E_READER_UNSUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435046i32 as _);
3594 pub const SCARD_E_READ_ONLY_CARD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435020i32 as _);
3595 pub const SCARD_E_SERVER_TOO_BUSY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435023i32 as _);
3596 pub const SCARD_E_SERVICE_STOPPED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435042i32 as _);
3597 pub const SCARD_E_SHARING_VIOLATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435061i32 as _);
3598 pub const SCARD_E_SYSTEM_CANCELLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435054i32 as _);
3599 pub const SCARD_E_TIMEOUT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435062i32 as _);
3600 pub const SCARD_E_UNEXPECTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435041i32 as _);
3601 pub const SCARD_E_UNKNOWN_CARD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435059i32 as _);
3602 pub const SCARD_E_UNKNOWN_READER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435063i32 as _);
3603 pub const SCARD_E_UNKNOWN_RES_MNG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435029i32 as _);
3604 pub const SCARD_E_UNSUPPORTED_FEATURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435038i32 as _);
3605 pub const SCARD_E_WRITE_TOO_MANY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435032i32 as _);
3606 pub const SCARD_F_COMM_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435053i32 as _);
3607 pub const SCARD_F_INTERNAL_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435071i32 as _);
3608 pub const SCARD_F_UNKNOWN_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435052i32 as _);
3609 pub const SCARD_F_WAITED_TOO_LONG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435065i32 as _);
3610 pub const SCARD_P_SHUTDOWN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146435048i32 as _);
3611 pub const SCARD_W_CACHE_ITEM_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146434960i32 as _);
3612 pub const SCARD_W_CACHE_ITEM_STALE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146434959i32 as _);
3613 pub const SCARD_W_CACHE_ITEM_TOO_BIG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146434958i32 as _);
3614 pub const SCARD_W_CANCELLED_BY_USER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146434962i32 as _);
3615 pub const SCARD_W_CARD_NOT_AUTHENTICATED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146434961i32 as _);
3616 pub const SCARD_W_CHV_BLOCKED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146434964i32 as _);
3617 pub const SCARD_W_EOF: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146434963i32 as _);
3618 pub const SCARD_W_REMOVED_CARD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146434967i32 as _);
3619 pub const SCARD_W_RESET_CARD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146434968i32 as _);
3620 pub const SCARD_W_SECURITY_VIOLATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146434966i32 as _);
3621 pub const SCARD_W_UNPOWERED_CARD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146434969i32 as _);
3622 pub const SCARD_W_UNRESPONSIVE_CARD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146434970i32 as _);
3623 pub const SCARD_W_UNSUPPORTED_CARD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146434971i32 as _);
3624 pub const SCARD_W_WRONG_CHV: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146434965i32 as _);
3625 pub const SCHED_E_ACCOUNT_DBASE_CORRUPT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147216623i32 as _);
3626 pub const SCHED_E_ACCOUNT_INFORMATION_NOT_SET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147216625i32 as _);
3627 pub const SCHED_E_ACCOUNT_NAME_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147216624i32 as _);
3628 pub const SCHED_E_ALREADY_RUNNING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147216609i32 as _);
3629 pub const SCHED_E_CANNOT_OPEN_TASK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147216627i32 as _);
3630 pub const SCHED_E_DEPRECATED_FEATURE_USED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147216592i32 as _);
3631 pub const SCHED_E_INVALIDVALUE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147216616i32 as _);
3632 pub const SCHED_E_INVALID_TASK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147216626i32 as _);
3633 pub const SCHED_E_INVALID_TASK_HASH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147216607i32 as _);
3634 pub const SCHED_E_MALFORMEDXML: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147216614i32 as _);
3635 pub const SCHED_E_MISSINGNODE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147216615i32 as _);
3636 pub const SCHED_E_NAMESPACE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147216617i32 as _);
3637 pub const SCHED_E_NO_SECURITY_SERVICES: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147216622i32 as _);
3638 pub const SCHED_E_PAST_END_BOUNDARY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147216610i32 as _);
3639 pub const SCHED_E_SERVICE_NOT_AVAILABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147216606i32 as _);
3640 pub const SCHED_E_SERVICE_NOT_INSTALLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147216628i32 as _);
3641 pub const SCHED_E_SERVICE_NOT_LOCALSYSTEM: i32 = 6200i32;
3642 pub const SCHED_E_SERVICE_NOT_RUNNING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147216619i32 as _);
3643 pub const SCHED_E_SERVICE_TOO_BUSY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147216605i32 as _);
3644 pub const SCHED_E_START_ON_DEMAND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147216600i32 as _);
3645 pub const SCHED_E_TASK_ATTEMPTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147216604i32 as _);
3646 pub const SCHED_E_TASK_DISABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147216602i32 as _);
3647 pub const SCHED_E_TASK_NOT_READY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147216630i32 as _);
3648 pub const SCHED_E_TASK_NOT_RUNNING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147216629i32 as _);
3649 pub const SCHED_E_TASK_NOT_UBPM_COMPAT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147216599i32 as _);
3650 pub const SCHED_E_TASK_NOT_V1_COMPAT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147216601i32 as _);
3651 pub const SCHED_E_TOO_MANY_NODES: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147216611i32 as _);
3652 pub const SCHED_E_TRIGGER_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147216631i32 as _);
3653 pub const SCHED_E_UNEXPECTEDNODE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147216618i32 as _);
3654 pub const SCHED_E_UNKNOWN_OBJECT_VERSION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147216621i32 as _);
3655 pub const SCHED_E_UNSUPPORTED_ACCOUNT_OPTION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147216620i32 as _);
3656 pub const SCHED_E_USER_NOT_LOGGED_ON: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147216608i32 as _);
3657 pub const SCHED_S_BATCH_LOGON_PROBLEM: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(267036i32 as _);
3658 pub const SCHED_S_EVENT_TRIGGER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(267016i32 as _);
3659 pub const SCHED_S_SOME_TRIGGERS_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(267035i32 as _);
3660 pub const SCHED_S_TASK_DISABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(267010i32 as _);
3661 pub const SCHED_S_TASK_HAS_NOT_RUN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(267011i32 as _);
3662 pub const SCHED_S_TASK_NOT_SCHEDULED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(267013i32 as _);
3663 pub const SCHED_S_TASK_NO_MORE_RUNS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(267012i32 as _);
3664 pub const SCHED_S_TASK_NO_VALID_TRIGGERS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(267015i32 as _);
3665 pub const SCHED_S_TASK_QUEUED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(267045i32 as _);
3666 pub const SCHED_S_TASK_READY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(267008i32 as _);
3667 pub const SCHED_S_TASK_RUNNING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(267009i32 as _);
3668 pub const SCHED_S_TASK_TERMINATED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(267014i32 as _);
3669 pub const SDIAG_E_CANCELLED: i32 = -2143551232i32;
3670 pub const SDIAG_E_CANNOTRUN: i32 = -2143551224i32;
3671 pub const SDIAG_E_DISABLED: i32 = -2143551226i32;
3672 pub const SDIAG_E_MANAGEDHOST: i32 = -2143551229i32;
3673 pub const SDIAG_E_NOVERIFIER: i32 = -2143551228i32;
3674 pub const SDIAG_E_POWERSHELL: i32 = -2143551230i32;
3675 pub const SDIAG_E_RESOURCE: i32 = -2143551222i32;
3676 pub const SDIAG_E_ROOTCAUSE: i32 = -2143551221i32;
3677 pub const SDIAG_E_SCRIPT: i32 = -2143551231i32;
3678 pub const SDIAG_E_TRUST: i32 = -2143551225i32;
3679 pub const SDIAG_E_VERSION: i32 = -2143551223i32;
3680 pub const SDIAG_S_CANNOTRUN: i32 = 3932421i32;
3681 pub const SEARCH_E_NOMONIKER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215711i32 as _);
3682 pub const SEARCH_E_NOREGION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215710i32 as _);
3683 pub const SEARCH_S_NOMOREHITS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(267936i32 as _);
3684 pub const SEC_E_ALGORITHM_MISMATCH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893007i32 as _);
3685 pub const SEC_E_APPLICATION_PROTOCOL_MISMATCH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146892953i32 as _);
3686 pub const SEC_E_BAD_BINDINGS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146892986i32 as _);
3687 pub const SEC_E_BAD_PKGID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893034i32 as _);
3688 pub const SEC_E_BUFFER_TOO_SMALL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893023i32 as _);
3689 pub const SEC_E_CANNOT_INSTALL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893049i32 as _);
3690 pub const SEC_E_CANNOT_PACK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893047i32 as _);
3691 pub const SEC_E_CERT_EXPIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893016i32 as _);
3692 pub const SEC_E_CERT_UNKNOWN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893017i32 as _);
3693 pub const SEC_E_CERT_WRONG_USAGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146892983i32 as _);
3694 pub const SEC_E_CONTEXT_EXPIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893033i32 as _);
3695 pub const SEC_E_CROSSREALM_DELEGATION_FAILURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146892969i32 as _);
3696 pub const SEC_E_CRYPTO_SYSTEM_INVALID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893001i32 as _);
3697 pub const SEC_E_DECRYPT_FAILURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893008i32 as _);
3698 pub const SEC_E_DELEGATION_POLICY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146892962i32 as _);
3699 pub const SEC_E_DELEGATION_REQUIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146892987i32 as _);
3700 pub const SEC_E_DOWNGRADE_DETECTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146892976i32 as _);
3701 pub const SEC_E_ENCRYPT_FAILURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893015i32 as _);
3702 pub const SEC_E_EXT_BUFFER_TOO_SMALL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146892950i32 as _);
3703 pub const SEC_E_ILLEGAL_MESSAGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893018i32 as _);
3704 pub const SEC_E_INCOMPLETE_CREDENTIALS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893024i32 as _);
3705 pub const SEC_E_INCOMPLETE_MESSAGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893032i32 as _);
3706 pub const SEC_E_INSUFFICIENT_BUFFERS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146892949i32 as _);
3707 pub const SEC_E_INSUFFICIENT_MEMORY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893056i32 as _);
3708 pub const SEC_E_INTERNAL_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893052i32 as _);
3709 pub const SEC_E_INVALID_HANDLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893055i32 as _);
3710 pub const SEC_E_INVALID_PARAMETER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146892963i32 as _);
3711 pub const SEC_E_INVALID_TOKEN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893048i32 as _);
3712 pub const SEC_E_INVALID_UPN_NAME: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146892951i32 as _);
3713 pub const SEC_E_ISSUING_CA_UNTRUSTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146892974i32 as _);
3714 pub const SEC_E_ISSUING_CA_UNTRUSTED_KDC: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146892967i32 as _);
3715 pub const SEC_E_KDC_CERT_EXPIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146892966i32 as _);
3716 pub const SEC_E_KDC_CERT_REVOKED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146892965i32 as _);
3717 pub const SEC_E_KDC_INVALID_REQUEST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146892992i32 as _);
3718 pub const SEC_E_KDC_UNABLE_TO_REFER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146892991i32 as _);
3719 pub const SEC_E_KDC_UNKNOWN_ETYPE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146892990i32 as _);
3720 pub const SEC_E_LOGON_DENIED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893044i32 as _);
3721 pub const SEC_E_MAX_REFERRALS_EXCEEDED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893000i32 as _);
3722 pub const SEC_E_MESSAGE_ALTERED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893041i32 as _);
3723 pub const SEC_E_MULTIPLE_ACCOUNTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146892985i32 as _);
3724 pub const SEC_E_MUST_BE_KDC: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146892999i32 as _);
3725 pub const SEC_E_MUTUAL_AUTH_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146892957i32 as _);
3726 pub const SEC_E_NOT_OWNER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893050i32 as _);
3727 pub const SEC_E_NOT_SUPPORTED: i32 = -2146893054i32;
3728 pub const SEC_E_NO_AUTHENTICATING_AUTHORITY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893039i32 as _);
3729 pub const SEC_E_NO_CONTEXT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146892959i32 as _);
3730 pub const SEC_E_NO_CREDENTIALS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893042i32 as _);
3731 pub const SEC_E_NO_IMPERSONATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893045i32 as _);
3732 pub const SEC_E_NO_IP_ADDRESSES: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893003i32 as _);
3733 pub const SEC_E_NO_KERB_KEY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146892984i32 as _);
3734 pub const SEC_E_NO_PA_DATA: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146892996i32 as _);
3735 pub const SEC_E_NO_S4U_PROT_SUPPORT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146892970i32 as _);
3736 pub const SEC_E_NO_SPM: i32 = -2146893052i32;
3737 pub const SEC_E_NO_TGT_REPLY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893004i32 as _);
3738 pub const SEC_E_OK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(0i32 as _);
3739 pub const SEC_E_ONLY_HTTPS_ALLOWED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146892955i32 as _);
3740 pub const SEC_E_OUT_OF_SEQUENCE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893040i32 as _);
3741 pub const SEC_E_PKINIT_CLIENT_FAILURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146892972i32 as _);
3742 pub const SEC_E_PKINIT_NAME_MISMATCH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146892995i32 as _);
3743 pub const SEC_E_PKU2U_CERT_FAILURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146892958i32 as _);
3744 pub const SEC_E_POLICY_NLTM_ONLY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146892961i32 as _);
3745 pub const SEC_E_QOP_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893046i32 as _);
3746 pub const SEC_E_REVOCATION_OFFLINE_C: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146892973i32 as _);
3747 pub const SEC_E_REVOCATION_OFFLINE_KDC: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146892968i32 as _);
3748 pub const SEC_E_SECPKG_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893051i32 as _);
3749 pub const SEC_E_SECURITY_QOS_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893006i32 as _);
3750 pub const SEC_E_SHUTDOWN_IN_PROGRESS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146892993i32 as _);
3751 pub const SEC_E_SMARTCARD_CERT_EXPIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146892971i32 as _);
3752 pub const SEC_E_SMARTCARD_CERT_REVOKED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146892975i32 as _);
3753 pub const SEC_E_SMARTCARD_LOGON_REQUIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146892994i32 as _);
3754 pub const SEC_E_STRONG_CRYPTO_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146892998i32 as _);
3755 pub const SEC_E_TARGET_UNKNOWN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893053i32 as _);
3756 pub const SEC_E_TIME_SKEW: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893020i32 as _);
3757 pub const SEC_E_TOO_MANY_PRINCIPALS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146892997i32 as _);
3758 pub const SEC_E_UNFINISHED_CONTEXT_DELETED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893005i32 as _);
3759 pub const SEC_E_UNKNOWN_CREDENTIALS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893043i32 as _);
3760 pub const SEC_E_UNSUPPORTED_FUNCTION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893054i32 as _);
3761 pub const SEC_E_UNSUPPORTED_PREAUTH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146892989i32 as _);
3762 pub const SEC_E_UNTRUSTED_ROOT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893019i32 as _);
3763 pub const SEC_E_WRONG_CREDENTIAL_HANDLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893002i32 as _);
3764 pub const SEC_E_WRONG_PRINCIPAL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146893022i32 as _);
3765 pub const SEC_I_ASYNC_CALL_PENDING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(590696i32 as _);
3766 pub const SEC_I_COMPLETE_AND_CONTINUE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(590612i32 as _);
3767 pub const SEC_I_COMPLETE_NEEDED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(590611i32 as _);
3768 pub const SEC_I_CONTEXT_EXPIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(590615i32 as _);
3769 pub const SEC_I_CONTINUE_NEEDED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(590610i32 as _);
3770 pub const SEC_I_CONTINUE_NEEDED_MESSAGE_OK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(590694i32 as _);
3771 pub const SEC_I_GENERIC_EXTENSION_RECEIVED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(590614i32 as _);
3772 pub const SEC_I_INCOMPLETE_CREDENTIALS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(590624i32 as _);
3773 pub const SEC_I_LOCAL_LOGON: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(590613i32 as _);
3774 pub const SEC_I_MESSAGE_FRAGMENT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(590692i32 as _);
3775 pub const SEC_I_NO_LSA_CONTEXT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(590627i32 as _);
3776 pub const SEC_I_NO_RENEGOTIATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(590688i32 as _);
3777 pub const SEC_I_RENEGOTIATE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(590625i32 as _);
3778 pub const SEC_I_SIGNATURE_NEEDED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(590684i32 as _);
3779 pub const SEVERITY_ERROR: u32 = 1u32;
3780 pub const SEVERITY_SUCCESS: u32 = 0u32;
3781 #[derive(:: std :: clone :: Clone, :: std :: marker :: Copy, :: std :: fmt :: Debug, :: std :: cmp :: PartialEq, :: std :: cmp :: Eq)]
3782 #[repr(transparent)]
3783 pub struct SHANDLE_PTR(pub isize);
3784 impl ::std::default::Default for SHANDLE_PTR {
default() -> Self3785     fn default() -> Self {
3786         unsafe { ::std::mem::zeroed() }
3787     }
3788 }
3789 unsafe impl ::windows::runtime::Handle for SHANDLE_PTR {}
3790 unsafe impl ::windows::runtime::Abi for SHANDLE_PTR {
3791     type Abi = Self;
3792     type DefaultType = Self;
3793 }
3794 #[derive(:: std :: clone :: Clone, :: std :: marker :: Copy)]
3795 #[repr(C)]
3796 pub struct SIZE {
3797     pub cx: i32,
3798     pub cy: i32,
3799 }
3800 impl SIZE {}
3801 impl ::std::default::Default for SIZE {
default() -> Self3802     fn default() -> Self {
3803         unsafe { ::std::mem::zeroed() }
3804     }
3805 }
3806 impl ::std::fmt::Debug for SIZE {
fmt(&self, fmt: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result3807     fn fmt(&self, fmt: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
3808         fmt.debug_struct("SIZE").field("cx", &self.cx).field("cy", &self.cy).finish()
3809     }
3810 }
3811 impl ::std::cmp::PartialEq for SIZE {
eq(&self, other: &Self) -> bool3812     fn eq(&self, other: &Self) -> bool {
3813         self.cx == other.cx && self.cy == other.cy
3814     }
3815 }
3816 impl ::std::cmp::Eq for SIZE {}
3817 unsafe impl ::windows::runtime::Abi for SIZE {
3818     type Abi = Self;
3819     type DefaultType = Self;
3820 }
3821 pub const SPAPI_E_AUTHENTICODE_DISALLOWED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500032i32 as _);
3822 pub const SPAPI_E_AUTHENTICODE_PUBLISHER_NOT_TRUSTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500029i32 as _);
3823 pub const SPAPI_E_AUTHENTICODE_TRUSTED_PUBLISHER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500031i32 as _);
3824 pub const SPAPI_E_AUTHENTICODE_TRUST_NOT_ESTABLISHED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500030i32 as _);
3825 pub const SPAPI_E_BAD_INTERFACE_INSTALLSECT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500067i32 as _);
3826 pub const SPAPI_E_BAD_SECTION_NAME_LINE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500607i32 as _);
3827 pub const SPAPI_E_BAD_SERVICE_INSTALLSECT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500073i32 as _);
3828 pub const SPAPI_E_CANT_LOAD_CLASS_ICON: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500084i32 as _);
3829 pub const SPAPI_E_CANT_REMOVE_DEVINST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500046i32 as _);
3830 pub const SPAPI_E_CLASS_MISMATCH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500095i32 as _);
3831 pub const SPAPI_E_DEVICE_INSTALLER_NOT_READY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500026i32 as _);
3832 pub const SPAPI_E_DEVICE_INSTALL_BLOCKED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500024i32 as _);
3833 pub const SPAPI_E_DEVICE_INTERFACE_ACTIVE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500069i32 as _);
3834 pub const SPAPI_E_DEVICE_INTERFACE_REMOVED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500068i32 as _);
3835 pub const SPAPI_E_DEVINFO_DATA_LOCKED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500077i32 as _);
3836 pub const SPAPI_E_DEVINFO_LIST_LOCKED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500078i32 as _);
3837 pub const SPAPI_E_DEVINFO_NOT_REGISTERED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500088i32 as _);
3838 pub const SPAPI_E_DEVINSTALL_QUEUE_NONNATIVE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500048i32 as _);
3839 pub const SPAPI_E_DEVINST_ALREADY_EXISTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500089i32 as _);
3840 pub const SPAPI_E_DI_BAD_PATH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500076i32 as _);
3841 pub const SPAPI_E_DI_DONT_INSTALL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500053i32 as _);
3842 pub const SPAPI_E_DI_DO_DEFAULT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500082i32 as _);
3843 pub const SPAPI_E_DI_FUNCTION_OBSOLETE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500034i32 as _);
3844 pub const SPAPI_E_DI_NOFILECOPY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500081i32 as _);
3845 pub const SPAPI_E_DI_POSTPROCESSING_REQUIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500058i32 as _);
3846 pub const SPAPI_E_DRIVER_INSTALL_BLOCKED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500023i32 as _);
3847 pub const SPAPI_E_DRIVER_NONNATIVE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500044i32 as _);
3848 pub const SPAPI_E_DRIVER_STORE_ADD_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500025i32 as _);
3849 pub const SPAPI_E_DRIVER_STORE_DELETE_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500020i32 as _);
3850 pub const SPAPI_E_DUPLICATE_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500094i32 as _);
3851 pub const SPAPI_E_ERROR_NOT_INSTALLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146496512i32 as _);
3852 pub const SPAPI_E_EXPECTED_SECTION_NAME: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500608i32 as _);
3853 pub const SPAPI_E_FILEQUEUE_LOCKED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500074i32 as _);
3854 pub const SPAPI_E_FILE_HASH_NOT_IN_CATALOG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500021i32 as _);
3855 pub const SPAPI_E_GENERAL_SYNTAX: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500605i32 as _);
3856 pub const SPAPI_E_INCORRECTLY_COPIED_INF: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500041i32 as _);
3857 pub const SPAPI_E_INF_IN_USE_BY_DEVICES: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500035i32 as _);
3858 pub const SPAPI_E_INVALID_CLASS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500090i32 as _);
3859 pub const SPAPI_E_INVALID_CLASS_INSTALLER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500083i32 as _);
3860 pub const SPAPI_E_INVALID_COINSTALLER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500057i32 as _);
3861 pub const SPAPI_E_INVALID_DEVINST_NAME: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500091i32 as _);
3862 pub const SPAPI_E_INVALID_FILTER_DRIVER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500052i32 as _);
3863 pub const SPAPI_E_INVALID_HWPROFILE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500080i32 as _);
3864 pub const SPAPI_E_INVALID_INF_LOGCONFIG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500054i32 as _);
3865 pub const SPAPI_E_INVALID_MACHINENAME: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500064i32 as _);
3866 pub const SPAPI_E_INVALID_PROPPAGE_PROVIDER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500060i32 as _);
3867 pub const SPAPI_E_INVALID_REFERENCE_STRING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500065i32 as _);
3868 pub const SPAPI_E_INVALID_REG_PROPERTY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500087i32 as _);
3869 pub const SPAPI_E_INVALID_TARGET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500045i32 as _);
3870 pub const SPAPI_E_IN_WOW64: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500043i32 as _);
3871 pub const SPAPI_E_KEY_DOES_NOT_EXIST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500092i32 as _);
3872 pub const SPAPI_E_LINE_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500350i32 as _);
3873 pub const SPAPI_E_MACHINE_UNAVAILABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500062i32 as _);
3874 pub const SPAPI_E_NON_WINDOWS_DRIVER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500050i32 as _);
3875 pub const SPAPI_E_NON_WINDOWS_NT_DRIVER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500051i32 as _);
3876 pub const SPAPI_E_NOT_AN_INSTALLED_OEM_INF: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500036i32 as _);
3877 pub const SPAPI_E_NOT_DISABLEABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500047i32 as _);
3878 pub const SPAPI_E_NO_ASSOCIATED_CLASS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500096i32 as _);
3879 pub const SPAPI_E_NO_ASSOCIATED_SERVICE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500071i32 as _);
3880 pub const SPAPI_E_NO_AUTHENTICODE_CATALOG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500033i32 as _);
3881 pub const SPAPI_E_NO_BACKUP: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500349i32 as _);
3882 pub const SPAPI_E_NO_CATALOG_FOR_OEM_INF: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500049i32 as _);
3883 pub const SPAPI_E_NO_CLASSINSTALL_PARAMS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500075i32 as _);
3884 pub const SPAPI_E_NO_CLASS_DRIVER_LIST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500072i32 as _);
3885 pub const SPAPI_E_NO_COMPAT_DRIVERS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500056i32 as _);
3886 pub const SPAPI_E_NO_CONFIGMGR_SERVICES: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500061i32 as _);
3887 pub const SPAPI_E_NO_DEFAULT_DEVICE_INTERFACE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500070i32 as _);
3888 pub const SPAPI_E_NO_DEVICE_ICON: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500055i32 as _);
3889 pub const SPAPI_E_NO_DEVICE_SELECTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500079i32 as _);
3890 pub const SPAPI_E_NO_DRIVER_SELECTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500093i32 as _);
3891 pub const SPAPI_E_NO_INF: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500086i32 as _);
3892 pub const SPAPI_E_NO_SUCH_DEVICE_INTERFACE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500059i32 as _);
3893 pub const SPAPI_E_NO_SUCH_DEVINST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500085i32 as _);
3894 pub const SPAPI_E_NO_SUCH_INTERFACE_CLASS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500066i32 as _);
3895 pub const SPAPI_E_ONLY_VALIDATE_VIA_AUTHENTICODE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500027i32 as _);
3896 pub const SPAPI_E_PNP_REGISTRY_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500038i32 as _);
3897 pub const SPAPI_E_REMOTE_COMM_FAILURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500063i32 as _);
3898 pub const SPAPI_E_REMOTE_REQUEST_UNSUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500037i32 as _);
3899 pub const SPAPI_E_SCE_DISABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500040i32 as _);
3900 pub const SPAPI_E_SECTION_NAME_TOO_LONG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500606i32 as _);
3901 pub const SPAPI_E_SECTION_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500351i32 as _);
3902 pub const SPAPI_E_SET_SYSTEM_RESTORE_POINT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500042i32 as _);
3903 pub const SPAPI_E_SIGNATURE_OSATTRIBUTE_MISMATCH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500028i32 as _);
3904 pub const SPAPI_E_UNKNOWN_EXCEPTION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500039i32 as _);
3905 pub const SPAPI_E_UNRECOVERABLE_STACK_OVERFLOW: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146499840i32 as _);
3906 pub const SPAPI_E_WRONG_INF_STYLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500352i32 as _);
3907 pub const SPAPI_E_WRONG_INF_TYPE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146500022i32 as _);
3908 pub const SQLITE_E_ABORT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018574332i32 as _);
3909 pub const SQLITE_E_ABORT_ROLLBACK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018573820i32 as _);
3910 pub const SQLITE_E_AUTH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018574313i32 as _);
3911 pub const SQLITE_E_BUSY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018574331i32 as _);
3912 pub const SQLITE_E_BUSY_RECOVERY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018574075i32 as _);
3913 pub const SQLITE_E_BUSY_SNAPSHOT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018573819i32 as _);
3914 pub const SQLITE_E_CANTOPEN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018574322i32 as _);
3915 pub const SQLITE_E_CANTOPEN_CONVPATH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018573298i32 as _);
3916 pub const SQLITE_E_CANTOPEN_FULLPATH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018573554i32 as _);
3917 pub const SQLITE_E_CANTOPEN_ISDIR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018573810i32 as _);
3918 pub const SQLITE_E_CANTOPEN_NOTEMPDIR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018574066i32 as _);
3919 pub const SQLITE_E_CONSTRAINT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018574317i32 as _);
3920 pub const SQLITE_E_CONSTRAINT_CHECK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018574061i32 as _);
3921 pub const SQLITE_E_CONSTRAINT_COMMITHOOK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018573805i32 as _);
3922 pub const SQLITE_E_CONSTRAINT_FOREIGNKEY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018573549i32 as _);
3923 pub const SQLITE_E_CONSTRAINT_FUNCTION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018573293i32 as _);
3924 pub const SQLITE_E_CONSTRAINT_NOTNULL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018573037i32 as _);
3925 pub const SQLITE_E_CONSTRAINT_PRIMARYKEY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018572781i32 as _);
3926 pub const SQLITE_E_CONSTRAINT_ROWID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018571757i32 as _);
3927 pub const SQLITE_E_CONSTRAINT_TRIGGER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018572525i32 as _);
3928 pub const SQLITE_E_CONSTRAINT_UNIQUE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018572269i32 as _);
3929 pub const SQLITE_E_CONSTRAINT_VTAB: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018572013i32 as _);
3930 pub const SQLITE_E_CORRUPT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018574325i32 as _);
3931 pub const SQLITE_E_CORRUPT_VTAB: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018574069i32 as _);
3932 pub const SQLITE_E_DONE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018574235i32 as _);
3933 pub const SQLITE_E_EMPTY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018574320i32 as _);
3934 pub const SQLITE_E_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018574335i32 as _);
3935 pub const SQLITE_E_FORMAT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018574312i32 as _);
3936 pub const SQLITE_E_FULL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018574323i32 as _);
3937 pub const SQLITE_E_INTERNAL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018574334i32 as _);
3938 pub const SQLITE_E_INTERRUPT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018574327i32 as _);
3939 pub const SQLITE_E_IOERR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018574326i32 as _);
3940 pub const SQLITE_E_IOERR_ACCESS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018570998i32 as _);
3941 pub const SQLITE_E_IOERR_AUTH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018567677i32 as _);
3942 pub const SQLITE_E_IOERR_BLOCKED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018571510i32 as _);
3943 pub const SQLITE_E_IOERR_CHECKRESERVEDLOCK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018570742i32 as _);
3944 pub const SQLITE_E_IOERR_CLOSE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018570230i32 as _);
3945 pub const SQLITE_E_IOERR_CONVPATH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018567670i32 as _);
3946 pub const SQLITE_E_IOERR_DELETE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018571766i32 as _);
3947 pub const SQLITE_E_IOERR_DELETE_NOENT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018568438i32 as _);
3948 pub const SQLITE_E_IOERR_DIR_CLOSE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018569974i32 as _);
3949 pub const SQLITE_E_IOERR_DIR_FSYNC: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018573046i32 as _);
3950 pub const SQLITE_E_IOERR_FSTAT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018572534i32 as _);
3951 pub const SQLITE_E_IOERR_FSYNC: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018573302i32 as _);
3952 pub const SQLITE_E_IOERR_GETTEMPPATH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018567926i32 as _);
3953 pub const SQLITE_E_IOERR_LOCK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018570486i32 as _);
3954 pub const SQLITE_E_IOERR_MMAP: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018568182i32 as _);
3955 pub const SQLITE_E_IOERR_NOMEM: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018571254i32 as _);
3956 pub const SQLITE_E_IOERR_RDLOCK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018572022i32 as _);
3957 pub const SQLITE_E_IOERR_READ: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018574070i32 as _);
3958 pub const SQLITE_E_IOERR_SEEK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018568694i32 as _);
3959 pub const SQLITE_E_IOERR_SHMLOCK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018569206i32 as _);
3960 pub const SQLITE_E_IOERR_SHMMAP: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018568950i32 as _);
3961 pub const SQLITE_E_IOERR_SHMOPEN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018569718i32 as _);
3962 pub const SQLITE_E_IOERR_SHMSIZE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018569462i32 as _);
3963 pub const SQLITE_E_IOERR_SHORT_READ: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018573814i32 as _);
3964 pub const SQLITE_E_IOERR_TRUNCATE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018572790i32 as _);
3965 pub const SQLITE_E_IOERR_UNLOCK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018572278i32 as _);
3966 pub const SQLITE_E_IOERR_VNODE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018567678i32 as _);
3967 pub const SQLITE_E_IOERR_WRITE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018573558i32 as _);
3968 pub const SQLITE_E_LOCKED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018574330i32 as _);
3969 pub const SQLITE_E_LOCKED_SHAREDCACHE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018574074i32 as _);
3970 pub const SQLITE_E_MISMATCH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018574316i32 as _);
3971 pub const SQLITE_E_MISUSE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018574315i32 as _);
3972 pub const SQLITE_E_NOLFS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018574314i32 as _);
3973 pub const SQLITE_E_NOMEM: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018574329i32 as _);
3974 pub const SQLITE_E_NOTADB: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018574310i32 as _);
3975 pub const SQLITE_E_NOTFOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018574324i32 as _);
3976 pub const SQLITE_E_NOTICE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018574309i32 as _);
3977 pub const SQLITE_E_NOTICE_RECOVER_ROLLBACK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018573797i32 as _);
3978 pub const SQLITE_E_NOTICE_RECOVER_WAL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018574053i32 as _);
3979 pub const SQLITE_E_PERM: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018574333i32 as _);
3980 pub const SQLITE_E_PROTOCOL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018574321i32 as _);
3981 pub const SQLITE_E_RANGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018574311i32 as _);
3982 pub const SQLITE_E_READONLY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018574328i32 as _);
3983 pub const SQLITE_E_READONLY_CANTLOCK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018573816i32 as _);
3984 pub const SQLITE_E_READONLY_DBMOVED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018573304i32 as _);
3985 pub const SQLITE_E_READONLY_RECOVERY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018574072i32 as _);
3986 pub const SQLITE_E_READONLY_ROLLBACK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018573560i32 as _);
3987 pub const SQLITE_E_ROW: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018574236i32 as _);
3988 pub const SQLITE_E_SCHEMA: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018574319i32 as _);
3989 pub const SQLITE_E_TOOBIG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018574318i32 as _);
3990 pub const SQLITE_E_WARNING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018574308i32 as _);
3991 pub const SQLITE_E_WARNING_AUTOINDEX: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2018574052i32 as _);
3992 pub const STATEREPOSITORY_ERROR_CACHE_CORRUPTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140733422i32 as _);
3993 pub const STATEREPOSITORY_ERROR_DICTIONARY_CORRUPTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140733435i32 as _);
3994 pub const STATEREPOSITORY_E_BLOCKED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140733434i32 as _);
3995 pub const STATEREPOSITORY_E_BUSY_RECOVERY_RETRY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140733432i32 as _);
3996 pub const STATEREPOSITORY_E_BUSY_RECOVERY_TIMEOUT_EXCEEDED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140733427i32 as _);
3997 pub const STATEREPOSITORY_E_BUSY_RETRY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140733433i32 as _);
3998 pub const STATEREPOSITORY_E_BUSY_TIMEOUT_EXCEEDED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140733428i32 as _);
3999 pub const STATEREPOSITORY_E_CACHE_NOT_INIITALIZED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140733419i32 as _);
4000 pub const STATEREPOSITORY_E_CONCURRENCY_LOCKING_FAILURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140733439i32 as _);
4001 pub const STATEREPOSITORY_E_CONFIGURATION_INVALID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140733437i32 as _);
4002 pub const STATEREPOSITORY_E_DEPENDENCY_NOT_RESOLVED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140733418i32 as _);
4003 pub const STATEREPOSITORY_E_LOCKED_RETRY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140733431i32 as _);
4004 pub const STATEREPOSITORY_E_LOCKED_SHAREDCACHE_RETRY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140733430i32 as _);
4005 pub const STATEREPOSITORY_E_LOCKED_SHAREDCACHE_TIMEOUT_EXCEEDED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140733425i32 as _);
4006 pub const STATEREPOSITORY_E_LOCKED_TIMEOUT_EXCEEDED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140733426i32 as _);
4007 pub const STATEREPOSITORY_E_SERVICE_STOP_IN_PROGRESS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140733424i32 as _);
4008 pub const STATEREPOSITORY_E_STATEMENT_INPROGRESS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140733438i32 as _);
4009 pub const STATEREPOSITORY_E_TRANSACTION_REQUIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140733429i32 as _);
4010 pub const STATEREPOSITORY_E_UNKNOWN_SCHEMA_VERSION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140733436i32 as _);
4011 pub const STATEREPOSITORY_TRANSACTION_CALLER_ID_CHANGED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(6750227i32 as _);
4012 pub const STATEREPOSITORY_TRANSACTION_IN_PROGRESS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140733420i32 as _);
4013 pub const STATEREPOSTORY_E_NESTED_TRANSACTION_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2140733423i32 as _);
4014 pub const STATUS_ABANDONED: NTSTATUS = NTSTATUS(128i32 as _);
4015 pub const STATUS_ABANDONED_WAIT_0: NTSTATUS = NTSTATUS(128i32 as _);
4016 pub const STATUS_ABANDONED_WAIT_63: NTSTATUS = NTSTATUS(191i32 as _);
4017 pub const STATUS_ABANDON_HIBERFILE: NTSTATUS = NTSTATUS(1073741875i32 as _);
4018 pub const STATUS_ABIOS_INVALID_COMMAND: NTSTATUS = NTSTATUS(-1073741549i32 as _);
4019 pub const STATUS_ABIOS_INVALID_LID: NTSTATUS = NTSTATUS(-1073741548i32 as _);
4020 pub const STATUS_ABIOS_INVALID_SELECTOR: NTSTATUS = NTSTATUS(-1073741546i32 as _);
4021 pub const STATUS_ABIOS_LID_ALREADY_OWNED: NTSTATUS = NTSTATUS(-1073741551i32 as _);
4022 pub const STATUS_ABIOS_LID_NOT_EXIST: NTSTATUS = NTSTATUS(-1073741552i32 as _);
4023 pub const STATUS_ABIOS_NOT_LID_OWNER: NTSTATUS = NTSTATUS(-1073741550i32 as _);
4024 pub const STATUS_ABIOS_NOT_PRESENT: NTSTATUS = NTSTATUS(-1073741553i32 as _);
4025 pub const STATUS_ABIOS_SELECTOR_NOT_AVAILABLE: NTSTATUS = NTSTATUS(-1073741547i32 as _);
4026 pub const STATUS_ACCESS_AUDIT_BY_POLICY: NTSTATUS = NTSTATUS(1073741874i32 as _);
4027 pub const STATUS_ACCESS_DISABLED_BY_POLICY_DEFAULT: NTSTATUS = NTSTATUS(-1073740959i32 as _);
4028 pub const STATUS_ACCESS_DISABLED_BY_POLICY_OTHER: NTSTATUS = NTSTATUS(-1073740956i32 as _);
4029 pub const STATUS_ACCESS_DISABLED_BY_POLICY_PATH: NTSTATUS = NTSTATUS(-1073740958i32 as _);
4030 pub const STATUS_ACCESS_DISABLED_BY_POLICY_PUBLISHER: NTSTATUS = NTSTATUS(-1073740957i32 as _);
4031 pub const STATUS_ACCESS_DISABLED_NO_SAFER_UI_BY_POLICY: NTSTATUS = NTSTATUS(-1073740942i32 as _);
4032 pub const STATUS_ACCESS_VIOLATION: NTSTATUS = NTSTATUS(-1073741819i32 as _);
4033 pub const STATUS_ACPI_ACQUIRE_GLOBAL_LOCK: NTSTATUS = NTSTATUS(-1072431086i32 as _);
4034 pub const STATUS_ACPI_ADDRESS_NOT_MAPPED: NTSTATUS = NTSTATUS(-1072431092i32 as _);
4035 pub const STATUS_ACPI_ALREADY_INITIALIZED: NTSTATUS = NTSTATUS(-1072431085i32 as _);
4036 pub const STATUS_ACPI_ASSERT_FAILED: NTSTATUS = NTSTATUS(-1072431101i32 as _);
4037 pub const STATUS_ACPI_FATAL: NTSTATUS = NTSTATUS(-1072431098i32 as _);
4038 pub const STATUS_ACPI_HANDLER_COLLISION: NTSTATUS = NTSTATUS(-1072431090i32 as _);
4039 pub const STATUS_ACPI_INCORRECT_ARGUMENT_COUNT: NTSTATUS = NTSTATUS(-1072431093i32 as _);
4040 pub const STATUS_ACPI_INVALID_ACCESS_SIZE: NTSTATUS = NTSTATUS(-1072431087i32 as _);
4041 pub const STATUS_ACPI_INVALID_ARGTYPE: NTSTATUS = NTSTATUS(-1072431096i32 as _);
4042 pub const STATUS_ACPI_INVALID_ARGUMENT: NTSTATUS = NTSTATUS(-1072431099i32 as _);
4043 pub const STATUS_ACPI_INVALID_DATA: NTSTATUS = NTSTATUS(-1072431089i32 as _);
4044 pub const STATUS_ACPI_INVALID_EVENTTYPE: NTSTATUS = NTSTATUS(-1072431091i32 as _);
4045 pub const STATUS_ACPI_INVALID_INDEX: NTSTATUS = NTSTATUS(-1072431100i32 as _);
4046 pub const STATUS_ACPI_INVALID_MUTEX_LEVEL: NTSTATUS = NTSTATUS(-1072431083i32 as _);
4047 pub const STATUS_ACPI_INVALID_OBJTYPE: NTSTATUS = NTSTATUS(-1072431095i32 as _);
4048 pub const STATUS_ACPI_INVALID_OPCODE: NTSTATUS = NTSTATUS(-1072431103i32 as _);
4049 pub const STATUS_ACPI_INVALID_REGION: NTSTATUS = NTSTATUS(-1072431088i32 as _);
4050 pub const STATUS_ACPI_INVALID_SUPERNAME: NTSTATUS = NTSTATUS(-1072431097i32 as _);
4051 pub const STATUS_ACPI_INVALID_TABLE: NTSTATUS = NTSTATUS(-1072431079i32 as _);
4052 pub const STATUS_ACPI_INVALID_TARGETTYPE: NTSTATUS = NTSTATUS(-1072431094i32 as _);
4053 pub const STATUS_ACPI_MUTEX_NOT_OWNED: NTSTATUS = NTSTATUS(-1072431082i32 as _);
4054 pub const STATUS_ACPI_MUTEX_NOT_OWNER: NTSTATUS = NTSTATUS(-1072431081i32 as _);
4055 pub const STATUS_ACPI_NOT_INITIALIZED: NTSTATUS = NTSTATUS(-1072431084i32 as _);
4056 pub const STATUS_ACPI_POWER_REQUEST_FAILED: NTSTATUS = NTSTATUS(-1072431071i32 as _);
4057 pub const STATUS_ACPI_REG_HANDLER_FAILED: NTSTATUS = NTSTATUS(-1072431072i32 as _);
4058 pub const STATUS_ACPI_RS_ACCESS: NTSTATUS = NTSTATUS(-1072431080i32 as _);
4059 pub const STATUS_ACPI_STACK_OVERFLOW: NTSTATUS = NTSTATUS(-1072431102i32 as _);
4060 pub const STATUS_ADAPTER_HARDWARE_ERROR: NTSTATUS = NTSTATUS(-1073741630i32 as _);
4061 pub const STATUS_ADDRESS_ALREADY_ASSOCIATED: NTSTATUS = NTSTATUS(-1073741256i32 as _);
4062 pub const STATUS_ADDRESS_ALREADY_EXISTS: NTSTATUS = NTSTATUS(-1073741302i32 as _);
4063 pub const STATUS_ADDRESS_CLOSED: NTSTATUS = NTSTATUS(-1073741301i32 as _);
4064 pub const STATUS_ADDRESS_NOT_ASSOCIATED: NTSTATUS = NTSTATUS(-1073741255i32 as _);
4065 pub const STATUS_ADMINLESS_ACCESS_DENIED: NTSTATUS = NTSTATUS(-1073700348i32 as _);
4066 pub const STATUS_ADVANCED_INSTALLER_FAILED: NTSTATUS = NTSTATUS(-1072365536i32 as _);
4067 pub const STATUS_AGENTS_EXHAUSTED: NTSTATUS = NTSTATUS(-1073741691i32 as _);
4068 pub const STATUS_ALERTED: NTSTATUS = NTSTATUS(257i32 as _);
4069 pub const STATUS_ALIAS_EXISTS: NTSTATUS = NTSTATUS(-1073741484i32 as _);
4070 pub const STATUS_ALLOCATE_BUCKET: NTSTATUS = NTSTATUS(-1073741265i32 as _);
4071 pub const STATUS_ALLOTTED_SPACE_EXCEEDED: NTSTATUS = NTSTATUS(-1073741671i32 as _);
4072 pub const STATUS_ALL_SIDS_FILTERED: NTSTATUS = NTSTATUS(-1073740962i32 as _);
4073 pub const STATUS_ALL_USER_TRUST_QUOTA_EXCEEDED: NTSTATUS = NTSTATUS(-1073740798i32 as _);
4074 pub const STATUS_ALPC_CHECK_COMPLETION_LIST: NTSTATUS = NTSTATUS(1073741872i32 as _);
4075 pub const STATUS_ALREADY_COMMITTED: NTSTATUS = NTSTATUS(-1073741791i32 as _);
4076 pub const STATUS_ALREADY_COMPLETE: NTSTATUS = NTSTATUS(255i32 as _);
4077 pub const STATUS_ALREADY_DISCONNECTED: NTSTATUS = NTSTATUS(-2147483611i32 as _);
4078 pub const STATUS_ALREADY_HAS_STREAM_ID: NTSTATUS = NTSTATUS(-1073740530i32 as _);
4079 pub const STATUS_ALREADY_INITIALIZED: NTSTATUS = NTSTATUS(-1073740528i32 as _);
4080 pub const STATUS_ALREADY_REGISTERED: NTSTATUS = NTSTATUS(-1073740008i32 as _);
4081 pub const STATUS_ALREADY_WIN32: NTSTATUS = NTSTATUS(1073741851i32 as _);
4082 pub const STATUS_AMBIGUOUS_SYSTEM_DEVICE: NTSTATUS = NTSTATUS(-1073740719i32 as _);
4083 pub const STATUS_APC_RETURNED_WHILE_IMPERSONATING: NTSTATUS = NTSTATUS(-1073740015i32 as _);
4084 pub const STATUS_APISET_NOT_HOSTED: NTSTATUS = NTSTATUS(-1073740671i32 as _);
4085 pub const STATUS_APISET_NOT_PRESENT: NTSTATUS = NTSTATUS(-1073740670i32 as _);
4086 pub const STATUS_APPEXEC_APP_COMPAT_BLOCK: NTSTATUS = NTSTATUS(-1058275320i32 as _);
4087 pub const STATUS_APPEXEC_CALLER_WAIT_TIMEOUT: NTSTATUS = NTSTATUS(-1058275319i32 as _);
4088 pub const STATUS_APPEXEC_CALLER_WAIT_TIMEOUT_LICENSING: NTSTATUS = NTSTATUS(-1058275317i32 as _);
4089 pub const STATUS_APPEXEC_CALLER_WAIT_TIMEOUT_RESOURCES: NTSTATUS = NTSTATUS(-1058275316i32 as _);
4090 pub const STATUS_APPEXEC_CALLER_WAIT_TIMEOUT_TERMINATION: NTSTATUS = NTSTATUS(-1058275318i32 as _);
4091 pub const STATUS_APPEXEC_CONDITION_NOT_SATISFIED: NTSTATUS = NTSTATUS(-1058275328i32 as _);
4092 pub const STATUS_APPEXEC_HANDLE_INVALIDATED: NTSTATUS = NTSTATUS(-1058275327i32 as _);
4093 pub const STATUS_APPEXEC_HOST_ID_MISMATCH: NTSTATUS = NTSTATUS(-1058275322i32 as _);
4094 pub const STATUS_APPEXEC_INVALID_HOST_GENERATION: NTSTATUS = NTSTATUS(-1058275326i32 as _);
4095 pub const STATUS_APPEXEC_INVALID_HOST_STATE: NTSTATUS = NTSTATUS(-1058275324i32 as _);
4096 pub const STATUS_APPEXEC_NO_DONOR: NTSTATUS = NTSTATUS(-1058275323i32 as _);
4097 pub const STATUS_APPEXEC_UNEXPECTED_PROCESS_REGISTRATION: NTSTATUS = NTSTATUS(-1058275325i32 as _);
4098 pub const STATUS_APPEXEC_UNKNOWN_USER: NTSTATUS = NTSTATUS(-1058275321i32 as _);
4099 pub const STATUS_APPHELP_BLOCK: NTSTATUS = NTSTATUS(-1073740963i32 as _);
4100 pub const STATUS_APPX_FILE_NOT_ENCRYPTED: NTSTATUS = NTSTATUS(-1073740634i32 as _);
4101 pub const STATUS_APPX_INTEGRITY_FAILURE_CLR_NGEN: NTSTATUS = NTSTATUS(-1073740673i32 as _);
4102 pub const STATUS_APP_DATA_CORRUPT: NTSTATUS = NTSTATUS(-1073700221i32 as _);
4103 pub const STATUS_APP_DATA_EXPIRED: NTSTATUS = NTSTATUS(-1073700222i32 as _);
4104 pub const STATUS_APP_DATA_LIMIT_EXCEEDED: NTSTATUS = NTSTATUS(-1073700220i32 as _);
4105 pub const STATUS_APP_DATA_NOT_FOUND: NTSTATUS = NTSTATUS(-1073700223i32 as _);
4106 pub const STATUS_APP_DATA_REBOOT_REQUIRED: NTSTATUS = NTSTATUS(-1073700219i32 as _);
4107 pub const STATUS_APP_INIT_FAILURE: NTSTATUS = NTSTATUS(-1073741499i32 as _);
4108 pub const STATUS_ARBITRATION_UNHANDLED: NTSTATUS = NTSTATUS(1073741862i32 as _);
4109 pub const STATUS_ARRAY_BOUNDS_EXCEEDED: NTSTATUS = NTSTATUS(-1073741684i32 as _);
4110 pub const STATUS_ASSERTION_FAILURE: NTSTATUS = NTSTATUS(-1073740768i32 as _);
4111 pub const STATUS_ATTACHED_EXECUTABLE_MEMORY_WRITE: NTSTATUS = NTSTATUS(-1073739995i32 as _);
4112 pub const STATUS_ATTRIBUTE_NOT_PRESENT: NTSTATUS = NTSTATUS(-1073740532i32 as _);
4113 pub const STATUS_AUDIO_ENGINE_NODE_NOT_FOUND: NTSTATUS = NTSTATUS(-1069285375i32 as _);
4114 pub const STATUS_AUDITING_DISABLED: NTSTATUS = NTSTATUS(-1073740970i32 as _);
4115 pub const STATUS_AUDIT_FAILED: NTSTATUS = NTSTATUS(-1073741244i32 as _);
4116 pub const STATUS_AUTHIP_FAILURE: NTSTATUS = NTSTATUS(-1073700730i32 as _);
4117 pub const STATUS_AUTH_TAG_MISMATCH: NTSTATUS = NTSTATUS(-1073700862i32 as _);
4118 pub const STATUS_BACKUP_CONTROLLER: NTSTATUS = NTSTATUS(-1073741433i32 as _);
4119 pub const STATUS_BAD_BINDINGS: NTSTATUS = NTSTATUS(-1073740965i32 as _);
4120 pub const STATUS_BAD_CLUSTERS: NTSTATUS = NTSTATUS(-1073739771i32 as _);
4121 pub const STATUS_BAD_COMPRESSION_BUFFER: NTSTATUS = NTSTATUS(-1073741246i32 as _);
4122 pub const STATUS_BAD_CURRENT_DIRECTORY: NTSTATUS = NTSTATUS(1073741831i32 as _);
4123 pub const STATUS_BAD_DATA: NTSTATUS = NTSTATUS(-1073739509i32 as _);
4124 pub const STATUS_BAD_DESCRIPTOR_FORMAT: NTSTATUS = NTSTATUS(-1073741593i32 as _);
4125 pub const STATUS_BAD_DEVICE_TYPE: NTSTATUS = NTSTATUS(-1073741621i32 as _);
4126 pub const STATUS_BAD_DLL_ENTRYPOINT: NTSTATUS = NTSTATUS(-1073741231i32 as _);
4127 pub const STATUS_BAD_FILE_TYPE: NTSTATUS = NTSTATUS(-1073739517i32 as _);
4128 pub const STATUS_BAD_FUNCTION_TABLE: NTSTATUS = NTSTATUS(-1073741569i32 as _);
4129 pub const STATUS_BAD_IMPERSONATION_LEVEL: NTSTATUS = NTSTATUS(-1073741659i32 as _);
4130 pub const STATUS_BAD_INHERITANCE_ACL: NTSTATUS = NTSTATUS(-1073741699i32 as _);
4131 pub const STATUS_BAD_INITIAL_PC: NTSTATUS = NTSTATUS(-1073741814i32 as _);
4132 pub const STATUS_BAD_INITIAL_STACK: NTSTATUS = NTSTATUS(-1073741815i32 as _);
4133 pub const STATUS_BAD_KEY: NTSTATUS = NTSTATUS(-1073739510i32 as _);
4134 pub const STATUS_BAD_LOGON_SESSION_STATE: NTSTATUS = NTSTATUS(-1073741564i32 as _);
4135 pub const STATUS_BAD_MASTER_BOOT_RECORD: NTSTATUS = NTSTATUS(-1073741655i32 as _);
4136 pub const STATUS_BAD_MCFG_TABLE: NTSTATUS = NTSTATUS(-1073739512i32 as _);
4137 pub const STATUS_BAD_NETWORK_NAME: NTSTATUS = NTSTATUS(-1073741620i32 as _);
4138 pub const STATUS_BAD_NETWORK_PATH: NTSTATUS = NTSTATUS(-1073741634i32 as _);
4139 pub const STATUS_BAD_REMOTE_ADAPTER: NTSTATUS = NTSTATUS(-1073741627i32 as _);
4140 pub const STATUS_BAD_SERVICE_ENTRYPOINT: NTSTATUS = NTSTATUS(-1073741230i32 as _);
4141 pub const STATUS_BAD_STACK: NTSTATUS = NTSTATUS(-1073741784i32 as _);
4142 pub const STATUS_BAD_TOKEN_TYPE: NTSTATUS = NTSTATUS(-1073741656i32 as _);
4143 pub const STATUS_BAD_VALIDATION_CLASS: NTSTATUS = NTSTATUS(-1073741657i32 as _);
4144 pub const STATUS_BAD_WORKING_SET_LIMIT: NTSTATUS = NTSTATUS(-1073741748i32 as _);
4145 pub const STATUS_BCD_NOT_ALL_ENTRIES_IMPORTED: NTSTATUS = NTSTATUS(-2143748095i32 as _);
4146 pub const STATUS_BCD_NOT_ALL_ENTRIES_SYNCHRONIZED: NTSTATUS = NTSTATUS(-2143748093i32 as _);
4147 pub const STATUS_BCD_TOO_MANY_ELEMENTS: NTSTATUS = NTSTATUS(-1070006270i32 as _);
4148 pub const STATUS_BEGINNING_OF_MEDIA: NTSTATUS = NTSTATUS(-2147483617i32 as _);
4149 pub const STATUS_BEYOND_VDL: NTSTATUS = NTSTATUS(-1073740750i32 as _);
4150 pub const STATUS_BIOS_FAILED_TO_CONNECT_INTERRUPT: NTSTATUS = NTSTATUS(-1073741458i32 as _);
4151 pub const STATUS_BIZRULES_NOT_ENABLED: NTSTATUS = NTSTATUS(1073741876i32 as _);
4152 pub const STATUS_BLOCKED_BY_PARENTAL_CONTROLS: NTSTATUS = NTSTATUS(-1073740664i32 as _);
4153 pub const STATUS_BLOCK_TOO_MANY_REFERENCES: NTSTATUS = NTSTATUS(-1073740660i32 as _);
4154 pub const STATUS_BREAKPOINT: NTSTATUS = NTSTATUS(-2147483645i32 as _);
4155 pub const STATUS_BTH_ATT_ATTRIBUTE_NOT_FOUND: NTSTATUS = NTSTATUS(-1069416438i32 as _);
4156 pub const STATUS_BTH_ATT_ATTRIBUTE_NOT_LONG: NTSTATUS = NTSTATUS(-1069416437i32 as _);
4157 pub const STATUS_BTH_ATT_INSUFFICIENT_AUTHENTICATION: NTSTATUS = NTSTATUS(-1069416443i32 as _);
4158 pub const STATUS_BTH_ATT_INSUFFICIENT_AUTHORIZATION: NTSTATUS = NTSTATUS(-1069416440i32 as _);
4159 pub const STATUS_BTH_ATT_INSUFFICIENT_ENCRYPTION: NTSTATUS = NTSTATUS(-1069416433i32 as _);
4160 pub const STATUS_BTH_ATT_INSUFFICIENT_ENCRYPTION_KEY_SIZE: NTSTATUS = NTSTATUS(-1069416436i32 as _);
4161 pub const STATUS_BTH_ATT_INSUFFICIENT_RESOURCES: NTSTATUS = NTSTATUS(-1069416431i32 as _);
4162 pub const STATUS_BTH_ATT_INVALID_ATTRIBUTE_VALUE_LENGTH: NTSTATUS = NTSTATUS(-1069416435i32 as _);
4163 pub const STATUS_BTH_ATT_INVALID_HANDLE: NTSTATUS = NTSTATUS(-1069416447i32 as _);
4164 pub const STATUS_BTH_ATT_INVALID_OFFSET: NTSTATUS = NTSTATUS(-1069416441i32 as _);
4165 pub const STATUS_BTH_ATT_INVALID_PDU: NTSTATUS = NTSTATUS(-1069416444i32 as _);
4166 pub const STATUS_BTH_ATT_PREPARE_QUEUE_FULL: NTSTATUS = NTSTATUS(-1069416439i32 as _);
4167 pub const STATUS_BTH_ATT_READ_NOT_PERMITTED: NTSTATUS = NTSTATUS(-1069416446i32 as _);
4168 pub const STATUS_BTH_ATT_REQUEST_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1069416442i32 as _);
4169 pub const STATUS_BTH_ATT_UNKNOWN_ERROR: NTSTATUS = NTSTATUS(-1069412352i32 as _);
4170 pub const STATUS_BTH_ATT_UNLIKELY: NTSTATUS = NTSTATUS(-1069416434i32 as _);
4171 pub const STATUS_BTH_ATT_UNSUPPORTED_GROUP_TYPE: NTSTATUS = NTSTATUS(-1069416432i32 as _);
4172 pub const STATUS_BTH_ATT_WRITE_NOT_PERMITTED: NTSTATUS = NTSTATUS(-1069416445i32 as _);
4173 pub const STATUS_BUFFER_ALL_ZEROS: NTSTATUS = NTSTATUS(279i32 as _);
4174 pub const STATUS_BUFFER_OVERFLOW: NTSTATUS = NTSTATUS(-2147483643i32 as _);
4175 pub const STATUS_BUFFER_TOO_SMALL: NTSTATUS = NTSTATUS(-1073741789i32 as _);
4176 pub const STATUS_BUS_RESET: NTSTATUS = NTSTATUS(-2147483619i32 as _);
4177 pub const STATUS_BYPASSIO_FLT_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1073740590i32 as _);
4178 pub const STATUS_CACHE_PAGE_LOCKED: NTSTATUS = NTSTATUS(277i32 as _);
4179 pub const STATUS_CALLBACK_BYPASS: NTSTATUS = NTSTATUS(-1073740541i32 as _);
4180 pub const STATUS_CALLBACK_INVOKE_INLINE: NTSTATUS = NTSTATUS(-1073740661i32 as _);
4181 pub const STATUS_CALLBACK_POP_STACK: NTSTATUS = NTSTATUS(-1073740765i32 as _);
4182 pub const STATUS_CALLBACK_RETURNED_LANG: NTSTATUS = NTSTATUS(-1073740001i32 as _);
4183 pub const STATUS_CALLBACK_RETURNED_LDR_LOCK: NTSTATUS = NTSTATUS(-1073740002i32 as _);
4184 pub const STATUS_CALLBACK_RETURNED_PRI_BACK: NTSTATUS = NTSTATUS(-1073740000i32 as _);
4185 pub const STATUS_CALLBACK_RETURNED_THREAD_AFFINITY: NTSTATUS = NTSTATUS(-1073739999i32 as _);
4186 pub const STATUS_CALLBACK_RETURNED_THREAD_PRIORITY: NTSTATUS = NTSTATUS(-1073740005i32 as _);
4187 pub const STATUS_CALLBACK_RETURNED_TRANSACTION: NTSTATUS = NTSTATUS(-1073740003i32 as _);
4188 pub const STATUS_CALLBACK_RETURNED_WHILE_IMPERSONATING: NTSTATUS = NTSTATUS(-1073740016i32 as _);
4189 pub const STATUS_CANCELLED: NTSTATUS = NTSTATUS(-1073741536i32 as _);
4190 pub const STATUS_CANNOT_ABORT_TRANSACTIONS: NTSTATUS = NTSTATUS(-1072103347i32 as _);
4191 pub const STATUS_CANNOT_ACCEPT_TRANSACTED_WORK: NTSTATUS = NTSTATUS(-1072103348i32 as _);
4192 pub const STATUS_CANNOT_BREAK_OPLOCK: NTSTATUS = NTSTATUS(-1073739511i32 as _);
4193 pub const STATUS_CANNOT_DELETE: NTSTATUS = NTSTATUS(-1073741535i32 as _);
4194 pub const STATUS_CANNOT_EXECUTE_FILE_IN_TRANSACTION: NTSTATUS = NTSTATUS(-1072103356i32 as _);
4195 pub const STATUS_CANNOT_GRANT_REQUESTED_OPLOCK: NTSTATUS = NTSTATUS(-2147483602i32 as _);
4196 pub const STATUS_CANNOT_IMPERSONATE: NTSTATUS = NTSTATUS(-1073741555i32 as _);
4197 pub const STATUS_CANNOT_LOAD_REGISTRY_FILE: NTSTATUS = NTSTATUS(-1073741288i32 as _);
4198 pub const STATUS_CANNOT_MAKE: NTSTATUS = NTSTATUS(-1073741078i32 as _);
4199 pub const STATUS_CANNOT_SWITCH_RUNLEVEL: NTSTATUS = NTSTATUS(-1073700543i32 as _);
4200 pub const STATUS_CANT_ACCESS_DOMAIN_INFO: NTSTATUS = NTSTATUS(-1073741606i32 as _);
4201 pub const STATUS_CANT_BREAK_TRANSACTIONAL_DEPENDENCY: NTSTATUS = NTSTATUS(-1072103369i32 as _);
4202 pub const STATUS_CANT_CLEAR_ENCRYPTION_FLAG: NTSTATUS = NTSTATUS(-1073740616i32 as _);
4203 pub const STATUS_CANT_CREATE_MORE_STREAM_MINIVERSIONS: NTSTATUS = NTSTATUS(-1072103386i32 as _);
4204 pub const STATUS_CANT_CROSS_RM_BOUNDARY: NTSTATUS = NTSTATUS(-1072103368i32 as _);
4205 pub const STATUS_CANT_DISABLE_MANDATORY: NTSTATUS = NTSTATUS(-1073741731i32 as _);
4206 pub const STATUS_CANT_ENABLE_DENY_ONLY: NTSTATUS = NTSTATUS(-1073741133i32 as _);
4207 pub const STATUS_CANT_OPEN_ANONYMOUS: NTSTATUS = NTSTATUS(-1073741658i32 as _);
4208 pub const STATUS_CANT_OPEN_MINIVERSION_WITH_MODIFY_INTENT: NTSTATUS = NTSTATUS(-1072103387i32 as _);
4209 pub const STATUS_CANT_RECOVER_WITH_HANDLE_OPEN: NTSTATUS = NTSTATUS(-2145845199i32 as _);
4210 pub const STATUS_CANT_TERMINATE_SELF: NTSTATUS = NTSTATUS(-1073741605i32 as _);
4211 pub const STATUS_CANT_WAIT: NTSTATUS = NTSTATUS(-1073741608i32 as _);
4212 pub const STATUS_CARDBUS_NOT_SUPPORTED: NTSTATUS = NTSTATUS(1073741863i32 as _);
4213 pub const STATUS_CASE_DIFFERING_NAMES_IN_DIR: NTSTATUS = NTSTATUS(-1073740621i32 as _);
4214 pub const STATUS_CASE_SENSITIVE_PATH: NTSTATUS = NTSTATUS(-1073740614i32 as _);
4215 pub const STATUS_CC_NEEDS_CALLBACK_SECTION_DRAIN: NTSTATUS = NTSTATUS(-1073700856i32 as _);
4216 pub const STATUS_CERTIFICATE_MAPPING_NOT_UNIQUE: NTSTATUS = NTSTATUS(-1073740012i32 as _);
4217 pub const STATUS_CERTIFICATE_VALIDATION_PREFERENCE_CONFLICT: NTSTATUS = NTSTATUS(-1073741387i32 as _);
4218 pub const STATUS_CHECKING_FILE_SYSTEM: NTSTATUS = NTSTATUS(1073741844i32 as _);
4219 pub const STATUS_CHECKOUT_REQUIRED: NTSTATUS = NTSTATUS(-1073739518i32 as _);
4220 pub const STATUS_CHILD_MUST_BE_VOLATILE: NTSTATUS = NTSTATUS(-1073741439i32 as _);
4221 pub const STATUS_CHILD_PROCESS_BLOCKED: NTSTATUS = NTSTATUS(-1073740643i32 as _);
4222 pub const STATUS_CIMFS_IMAGE_CORRUPT: NTSTATUS = NTSTATUS(-1073692671i32 as _);
4223 pub const STATUS_CIMFS_IMAGE_VERSION_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1073692670i32 as _);
4224 pub const STATUS_CLEANER_CARTRIDGE_INSTALLED: NTSTATUS = NTSTATUS(-2147483609i32 as _);
4225 pub const STATUS_CLIENT_SERVER_PARAMETERS_INVALID: NTSTATUS = NTSTATUS(-1073741277i32 as _);
4226 pub const STATUS_CLIP_DEVICE_LICENSE_MISSING: NTSTATUS = NTSTATUS(-1058406397i32 as _);
4227 pub const STATUS_CLIP_KEYHOLDER_LICENSE_MISSING_OR_INVALID: NTSTATUS = NTSTATUS(-1058406395i32 as _);
4228 pub const STATUS_CLIP_LICENSE_DEVICE_ID_MISMATCH: NTSTATUS = NTSTATUS(-1058406390i32 as _);
4229 pub const STATUS_CLIP_LICENSE_EXPIRED: NTSTATUS = NTSTATUS(-1058406394i32 as _);
4230 pub const STATUS_CLIP_LICENSE_HARDWARE_ID_OUT_OF_TOLERANCE: NTSTATUS = NTSTATUS(-1058406391i32 as _);
4231 pub const STATUS_CLIP_LICENSE_INVALID_SIGNATURE: NTSTATUS = NTSTATUS(-1058406396i32 as _);
4232 pub const STATUS_CLIP_LICENSE_NOT_FOUND: NTSTATUS = NTSTATUS(-1058406398i32 as _);
4233 pub const STATUS_CLIP_LICENSE_NOT_SIGNED: NTSTATUS = NTSTATUS(-1058406392i32 as _);
4234 pub const STATUS_CLIP_LICENSE_SIGNED_BY_UNKNOWN_SOURCE: NTSTATUS = NTSTATUS(-1058406393i32 as _);
4235 pub const STATUS_CLOUD_FILE_ACCESS_DENIED: NTSTATUS = NTSTATUS(-1073688808i32 as _);
4236 pub const STATUS_CLOUD_FILE_ALREADY_CONNECTED: NTSTATUS = NTSTATUS(-1073688823i32 as _);
4237 pub const STATUS_CLOUD_FILE_AUTHENTICATION_FAILED: NTSTATUS = NTSTATUS(-1073688817i32 as _);
4238 pub const STATUS_CLOUD_FILE_CONNECTED_PROVIDER_ONLY: NTSTATUS = NTSTATUS(-1073688819i32 as _);
4239 pub const STATUS_CLOUD_FILE_DEHYDRATION_DISALLOWED: NTSTATUS = NTSTATUS(-1073688800i32 as _);
4240 pub const STATUS_CLOUD_FILE_INCOMPATIBLE_HARDLINKS: NTSTATUS = NTSTATUS(-1073688807i32 as _);
4241 pub const STATUS_CLOUD_FILE_INSUFFICIENT_RESOURCES: NTSTATUS = NTSTATUS(-1073688816i32 as _);
4242 pub const STATUS_CLOUD_FILE_INVALID_REQUEST: NTSTATUS = NTSTATUS(-1073688821i32 as _);
4243 pub const STATUS_CLOUD_FILE_IN_USE: NTSTATUS = NTSTATUS(-1073688812i32 as _);
4244 pub const STATUS_CLOUD_FILE_METADATA_CORRUPT: NTSTATUS = NTSTATUS(-1073688830i32 as _);
4245 pub const STATUS_CLOUD_FILE_METADATA_TOO_LARGE: NTSTATUS = NTSTATUS(-1073688829i32 as _);
4246 pub const STATUS_CLOUD_FILE_NETWORK_UNAVAILABLE: NTSTATUS = NTSTATUS(-1073688815i32 as _);
4247 pub const STATUS_CLOUD_FILE_NOT_IN_SYNC: NTSTATUS = NTSTATUS(-1073688824i32 as _);
4248 pub const STATUS_CLOUD_FILE_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1073688822i32 as _);
4249 pub const STATUS_CLOUD_FILE_NOT_UNDER_SYNC_ROOT: NTSTATUS = NTSTATUS(-1073688813i32 as _);
4250 pub const STATUS_CLOUD_FILE_PINNED: NTSTATUS = NTSTATUS(-1073688811i32 as _);
4251 pub const STATUS_CLOUD_FILE_PROPERTY_BLOB_CHECKSUM_MISMATCH: NTSTATUS = NTSTATUS(-2147430656i32 as _);
4252 pub const STATUS_CLOUD_FILE_PROPERTY_BLOB_TOO_LARGE: NTSTATUS = NTSTATUS(-2147430652i32 as _);
4253 pub const STATUS_CLOUD_FILE_PROPERTY_CORRUPT: NTSTATUS = NTSTATUS(-1073688809i32 as _);
4254 pub const STATUS_CLOUD_FILE_PROPERTY_LOCK_CONFLICT: NTSTATUS = NTSTATUS(-1073688806i32 as _);
4255 pub const STATUS_CLOUD_FILE_PROPERTY_VERSION_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1073688826i32 as _);
4256 pub const STATUS_CLOUD_FILE_PROVIDER_NOT_RUNNING: NTSTATUS = NTSTATUS(-1073688831i32 as _);
4257 pub const STATUS_CLOUD_FILE_PROVIDER_TERMINATED: NTSTATUS = NTSTATUS(-1073688803i32 as _);
4258 pub const STATUS_CLOUD_FILE_READ_ONLY_VOLUME: NTSTATUS = NTSTATUS(-1073688820i32 as _);
4259 pub const STATUS_CLOUD_FILE_REQUEST_ABORTED: NTSTATUS = NTSTATUS(-1073688810i32 as _);
4260 pub const STATUS_CLOUD_FILE_REQUEST_CANCELED: NTSTATUS = NTSTATUS(-1073688805i32 as _);
4261 pub const STATUS_CLOUD_FILE_REQUEST_TIMEOUT: NTSTATUS = NTSTATUS(-1073688801i32 as _);
4262 pub const STATUS_CLOUD_FILE_SYNC_ROOT_METADATA_CORRUPT: NTSTATUS = NTSTATUS(-1073688832i32 as _);
4263 pub const STATUS_CLOUD_FILE_TOO_MANY_PROPERTY_BLOBS: NTSTATUS = NTSTATUS(-2147430651i32 as _);
4264 pub const STATUS_CLOUD_FILE_UNSUCCESSFUL: NTSTATUS = NTSTATUS(-1073688814i32 as _);
4265 pub const STATUS_CLOUD_FILE_VALIDATION_FAILED: NTSTATUS = NTSTATUS(-1073688818i32 as _);
4266 pub const STATUS_CLUSTER_CAM_TICKET_REPLAY_DETECTED: NTSTATUS = NTSTATUS(-1072496591i32 as _);
4267 pub const STATUS_CLUSTER_CSV_AUTO_PAUSE_ERROR: NTSTATUS = NTSTATUS(-1072496607i32 as _);
4268 pub const STATUS_CLUSTER_CSV_INVALID_HANDLE: NTSTATUS = NTSTATUS(-1072496599i32 as _);
4269 pub const STATUS_CLUSTER_CSV_NOT_REDIRECTED: NTSTATUS = NTSTATUS(-1072496605i32 as _);
4270 pub const STATUS_CLUSTER_CSV_NO_SNAPSHOTS: NTSTATUS = NTSTATUS(-1072496601i32 as _);
4271 pub const STATUS_CLUSTER_CSV_READ_OPLOCK_BREAK_IN_PROGRESS: NTSTATUS = NTSTATUS(-1072496608i32 as _);
4272 pub const STATUS_CLUSTER_CSV_REDIRECTED: NTSTATUS = NTSTATUS(-1072496606i32 as _);
4273 pub const STATUS_CLUSTER_CSV_SNAPSHOT_CREATION_IN_PROGRESS: NTSTATUS = NTSTATUS(-1072496603i32 as _);
4274 pub const STATUS_CLUSTER_CSV_SUPPORTED_ONLY_ON_COORDINATOR: NTSTATUS = NTSTATUS(-1072496592i32 as _);
4275 pub const STATUS_CLUSTER_CSV_VOLUME_DRAINING: NTSTATUS = NTSTATUS(-1072496604i32 as _);
4276 pub const STATUS_CLUSTER_CSV_VOLUME_DRAINING_SUCCEEDED_DOWNLEVEL: NTSTATUS = NTSTATUS(-1072496602i32 as _);
4277 pub const STATUS_CLUSTER_CSV_VOLUME_NOT_LOCAL: NTSTATUS = NTSTATUS(-1072496615i32 as _);
4278 pub const STATUS_CLUSTER_INVALID_NETWORK: NTSTATUS = NTSTATUS(-1072496624i32 as _);
4279 pub const STATUS_CLUSTER_INVALID_NETWORK_PROVIDER: NTSTATUS = NTSTATUS(-1072496629i32 as _);
4280 pub const STATUS_CLUSTER_INVALID_NODE: NTSTATUS = NTSTATUS(-1072496639i32 as _);
4281 pub const STATUS_CLUSTER_INVALID_REQUEST: NTSTATUS = NTSTATUS(-1072496630i32 as _);
4282 pub const STATUS_CLUSTER_JOIN_IN_PROGRESS: NTSTATUS = NTSTATUS(-1072496637i32 as _);
4283 pub const STATUS_CLUSTER_JOIN_NOT_IN_PROGRESS: NTSTATUS = NTSTATUS(-1072496625i32 as _);
4284 pub const STATUS_CLUSTER_LOCAL_NODE_NOT_FOUND: NTSTATUS = NTSTATUS(-1072496635i32 as _);
4285 pub const STATUS_CLUSTER_NETINTERFACE_EXISTS: NTSTATUS = NTSTATUS(-1072496632i32 as _);
4286 pub const STATUS_CLUSTER_NETINTERFACE_NOT_FOUND: NTSTATUS = NTSTATUS(-1072496631i32 as _);
4287 pub const STATUS_CLUSTER_NETWORK_ALREADY_OFFLINE: NTSTATUS = NTSTATUS(-2146238460i32 as _);
4288 pub const STATUS_CLUSTER_NETWORK_ALREADY_ONLINE: NTSTATUS = NTSTATUS(-2146238461i32 as _);
4289 pub const STATUS_CLUSTER_NETWORK_EXISTS: NTSTATUS = NTSTATUS(-1072496634i32 as _);
4290 pub const STATUS_CLUSTER_NETWORK_NOT_FOUND: NTSTATUS = NTSTATUS(-1072496633i32 as _);
4291 pub const STATUS_CLUSTER_NETWORK_NOT_INTERNAL: NTSTATUS = NTSTATUS(-1072496618i32 as _);
4292 pub const STATUS_CLUSTER_NODE_ALREADY_DOWN: NTSTATUS = NTSTATUS(-2146238462i32 as _);
4293 pub const STATUS_CLUSTER_NODE_ALREADY_MEMBER: NTSTATUS = NTSTATUS(-2146238459i32 as _);
4294 pub const STATUS_CLUSTER_NODE_ALREADY_UP: NTSTATUS = NTSTATUS(-2146238463i32 as _);
4295 pub const STATUS_CLUSTER_NODE_DOWN: NTSTATUS = NTSTATUS(-1072496628i32 as _);
4296 pub const STATUS_CLUSTER_NODE_EXISTS: NTSTATUS = NTSTATUS(-1072496638i32 as _);
4297 pub const STATUS_CLUSTER_NODE_NOT_FOUND: NTSTATUS = NTSTATUS(-1072496636i32 as _);
4298 pub const STATUS_CLUSTER_NODE_NOT_MEMBER: NTSTATUS = NTSTATUS(-1072496626i32 as _);
4299 pub const STATUS_CLUSTER_NODE_NOT_PAUSED: NTSTATUS = NTSTATUS(-1072496620i32 as _);
4300 pub const STATUS_CLUSTER_NODE_PAUSED: NTSTATUS = NTSTATUS(-1072496621i32 as _);
4301 pub const STATUS_CLUSTER_NODE_UNREACHABLE: NTSTATUS = NTSTATUS(-1072496627i32 as _);
4302 pub const STATUS_CLUSTER_NODE_UP: NTSTATUS = NTSTATUS(-1072496622i32 as _);
4303 pub const STATUS_CLUSTER_NON_CSV_PATH: NTSTATUS = NTSTATUS(-1072496616i32 as _);
4304 pub const STATUS_CLUSTER_NO_NET_ADAPTERS: NTSTATUS = NTSTATUS(-1072496623i32 as _);
4305 pub const STATUS_CLUSTER_NO_SECURITY_CONTEXT: NTSTATUS = NTSTATUS(-1072496619i32 as _);
4306 pub const STATUS_CLUSTER_POISONED: NTSTATUS = NTSTATUS(-1072496617i32 as _);
4307 pub const STATUS_COMMITMENT_LIMIT: NTSTATUS = NTSTATUS(-1073741523i32 as _);
4308 pub const STATUS_COMMITMENT_MINIMUM: NTSTATUS = NTSTATUS(-1073741112i32 as _);
4309 pub const STATUS_COMPRESSED_FILE_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1073740677i32 as _);
4310 pub const STATUS_COMPRESSION_DISABLED: NTSTATUS = NTSTATUS(-1073740762i32 as _);
4311 pub const STATUS_COMPRESSION_NOT_ALLOWED_IN_TRANSACTION: NTSTATUS = NTSTATUS(-1072103338i32 as _);
4312 pub const STATUS_COMPRESSION_NOT_BENEFICIAL: NTSTATUS = NTSTATUS(-1073740689i32 as _);
4313 pub const STATUS_CONFLICTING_ADDRESSES: NTSTATUS = NTSTATUS(-1073741800i32 as _);
4314 pub const STATUS_CONNECTION_ABORTED: NTSTATUS = NTSTATUS(-1073741247i32 as _);
4315 pub const STATUS_CONNECTION_ACTIVE: NTSTATUS = NTSTATUS(-1073741253i32 as _);
4316 pub const STATUS_CONNECTION_COUNT_LIMIT: NTSTATUS = NTSTATUS(-1073741242i32 as _);
4317 pub const STATUS_CONNECTION_DISCONNECTED: NTSTATUS = NTSTATUS(-1073741300i32 as _);
4318 pub const STATUS_CONNECTION_INVALID: NTSTATUS = NTSTATUS(-1073741254i32 as _);
4319 pub const STATUS_CONNECTION_IN_USE: NTSTATUS = NTSTATUS(-1073741560i32 as _);
4320 pub const STATUS_CONNECTION_REFUSED: NTSTATUS = NTSTATUS(-1073741258i32 as _);
4321 pub const STATUS_CONNECTION_RESET: NTSTATUS = NTSTATUS(-1073741299i32 as _);
4322 pub const STATUS_CONTAINER_ASSIGNED: NTSTATUS = NTSTATUS(-1073740536i32 as _);
4323 pub const STATUS_CONTENT_BLOCKED: NTSTATUS = NTSTATUS(-1073739772i32 as _);
4324 pub const STATUS_CONTEXT_MISMATCH: NTSTATUS = NTSTATUS(-1073740007i32 as _);
4325 pub const STATUS_CONTEXT_STOWED_EXCEPTION: NTSTATUS = NTSTATUS(-1073741188i32 as _);
4326 pub const STATUS_CONTROL_C_EXIT: NTSTATUS = NTSTATUS(-1073741510i32 as _);
4327 pub const STATUS_CONTROL_STACK_VIOLATION: NTSTATUS = NTSTATUS(-1073741390i32 as _);
4328 pub const STATUS_CONVERT_TO_LARGE: NTSTATUS = NTSTATUS(-1073741268i32 as _);
4329 pub const STATUS_COPY_PROTECTION_FAILURE: NTSTATUS = NTSTATUS(-1073741051i32 as _);
4330 pub const STATUS_CORRUPT_LOG_CLEARED: NTSTATUS = NTSTATUS(-1073739763i32 as _);
4331 pub const STATUS_CORRUPT_LOG_CORRUPTED: NTSTATUS = NTSTATUS(-1073739766i32 as _);
4332 pub const STATUS_CORRUPT_LOG_DELETED_FULL: NTSTATUS = NTSTATUS(-1073739764i32 as _);
4333 pub const STATUS_CORRUPT_LOG_OVERFULL: NTSTATUS = NTSTATUS(-1073739767i32 as _);
4334 pub const STATUS_CORRUPT_LOG_UNAVAILABLE: NTSTATUS = NTSTATUS(-1073739765i32 as _);
4335 pub const STATUS_CORRUPT_LOG_UPLEVEL_RECORDS: NTSTATUS = NTSTATUS(-1073739759i32 as _);
4336 pub const STATUS_CORRUPT_SYSTEM_FILE: NTSTATUS = NTSTATUS(-1073741116i32 as _);
4337 pub const STATUS_COULD_NOT_INTERPRET: NTSTATUS = NTSTATUS(-1073741639i32 as _);
4338 pub const STATUS_COULD_NOT_RESIZE_LOG: NTSTATUS = NTSTATUS(-2145845239i32 as _);
4339 pub const STATUS_CPU_SET_INVALID: NTSTATUS = NTSTATUS(-1073741393i32 as _);
4340 pub const STATUS_CRASH_DUMP: NTSTATUS = NTSTATUS(278i32 as _);
4341 pub const STATUS_CRC_ERROR: NTSTATUS = NTSTATUS(-1073741761i32 as _);
4342 pub const STATUS_CRED_REQUIRES_CONFIRMATION: NTSTATUS = NTSTATUS(-1073740736i32 as _);
4343 pub const STATUS_CRM_PROTOCOL_ALREADY_EXISTS: NTSTATUS = NTSTATUS(-1072103409i32 as _);
4344 pub const STATUS_CRM_PROTOCOL_NOT_FOUND: NTSTATUS = NTSTATUS(-1072103407i32 as _);
4345 pub const STATUS_CROSSREALM_DELEGATION_FAILURE: NTSTATUS = NTSTATUS(-1073740789i32 as _);
4346 pub const STATUS_CROSS_PARTITION_VIOLATION: NTSTATUS = NTSTATUS(-1073740277i32 as _);
4347 pub const STATUS_CRYPTO_SYSTEM_INVALID: NTSTATUS = NTSTATUS(-1073741069i32 as _);
4348 pub const STATUS_CSS_AUTHENTICATION_FAILURE: NTSTATUS = NTSTATUS(-1073741050i32 as _);
4349 pub const STATUS_CSS_KEY_NOT_ESTABLISHED: NTSTATUS = NTSTATUS(-1073741048i32 as _);
4350 pub const STATUS_CSS_KEY_NOT_PRESENT: NTSTATUS = NTSTATUS(-1073741049i32 as _);
4351 pub const STATUS_CSS_REGION_MISMATCH: NTSTATUS = NTSTATUS(-1073741046i32 as _);
4352 pub const STATUS_CSS_RESETS_EXHAUSTED: NTSTATUS = NTSTATUS(-1073741045i32 as _);
4353 pub const STATUS_CSS_SCRAMBLED_SECTOR: NTSTATUS = NTSTATUS(-1073741047i32 as _);
4354 pub const STATUS_CSV_IO_PAUSE_TIMEOUT: NTSTATUS = NTSTATUS(-1072496600i32 as _);
4355 pub const STATUS_CS_ENCRYPTION_EXISTING_ENCRYPTED_FILE: NTSTATUS = NTSTATUS(-1073740733i32 as _);
4356 pub const STATUS_CS_ENCRYPTION_FILE_NOT_CSE: NTSTATUS = NTSTATUS(-1073740731i32 as _);
4357 pub const STATUS_CS_ENCRYPTION_INVALID_SERVER_RESPONSE: NTSTATUS = NTSTATUS(-1073740735i32 as _);
4358 pub const STATUS_CS_ENCRYPTION_NEW_ENCRYPTED_FILE: NTSTATUS = NTSTATUS(-1073740732i32 as _);
4359 pub const STATUS_CS_ENCRYPTION_UNSUPPORTED_SERVER: NTSTATUS = NTSTATUS(-1073740734i32 as _);
4360 pub const STATUS_CTLOG_INCONSISTENT_TRACKING_FILE: NTSTATUS = NTSTATUS(-1069940700i32 as _);
4361 pub const STATUS_CTLOG_INVALID_TRACKING_STATE: NTSTATUS = NTSTATUS(-1069940701i32 as _);
4362 pub const STATUS_CTLOG_LOGFILE_SIZE_EXCEEDED_MAXSIZE: NTSTATUS = NTSTATUS(-1069940703i32 as _);
4363 pub const STATUS_CTLOG_TRACKING_NOT_INITIALIZED: NTSTATUS = NTSTATUS(-1069940704i32 as _);
4364 pub const STATUS_CTLOG_VHD_CHANGED_OFFLINE: NTSTATUS = NTSTATUS(-1069940702i32 as _);
4365 pub const STATUS_CTL_FILE_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1073741737i32 as _);
4366 pub const STATUS_CTX_BAD_VIDEO_MODE: NTSTATUS = NTSTATUS(-1073086440i32 as _);
4367 pub const STATUS_CTX_CDM_CONNECT: NTSTATUS = NTSTATUS(1074397188i32 as _);
4368 pub const STATUS_CTX_CDM_DISCONNECT: NTSTATUS = NTSTATUS(1074397189i32 as _);
4369 pub const STATUS_CTX_CLIENT_LICENSE_IN_USE: NTSTATUS = NTSTATUS(-1073086412i32 as _);
4370 pub const STATUS_CTX_CLIENT_LICENSE_NOT_SET: NTSTATUS = NTSTATUS(-1073086413i32 as _);
4371 pub const STATUS_CTX_CLIENT_QUERY_TIMEOUT: NTSTATUS = NTSTATUS(-1073086426i32 as _);
4372 pub const STATUS_CTX_CLOSE_PENDING: NTSTATUS = NTSTATUS(-1073086458i32 as _);
4373 pub const STATUS_CTX_CONSOLE_CONNECT: NTSTATUS = NTSTATUS(-1073086424i32 as _);
4374 pub const STATUS_CTX_CONSOLE_DISCONNECT: NTSTATUS = NTSTATUS(-1073086425i32 as _);
4375 pub const STATUS_CTX_GRAPHICS_INVALID: NTSTATUS = NTSTATUS(-1073086430i32 as _);
4376 pub const STATUS_CTX_INVALID_MODEMNAME: NTSTATUS = NTSTATUS(-1073086455i32 as _);
4377 pub const STATUS_CTX_INVALID_PD: NTSTATUS = NTSTATUS(-1073086462i32 as _);
4378 pub const STATUS_CTX_INVALID_WD: NTSTATUS = NTSTATUS(-1073086418i32 as _);
4379 pub const STATUS_CTX_LICENSE_CLIENT_INVALID: NTSTATUS = NTSTATUS(-1073086446i32 as _);
4380 pub const STATUS_CTX_LICENSE_EXPIRED: NTSTATUS = NTSTATUS(-1073086444i32 as _);
4381 pub const STATUS_CTX_LICENSE_NOT_AVAILABLE: NTSTATUS = NTSTATUS(-1073086445i32 as _);
4382 pub const STATUS_CTX_LOGON_DISABLED: NTSTATUS = NTSTATUS(-1073086409i32 as _);
4383 pub const STATUS_CTX_MODEM_INF_NOT_FOUND: NTSTATUS = NTSTATUS(-1073086456i32 as _);
4384 pub const STATUS_CTX_MODEM_RESPONSE_BUSY: NTSTATUS = NTSTATUS(-1073086450i32 as _);
4385 pub const STATUS_CTX_MODEM_RESPONSE_NO_CARRIER: NTSTATUS = NTSTATUS(-1073086452i32 as _);
4386 pub const STATUS_CTX_MODEM_RESPONSE_NO_DIALTONE: NTSTATUS = NTSTATUS(-1073086451i32 as _);
4387 pub const STATUS_CTX_MODEM_RESPONSE_TIMEOUT: NTSTATUS = NTSTATUS(-1073086453i32 as _);
4388 pub const STATUS_CTX_MODEM_RESPONSE_VOICE: NTSTATUS = NTSTATUS(-1073086449i32 as _);
4389 pub const STATUS_CTX_NOT_CONSOLE: NTSTATUS = NTSTATUS(-1073086428i32 as _);
4390 pub const STATUS_CTX_NO_OUTBUF: NTSTATUS = NTSTATUS(-1073086457i32 as _);
4391 pub const STATUS_CTX_PD_NOT_FOUND: NTSTATUS = NTSTATUS(-1073086461i32 as _);
4392 pub const STATUS_CTX_RESPONSE_ERROR: NTSTATUS = NTSTATUS(-1073086454i32 as _);
4393 pub const STATUS_CTX_SECURITY_LAYER_ERROR: NTSTATUS = NTSTATUS(-1073086408i32 as _);
4394 pub const STATUS_CTX_SHADOW_DENIED: NTSTATUS = NTSTATUS(-1073086422i32 as _);
4395 pub const STATUS_CTX_SHADOW_DISABLED: NTSTATUS = NTSTATUS(-1073086415i32 as _);
4396 pub const STATUS_CTX_SHADOW_ENDED_BY_MODE_CHANGE: NTSTATUS = NTSTATUS(-1073086411i32 as _);
4397 pub const STATUS_CTX_SHADOW_INVALID: NTSTATUS = NTSTATUS(-1073086416i32 as _);
4398 pub const STATUS_CTX_SHADOW_NOT_RUNNING: NTSTATUS = NTSTATUS(-1073086410i32 as _);
4399 pub const STATUS_CTX_TD_ERROR: NTSTATUS = NTSTATUS(-1073086448i32 as _);
4400 pub const STATUS_CTX_WD_NOT_FOUND: NTSTATUS = NTSTATUS(-1073086417i32 as _);
4401 pub const STATUS_CTX_WINSTATION_ACCESS_DENIED: NTSTATUS = NTSTATUS(-1073086421i32 as _);
4402 pub const STATUS_CTX_WINSTATION_BUSY: NTSTATUS = NTSTATUS(-1073086441i32 as _);
4403 pub const STATUS_CTX_WINSTATION_NAME_COLLISION: NTSTATUS = NTSTATUS(-1073086442i32 as _);
4404 pub const STATUS_CTX_WINSTATION_NAME_INVALID: NTSTATUS = NTSTATUS(-1073086463i32 as _);
4405 pub const STATUS_CTX_WINSTATION_NOT_FOUND: NTSTATUS = NTSTATUS(-1073086443i32 as _);
4406 pub const STATUS_CURRENT_DOMAIN_NOT_ALLOWED: NTSTATUS = NTSTATUS(-1073741079i32 as _);
4407 pub const STATUS_CURRENT_TRANSACTION_NOT_VALID: NTSTATUS = NTSTATUS(-1072103400i32 as _);
4408 pub const STATUS_DATATYPE_MISALIGNMENT: NTSTATUS = NTSTATUS(-2147483646i32 as _);
4409 pub const STATUS_DATATYPE_MISALIGNMENT_ERROR: NTSTATUS = NTSTATUS(-1073741115i32 as _);
4410 pub const STATUS_DATA_CHECKSUM_ERROR: NTSTATUS = NTSTATUS(-1073740688i32 as _);
4411 pub const STATUS_DATA_ERROR: NTSTATUS = NTSTATUS(-1073741762i32 as _);
4412 pub const STATUS_DATA_LATE_ERROR: NTSTATUS = NTSTATUS(-1073741763i32 as _);
4413 pub const STATUS_DATA_LOST_REPAIR: NTSTATUS = NTSTATUS(-2147481597i32 as _);
4414 pub const STATUS_DATA_NOT_ACCEPTED: NTSTATUS = NTSTATUS(-1073741285i32 as _);
4415 pub const STATUS_DATA_OVERRUN: NTSTATUS = NTSTATUS(-1073741764i32 as _);
4416 pub const STATUS_DATA_OVERWRITTEN: NTSTATUS = NTSTATUS(304i32 as _);
4417 pub const STATUS_DAX_MAPPING_EXISTS: NTSTATUS = NTSTATUS(-1073740644i32 as _);
4418 pub const STATUS_DEBUGGER_INACTIVE: NTSTATUS = NTSTATUS(-1073740972i32 as _);
4419 pub const STATUS_DEBUG_ATTACH_FAILED: NTSTATUS = NTSTATUS(-1073741287i32 as _);
4420 pub const STATUS_DECRYPTION_FAILED: NTSTATUS = NTSTATUS(-1073741173i32 as _);
4421 pub const STATUS_DELAY_LOAD_FAILED: NTSTATUS = NTSTATUS(-1073740782i32 as _);
4422 pub const STATUS_DELETE_PENDING: NTSTATUS = NTSTATUS(-1073741738i32 as _);
4423 pub const STATUS_DESTINATION_ELEMENT_FULL: NTSTATUS = NTSTATUS(-1073741180i32 as _);
4424 pub const STATUS_DEVICE_ALREADY_ATTACHED: NTSTATUS = NTSTATUS(-1073741768i32 as _);
4425 pub const STATUS_DEVICE_BUSY: NTSTATUS = NTSTATUS(-2147483631i32 as _);
4426 pub const STATUS_DEVICE_CONFIGURATION_ERROR: NTSTATUS = NTSTATUS(-1073741438i32 as _);
4427 pub const STATUS_DEVICE_DATA_ERROR: NTSTATUS = NTSTATUS(-1073741668i32 as _);
4428 pub const STATUS_DEVICE_DOES_NOT_EXIST: NTSTATUS = NTSTATUS(-1073741632i32 as _);
4429 pub const STATUS_DEVICE_DOOR_OPEN: NTSTATUS = NTSTATUS(-2147482999i32 as _);
4430 pub const STATUS_DEVICE_ENUMERATION_ERROR: NTSTATUS = NTSTATUS(-1073740954i32 as _);
4431 pub const STATUS_DEVICE_FEATURE_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1073740701i32 as _);
4432 pub const STATUS_DEVICE_HARDWARE_ERROR: NTSTATUS = NTSTATUS(-1073740669i32 as _);
4433 pub const STATUS_DEVICE_HINT_NAME_BUFFER_TOO_SMALL: NTSTATUS = NTSTATUS(-1073740650i32 as _);
4434 pub const STATUS_DEVICE_HUNG: NTSTATUS = NTSTATUS(-1073740537i32 as _);
4435 pub const STATUS_DEVICE_INSUFFICIENT_RESOURCES: NTSTATUS = NTSTATUS(-1073740696i32 as _);
4436 pub const STATUS_DEVICE_IN_MAINTENANCE: NTSTATUS = NTSTATUS(-1073740647i32 as _);
4437 pub const STATUS_DEVICE_NOT_CONNECTED: NTSTATUS = NTSTATUS(-1073741667i32 as _);
4438 pub const STATUS_DEVICE_NOT_PARTITIONED: NTSTATUS = NTSTATUS(-1073741452i32 as _);
4439 pub const STATUS_DEVICE_NOT_READY: NTSTATUS = NTSTATUS(-1073741661i32 as _);
4440 pub const STATUS_DEVICE_OFF_LINE: NTSTATUS = NTSTATUS(-2147483632i32 as _);
4441 pub const STATUS_DEVICE_PAPER_EMPTY: NTSTATUS = NTSTATUS(-2147483634i32 as _);
4442 pub const STATUS_DEVICE_POWERED_OFF: NTSTATUS = NTSTATUS(-2147483633i32 as _);
4443 pub const STATUS_DEVICE_POWER_CYCLE_REQUIRED: NTSTATUS = NTSTATUS(-2147483599i32 as _);
4444 pub const STATUS_DEVICE_POWER_FAILURE: NTSTATUS = NTSTATUS(-1073741666i32 as _);
4445 pub const STATUS_DEVICE_PROTOCOL_ERROR: NTSTATUS = NTSTATUS(-1073741434i32 as _);
4446 pub const STATUS_DEVICE_REMOVED: NTSTATUS = NTSTATUS(-1073741130i32 as _);
4447 pub const STATUS_DEVICE_REQUIRES_CLEANING: NTSTATUS = NTSTATUS(-2147483000i32 as _);
4448 pub const STATUS_DEVICE_RESET_REQUIRED: NTSTATUS = NTSTATUS(-2147483210i32 as _);
4449 pub const STATUS_DEVICE_SUPPORT_IN_PROGRESS: NTSTATUS = NTSTATUS(-2147483600i32 as _);
4450 pub const STATUS_DEVICE_UNREACHABLE: NTSTATUS = NTSTATUS(-1073740700i32 as _);
4451 pub const STATUS_DEVICE_UNRESPONSIVE: NTSTATUS = NTSTATUS(-1073740534i32 as _);
4452 pub const STATUS_DFS_EXIT_PATH_FOUND: NTSTATUS = NTSTATUS(-1073741669i32 as _);
4453 pub const STATUS_DFS_UNAVAILABLE: NTSTATUS = NTSTATUS(-1073741203i32 as _);
4454 pub const STATUS_DIF_BINDING_API_NOT_FOUND: NTSTATUS = NTSTATUS(-1073738625i32 as _);
4455 pub const STATUS_DIF_IOCALLBACK_NOT_REPLACED: NTSTATUS = NTSTATUS(-1073738634i32 as _);
4456 pub const STATUS_DIF_LIVEDUMP_LIMIT_EXCEEDED: NTSTATUS = NTSTATUS(-1073738633i32 as _);
4457 pub const STATUS_DIF_VOLATILE_DRIVER_HOTPATCHED: NTSTATUS = NTSTATUS(-1073738631i32 as _);
4458 pub const STATUS_DIF_VOLATILE_DRIVER_IS_NOT_RUNNING: NTSTATUS = NTSTATUS(-1073738629i32 as _);
4459 pub const STATUS_DIF_VOLATILE_INVALID_INFO: NTSTATUS = NTSTATUS(-1073738630i32 as _);
4460 pub const STATUS_DIF_VOLATILE_NOT_ALLOWED: NTSTATUS = NTSTATUS(-1073738626i32 as _);
4461 pub const STATUS_DIF_VOLATILE_PLUGIN_CHANGE_NOT_ALLOWED: NTSTATUS = NTSTATUS(-1073738627i32 as _);
4462 pub const STATUS_DIF_VOLATILE_PLUGIN_IS_NOT_RUNNING: NTSTATUS = NTSTATUS(-1073738628i32 as _);
4463 pub const STATUS_DIF_VOLATILE_SECTION_NOT_LOCKED: NTSTATUS = NTSTATUS(-1073738632i32 as _);
4464 pub const STATUS_DIRECTORY_IS_A_REPARSE_POINT: NTSTATUS = NTSTATUS(-1073741183i32 as _);
4465 pub const STATUS_DIRECTORY_NOT_EMPTY: NTSTATUS = NTSTATUS(-1073741567i32 as _);
4466 pub const STATUS_DIRECTORY_NOT_RM: NTSTATUS = NTSTATUS(-1072103416i32 as _);
4467 pub const STATUS_DIRECTORY_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1073740676i32 as _);
4468 pub const STATUS_DIRECTORY_SERVICE_REQUIRED: NTSTATUS = NTSTATUS(-1073741135i32 as _);
4469 pub const STATUS_DISK_CORRUPT_ERROR: NTSTATUS = NTSTATUS(-1073741774i32 as _);
4470 pub const STATUS_DISK_FULL: NTSTATUS = NTSTATUS(-1073741697i32 as _);
4471 pub const STATUS_DISK_OPERATION_FAILED: NTSTATUS = NTSTATUS(-1073741462i32 as _);
4472 pub const STATUS_DISK_QUOTA_EXCEEDED: NTSTATUS = NTSTATUS(-1073739774i32 as _);
4473 pub const STATUS_DISK_RECALIBRATE_FAILED: NTSTATUS = NTSTATUS(-1073741463i32 as _);
4474 pub const STATUS_DISK_REPAIR_DISABLED: NTSTATUS = NTSTATUS(-1073739776i32 as _);
4475 pub const STATUS_DISK_REPAIR_REDIRECTED: NTSTATUS = NTSTATUS(1073743879i32 as _);
4476 pub const STATUS_DISK_REPAIR_UNSUCCESSFUL: NTSTATUS = NTSTATUS(-1073739768i32 as _);
4477 pub const STATUS_DISK_RESET_FAILED: NTSTATUS = NTSTATUS(-1073741461i32 as _);
4478 pub const STATUS_DISK_RESOURCES_EXHAUSTED: NTSTATUS = NTSTATUS(-1073740703i32 as _);
4479 pub const STATUS_DLL_INIT_FAILED: NTSTATUS = NTSTATUS(-1073741502i32 as _);
4480 pub const STATUS_DLL_INIT_FAILED_LOGOFF: NTSTATUS = NTSTATUS(-1073741205i32 as _);
4481 pub const STATUS_DLL_MIGHT_BE_INCOMPATIBLE: NTSTATUS = NTSTATUS(-2147483604i32 as _);
4482 pub const STATUS_DLL_MIGHT_BE_INSECURE: NTSTATUS = NTSTATUS(-2147483605i32 as _);
4483 pub const STATUS_DLL_NOT_FOUND: NTSTATUS = NTSTATUS(-1073741515i32 as _);
4484 pub const STATUS_DOMAIN_CONTROLLER_NOT_FOUND: NTSTATUS = NTSTATUS(-1073741261i32 as _);
4485 pub const STATUS_DOMAIN_CTRLR_CONFIG_ERROR: NTSTATUS = NTSTATUS(-1073741474i32 as _);
4486 pub const STATUS_DOMAIN_EXISTS: NTSTATUS = NTSTATUS(-1073741600i32 as _);
4487 pub const STATUS_DOMAIN_LIMIT_EXCEEDED: NTSTATUS = NTSTATUS(-1073741599i32 as _);
4488 pub const STATUS_DOMAIN_TRUST_INCONSISTENT: NTSTATUS = NTSTATUS(-1073741413i32 as _);
4489 pub const STATUS_DRIVERS_LEAKING_LOCKED_PAGES: NTSTATUS = NTSTATUS(1073741869i32 as _);
4490 pub const STATUS_DRIVER_BLOCKED: NTSTATUS = NTSTATUS(-1073740948i32 as _);
4491 pub const STATUS_DRIVER_BLOCKED_CRITICAL: NTSTATUS = NTSTATUS(-1073740949i32 as _);
4492 pub const STATUS_DRIVER_CANCEL_TIMEOUT: NTSTATUS = NTSTATUS(-1073741282i32 as _);
4493 pub const STATUS_DRIVER_DATABASE_ERROR: NTSTATUS = NTSTATUS(-1073740947i32 as _);
4494 pub const STATUS_DRIVER_ENTRYPOINT_NOT_FOUND: NTSTATUS = NTSTATUS(-1073741213i32 as _);
4495 pub const STATUS_DRIVER_FAILED_PRIOR_UNLOAD: NTSTATUS = NTSTATUS(-1073740914i32 as _);
4496 pub const STATUS_DRIVER_FAILED_SLEEP: NTSTATUS = NTSTATUS(-1073741118i32 as _);
4497 pub const STATUS_DRIVER_INTERNAL_ERROR: NTSTATUS = NTSTATUS(-1073741437i32 as _);
4498 pub const STATUS_DRIVER_ORDINAL_NOT_FOUND: NTSTATUS = NTSTATUS(-1073741214i32 as _);
4499 pub const STATUS_DRIVER_PROCESS_TERMINATED: NTSTATUS = NTSTATUS(-1073740720i32 as _);
4500 pub const STATUS_DRIVER_UNABLE_TO_LOAD: NTSTATUS = NTSTATUS(-1073741204i32 as _);
4501 pub const STATUS_DS_ADMIN_LIMIT_EXCEEDED: NTSTATUS = NTSTATUS(-1073741119i32 as _);
4502 pub const STATUS_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER: NTSTATUS = NTSTATUS(-1073740968i32 as _);
4503 pub const STATUS_DS_ATTRIBUTE_OR_VALUE_EXISTS: NTSTATUS = NTSTATUS(-1073741148i32 as _);
4504 pub const STATUS_DS_ATTRIBUTE_TYPE_UNDEFINED: NTSTATUS = NTSTATUS(-1073741149i32 as _);
4505 pub const STATUS_DS_BUSY: NTSTATUS = NTSTATUS(-1073741147i32 as _);
4506 pub const STATUS_DS_CANT_MOD_OBJ_CLASS: NTSTATUS = NTSTATUS(-1073741138i32 as _);
4507 pub const STATUS_DS_CANT_MOD_PRIMARYGROUPID: NTSTATUS = NTSTATUS(-1073741104i32 as _);
4508 pub const STATUS_DS_CANT_ON_NON_LEAF: NTSTATUS = NTSTATUS(-1073741140i32 as _);
4509 pub const STATUS_DS_CANT_ON_RDN: NTSTATUS = NTSTATUS(-1073741139i32 as _);
4510 pub const STATUS_DS_CANT_START: NTSTATUS = NTSTATUS(-1073741087i32 as _);
4511 pub const STATUS_DS_CROSS_DOM_MOVE_FAILED: NTSTATUS = NTSTATUS(-1073741137i32 as _);
4512 pub const STATUS_DS_DOMAIN_NAME_EXISTS_IN_FOREST: NTSTATUS = NTSTATUS(-1073740774i32 as _);
4513 pub const STATUS_DS_DOMAIN_RENAME_IN_PROGRESS: NTSTATUS = NTSTATUS(-1073739775i32 as _);
4514 pub const STATUS_DS_DUPLICATE_ID_FOUND: NTSTATUS = NTSTATUS(-1073740795i32 as _);
4515 pub const STATUS_DS_FLAT_NAME_EXISTS_IN_FOREST: NTSTATUS = NTSTATUS(-1073740773i32 as _);
4516 pub const STATUS_DS_GC_NOT_AVAILABLE: NTSTATUS = NTSTATUS(-1073741136i32 as _);
4517 pub const STATUS_DS_GC_REQUIRED: NTSTATUS = NTSTATUS(-1073741084i32 as _);
4518 pub const STATUS_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER: NTSTATUS = NTSTATUS(-1073741094i32 as _);
4519 pub const STATUS_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER: NTSTATUS = NTSTATUS(-1073741097i32 as _);
4520 pub const STATUS_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER: NTSTATUS = NTSTATUS(-1073741096i32 as _);
4521 pub const STATUS_DS_GROUP_CONVERSION_ERROR: NTSTATUS = NTSTATUS(-1073740794i32 as _);
4522 pub const STATUS_DS_HAVE_PRIMARY_MEMBERS: NTSTATUS = NTSTATUS(-1073741092i32 as _);
4523 pub const STATUS_DS_INCORRECT_ROLE_OWNER: NTSTATUS = NTSTATUS(-1073741143i32 as _);
4524 pub const STATUS_DS_INIT_FAILURE: NTSTATUS = NTSTATUS(-1073741086i32 as _);
4525 pub const STATUS_DS_INIT_FAILURE_CONSOLE: NTSTATUS = NTSTATUS(-1073741076i32 as _);
4526 pub const STATUS_DS_INVALID_ATTRIBUTE_SYNTAX: NTSTATUS = NTSTATUS(-1073741150i32 as _);
4527 pub const STATUS_DS_INVALID_GROUP_TYPE: NTSTATUS = NTSTATUS(-1073741100i32 as _);
4528 pub const STATUS_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER: NTSTATUS = NTSTATUS(-1073741093i32 as _);
4529 pub const STATUS_DS_LOCAL_MEMBER_OF_LOCAL_ONLY: NTSTATUS = NTSTATUS(-1073741083i32 as _);
4530 pub const STATUS_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED: NTSTATUS = NTSTATUS(-1073741081i32 as _);
4531 pub const STATUS_DS_MEMBERSHIP_EVALUATED_LOCALLY: NTSTATUS = NTSTATUS(289i32 as _);
4532 pub const STATUS_DS_NAME_NOT_UNIQUE: NTSTATUS = NTSTATUS(-1073740796i32 as _);
4533 pub const STATUS_DS_NO_ATTRIBUTE_OR_VALUE: NTSTATUS = NTSTATUS(-1073741151i32 as _);
4534 pub const STATUS_DS_NO_FPO_IN_UNIVERSAL_GROUPS: NTSTATUS = NTSTATUS(-1073741082i32 as _);
4535 pub const STATUS_DS_NO_MORE_RIDS: NTSTATUS = NTSTATUS(-1073741144i32 as _);
4536 pub const STATUS_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN: NTSTATUS = NTSTATUS(-1073741099i32 as _);
4537 pub const STATUS_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN: NTSTATUS = NTSTATUS(-1073741098i32 as _);
4538 pub const STATUS_DS_NO_RIDS_ALLOCATED: NTSTATUS = NTSTATUS(-1073741145i32 as _);
4539 pub const STATUS_DS_OBJ_CLASS_VIOLATION: NTSTATUS = NTSTATUS(-1073741141i32 as _);
4540 pub const STATUS_DS_OID_MAPPED_GROUP_CANT_HAVE_MEMBERS: NTSTATUS = NTSTATUS(-1073700729i32 as _);
4541 pub const STATUS_DS_OID_NOT_FOUND: NTSTATUS = NTSTATUS(-1073700728i32 as _);
4542 pub const STATUS_DS_RIDMGR_DISABLED: NTSTATUS = NTSTATUS(-1073741126i32 as _);
4543 pub const STATUS_DS_RIDMGR_INIT_ERROR: NTSTATUS = NTSTATUS(-1073741142i32 as _);
4544 pub const STATUS_DS_SAM_INIT_FAILURE: NTSTATUS = NTSTATUS(-1073741109i32 as _);
4545 pub const STATUS_DS_SAM_INIT_FAILURE_CONSOLE: NTSTATUS = NTSTATUS(-1073741075i32 as _);
4546 pub const STATUS_DS_SENSITIVE_GROUP_VIOLATION: NTSTATUS = NTSTATUS(-1073741107i32 as _);
4547 pub const STATUS_DS_SHUTTING_DOWN: NTSTATUS = NTSTATUS(1073742704i32 as _);
4548 pub const STATUS_DS_SRC_SID_EXISTS_IN_FOREST: NTSTATUS = NTSTATUS(-1073740775i32 as _);
4549 pub const STATUS_DS_UNAVAILABLE: NTSTATUS = NTSTATUS(-1073741146i32 as _);
4550 pub const STATUS_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER: NTSTATUS = NTSTATUS(-1073741095i32 as _);
4551 pub const STATUS_DS_VERSION_CHECK_FAILURE: NTSTATUS = NTSTATUS(-1073740971i32 as _);
4552 pub const STATUS_DUPLICATE_NAME: NTSTATUS = NTSTATUS(-1073741635i32 as _);
4553 pub const STATUS_DUPLICATE_OBJECTID: NTSTATUS = NTSTATUS(-1073741270i32 as _);
4554 pub const STATUS_DUPLICATE_PRIVILEGES: NTSTATUS = NTSTATUS(-1073741402i32 as _);
4555 pub const STATUS_DYNAMIC_CODE_BLOCKED: NTSTATUS = NTSTATUS(-1073740284i32 as _);
4556 pub const STATUS_EAS_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1073741745i32 as _);
4557 pub const STATUS_EA_CORRUPT_ERROR: NTSTATUS = NTSTATUS(-1073741741i32 as _);
4558 pub const STATUS_EA_LIST_INCONSISTENT: NTSTATUS = NTSTATUS(-2147483628i32 as _);
4559 pub const STATUS_EA_TOO_LARGE: NTSTATUS = NTSTATUS(-1073741744i32 as _);
4560 pub const STATUS_EFS_ALG_BLOB_TOO_BIG: NTSTATUS = NTSTATUS(-1073740974i32 as _);
4561 pub const STATUS_EFS_NOT_ALLOWED_IN_TRANSACTION: NTSTATUS = NTSTATUS(-1072103362i32 as _);
4562 pub const STATUS_ELEVATION_REQUIRED: NTSTATUS = NTSTATUS(-1073740756i32 as _);
4563 pub const STATUS_EMULATION_BREAKPOINT: NTSTATUS = NTSTATUS(1073741880i32 as _);
4564 pub const STATUS_EMULATION_SYSCALL: NTSTATUS = NTSTATUS(1073741881i32 as _);
4565 pub const STATUS_ENCLAVE_FAILURE: NTSTATUS = NTSTATUS(-1073740657i32 as _);
4566 pub const STATUS_ENCLAVE_IS_TERMINATING: NTSTATUS = NTSTATUS(-1073740526i32 as _);
4567 pub const STATUS_ENCLAVE_NOT_TERMINATED: NTSTATUS = NTSTATUS(-1073740527i32 as _);
4568 pub const STATUS_ENCLAVE_VIOLATION: NTSTATUS = NTSTATUS(-1073740638i32 as _);
4569 pub const STATUS_ENCOUNTERED_WRITE_IN_PROGRESS: NTSTATUS = NTSTATUS(-1073740749i32 as _);
4570 pub const STATUS_ENCRYPTED_FILE_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1073740605i32 as _);
4571 pub const STATUS_ENCRYPTED_IO_NOT_POSSIBLE: NTSTATUS = NTSTATUS(-1073739760i32 as _);
4572 pub const STATUS_ENCRYPTING_METADATA_DISALLOWED: NTSTATUS = NTSTATUS(-1073740617i32 as _);
4573 pub const STATUS_ENCRYPTION_DISABLED: NTSTATUS = NTSTATUS(-1073740618i32 as _);
4574 pub const STATUS_ENCRYPTION_FAILED: NTSTATUS = NTSTATUS(-1073741174i32 as _);
4575 pub const STATUS_END_OF_FILE: NTSTATUS = NTSTATUS(-1073741807i32 as _);
4576 pub const STATUS_END_OF_MEDIA: NTSTATUS = NTSTATUS(-2147483618i32 as _);
4577 pub const STATUS_ENLISTMENT_NOT_FOUND: NTSTATUS = NTSTATUS(-1072103344i32 as _);
4578 pub const STATUS_ENLISTMENT_NOT_SUPERIOR: NTSTATUS = NTSTATUS(-1072103373i32 as _);
4579 pub const STATUS_ENTRYPOINT_NOT_FOUND: NTSTATUS = NTSTATUS(-1073741511i32 as _);
4580 pub const STATUS_EOF_ON_GHOSTED_RANGE: NTSTATUS = NTSTATUS(-1073700857i32 as _);
4581 pub const STATUS_EOM_OVERFLOW: NTSTATUS = NTSTATUS(-1073741449i32 as _);
4582 pub const STATUS_ERROR_PROCESS_NOT_IN_JOB: NTSTATUS = NTSTATUS(-1073741394i32 as _);
4583 pub const STATUS_EVALUATION_EXPIRATION: NTSTATUS = NTSTATUS(-1073741208i32 as _);
4584 pub const STATUS_EVENTLOG_CANT_START: NTSTATUS = NTSTATUS(-1073741425i32 as _);
4585 pub const STATUS_EVENTLOG_FILE_CHANGED: NTSTATUS = NTSTATUS(-1073741417i32 as _);
4586 pub const STATUS_EVENTLOG_FILE_CORRUPT: NTSTATUS = NTSTATUS(-1073741426i32 as _);
4587 pub const STATUS_EVENT_DONE: NTSTATUS = NTSTATUS(1073741842i32 as _);
4588 pub const STATUS_EVENT_PENDING: NTSTATUS = NTSTATUS(1073741843i32 as _);
4589 pub const STATUS_EXECUTABLE_MEMORY_WRITE: NTSTATUS = NTSTATUS(-1073739997i32 as _);
4590 pub const STATUS_EXPIRED_HANDLE: NTSTATUS = NTSTATUS(-1072103328i32 as _);
4591 pub const STATUS_EXTERNAL_BACKING_PROVIDER_UNKNOWN: NTSTATUS = NTSTATUS(-1073740690i32 as _);
4592 pub const STATUS_EXTERNAL_SYSKEY_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1073740639i32 as _);
4593 pub const STATUS_EXTRANEOUS_INFORMATION: NTSTATUS = NTSTATUS(-2147483625i32 as _);
4594 pub const STATUS_FAILED_DRIVER_ENTRY: NTSTATUS = NTSTATUS(-1073740955i32 as _);
4595 pub const STATUS_FAILED_STACK_SWITCH: NTSTATUS = NTSTATUS(-1073740941i32 as _);
4596 pub const STATUS_FAIL_CHECK: NTSTATUS = NTSTATUS(-1073741271i32 as _);
4597 pub const STATUS_FAIL_FAST_EXCEPTION: NTSTATUS = NTSTATUS(-1073740286i32 as _);
4598 pub const STATUS_FASTPATH_REJECTED: NTSTATUS = NTSTATUS(-1073700844i32 as _);
4599 pub const STATUS_FATAL_APP_EXIT: NTSTATUS = NTSTATUS(1073741845i32 as _);
4600 pub const STATUS_FATAL_MEMORY_EXHAUSTION: NTSTATUS = NTSTATUS(-1073741395i32 as _);
4601 pub const STATUS_FATAL_USER_CALLBACK_EXCEPTION: NTSTATUS = NTSTATUS(-1073740771i32 as _);
4602 pub const STATUS_FILEMARK_DETECTED: NTSTATUS = NTSTATUS(-2147483621i32 as _);
4603 pub const STATUS_FILES_OPEN: NTSTATUS = NTSTATUS(-1073741561i32 as _);
4604 pub const STATUS_FILE_CHECKED_OUT: NTSTATUS = NTSTATUS(-1073739519i32 as _);
4605 pub const STATUS_FILE_CLOSED: NTSTATUS = NTSTATUS(-1073741528i32 as _);
4606 pub const STATUS_FILE_CORRUPT_ERROR: NTSTATUS = NTSTATUS(-1073741566i32 as _);
4607 pub const STATUS_FILE_DELETED: NTSTATUS = NTSTATUS(-1073741533i32 as _);
4608 pub const STATUS_FILE_ENCRYPTED: NTSTATUS = NTSTATUS(-1073741165i32 as _);
4609 pub const STATUS_FILE_FORCED_CLOSED: NTSTATUS = NTSTATUS(-1073741642i32 as _);
4610 pub const STATUS_FILE_HANDLE_REVOKED: NTSTATUS = NTSTATUS(-1073739504i32 as _);
4611 pub const STATUS_FILE_IDENTITY_NOT_PERSISTENT: NTSTATUS = NTSTATUS(-1072103370i32 as _);
4612 pub const STATUS_FILE_INVALID: NTSTATUS = NTSTATUS(-1073741672i32 as _);
4613 pub const STATUS_FILE_IS_A_DIRECTORY: NTSTATUS = NTSTATUS(-1073741638i32 as _);
4614 pub const STATUS_FILE_IS_OFFLINE: NTSTATUS = NTSTATUS(-1073741209i32 as _);
4615 pub const STATUS_FILE_LOCKED_WITH_ONLY_READERS: NTSTATUS = NTSTATUS(298i32 as _);
4616 pub const STATUS_FILE_LOCKED_WITH_WRITERS: NTSTATUS = NTSTATUS(299i32 as _);
4617 pub const STATUS_FILE_LOCK_CONFLICT: NTSTATUS = NTSTATUS(-1073741740i32 as _);
4618 pub const STATUS_FILE_METADATA_OPTIMIZATION_IN_PROGRESS: NTSTATUS = NTSTATUS(-1073741397i32 as _);
4619 pub const STATUS_FILE_NOT_AVAILABLE: NTSTATUS = NTSTATUS(-1073740697i32 as _);
4620 pub const STATUS_FILE_NOT_ENCRYPTED: NTSTATUS = NTSTATUS(-1073741167i32 as _);
4621 pub const STATUS_FILE_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1073740620i32 as _);
4622 pub const STATUS_FILE_PROTECTED_UNDER_DPL: NTSTATUS = NTSTATUS(-1073740637i32 as _);
4623 pub const STATUS_FILE_RENAMED: NTSTATUS = NTSTATUS(-1073741611i32 as _);
4624 pub const STATUS_FILE_SNAP_INVALID_PARAMETER: NTSTATUS = NTSTATUS(-1073679099i32 as _);
4625 pub const STATUS_FILE_SNAP_IN_PROGRESS: NTSTATUS = NTSTATUS(-1073679104i32 as _);
4626 pub const STATUS_FILE_SNAP_IO_NOT_COORDINATED: NTSTATUS = NTSTATUS(-1073679101i32 as _);
4627 pub const STATUS_FILE_SNAP_MODIFY_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1073679102i32 as _);
4628 pub const STATUS_FILE_SNAP_UNEXPECTED_ERROR: NTSTATUS = NTSTATUS(-1073679100i32 as _);
4629 pub const STATUS_FILE_SNAP_USER_SECTION_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1073679103i32 as _);
4630 pub const STATUS_FILE_SYSTEM_LIMITATION: NTSTATUS = NTSTATUS(-1073740761i32 as _);
4631 pub const STATUS_FILE_SYSTEM_VIRTUALIZATION_BUSY: NTSTATUS = NTSTATUS(-1073689085i32 as _);
4632 pub const STATUS_FILE_SYSTEM_VIRTUALIZATION_INVALID_OPERATION: NTSTATUS = NTSTATUS(-1073689083i32 as _);
4633 pub const STATUS_FILE_SYSTEM_VIRTUALIZATION_METADATA_CORRUPT: NTSTATUS = NTSTATUS(-1073689086i32 as _);
4634 pub const STATUS_FILE_SYSTEM_VIRTUALIZATION_PROVIDER_UNKNOWN: NTSTATUS = NTSTATUS(-1073689084i32 as _);
4635 pub const STATUS_FILE_SYSTEM_VIRTUALIZATION_UNAVAILABLE: NTSTATUS = NTSTATUS(-1073689087i32 as _);
4636 pub const STATUS_FILE_TOO_LARGE: NTSTATUS = NTSTATUS(-1073739516i32 as _);
4637 pub const STATUS_FIRMWARE_IMAGE_INVALID: NTSTATUS = NTSTATUS(-1073740667i32 as _);
4638 pub const STATUS_FIRMWARE_SLOT_INVALID: NTSTATUS = NTSTATUS(-1073740668i32 as _);
4639 pub const STATUS_FIRMWARE_UPDATED: NTSTATUS = NTSTATUS(1073741868i32 as _);
4640 pub const STATUS_FLOATED_SECTION: NTSTATUS = NTSTATUS(-1072103349i32 as _);
4641 pub const STATUS_FLOAT_DENORMAL_OPERAND: NTSTATUS = NTSTATUS(-1073741683i32 as _);
4642 pub const STATUS_FLOAT_DIVIDE_BY_ZERO: NTSTATUS = NTSTATUS(-1073741682i32 as _);
4643 pub const STATUS_FLOAT_INEXACT_RESULT: NTSTATUS = NTSTATUS(-1073741681i32 as _);
4644 pub const STATUS_FLOAT_INVALID_OPERATION: NTSTATUS = NTSTATUS(-1073741680i32 as _);
4645 pub const STATUS_FLOAT_MULTIPLE_FAULTS: NTSTATUS = NTSTATUS(-1073741132i32 as _);
4646 pub const STATUS_FLOAT_MULTIPLE_TRAPS: NTSTATUS = NTSTATUS(-1073741131i32 as _);
4647 pub const STATUS_FLOAT_OVERFLOW: NTSTATUS = NTSTATUS(-1073741679i32 as _);
4648 pub const STATUS_FLOAT_STACK_CHECK: NTSTATUS = NTSTATUS(-1073741678i32 as _);
4649 pub const STATUS_FLOAT_UNDERFLOW: NTSTATUS = NTSTATUS(-1073741677i32 as _);
4650 pub const STATUS_FLOPPY_BAD_REGISTERS: NTSTATUS = NTSTATUS(-1073741464i32 as _);
4651 pub const STATUS_FLOPPY_ID_MARK_NOT_FOUND: NTSTATUS = NTSTATUS(-1073741467i32 as _);
4652 pub const STATUS_FLOPPY_UNKNOWN_ERROR: NTSTATUS = NTSTATUS(-1073741465i32 as _);
4653 pub const STATUS_FLOPPY_VOLUME: NTSTATUS = NTSTATUS(-1073741468i32 as _);
4654 pub const STATUS_FLOPPY_WRONG_CYLINDER: NTSTATUS = NTSTATUS(-1073741466i32 as _);
4655 pub const STATUS_FLT_ALREADY_ENLISTED: NTSTATUS = NTSTATUS(-1071906789i32 as _);
4656 pub const STATUS_FLT_BUFFER_TOO_SMALL: NTSTATUS = NTSTATUS(-2145648639i32 as _);
4657 pub const STATUS_FLT_CBDQ_DISABLED: NTSTATUS = NTSTATUS(-1071906802i32 as _);
4658 pub const STATUS_FLT_CONTEXT_ALLOCATION_NOT_FOUND: NTSTATUS = NTSTATUS(-1071906794i32 as _);
4659 pub const STATUS_FLT_CONTEXT_ALREADY_DEFINED: NTSTATUS = NTSTATUS(-1071906814i32 as _);
4660 pub const STATUS_FLT_CONTEXT_ALREADY_LINKED: NTSTATUS = NTSTATUS(-1071906788i32 as _);
4661 pub const STATUS_FLT_DELETING_OBJECT: NTSTATUS = NTSTATUS(-1071906805i32 as _);
4662 pub const STATUS_FLT_DISALLOW_FAST_IO: NTSTATUS = NTSTATUS(-1071906812i32 as _);
4663 pub const STATUS_FLT_DISALLOW_FSFILTER_IO: i32 = -1071906812i32;
4664 pub const STATUS_FLT_DO_NOT_ATTACH: NTSTATUS = NTSTATUS(-1071906801i32 as _);
4665 pub const STATUS_FLT_DO_NOT_DETACH: NTSTATUS = NTSTATUS(-1071906800i32 as _);
4666 pub const STATUS_FLT_DUPLICATE_ENTRY: NTSTATUS = NTSTATUS(-1071906803i32 as _);
4667 pub const STATUS_FLT_FILTER_NOT_FOUND: NTSTATUS = NTSTATUS(-1071906797i32 as _);
4668 pub const STATUS_FLT_FILTER_NOT_READY: NTSTATUS = NTSTATUS(-1071906808i32 as _);
4669 pub const STATUS_FLT_INSTANCE_ALTITUDE_COLLISION: NTSTATUS = NTSTATUS(-1071906799i32 as _);
4670 pub const STATUS_FLT_INSTANCE_NAME_COLLISION: NTSTATUS = NTSTATUS(-1071906798i32 as _);
4671 pub const STATUS_FLT_INSTANCE_NOT_FOUND: NTSTATUS = NTSTATUS(-1071906795i32 as _);
4672 pub const STATUS_FLT_INTERNAL_ERROR: NTSTATUS = NTSTATUS(-1071906806i32 as _);
4673 pub const STATUS_FLT_INVALID_ASYNCHRONOUS_REQUEST: NTSTATUS = NTSTATUS(-1071906813i32 as _);
4674 pub const STATUS_FLT_INVALID_CONTEXT_REGISTRATION: NTSTATUS = NTSTATUS(-1071906793i32 as _);
4675 pub const STATUS_FLT_INVALID_NAME_REQUEST: NTSTATUS = NTSTATUS(-1071906811i32 as _);
4676 pub const STATUS_FLT_IO_COMPLETE: NTSTATUS = NTSTATUS(1835009i32 as _);
4677 pub const STATUS_FLT_MUST_BE_NONPAGED_POOL: NTSTATUS = NTSTATUS(-1071906804i32 as _);
4678 pub const STATUS_FLT_NAME_CACHE_MISS: NTSTATUS = NTSTATUS(-1071906792i32 as _);
4679 pub const STATUS_FLT_NOT_INITIALIZED: NTSTATUS = NTSTATUS(-1071906809i32 as _);
4680 pub const STATUS_FLT_NOT_SAFE_TO_POST_OPERATION: NTSTATUS = NTSTATUS(-1071906810i32 as _);
4681 pub const STATUS_FLT_NO_DEVICE_OBJECT: NTSTATUS = NTSTATUS(-1071906791i32 as _);
4682 pub const STATUS_FLT_NO_HANDLER_DEFINED: NTSTATUS = NTSTATUS(-1071906815i32 as _);
4683 pub const STATUS_FLT_NO_WAITER_FOR_REPLY: NTSTATUS = NTSTATUS(-1071906784i32 as _);
4684 pub const STATUS_FLT_POST_OPERATION_CLEANUP: NTSTATUS = NTSTATUS(-1071906807i32 as _);
4685 pub const STATUS_FLT_REGISTRATION_BUSY: NTSTATUS = NTSTATUS(-1071906781i32 as _);
4686 pub const STATUS_FLT_VOLUME_ALREADY_MOUNTED: NTSTATUS = NTSTATUS(-1071906790i32 as _);
4687 pub const STATUS_FLT_VOLUME_NOT_FOUND: NTSTATUS = NTSTATUS(-1071906796i32 as _);
4688 pub const STATUS_FLT_WCOS_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1071906780i32 as _);
4689 pub const STATUS_FORMS_AUTH_REQUIRED: NTSTATUS = NTSTATUS(-1073739515i32 as _);
4690 pub const STATUS_FOUND_OUT_OF_SCOPE: NTSTATUS = NTSTATUS(-1073741266i32 as _);
4691 pub const STATUS_FREE_SPACE_TOO_FRAGMENTED: NTSTATUS = NTSTATUS(-1073740645i32 as _);
4692 pub const STATUS_FREE_VM_NOT_AT_BASE: NTSTATUS = NTSTATUS(-1073741665i32 as _);
4693 pub const STATUS_FSFILTER_OP_COMPLETED_SUCCESSFULLY: NTSTATUS = NTSTATUS(294i32 as _);
4694 pub const STATUS_FS_DRIVER_REQUIRED: NTSTATUS = NTSTATUS(-1073741412i32 as _);
4695 pub const STATUS_FT_DI_SCAN_REQUIRED: NTSTATUS = NTSTATUS(-1073740692i32 as _);
4696 pub const STATUS_FT_MISSING_MEMBER: NTSTATUS = NTSTATUS(-1073741473i32 as _);
4697 pub const STATUS_FT_ORPHANING: NTSTATUS = NTSTATUS(-1073741459i32 as _);
4698 pub const STATUS_FT_READ_FAILURE: NTSTATUS = NTSTATUS(-1073740629i32 as _);
4699 pub const STATUS_FT_READ_FROM_COPY: NTSTATUS = NTSTATUS(1073741877i32 as _);
4700 pub const STATUS_FT_READ_FROM_COPY_FAILURE: NTSTATUS = NTSTATUS(-1073740609i32 as _);
4701 pub const STATUS_FT_READ_RECOVERY_FROM_BACKUP: NTSTATUS = NTSTATUS(1073741834i32 as _);
4702 pub const STATUS_FT_WRITE_FAILURE: NTSTATUS = NTSTATUS(-1073740693i32 as _);
4703 pub const STATUS_FT_WRITE_RECOVERY: NTSTATUS = NTSTATUS(1073741835i32 as _);
4704 pub const STATUS_FULLSCREEN_MODE: NTSTATUS = NTSTATUS(-1073741479i32 as _);
4705 pub const STATUS_FVE_ACTION_NOT_ALLOWED: NTSTATUS = NTSTATUS(-1071579127i32 as _);
4706 pub const STATUS_FVE_AUTH_INVALID_APPLICATION: NTSTATUS = NTSTATUS(-1071579109i32 as _);
4707 pub const STATUS_FVE_AUTH_INVALID_CONFIG: NTSTATUS = NTSTATUS(-1071579108i32 as _);
4708 pub const STATUS_FVE_BAD_DATA: NTSTATUS = NTSTATUS(-1071579126i32 as _);
4709 pub const STATUS_FVE_BAD_INFORMATION: NTSTATUS = NTSTATUS(-1071579134i32 as _);
4710 pub const STATUS_FVE_BAD_METADATA_POINTER: NTSTATUS = NTSTATUS(-1071579105i32 as _);
4711 pub const STATUS_FVE_BAD_PARTITION_SIZE: NTSTATUS = NTSTATUS(-1071579131i32 as _);
4712 pub const STATUS_FVE_CONV_READ_ERROR: NTSTATUS = NTSTATUS(-1071579123i32 as _);
4713 pub const STATUS_FVE_CONV_RECOVERY_FAILED: NTSTATUS = NTSTATUS(-1071579096i32 as _);
4714 pub const STATUS_FVE_CONV_WRITE_ERROR: NTSTATUS = NTSTATUS(-1071579122i32 as _);
4715 pub const STATUS_FVE_DEBUGGER_ENABLED: NTSTATUS = NTSTATUS(-1071579107i32 as _);
4716 pub const STATUS_FVE_DEVICE_LOCKEDOUT: NTSTATUS = NTSTATUS(-1071579077i32 as _);
4717 pub const STATUS_FVE_DRY_RUN_FAILED: NTSTATUS = NTSTATUS(-1071579106i32 as _);
4718 pub const STATUS_FVE_EDRIVE_BAND_ENUMERATION_FAILED: NTSTATUS = NTSTATUS(-1071579071i32 as _);
4719 pub const STATUS_FVE_EDRIVE_DRY_RUN_FAILED: NTSTATUS = NTSTATUS(-1071579080i32 as _);
4720 pub const STATUS_FVE_ENH_PIN_INVALID: NTSTATUS = NTSTATUS(-1071579087i32 as _);
4721 pub const STATUS_FVE_FAILED_AUTHENTICATION: NTSTATUS = NTSTATUS(-1071579119i32 as _);
4722 pub const STATUS_FVE_FAILED_SECTOR_SIZE: NTSTATUS = NTSTATUS(-1071579120i32 as _);
4723 pub const STATUS_FVE_FAILED_WRONG_FS: NTSTATUS = NTSTATUS(-1071579132i32 as _);
4724 pub const STATUS_FVE_FS_MOUNTED: NTSTATUS = NTSTATUS(-1071579129i32 as _);
4725 pub const STATUS_FVE_FS_NOT_EXTENDED: NTSTATUS = NTSTATUS(-1071579130i32 as _);
4726 pub const STATUS_FVE_FULL_ENCRYPTION_NOT_ALLOWED_ON_TP_STORAGE: NTSTATUS = NTSTATUS(-1071579086i32 as _);
4727 pub const STATUS_FVE_INVALID_DATUM_TYPE: NTSTATUS = NTSTATUS(-1071579094i32 as _);
4728 pub const STATUS_FVE_KEYFILE_INVALID: NTSTATUS = NTSTATUS(-1071579116i32 as _);
4729 pub const STATUS_FVE_KEYFILE_NOT_FOUND: NTSTATUS = NTSTATUS(-1071579117i32 as _);
4730 pub const STATUS_FVE_KEYFILE_NO_VMK: NTSTATUS = NTSTATUS(-1071579115i32 as _);
4731 pub const STATUS_FVE_LOCKED_VOLUME: NTSTATUS = NTSTATUS(-1071579136i32 as _);
4732 pub const STATUS_FVE_MOR_FAILED: NTSTATUS = NTSTATUS(-1071579099i32 as _);
4733 pub const STATUS_FVE_NOT_ALLOWED_ON_CLUSTER: NTSTATUS = NTSTATUS(-1071579083i32 as _);
4734 pub const STATUS_FVE_NOT_ALLOWED_ON_CSV_STACK: NTSTATUS = NTSTATUS(-1071579084i32 as _);
4735 pub const STATUS_FVE_NOT_ALLOWED_TO_UPGRADE_WHILE_CONVERTING: NTSTATUS = NTSTATUS(-1071579082i32 as _);
4736 pub const STATUS_FVE_NOT_DATA_VOLUME: NTSTATUS = NTSTATUS(-1071579124i32 as _);
4737 pub const STATUS_FVE_NOT_DE_VOLUME: NTSTATUS = NTSTATUS(-1071579075i32 as _);
4738 pub const STATUS_FVE_NOT_ENCRYPTED: NTSTATUS = NTSTATUS(-1071579135i32 as _);
4739 pub const STATUS_FVE_NOT_OS_VOLUME: NTSTATUS = NTSTATUS(-1071579118i32 as _);
4740 pub const STATUS_FVE_NO_AUTOUNLOCK_MASTER_KEY: NTSTATUS = NTSTATUS(-1071579100i32 as _);
4741 pub const STATUS_FVE_NO_FEATURE_LICENSE: NTSTATUS = NTSTATUS(-1071579098i32 as _);
4742 pub const STATUS_FVE_NO_LICENSE: NTSTATUS = NTSTATUS(-1071579128i32 as _);
4743 pub const STATUS_FVE_OLD_METADATA_COPY: NTSTATUS = NTSTATUS(-1071579104i32 as _);
4744 pub const STATUS_FVE_OSV_KSR_NOT_ALLOWED: NTSTATUS = NTSTATUS(-1071579072i32 as _);
4745 pub const STATUS_FVE_OVERLAPPED_UPDATE: NTSTATUS = NTSTATUS(-1071579121i32 as _);
4746 pub const STATUS_FVE_PARTIAL_METADATA: NTSTATUS = NTSTATUS(-2145320959i32 as _);
4747 pub const STATUS_FVE_PIN_INVALID: NTSTATUS = NTSTATUS(-1071579110i32 as _);
4748 pub const STATUS_FVE_POLICY_USER_DISABLE_RDV_NOT_ALLOWED: NTSTATUS = NTSTATUS(-1071579097i32 as _);
4749 pub const STATUS_FVE_PROTECTION_CANNOT_BE_DISABLED: NTSTATUS = NTSTATUS(-1071579073i32 as _);
4750 pub const STATUS_FVE_PROTECTION_DISABLED: NTSTATUS = NTSTATUS(-1071579074i32 as _);
4751 pub const STATUS_FVE_RAW_ACCESS: NTSTATUS = NTSTATUS(-1071579102i32 as _);
4752 pub const STATUS_FVE_RAW_BLOCKED: NTSTATUS = NTSTATUS(-1071579101i32 as _);
4753 pub const STATUS_FVE_REBOOT_REQUIRED: NTSTATUS = NTSTATUS(-1071579103i32 as _);
4754 pub const STATUS_FVE_SECUREBOOT_CONFIG_CHANGE: NTSTATUS = NTSTATUS(-1071579078i32 as _);
4755 pub const STATUS_FVE_SECUREBOOT_DISABLED: NTSTATUS = NTSTATUS(-1071579079i32 as _);
4756 pub const STATUS_FVE_TOO_SMALL: NTSTATUS = NTSTATUS(-1071579133i32 as _);
4757 pub const STATUS_FVE_TPM_DISABLED: NTSTATUS = NTSTATUS(-1071579114i32 as _);
4758 pub const STATUS_FVE_TPM_INVALID_PCR: NTSTATUS = NTSTATUS(-1071579112i32 as _);
4759 pub const STATUS_FVE_TPM_NO_VMK: NTSTATUS = NTSTATUS(-1071579111i32 as _);
4760 pub const STATUS_FVE_TPM_SRK_AUTH_NOT_ZERO: NTSTATUS = NTSTATUS(-1071579113i32 as _);
4761 pub const STATUS_FVE_TRANSIENT_STATE: NTSTATUS = NTSTATUS(-2145320958i32 as _);
4762 pub const STATUS_FVE_VIRTUALIZED_SPACE_TOO_BIG: NTSTATUS = NTSTATUS(-1071579095i32 as _);
4763 pub const STATUS_FVE_VOLUME_EXTEND_PREVENTS_EOW_DECRYPT: NTSTATUS = NTSTATUS(-1071579076i32 as _);
4764 pub const STATUS_FVE_VOLUME_NOT_BOUND: NTSTATUS = NTSTATUS(-1071579125i32 as _);
4765 pub const STATUS_FVE_VOLUME_TOO_SMALL: NTSTATUS = NTSTATUS(-1071579088i32 as _);
4766 pub const STATUS_FVE_WIPE_CANCEL_NOT_APPLICABLE: NTSTATUS = NTSTATUS(-1071579081i32 as _);
4767 pub const STATUS_FVE_WIPE_NOT_ALLOWED_ON_TP_STORAGE: NTSTATUS = NTSTATUS(-1071579085i32 as _);
4768 pub const STATUS_FWP_ACTION_INCOMPATIBLE_WITH_LAYER: NTSTATUS = NTSTATUS(-1071513556i32 as _);
4769 pub const STATUS_FWP_ACTION_INCOMPATIBLE_WITH_SUBLAYER: NTSTATUS = NTSTATUS(-1071513555i32 as _);
4770 pub const STATUS_FWP_ALREADY_EXISTS: NTSTATUS = NTSTATUS(-1071513591i32 as _);
4771 pub const STATUS_FWP_BUILTIN_OBJECT: NTSTATUS = NTSTATUS(-1071513577i32 as _);
4772 pub const STATUS_FWP_CALLOUT_NOTIFICATION_FAILED: NTSTATUS = NTSTATUS(-1071513545i32 as _);
4773 pub const STATUS_FWP_CALLOUT_NOT_FOUND: NTSTATUS = NTSTATUS(-1071513599i32 as _);
4774 pub const STATUS_FWP_CANNOT_PEND: NTSTATUS = NTSTATUS(-1071513341i32 as _);
4775 pub const STATUS_FWP_CONDITION_NOT_FOUND: NTSTATUS = NTSTATUS(-1071513598i32 as _);
4776 pub const STATUS_FWP_CONNECTIONS_DISABLED: NTSTATUS = NTSTATUS(-1071513535i32 as _);
4777 pub const STATUS_FWP_CONTEXT_INCOMPATIBLE_WITH_CALLOUT: NTSTATUS = NTSTATUS(-1071513553i32 as _);
4778 pub const STATUS_FWP_CONTEXT_INCOMPATIBLE_WITH_LAYER: NTSTATUS = NTSTATUS(-1071513554i32 as _);
4779 pub const STATUS_FWP_DROP_NOICMP: NTSTATUS = NTSTATUS(-1071513340i32 as _);
4780 pub const STATUS_FWP_DUPLICATE_AUTH_METHOD: NTSTATUS = NTSTATUS(-1071513540i32 as _);
4781 pub const STATUS_FWP_DUPLICATE_CONDITION: NTSTATUS = NTSTATUS(-1071513558i32 as _);
4782 pub const STATUS_FWP_DUPLICATE_KEYMOD: NTSTATUS = NTSTATUS(-1071513557i32 as _);
4783 pub const STATUS_FWP_DYNAMIC_SESSION_IN_PROGRESS: NTSTATUS = NTSTATUS(-1071513589i32 as _);
4784 pub const STATUS_FWP_EM_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1071513550i32 as _);
4785 pub const STATUS_FWP_FILTER_NOT_FOUND: NTSTATUS = NTSTATUS(-1071513597i32 as _);
4786 pub const STATUS_FWP_IKEEXT_NOT_RUNNING: NTSTATUS = NTSTATUS(-1071513532i32 as _);
4787 pub const STATUS_FWP_INCOMPATIBLE_AUTH_METHOD: NTSTATUS = NTSTATUS(-1071513552i32 as _);
4788 pub const STATUS_FWP_INCOMPATIBLE_CIPHER_TRANSFORM: NTSTATUS = NTSTATUS(-1071513542i32 as _);
4789 pub const STATUS_FWP_INCOMPATIBLE_DH_GROUP: NTSTATUS = NTSTATUS(-1071513551i32 as _);
4790 pub const STATUS_FWP_INCOMPATIBLE_LAYER: NTSTATUS = NTSTATUS(-1071513580i32 as _);
4791 pub const STATUS_FWP_INCOMPATIBLE_SA_STATE: NTSTATUS = NTSTATUS(-1071513573i32 as _);
4792 pub const STATUS_FWP_INCOMPATIBLE_TXN: NTSTATUS = NTSTATUS(-1071513583i32 as _);
4793 pub const STATUS_FWP_INJECT_HANDLE_CLOSING: NTSTATUS = NTSTATUS(-1071513343i32 as _);
4794 pub const STATUS_FWP_INJECT_HANDLE_STALE: NTSTATUS = NTSTATUS(-1071513342i32 as _);
4795 pub const STATUS_FWP_INVALID_ACTION_TYPE: NTSTATUS = NTSTATUS(-1071513564i32 as _);
4796 pub const STATUS_FWP_INVALID_AUTH_TRANSFORM: NTSTATUS = NTSTATUS(-1071513544i32 as _);
4797 pub const STATUS_FWP_INVALID_CIPHER_TRANSFORM: NTSTATUS = NTSTATUS(-1071513543i32 as _);
4798 pub const STATUS_FWP_INVALID_DNS_NAME: NTSTATUS = NTSTATUS(-1071513534i32 as _);
4799 pub const STATUS_FWP_INVALID_ENUMERATOR: NTSTATUS = NTSTATUS(-1071513571i32 as _);
4800 pub const STATUS_FWP_INVALID_FLAGS: NTSTATUS = NTSTATUS(-1071513570i32 as _);
4801 pub const STATUS_FWP_INVALID_INTERVAL: NTSTATUS = NTSTATUS(-1071513567i32 as _);
4802 pub const STATUS_FWP_INVALID_NET_MASK: NTSTATUS = NTSTATUS(-1071513569i32 as _);
4803 pub const STATUS_FWP_INVALID_PARAMETER: NTSTATUS = NTSTATUS(-1071513547i32 as _);
4804 pub const STATUS_FWP_INVALID_RANGE: NTSTATUS = NTSTATUS(-1071513568i32 as _);
4805 pub const STATUS_FWP_INVALID_TRANSFORM_COMBINATION: NTSTATUS = NTSTATUS(-1071513541i32 as _);
4806 pub const STATUS_FWP_INVALID_TUNNEL_ENDPOINT: NTSTATUS = NTSTATUS(-1071513539i32 as _);
4807 pub const STATUS_FWP_INVALID_WEIGHT: NTSTATUS = NTSTATUS(-1071513563i32 as _);
4808 pub const STATUS_FWP_IN_USE: NTSTATUS = NTSTATUS(-1071513590i32 as _);
4809 pub const STATUS_FWP_KEY_DICTATION_INVALID_KEYING_MATERIAL: NTSTATUS = NTSTATUS(-1071513536i32 as _);
4810 pub const STATUS_FWP_KEY_DICTATOR_ALREADY_REGISTERED: NTSTATUS = NTSTATUS(-1071513537i32 as _);
4811 pub const STATUS_FWP_KM_CLIENTS_ONLY: NTSTATUS = NTSTATUS(-1071513579i32 as _);
4812 pub const STATUS_FWP_L2_DRIVER_NOT_READY: NTSTATUS = NTSTATUS(-1071513538i32 as _);
4813 pub const STATUS_FWP_LAYER_NOT_FOUND: NTSTATUS = NTSTATUS(-1071513596i32 as _);
4814 pub const STATUS_FWP_LIFETIME_MISMATCH: NTSTATUS = NTSTATUS(-1071513578i32 as _);
4815 pub const STATUS_FWP_MATCH_TYPE_MISMATCH: NTSTATUS = NTSTATUS(-1071513562i32 as _);
4816 pub const STATUS_FWP_NET_EVENTS_DISABLED: NTSTATUS = NTSTATUS(-1071513581i32 as _);
4817 pub const STATUS_FWP_NEVER_MATCH: NTSTATUS = NTSTATUS(-1071513549i32 as _);
4818 pub const STATUS_FWP_NOTIFICATION_DROPPED: NTSTATUS = NTSTATUS(-1071513575i32 as _);
4819 pub const STATUS_FWP_NOT_FOUND: NTSTATUS = NTSTATUS(-1071513592i32 as _);
4820 pub const STATUS_FWP_NO_TXN_IN_PROGRESS: NTSTATUS = NTSTATUS(-1071513587i32 as _);
4821 pub const STATUS_FWP_NULL_DISPLAY_NAME: NTSTATUS = NTSTATUS(-1071513565i32 as _);
4822 pub const STATUS_FWP_NULL_POINTER: NTSTATUS = NTSTATUS(-1071513572i32 as _);
4823 pub const STATUS_FWP_OUT_OF_BOUNDS: NTSTATUS = NTSTATUS(-1071513560i32 as _);
4824 pub const STATUS_FWP_PROVIDER_CONTEXT_MISMATCH: NTSTATUS = NTSTATUS(-1071513548i32 as _);
4825 pub const STATUS_FWP_PROVIDER_CONTEXT_NOT_FOUND: NTSTATUS = NTSTATUS(-1071513594i32 as _);
4826 pub const STATUS_FWP_PROVIDER_NOT_FOUND: NTSTATUS = NTSTATUS(-1071513595i32 as _);
4827 pub const STATUS_FWP_RESERVED: NTSTATUS = NTSTATUS(-1071513559i32 as _);
4828 pub const STATUS_FWP_SESSION_ABORTED: NTSTATUS = NTSTATUS(-1071513584i32 as _);
4829 pub const STATUS_FWP_STILL_ON: NTSTATUS = NTSTATUS(-1071513533i32 as _);
4830 pub const STATUS_FWP_SUBLAYER_NOT_FOUND: NTSTATUS = NTSTATUS(-1071513593i32 as _);
4831 pub const STATUS_FWP_TCPIP_NOT_READY: NTSTATUS = NTSTATUS(-1071513344i32 as _);
4832 pub const STATUS_FWP_TIMEOUT: NTSTATUS = NTSTATUS(-1071513582i32 as _);
4833 pub const STATUS_FWP_TOO_MANY_CALLOUTS: NTSTATUS = NTSTATUS(-1071513576i32 as _);
4834 pub const STATUS_FWP_TOO_MANY_SUBLAYERS: NTSTATUS = NTSTATUS(-1071513546i32 as _);
4835 pub const STATUS_FWP_TRAFFIC_MISMATCH: NTSTATUS = NTSTATUS(-1071513574i32 as _);
4836 pub const STATUS_FWP_TXN_ABORTED: NTSTATUS = NTSTATUS(-1071513585i32 as _);
4837 pub const STATUS_FWP_TXN_IN_PROGRESS: NTSTATUS = NTSTATUS(-1071513586i32 as _);
4838 pub const STATUS_FWP_TYPE_MISMATCH: NTSTATUS = NTSTATUS(-1071513561i32 as _);
4839 pub const STATUS_FWP_WRONG_SESSION: NTSTATUS = NTSTATUS(-1071513588i32 as _);
4840 pub const STATUS_FWP_ZERO_LENGTH_ARRAY: NTSTATUS = NTSTATUS(-1071513566i32 as _);
4841 pub const STATUS_GDI_HANDLE_LEAK: NTSTATUS = NTSTATUS(-2143354879i32 as _);
4842 pub const STATUS_GENERIC_COMMAND_FAILED: NTSTATUS = NTSTATUS(-1072365530i32 as _);
4843 pub const STATUS_GENERIC_NOT_MAPPED: NTSTATUS = NTSTATUS(-1073741594i32 as _);
4844 pub const STATUS_GHOSTED: NTSTATUS = NTSTATUS(303i32 as _);
4845 pub const STATUS_GPIO_CLIENT_INFORMATION_INVALID: NTSTATUS = NTSTATUS(-1073700574i32 as _);
4846 pub const STATUS_GPIO_INCOMPATIBLE_CONNECT_MODE: NTSTATUS = NTSTATUS(-1073700570i32 as _);
4847 pub const STATUS_GPIO_INTERRUPT_ALREADY_UNMASKED: NTSTATUS = NTSTATUS(-2147442393i32 as _);
4848 pub const STATUS_GPIO_INVALID_REGISTRATION_PACKET: NTSTATUS = NTSTATUS(-1073700572i32 as _);
4849 pub const STATUS_GPIO_OPERATION_DENIED: NTSTATUS = NTSTATUS(-1073700571i32 as _);
4850 pub const STATUS_GPIO_VERSION_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1073700573i32 as _);
4851 pub const STATUS_GRACEFUL_DISCONNECT: NTSTATUS = NTSTATUS(-1073741257i32 as _);
4852 pub const STATUS_GRAPHICS_ADAPTER_ACCESS_NOT_EXCLUDED: NTSTATUS = NTSTATUS(-1071774661i32 as _);
4853 pub const STATUS_GRAPHICS_ADAPTER_CHAIN_NOT_READY: NTSTATUS = NTSTATUS(-1071774669i32 as _);
4854 pub const STATUS_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_SOURCE: NTSTATUS = NTSTATUS(-1071774936i32 as _);
4855 pub const STATUS_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_TARGET: NTSTATUS = NTSTATUS(-1071774935i32 as _);
4856 pub const STATUS_GRAPHICS_ADAPTER_WAS_RESET: NTSTATUS = NTSTATUS(-1071775741i32 as _);
4857 pub const STATUS_GRAPHICS_ALLOCATION_BUSY: NTSTATUS = NTSTATUS(-1071775486i32 as _);
4858 pub const STATUS_GRAPHICS_ALLOCATION_CLOSED: NTSTATUS = NTSTATUS(-1071775470i32 as _);
4859 pub const STATUS_GRAPHICS_ALLOCATION_CONTENT_LOST: NTSTATUS = NTSTATUS(-1071775466i32 as _);
4860 pub const STATUS_GRAPHICS_ALLOCATION_INVALID: NTSTATUS = NTSTATUS(-1071775482i32 as _);
4861 pub const STATUS_GRAPHICS_CANCEL_VIDPN_TOPOLOGY_AUGMENTATION: NTSTATUS = NTSTATUS(-1071774886i32 as _);
4862 pub const STATUS_GRAPHICS_CANNOTCOLORCONVERT: NTSTATUS = NTSTATUS(-1071775736i32 as _);
4863 pub const STATUS_GRAPHICS_CANT_ACCESS_ACTIVE_VIDPN: NTSTATUS = NTSTATUS(-1071774909i32 as _);
4864 pub const STATUS_GRAPHICS_CANT_EVICT_PINNED_ALLOCATION: NTSTATUS = NTSTATUS(-1071775479i32 as _);
4865 pub const STATUS_GRAPHICS_CANT_LOCK_MEMORY: NTSTATUS = NTSTATUS(-1071775487i32 as _);
4866 pub const STATUS_GRAPHICS_CANT_RENDER_LOCKED_ALLOCATION: NTSTATUS = NTSTATUS(-1071775471i32 as _);
4867 pub const STATUS_GRAPHICS_CHAINLINKS_NOT_ENUMERATED: NTSTATUS = NTSTATUS(-1071774670i32 as _);
4868 pub const STATUS_GRAPHICS_CHAINLINKS_NOT_POWERED_ON: NTSTATUS = NTSTATUS(-1071774667i32 as _);
4869 pub const STATUS_GRAPHICS_CHAINLINKS_NOT_STARTED: NTSTATUS = NTSTATUS(-1071774668i32 as _);
4870 pub const STATUS_GRAPHICS_CHILD_DESCRIPTOR_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1071774719i32 as _);
4871 pub const STATUS_GRAPHICS_CLIENTVIDPN_NOT_SET: NTSTATUS = NTSTATUS(-1071774884i32 as _);
4872 pub const STATUS_GRAPHICS_COPP_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1071774463i32 as _);
4873 pub const STATUS_GRAPHICS_DATASET_IS_EMPTY: NTSTATUS = NTSTATUS(1075708747i32 as _);
4874 pub const STATUS_GRAPHICS_DDCCI_INVALID_CAPABILITIES_STRING: NTSTATUS = NTSTATUS(-1071774329i32 as _);
4875 pub const STATUS_GRAPHICS_DDCCI_INVALID_DATA: NTSTATUS = NTSTATUS(-1071774331i32 as _);
4876 pub const STATUS_GRAPHICS_DDCCI_INVALID_MESSAGE_CHECKSUM: NTSTATUS = NTSTATUS(-1071774325i32 as _);
4877 pub const STATUS_GRAPHICS_DDCCI_INVALID_MESSAGE_COMMAND: NTSTATUS = NTSTATUS(-1071774327i32 as _);
4878 pub const STATUS_GRAPHICS_DDCCI_INVALID_MESSAGE_LENGTH: NTSTATUS = NTSTATUS(-1071774326i32 as _);
4879 pub const STATUS_GRAPHICS_DDCCI_MONITOR_RETURNED_INVALID_TIMING_STATUS_BYTE: NTSTATUS = NTSTATUS(-1071774330i32 as _);
4880 pub const STATUS_GRAPHICS_DDCCI_VCP_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1071774332i32 as _);
4881 pub const STATUS_GRAPHICS_DEPENDABLE_CHILD_STATUS: NTSTATUS = NTSTATUS(1075708988i32 as _);
4882 pub const STATUS_GRAPHICS_DISPLAY_DEVICE_NOT_ATTACHED_TO_DESKTOP: NTSTATUS = NTSTATUS(-1071774238i32 as _);
4883 pub const STATUS_GRAPHICS_DRIVER_MISMATCH: NTSTATUS = NTSTATUS(-1071775735i32 as _);
4884 pub const STATUS_GRAPHICS_EMPTY_ADAPTER_MONITOR_MODE_SUPPORT_INTERSECTION: NTSTATUS = NTSTATUS(-1071774939i32 as _);
4885 pub const STATUS_GRAPHICS_FREQUENCYRANGE_ALREADY_IN_SET: NTSTATUS = NTSTATUS(-1071774945i32 as _);
4886 pub const STATUS_GRAPHICS_FREQUENCYRANGE_NOT_IN_SET: NTSTATUS = NTSTATUS(-1071774947i32 as _);
4887 pub const STATUS_GRAPHICS_GAMMA_RAMP_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1071774904i32 as _);
4888 pub const STATUS_GRAPHICS_GPU_EXCEPTION_ON_DEVICE: NTSTATUS = NTSTATUS(-1071775232i32 as _);
4889 pub const STATUS_GRAPHICS_I2C_DEVICE_DOES_NOT_EXIST: NTSTATUS = NTSTATUS(-1071774335i32 as _);
4890 pub const STATUS_GRAPHICS_I2C_ERROR_RECEIVING_DATA: NTSTATUS = NTSTATUS(-1071774333i32 as _);
4891 pub const STATUS_GRAPHICS_I2C_ERROR_TRANSMITTING_DATA: NTSTATUS = NTSTATUS(-1071774334i32 as _);
4892 pub const STATUS_GRAPHICS_I2C_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1071774336i32 as _);
4893 pub const STATUS_GRAPHICS_INCOMPATIBLE_PRIVATE_FORMAT: NTSTATUS = NTSTATUS(-1071774891i32 as _);
4894 pub const STATUS_GRAPHICS_INCONSISTENT_DEVICE_LINK_STATE: NTSTATUS = NTSTATUS(-1071774666i32 as _);
4895 pub const STATUS_GRAPHICS_INDIRECT_DISPLAY_ABANDON_SWAPCHAIN: NTSTATUS = NTSTATUS(-1071775726i32 as _);
4896 pub const STATUS_GRAPHICS_INDIRECT_DISPLAY_DEVICE_STOPPED: NTSTATUS = NTSTATUS(-1071775725i32 as _);
4897 pub const STATUS_GRAPHICS_INSUFFICIENT_DMA_BUFFER: NTSTATUS = NTSTATUS(-1071775743i32 as _);
4898 pub const STATUS_GRAPHICS_INTERNAL_ERROR: NTSTATUS = NTSTATUS(-1071774233i32 as _);
4899 pub const STATUS_GRAPHICS_INVALID_ACTIVE_REGION: NTSTATUS = NTSTATUS(-1071774965i32 as _);
4900 pub const STATUS_GRAPHICS_INVALID_ALLOCATION_HANDLE: NTSTATUS = NTSTATUS(-1071775468i32 as _);
4901 pub const STATUS_GRAPHICS_INVALID_ALLOCATION_INSTANCE: NTSTATUS = NTSTATUS(-1071775469i32 as _);
4902 pub const STATUS_GRAPHICS_INVALID_ALLOCATION_USAGE: NTSTATUS = NTSTATUS(-1071775472i32 as _);
4903 pub const STATUS_GRAPHICS_INVALID_CLIENT_TYPE: NTSTATUS = NTSTATUS(-1071774885i32 as _);
4904 pub const STATUS_GRAPHICS_INVALID_COLORBASIS: NTSTATUS = NTSTATUS(-1071774914i32 as _);
4905 pub const STATUS_GRAPHICS_INVALID_COPYPROTECTION_TYPE: NTSTATUS = NTSTATUS(-1071774897i32 as _);
4906 pub const STATUS_GRAPHICS_INVALID_DISPLAY_ADAPTER: NTSTATUS = NTSTATUS(-1071775742i32 as _);
4907 pub const STATUS_GRAPHICS_INVALID_DRIVER_MODEL: NTSTATUS = NTSTATUS(-1071775740i32 as _);
4908 pub const STATUS_GRAPHICS_INVALID_FREQUENCY: NTSTATUS = NTSTATUS(-1071774966i32 as _);
4909 pub const STATUS_GRAPHICS_INVALID_GAMMA_RAMP: NTSTATUS = NTSTATUS(-1071774905i32 as _);
4910 pub const STATUS_GRAPHICS_INVALID_MODE_PRUNING_ALGORITHM: NTSTATUS = NTSTATUS(-1071774890i32 as _);
4911 pub const STATUS_GRAPHICS_INVALID_MONITORDESCRIPTOR: NTSTATUS = NTSTATUS(-1071774933i32 as _);
4912 pub const STATUS_GRAPHICS_INVALID_MONITORDESCRIPTORSET: NTSTATUS = NTSTATUS(-1071774934i32 as _);
4913 pub const STATUS_GRAPHICS_INVALID_MONITOR_CAPABILITY_ORIGIN: NTSTATUS = NTSTATUS(-1071774889i32 as _);
4914 pub const STATUS_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE: NTSTATUS = NTSTATUS(-1071774948i32 as _);
4915 pub const STATUS_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGESET: NTSTATUS = NTSTATUS(-1071774949i32 as _);
4916 pub const STATUS_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE_CONSTRAINT: NTSTATUS = NTSTATUS(-1071774888i32 as _);
4917 pub const STATUS_GRAPHICS_INVALID_MONITOR_SOURCEMODESET: NTSTATUS = NTSTATUS(-1071774943i32 as _);
4918 pub const STATUS_GRAPHICS_INVALID_MONITOR_SOURCE_MODE: NTSTATUS = NTSTATUS(-1071774942i32 as _);
4919 pub const STATUS_GRAPHICS_INVALID_PATH_CONTENT_GEOMETRY_TRANSFORMATION: NTSTATUS = NTSTATUS(-1071774907i32 as _);
4920 pub const STATUS_GRAPHICS_INVALID_PATH_CONTENT_TYPE: NTSTATUS = NTSTATUS(-1071774898i32 as _);
4921 pub const STATUS_GRAPHICS_INVALID_PATH_IMPORTANCE_ORDINAL: NTSTATUS = NTSTATUS(-1071774908i32 as _);
4922 pub const STATUS_GRAPHICS_INVALID_PHYSICAL_MONITOR_HANDLE: NTSTATUS = NTSTATUS(-1071774324i32 as _);
4923 pub const STATUS_GRAPHICS_INVALID_PIXELFORMAT: NTSTATUS = NTSTATUS(-1071774915i32 as _);
4924 pub const STATUS_GRAPHICS_INVALID_PIXELVALUEACCESSMODE: NTSTATUS = NTSTATUS(-1071774913i32 as _);
4925 pub const STATUS_GRAPHICS_INVALID_POINTER: NTSTATUS = NTSTATUS(-1071774236i32 as _);
4926 pub const STATUS_GRAPHICS_INVALID_PRIMARYSURFACE_SIZE: NTSTATUS = NTSTATUS(-1071774918i32 as _);
4927 pub const STATUS_GRAPHICS_INVALID_SCANLINE_ORDERING: NTSTATUS = NTSTATUS(-1071774894i32 as _);
4928 pub const STATUS_GRAPHICS_INVALID_STRIDE: NTSTATUS = NTSTATUS(-1071774916i32 as _);
4929 pub const STATUS_GRAPHICS_INVALID_TOTAL_REGION: NTSTATUS = NTSTATUS(-1071774964i32 as _);
4930 pub const STATUS_GRAPHICS_INVALID_VIDEOPRESENTSOURCESET: NTSTATUS = NTSTATUS(-1071774955i32 as _);
4931 pub const STATUS_GRAPHICS_INVALID_VIDEOPRESENTTARGETSET: NTSTATUS = NTSTATUS(-1071774954i32 as _);
4932 pub const STATUS_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE: NTSTATUS = NTSTATUS(-1071774972i32 as _);
4933 pub const STATUS_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE_MODE: NTSTATUS = NTSTATUS(-1071774960i32 as _);
4934 pub const STATUS_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET: NTSTATUS = NTSTATUS(-1071774971i32 as _);
4935 pub const STATUS_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET_MODE: NTSTATUS = NTSTATUS(-1071774959i32 as _);
4936 pub const STATUS_GRAPHICS_INVALID_VIDPN: NTSTATUS = NTSTATUS(-1071774973i32 as _);
4937 pub const STATUS_GRAPHICS_INVALID_VIDPN_PRESENT_PATH: NTSTATUS = NTSTATUS(-1071774951i32 as _);
4938 pub const STATUS_GRAPHICS_INVALID_VIDPN_SOURCEMODESET: NTSTATUS = NTSTATUS(-1071774968i32 as _);
4939 pub const STATUS_GRAPHICS_INVALID_VIDPN_TARGETMODESET: NTSTATUS = NTSTATUS(-1071774967i32 as _);
4940 pub const STATUS_GRAPHICS_INVALID_VIDPN_TARGET_SUBSET_TYPE: NTSTATUS = NTSTATUS(-1071774929i32 as _);
4941 pub const STATUS_GRAPHICS_INVALID_VIDPN_TOPOLOGY: NTSTATUS = NTSTATUS(-1071774976i32 as _);
4942 pub const STATUS_GRAPHICS_INVALID_VIDPN_TOPOLOGY_RECOMMENDATION_REASON: NTSTATUS = NTSTATUS(-1071774899i32 as _);
4943 pub const STATUS_GRAPHICS_INVALID_VISIBLEREGION_SIZE: NTSTATUS = NTSTATUS(-1071774917i32 as _);
4944 pub const STATUS_GRAPHICS_LEADLINK_NOT_ENUMERATED: NTSTATUS = NTSTATUS(-1071774671i32 as _);
4945 pub const STATUS_GRAPHICS_LEADLINK_START_DEFERRED: NTSTATUS = NTSTATUS(1075708983i32 as _);
4946 pub const STATUS_GRAPHICS_MAX_NUM_PATHS_REACHED: NTSTATUS = NTSTATUS(-1071774887i32 as _);
4947 pub const STATUS_GRAPHICS_MCA_INTERNAL_ERROR: NTSTATUS = NTSTATUS(-1071774328i32 as _);
4948 pub const STATUS_GRAPHICS_MIRRORING_DEVICES_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1071774237i32 as _);
4949 pub const STATUS_GRAPHICS_MODE_ALREADY_IN_MODESET: NTSTATUS = NTSTATUS(-1071774956i32 as _);
4950 pub const STATUS_GRAPHICS_MODE_ID_MUST_BE_UNIQUE: NTSTATUS = NTSTATUS(-1071774940i32 as _);
4951 pub const STATUS_GRAPHICS_MODE_NOT_IN_MODESET: NTSTATUS = NTSTATUS(-1071774902i32 as _);
4952 pub const STATUS_GRAPHICS_MODE_NOT_PINNED: NTSTATUS = NTSTATUS(1075708679i32 as _);
4953 pub const STATUS_GRAPHICS_MONITORDESCRIPTOR_ALREADY_IN_SET: NTSTATUS = NTSTATUS(-1071774931i32 as _);
4954 pub const STATUS_GRAPHICS_MONITORDESCRIPTOR_ID_MUST_BE_UNIQUE: NTSTATUS = NTSTATUS(-1071774930i32 as _);
4955 pub const STATUS_GRAPHICS_MONITORDESCRIPTOR_NOT_IN_SET: NTSTATUS = NTSTATUS(-1071774932i32 as _);
4956 pub const STATUS_GRAPHICS_MONITOR_COULD_NOT_BE_ASSOCIATED_WITH_ADAPTER: NTSTATUS = NTSTATUS(-1071774924i32 as _);
4957 pub const STATUS_GRAPHICS_MONITOR_NOT_CONNECTED: NTSTATUS = NTSTATUS(-1071774920i32 as _);
4958 pub const STATUS_GRAPHICS_MONITOR_NO_LONGER_EXISTS: NTSTATUS = NTSTATUS(-1071774323i32 as _);
4959 pub const STATUS_GRAPHICS_MULTISAMPLING_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1071774903i32 as _);
4960 pub const STATUS_GRAPHICS_NOT_A_LINKED_ADAPTER: NTSTATUS = NTSTATUS(-1071774672i32 as _);
4961 pub const STATUS_GRAPHICS_NOT_EXCLUSIVE_MODE_OWNER: NTSTATUS = NTSTATUS(-1071775744i32 as _);
4962 pub const STATUS_GRAPHICS_NOT_POST_DEVICE_DRIVER: NTSTATUS = NTSTATUS(-1071774664i32 as _);
4963 pub const STATUS_GRAPHICS_NO_ACTIVE_VIDPN: NTSTATUS = NTSTATUS(-1071774922i32 as _);
4964 pub const STATUS_GRAPHICS_NO_AVAILABLE_IMPORTANCE_ORDINALS: NTSTATUS = NTSTATUS(-1071774892i32 as _);
4965 pub const STATUS_GRAPHICS_NO_AVAILABLE_VIDPN_TARGET: NTSTATUS = NTSTATUS(-1071774925i32 as _);
4966 pub const STATUS_GRAPHICS_NO_DISPLAY_DEVICE_CORRESPONDS_TO_NAME: NTSTATUS = NTSTATUS(-1071774239i32 as _);
4967 pub const STATUS_GRAPHICS_NO_DISPLAY_MODE_MANAGEMENT_SUPPORT: NTSTATUS = NTSTATUS(-1071774911i32 as _);
4968 pub const STATUS_GRAPHICS_NO_MONITORS_CORRESPOND_TO_DISPLAY_DEVICE: NTSTATUS = NTSTATUS(-1071774235i32 as _);
4969 pub const STATUS_GRAPHICS_NO_MORE_ELEMENTS_IN_DATASET: NTSTATUS = NTSTATUS(1075708748i32 as _);
4970 pub const STATUS_GRAPHICS_NO_PREFERRED_MODE: NTSTATUS = NTSTATUS(1075708702i32 as _);
4971 pub const STATUS_GRAPHICS_NO_RECOMMENDED_FUNCTIONAL_VIDPN: NTSTATUS = NTSTATUS(-1071774941i32 as _);
4972 pub const STATUS_GRAPHICS_NO_RECOMMENDED_VIDPN_TOPOLOGY: NTSTATUS = NTSTATUS(-1071774950i32 as _);
4973 pub const STATUS_GRAPHICS_NO_VIDEO_MEMORY: NTSTATUS = NTSTATUS(-1071775488i32 as _);
4974 pub const STATUS_GRAPHICS_NO_VIDPNMGR: NTSTATUS = NTSTATUS(-1071774923i32 as _);
4975 pub const STATUS_GRAPHICS_ONLY_CONSOLE_SESSION_SUPPORTED: NTSTATUS = NTSTATUS(-1071774240i32 as _);
4976 pub const STATUS_GRAPHICS_OPM_ALL_HDCP_HARDWARE_ALREADY_IN_USE: NTSTATUS = NTSTATUS(-1071774440i32 as _);
4977 pub const STATUS_GRAPHICS_OPM_DRIVER_INTERNAL_ERROR: NTSTATUS = NTSTATUS(-1071774434i32 as _);
4978 pub const STATUS_GRAPHICS_OPM_HDCP_SRM_NEVER_SET: NTSTATUS = NTSTATUS(-1071774442i32 as _);
4979 pub const STATUS_GRAPHICS_OPM_INTERNAL_ERROR: NTSTATUS = NTSTATUS(-1071774453i32 as _);
4980 pub const STATUS_GRAPHICS_OPM_INVALID_CONFIGURATION_REQUEST: NTSTATUS = NTSTATUS(-1071774431i32 as _);
4981 pub const STATUS_GRAPHICS_OPM_INVALID_ENCRYPTED_PARAMETERS: NTSTATUS = NTSTATUS(-1071774461i32 as _);
4982 pub const STATUS_GRAPHICS_OPM_INVALID_HANDLE: NTSTATUS = NTSTATUS(-1071774452i32 as _);
4983 pub const STATUS_GRAPHICS_OPM_INVALID_INFORMATION_REQUEST: NTSTATUS = NTSTATUS(-1071774435i32 as _);
4984 pub const STATUS_GRAPHICS_OPM_INVALID_SRM: NTSTATUS = NTSTATUS(-1071774446i32 as _);
4985 pub const STATUS_GRAPHICS_OPM_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1071774464i32 as _);
4986 pub const STATUS_GRAPHICS_OPM_NO_PROTECTED_OUTPUTS_EXIST: NTSTATUS = NTSTATUS(-1071774459i32 as _);
4987 pub const STATUS_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_ACP: NTSTATUS = NTSTATUS(-1071774444i32 as _);
4988 pub const STATUS_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_CGMSA: NTSTATUS = NTSTATUS(-1071774443i32 as _);
4989 pub const STATUS_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_HDCP: NTSTATUS = NTSTATUS(-1071774445i32 as _);
4990 pub const STATUS_GRAPHICS_OPM_PROTECTED_OUTPUT_DOES_NOT_HAVE_COPP_SEMANTICS: NTSTATUS = NTSTATUS(-1071774436i32 as _);
4991 pub const STATUS_GRAPHICS_OPM_PROTECTED_OUTPUT_DOES_NOT_HAVE_OPM_SEMANTICS: NTSTATUS = NTSTATUS(-1071774433i32 as _);
4992 pub const STATUS_GRAPHICS_OPM_PROTECTED_OUTPUT_NO_LONGER_EXISTS: NTSTATUS = NTSTATUS(-1071774438i32 as _);
4993 pub const STATUS_GRAPHICS_OPM_RESOLUTION_TOO_HIGH: NTSTATUS = NTSTATUS(-1071774441i32 as _);
4994 pub const STATUS_GRAPHICS_OPM_SIGNALING_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1071774432i32 as _);
4995 pub const STATUS_GRAPHICS_OPM_SPANNING_MODE_ENABLED: NTSTATUS = NTSTATUS(-1071774449i32 as _);
4996 pub const STATUS_GRAPHICS_OPM_THEATER_MODE_ENABLED: NTSTATUS = NTSTATUS(-1071774448i32 as _);
4997 pub const STATUS_GRAPHICS_PARAMETER_ARRAY_TOO_SMALL: NTSTATUS = NTSTATUS(-1071774234i32 as _);
4998 pub const STATUS_GRAPHICS_PARTIAL_DATA_POPULATED: NTSTATUS = NTSTATUS(1075707914i32 as _);
4999 pub const STATUS_GRAPHICS_PATH_ALREADY_IN_TOPOLOGY: NTSTATUS = NTSTATUS(-1071774957i32 as _);
5000 pub const STATUS_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_PINNED: NTSTATUS = NTSTATUS(1075708753i32 as _);
5001 pub const STATUS_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1071774906i32 as _);
5002 pub const STATUS_GRAPHICS_PATH_NOT_IN_TOPOLOGY: NTSTATUS = NTSTATUS(-1071774937i32 as _);
5003 pub const STATUS_GRAPHICS_PINNED_MODE_MUST_REMAIN_IN_SET: NTSTATUS = NTSTATUS(-1071774958i32 as _);
5004 pub const STATUS_GRAPHICS_POLLING_TOO_FREQUENTLY: NTSTATUS = NTSTATUS(1075708985i32 as _);
5005 pub const STATUS_GRAPHICS_PRESENT_BUFFER_NOT_BOUND: NTSTATUS = NTSTATUS(-1071775728i32 as _);
5006 pub const STATUS_GRAPHICS_PRESENT_DENIED: NTSTATUS = NTSTATUS(-1071775737i32 as _);
5007 pub const STATUS_GRAPHICS_PRESENT_INVALID_WINDOW: NTSTATUS = NTSTATUS(-1071775729i32 as _);
5008 pub const STATUS_GRAPHICS_PRESENT_MODE_CHANGED: NTSTATUS = NTSTATUS(-1071775739i32 as _);
5009 pub const STATUS_GRAPHICS_PRESENT_OCCLUDED: NTSTATUS = NTSTATUS(-1071775738i32 as _);
5010 pub const STATUS_GRAPHICS_PRESENT_REDIRECTION_DISABLED: NTSTATUS = NTSTATUS(-1071775733i32 as _);
5011 pub const STATUS_GRAPHICS_PRESENT_UNOCCLUDED: NTSTATUS = NTSTATUS(-1071775732i32 as _);
5012 pub const STATUS_GRAPHICS_PVP_HFS_FAILED: NTSTATUS = NTSTATUS(-1071774447i32 as _);
5013 pub const STATUS_GRAPHICS_PVP_INVALID_CERTIFICATE_LENGTH: NTSTATUS = NTSTATUS(-1071774450i32 as _);
5014 pub const STATUS_GRAPHICS_RESOURCES_NOT_RELATED: NTSTATUS = NTSTATUS(-1071774928i32 as _);
5015 pub const STATUS_GRAPHICS_SESSION_TYPE_CHANGE_IN_PROGRESS: NTSTATUS = NTSTATUS(-1071774232i32 as _);
5016 pub const STATUS_GRAPHICS_SKIP_ALLOCATION_PREPARATION: NTSTATUS = NTSTATUS(1075708417i32 as _);
5017 pub const STATUS_GRAPHICS_SOURCE_ALREADY_IN_SET: NTSTATUS = NTSTATUS(-1071774953i32 as _);
5018 pub const STATUS_GRAPHICS_SOURCE_ID_MUST_BE_UNIQUE: NTSTATUS = NTSTATUS(-1071774927i32 as _);
5019 pub const STATUS_GRAPHICS_SOURCE_NOT_IN_TOPOLOGY: NTSTATUS = NTSTATUS(-1071774919i32 as _);
5020 pub const STATUS_GRAPHICS_SPECIFIED_CHILD_ALREADY_CONNECTED: NTSTATUS = NTSTATUS(-1071774720i32 as _);
5021 pub const STATUS_GRAPHICS_STALE_MODESET: NTSTATUS = NTSTATUS(-1071774944i32 as _);
5022 pub const STATUS_GRAPHICS_STALE_VIDPN_TOPOLOGY: NTSTATUS = NTSTATUS(-1071774921i32 as _);
5023 pub const STATUS_GRAPHICS_START_DEFERRED: NTSTATUS = NTSTATUS(1075708986i32 as _);
5024 pub const STATUS_GRAPHICS_TARGET_ALREADY_IN_SET: NTSTATUS = NTSTATUS(-1071774952i32 as _);
5025 pub const STATUS_GRAPHICS_TARGET_ID_MUST_BE_UNIQUE: NTSTATUS = NTSTATUS(-1071774926i32 as _);
5026 pub const STATUS_GRAPHICS_TARGET_NOT_IN_TOPOLOGY: NTSTATUS = NTSTATUS(-1071774912i32 as _);
5027 pub const STATUS_GRAPHICS_TOO_MANY_REFERENCES: NTSTATUS = NTSTATUS(-1071775485i32 as _);
5028 pub const STATUS_GRAPHICS_TOPOLOGY_CHANGES_NOT_ALLOWED: NTSTATUS = NTSTATUS(-1071774893i32 as _);
5029 pub const STATUS_GRAPHICS_TRY_AGAIN_LATER: NTSTATUS = NTSTATUS(-1071775484i32 as _);
5030 pub const STATUS_GRAPHICS_TRY_AGAIN_NOW: NTSTATUS = NTSTATUS(-1071775483i32 as _);
5031 pub const STATUS_GRAPHICS_UAB_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1071774462i32 as _);
5032 pub const STATUS_GRAPHICS_UNASSIGNED_MODESET_ALREADY_EXISTS: NTSTATUS = NTSTATUS(-1071774896i32 as _);
5033 pub const STATUS_GRAPHICS_UNKNOWN_CHILD_STATUS: NTSTATUS = NTSTATUS(1075708975i32 as _);
5034 pub const STATUS_GRAPHICS_UNSWIZZLING_APERTURE_UNAVAILABLE: NTSTATUS = NTSTATUS(-1071775481i32 as _);
5035 pub const STATUS_GRAPHICS_UNSWIZZLING_APERTURE_UNSUPPORTED: NTSTATUS = NTSTATUS(-1071775480i32 as _);
5036 pub const STATUS_GRAPHICS_VAIL_STATE_CHANGED: NTSTATUS = NTSTATUS(-1071775727i32 as _);
5037 pub const STATUS_GRAPHICS_VIDEO_PRESENT_TARGETS_LESS_THAN_SOURCES: NTSTATUS = NTSTATUS(-1071774938i32 as _);
5038 pub const STATUS_GRAPHICS_VIDPN_MODALITY_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1071774970i32 as _);
5039 pub const STATUS_GRAPHICS_VIDPN_SOURCE_IN_USE: NTSTATUS = NTSTATUS(-1071774910i32 as _);
5040 pub const STATUS_GRAPHICS_VIDPN_TOPOLOGY_CURRENTLY_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1071774974i32 as _);
5041 pub const STATUS_GRAPHICS_VIDPN_TOPOLOGY_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1071774975i32 as _);
5042 pub const STATUS_GRAPHICS_WINDOWDC_NOT_AVAILABLE: NTSTATUS = NTSTATUS(-1071775731i32 as _);
5043 pub const STATUS_GRAPHICS_WINDOWLESS_PRESENT_DISABLED: NTSTATUS = NTSTATUS(-1071775730i32 as _);
5044 pub const STATUS_GRAPHICS_WRONG_ALLOCATION_DEVICE: NTSTATUS = NTSTATUS(-1071775467i32 as _);
5045 pub const STATUS_GROUP_EXISTS: NTSTATUS = NTSTATUS(-1073741723i32 as _);
5046 pub const STATUS_GUARD_PAGE_VIOLATION: NTSTATUS = NTSTATUS(-2147483647i32 as _);
5047 pub const STATUS_GUIDS_EXHAUSTED: NTSTATUS = NTSTATUS(-1073741693i32 as _);
5048 pub const STATUS_GUID_SUBSTITUTION_MADE: NTSTATUS = NTSTATUS(-2147483636i32 as _);
5049 pub const STATUS_HANDLES_CLOSED: NTSTATUS = NTSTATUS(-2147483638i32 as _);
5050 pub const STATUS_HANDLE_NOT_CLOSABLE: NTSTATUS = NTSTATUS(-1073741259i32 as _);
5051 pub const STATUS_HANDLE_NO_LONGER_VALID: NTSTATUS = NTSTATUS(-1072103384i32 as _);
5052 pub const STATUS_HANDLE_REVOKED: NTSTATUS = NTSTATUS(-1073700858i32 as _);
5053 pub const STATUS_HARDWARE_MEMORY_ERROR: NTSTATUS = NTSTATUS(-1073740023i32 as _);
5054 pub const STATUS_HASH_NOT_PRESENT: NTSTATUS = NTSTATUS(-1073700607i32 as _);
5055 pub const STATUS_HASH_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1073700608i32 as _);
5056 pub const STATUS_HAS_SYSTEM_CRITICAL_FILES: NTSTATUS = NTSTATUS(-1073740611i32 as _);
5057 pub const STATUS_HDAUDIO_CONNECTION_LIST_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1069285373i32 as _);
5058 pub const STATUS_HDAUDIO_EMPTY_CONNECTION_LIST: NTSTATUS = NTSTATUS(-1069285374i32 as _);
5059 pub const STATUS_HDAUDIO_NO_LOGICAL_DEVICES_CREATED: NTSTATUS = NTSTATUS(-1069285372i32 as _);
5060 pub const STATUS_HDAUDIO_NULL_LINKED_LIST_ENTRY: NTSTATUS = NTSTATUS(-1069285371i32 as _);
5061 pub const STATUS_HEAP_CORRUPTION: NTSTATUS = NTSTATUS(-1073740940i32 as _);
5062 pub const STATUS_HEURISTIC_DAMAGE_POSSIBLE: NTSTATUS = NTSTATUS(1075380225i32 as _);
5063 pub const STATUS_HIBERNATED: NTSTATUS = NTSTATUS(1073741866i32 as _);
5064 pub const STATUS_HIBERNATION_FAILURE: NTSTATUS = NTSTATUS(-1073740783i32 as _);
5065 pub const STATUS_HIVE_UNLOADED: NTSTATUS = NTSTATUS(-1073740763i32 as _);
5066 pub const STATUS_HMAC_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1073700863i32 as _);
5067 pub const STATUS_HOPLIMIT_EXCEEDED: NTSTATUS = NTSTATUS(-1073700846i32 as _);
5068 pub const STATUS_HOST_DOWN: NTSTATUS = NTSTATUS(-1073740976i32 as _);
5069 pub const STATUS_HOST_UNREACHABLE: NTSTATUS = NTSTATUS(-1073741251i32 as _);
5070 pub const STATUS_HUNG_DISPLAY_DRIVER_THREAD: NTSTATUS = NTSTATUS(-1073740779i32 as _);
5071 pub const STATUS_HV_ACCESS_DENIED: NTSTATUS = NTSTATUS(-1070268410i32 as _);
5072 pub const STATUS_HV_ACKNOWLEDGED: NTSTATUS = NTSTATUS(-1070268394i32 as _);
5073 pub const STATUS_HV_CALL_PENDING: NTSTATUS = NTSTATUS(-1070268295i32 as _);
5074 pub const STATUS_HV_CPUID_FEATURE_VALIDATION_ERROR: NTSTATUS = NTSTATUS(-1070268356i32 as _);
5075 pub const STATUS_HV_CPUID_XSAVE_FEATURE_VALIDATION_ERROR: NTSTATUS = NTSTATUS(-1070268355i32 as _);
5076 pub const STATUS_HV_DEVICE_NOT_IN_DOMAIN: NTSTATUS = NTSTATUS(-1070268298i32 as _);
5077 pub const STATUS_HV_EVENT_BUFFER_ALREADY_FREED: NTSTATUS = NTSTATUS(-1070268300i32 as _);
5078 pub const STATUS_HV_FEATURE_UNAVAILABLE: NTSTATUS = NTSTATUS(-1070268386i32 as _);
5079 pub const STATUS_HV_INACTIVE: NTSTATUS = NTSTATUS(-1070268388i32 as _);
5080 pub const STATUS_HV_INSUFFICIENT_BUFFER: NTSTATUS = NTSTATUS(-1070268365i32 as _);
5081 pub const STATUS_HV_INSUFFICIENT_BUFFERS: NTSTATUS = NTSTATUS(-1070268397i32 as _);
5082 pub const STATUS_HV_INSUFFICIENT_CONTIGUOUS_MEMORY: NTSTATUS = NTSTATUS(-1070268299i32 as _);
5083 pub const STATUS_HV_INSUFFICIENT_DEVICE_DOMAINS: NTSTATUS = NTSTATUS(-1070268360i32 as _);
5084 pub const STATUS_HV_INSUFFICIENT_MEMORY: NTSTATUS = NTSTATUS(-1070268405i32 as _);
5085 pub const STATUS_HV_INSUFFICIENT_ROOT_MEMORY: NTSTATUS = NTSTATUS(-1070268301i32 as _);
5086 pub const STATUS_HV_INVALID_ALIGNMENT: NTSTATUS = NTSTATUS(-1070268412i32 as _);
5087 pub const STATUS_HV_INVALID_CONNECTION_ID: NTSTATUS = NTSTATUS(-1070268398i32 as _);
5088 pub const STATUS_HV_INVALID_CPU_GROUP_ID: NTSTATUS = NTSTATUS(-1070268305i32 as _);
5089 pub const STATUS_HV_INVALID_CPU_GROUP_STATE: NTSTATUS = NTSTATUS(-1070268304i32 as _);
5090 pub const STATUS_HV_INVALID_DEVICE_ID: NTSTATUS = NTSTATUS(-1070268329i32 as _);
5091 pub const STATUS_HV_INVALID_DEVICE_STATE: NTSTATUS = NTSTATUS(-1070268328i32 as _);
5092 pub const STATUS_HV_INVALID_HYPERCALL_CODE: NTSTATUS = NTSTATUS(-1070268414i32 as _);
5093 pub const STATUS_HV_INVALID_HYPERCALL_INPUT: NTSTATUS = NTSTATUS(-1070268413i32 as _);
5094 pub const STATUS_HV_INVALID_LP_INDEX: NTSTATUS = NTSTATUS(-1070268351i32 as _);
5095 pub const STATUS_HV_INVALID_PARAMETER: NTSTATUS = NTSTATUS(-1070268411i32 as _);
5096 pub const STATUS_HV_INVALID_PARTITION_ID: NTSTATUS = NTSTATUS(-1070268403i32 as _);
5097 pub const STATUS_HV_INVALID_PARTITION_STATE: NTSTATUS = NTSTATUS(-1070268409i32 as _);
5098 pub const STATUS_HV_INVALID_PORT_ID: NTSTATUS = NTSTATUS(-1070268399i32 as _);
5099 pub const STATUS_HV_INVALID_PROXIMITY_DOMAIN_INFO: NTSTATUS = NTSTATUS(-1070268390i32 as _);
5100 pub const STATUS_HV_INVALID_REGISTER_VALUE: NTSTATUS = NTSTATUS(-1070268336i32 as _);
5101 pub const STATUS_HV_INVALID_SAVE_RESTORE_STATE: NTSTATUS = NTSTATUS(-1070268393i32 as _);
5102 pub const STATUS_HV_INVALID_SYNIC_STATE: NTSTATUS = NTSTATUS(-1070268392i32 as _);
5103 pub const STATUS_HV_INVALID_VP_INDEX: NTSTATUS = NTSTATUS(-1070268402i32 as _);
5104 pub const STATUS_HV_INVALID_VP_STATE: NTSTATUS = NTSTATUS(-1070268395i32 as _);
5105 pub const STATUS_HV_INVALID_VTL_STATE: NTSTATUS = NTSTATUS(-1070268335i32 as _);
5106 pub const STATUS_HV_MSR_ACCESS_FAILED: NTSTATUS = NTSTATUS(-1070268288i32 as _);
5107 pub const STATUS_HV_NESTED_VM_EXIT: NTSTATUS = NTSTATUS(-1070268297i32 as _);
5108 pub const STATUS_HV_NOT_ACKNOWLEDGED: NTSTATUS = NTSTATUS(-1070268396i32 as _);
5109 pub const STATUS_HV_NOT_ALLOWED_WITH_NESTED_VIRT_ACTIVE: NTSTATUS = NTSTATUS(-1070268302i32 as _);
5110 pub const STATUS_HV_NOT_PRESENT: NTSTATUS = NTSTATUS(-1070264320i32 as _);
5111 pub const STATUS_HV_NO_DATA: NTSTATUS = NTSTATUS(-1070268389i32 as _);
5112 pub const STATUS_HV_NO_RESOURCES: NTSTATUS = NTSTATUS(-1070268387i32 as _);
5113 pub const STATUS_HV_NX_NOT_DETECTED: NTSTATUS = NTSTATUS(-1070268331i32 as _);
5114 pub const STATUS_HV_OBJECT_IN_USE: NTSTATUS = NTSTATUS(-1070268391i32 as _);
5115 pub const STATUS_HV_OPERATION_DENIED: NTSTATUS = NTSTATUS(-1070268408i32 as _);
5116 pub const STATUS_HV_OPERATION_FAILED: NTSTATUS = NTSTATUS(-1070268303i32 as _);
5117 pub const STATUS_HV_PAGE_REQUEST_INVALID: NTSTATUS = NTSTATUS(-1070268320i32 as _);
5118 pub const STATUS_HV_PARTITION_TOO_DEEP: NTSTATUS = NTSTATUS(-1070268404i32 as _);
5119 pub const STATUS_HV_PENDING_PAGE_REQUESTS: NTSTATUS = NTSTATUS(3473497i32 as _);
5120 pub const STATUS_HV_PROCESSOR_STARTUP_TIMEOUT: NTSTATUS = NTSTATUS(-1070268354i32 as _);
5121 pub const STATUS_HV_PROPERTY_VALUE_OUT_OF_RANGE: NTSTATUS = NTSTATUS(-1070268406i32 as _);
5122 pub const STATUS_HV_SMX_ENABLED: NTSTATUS = NTSTATUS(-1070268353i32 as _);
5123 pub const STATUS_HV_UNKNOWN_PROPERTY: NTSTATUS = NTSTATUS(-1070268407i32 as _);
5124 pub const STATUS_ILLEGAL_CHARACTER: NTSTATUS = NTSTATUS(-1073741471i32 as _);
5125 pub const STATUS_ILLEGAL_DLL_RELOCATION: NTSTATUS = NTSTATUS(-1073741207i32 as _);
5126 pub const STATUS_ILLEGAL_ELEMENT_ADDRESS: NTSTATUS = NTSTATUS(-1073741179i32 as _);
5127 pub const STATUS_ILLEGAL_FLOAT_CONTEXT: NTSTATUS = NTSTATUS(-1073741494i32 as _);
5128 pub const STATUS_ILLEGAL_FUNCTION: NTSTATUS = NTSTATUS(-1073741649i32 as _);
5129 pub const STATUS_ILLEGAL_INSTRUCTION: NTSTATUS = NTSTATUS(-1073741795i32 as _);
5130 pub const STATUS_ILL_FORMED_PASSWORD: NTSTATUS = NTSTATUS(-1073741717i32 as _);
5131 pub const STATUS_ILL_FORMED_SERVICE_ENTRY: NTSTATUS = NTSTATUS(-1073741472i32 as _);
5132 pub const STATUS_IMAGE_ALREADY_LOADED: NTSTATUS = NTSTATUS(-1073741554i32 as _);
5133 pub const STATUS_IMAGE_ALREADY_LOADED_AS_DLL: NTSTATUS = NTSTATUS(-1073741411i32 as _);
5134 pub const STATUS_IMAGE_AT_DIFFERENT_BASE: NTSTATUS = NTSTATUS(1073741878i32 as _);
5135 pub const STATUS_IMAGE_CERT_EXPIRED: NTSTATUS = NTSTATUS(-1073740283i32 as _);
5136 pub const STATUS_IMAGE_CERT_REVOKED: NTSTATUS = NTSTATUS(-1073740285i32 as _);
5137 pub const STATUS_IMAGE_CHECKSUM_MISMATCH: NTSTATUS = NTSTATUS(-1073741279i32 as _);
5138 pub const STATUS_IMAGE_LOADED_AS_PATCH_IMAGE: NTSTATUS = NTSTATUS(-1073740608i32 as _);
5139 pub const STATUS_IMAGE_MACHINE_TYPE_MISMATCH: NTSTATUS = NTSTATUS(1073741838i32 as _);
5140 pub const STATUS_IMAGE_MACHINE_TYPE_MISMATCH_EXE: NTSTATUS = NTSTATUS(1073741859i32 as _);
5141 pub const STATUS_IMAGE_MP_UP_MISMATCH: NTSTATUS = NTSTATUS(-1073741239i32 as _);
5142 pub const STATUS_IMAGE_NOT_AT_BASE: NTSTATUS = NTSTATUS(1073741827i32 as _);
5143 pub const STATUS_IMAGE_SUBSYSTEM_NOT_PRESENT: NTSTATUS = NTSTATUS(-1073741405i32 as _);
5144 pub const STATUS_IMPLEMENTATION_LIMIT: NTSTATUS = NTSTATUS(-1073740757i32 as _);
5145 pub const STATUS_INCOMPATIBLE_DRIVER_BLOCKED: NTSTATUS = NTSTATUS(-1073740764i32 as _);
5146 pub const STATUS_INCOMPATIBLE_FILE_MAP: NTSTATUS = NTSTATUS(-1073741747i32 as _);
5147 pub const STATUS_INCOMPATIBLE_WITH_GLOBAL_SHORT_NAME_REGISTRY_SETTING: NTSTATUS = NTSTATUS(-1073741410i32 as _);
5148 pub const STATUS_INCORRECT_ACCOUNT_TYPE: NTSTATUS = NTSTATUS(-1073700727i32 as _);
5149 pub const STATUS_INDEX_OUT_OF_BOUNDS: NTSTATUS = NTSTATUS(-1073740591i32 as _);
5150 pub const STATUS_INDOUBT_TRANSACTIONS_EXIST: NTSTATUS = NTSTATUS(-1072103366i32 as _);
5151 pub const STATUS_INFO_LENGTH_MISMATCH: NTSTATUS = NTSTATUS(-1073741820i32 as _);
5152 pub const STATUS_INSTANCE_NOT_AVAILABLE: NTSTATUS = NTSTATUS(-1073741653i32 as _);
5153 pub const STATUS_INSTRUCTION_MISALIGNMENT: NTSTATUS = NTSTATUS(-1073741654i32 as _);
5154 pub const STATUS_INSUFFICIENT_LOGON_INFO: NTSTATUS = NTSTATUS(-1073741232i32 as _);
5155 pub const STATUS_INSUFFICIENT_NVRAM_RESOURCES: NTSTATUS = NTSTATUS(-1073740716i32 as _);
5156 pub const STATUS_INSUFFICIENT_POWER: NTSTATUS = NTSTATUS(-1073741090i32 as _);
5157 pub const STATUS_INSUFFICIENT_RESOURCES: NTSTATUS = NTSTATUS(-1073741670i32 as _);
5158 pub const STATUS_INSUFFICIENT_RESOURCE_FOR_SPECIFIED_SHARED_SECTION_SIZE: NTSTATUS = NTSTATUS(-1073740778i32 as _);
5159 pub const STATUS_INSUFFICIENT_VIRTUAL_ADDR_RESOURCES: NTSTATUS = NTSTATUS(-1073740606i32 as _);
5160 pub const STATUS_INSUFF_SERVER_RESOURCES: NTSTATUS = NTSTATUS(-1073741307i32 as _);
5161 pub const STATUS_INTEGER_DIVIDE_BY_ZERO: NTSTATUS = NTSTATUS(-1073741676i32 as _);
5162 pub const STATUS_INTEGER_OVERFLOW: NTSTATUS = NTSTATUS(-1073741675i32 as _);
5163 pub const STATUS_INTERMIXED_KERNEL_EA_OPERATION: NTSTATUS = NTSTATUS(-1073740687i32 as _);
5164 pub const STATUS_INTERNAL_DB_CORRUPTION: NTSTATUS = NTSTATUS(-1073741596i32 as _);
5165 pub const STATUS_INTERNAL_DB_ERROR: NTSTATUS = NTSTATUS(-1073741480i32 as _);
5166 pub const STATUS_INTERNAL_ERROR: NTSTATUS = NTSTATUS(-1073741595i32 as _);
5167 pub const STATUS_INTERRUPTED: NTSTATUS = NTSTATUS(-1073740523i32 as _);
5168 pub const STATUS_INTERRUPT_STILL_CONNECTED: NTSTATUS = NTSTATUS(296i32 as _);
5169 pub const STATUS_INTERRUPT_VECTOR_ALREADY_CONNECTED: NTSTATUS = NTSTATUS(295i32 as _);
5170 pub const STATUS_INVALID_ACCOUNT_NAME: NTSTATUS = NTSTATUS(-1073741726i32 as _);
5171 pub const STATUS_INVALID_ACE_CONDITION: NTSTATUS = NTSTATUS(-1073741406i32 as _);
5172 pub const STATUS_INVALID_ACL: NTSTATUS = NTSTATUS(-1073741705i32 as _);
5173 pub const STATUS_INVALID_ADDRESS: NTSTATUS = NTSTATUS(-1073741503i32 as _);
5174 pub const STATUS_INVALID_ADDRESS_COMPONENT: NTSTATUS = NTSTATUS(-1073741305i32 as _);
5175 pub const STATUS_INVALID_ADDRESS_WILDCARD: NTSTATUS = NTSTATUS(-1073741304i32 as _);
5176 pub const STATUS_INVALID_BLOCK_LENGTH: NTSTATUS = NTSTATUS(-1073741453i32 as _);
5177 pub const STATUS_INVALID_BUFFER_SIZE: NTSTATUS = NTSTATUS(-1073741306i32 as _);
5178 pub const STATUS_INVALID_CAP: NTSTATUS = NTSTATUS(-1073740539i32 as _);
5179 pub const STATUS_INVALID_CID: NTSTATUS = NTSTATUS(-1073741813i32 as _);
5180 pub const STATUS_INVALID_COMPUTER_NAME: NTSTATUS = NTSTATUS(-1073741534i32 as _);
5181 pub const STATUS_INVALID_CONNECTION: NTSTATUS = NTSTATUS(-1073741504i32 as _);
5182 pub const STATUS_INVALID_CRUNTIME_PARAMETER: NTSTATUS = NTSTATUS(-1073740777i32 as _);
5183 pub const STATUS_INVALID_DEVICE_OBJECT_PARAMETER: NTSTATUS = NTSTATUS(-1073740951i32 as _);
5184 pub const STATUS_INVALID_DEVICE_REQUEST: NTSTATUS = NTSTATUS(-1073741808i32 as _);
5185 pub const STATUS_INVALID_DEVICE_STATE: NTSTATUS = NTSTATUS(-1073741436i32 as _);
5186 pub const STATUS_INVALID_DISPOSITION: NTSTATUS = NTSTATUS(-1073741786i32 as _);
5187 pub const STATUS_INVALID_DOMAIN_ROLE: NTSTATUS = NTSTATUS(-1073741602i32 as _);
5188 pub const STATUS_INVALID_DOMAIN_STATE: NTSTATUS = NTSTATUS(-1073741603i32 as _);
5189 pub const STATUS_INVALID_EA_FLAG: NTSTATUS = NTSTATUS(-2147483627i32 as _);
5190 pub const STATUS_INVALID_EA_NAME: NTSTATUS = NTSTATUS(-2147483629i32 as _);
5191 pub const STATUS_INVALID_EXCEPTION_HANDLER: NTSTATUS = NTSTATUS(-1073741403i32 as _);
5192 pub const STATUS_INVALID_FIELD_IN_PARAMETER_LIST: NTSTATUS = NTSTATUS(-1073740683i32 as _);
5193 pub const STATUS_INVALID_FILE_FOR_SECTION: NTSTATUS = NTSTATUS(-1073741792i32 as _);
5194 pub const STATUS_INVALID_GROUP_ATTRIBUTES: NTSTATUS = NTSTATUS(-1073741660i32 as _);
5195 pub const STATUS_INVALID_HANDLE: NTSTATUS = NTSTATUS(-1073741816i32 as _);
5196 pub const STATUS_INVALID_HW_PROFILE: NTSTATUS = NTSTATUS(-1073741216i32 as _);
5197 pub const STATUS_INVALID_IDN_NORMALIZATION: NTSTATUS = NTSTATUS(-1073740010i32 as _);
5198 pub const STATUS_INVALID_ID_AUTHORITY: NTSTATUS = NTSTATUS(-1073741692i32 as _);
5199 pub const STATUS_INVALID_IMAGE_FORMAT: NTSTATUS = NTSTATUS(-1073741701i32 as _);
5200 pub const STATUS_INVALID_IMAGE_HASH: NTSTATUS = NTSTATUS(-1073740760i32 as _);
5201 pub const STATUS_INVALID_IMAGE_LE_FORMAT: NTSTATUS = NTSTATUS(-1073741522i32 as _);
5202 pub const STATUS_INVALID_IMAGE_NE_FORMAT: NTSTATUS = NTSTATUS(-1073741541i32 as _);
5203 pub const STATUS_INVALID_IMAGE_NOT_MZ: NTSTATUS = NTSTATUS(-1073741521i32 as _);
5204 pub const STATUS_INVALID_IMAGE_PROTECT: NTSTATUS = NTSTATUS(-1073741520i32 as _);
5205 pub const STATUS_INVALID_IMAGE_WIN_16: NTSTATUS = NTSTATUS(-1073741519i32 as _);
5206 pub const STATUS_INVALID_IMAGE_WIN_32: NTSTATUS = NTSTATUS(-1073740967i32 as _);
5207 pub const STATUS_INVALID_IMAGE_WIN_64: NTSTATUS = NTSTATUS(-1073740966i32 as _);
5208 pub const STATUS_INVALID_IMPORT_OF_NON_DLL: NTSTATUS = NTSTATUS(-1073740945i32 as _);
5209 pub const STATUS_INVALID_INFO_CLASS: NTSTATUS = NTSTATUS(-1073741821i32 as _);
5210 pub const STATUS_INVALID_INITIATOR_TARGET_PATH: NTSTATUS = NTSTATUS(-1073740681i32 as _);
5211 pub const STATUS_INVALID_KERNEL_INFO_VERSION: NTSTATUS = NTSTATUS(-1073700860i32 as _);
5212 pub const STATUS_INVALID_LABEL: NTSTATUS = NTSTATUS(-1073740730i32 as _);
5213 pub const STATUS_INVALID_LDT_DESCRIPTOR: NTSTATUS = NTSTATUS(-1073741542i32 as _);
5214 pub const STATUS_INVALID_LDT_OFFSET: NTSTATUS = NTSTATUS(-1073741543i32 as _);
5215 pub const STATUS_INVALID_LDT_SIZE: NTSTATUS = NTSTATUS(-1073741544i32 as _);
5216 pub const STATUS_INVALID_LEVEL: NTSTATUS = NTSTATUS(-1073741496i32 as _);
5217 pub const STATUS_INVALID_LOCK_RANGE: NTSTATUS = NTSTATUS(-1073741407i32 as _);
5218 pub const STATUS_INVALID_LOCK_SEQUENCE: NTSTATUS = NTSTATUS(-1073741794i32 as _);
5219 pub const STATUS_INVALID_LOGON_HOURS: NTSTATUS = NTSTATUS(-1073741713i32 as _);
5220 pub const STATUS_INVALID_LOGON_TYPE: NTSTATUS = NTSTATUS(-1073741557i32 as _);
5221 pub const STATUS_INVALID_MEMBER: NTSTATUS = NTSTATUS(-1073741445i32 as _);
5222 pub const STATUS_INVALID_MESSAGE: NTSTATUS = NTSTATUS(-1073740030i32 as _);
5223 pub const STATUS_INVALID_NETWORK_RESPONSE: NTSTATUS = NTSTATUS(-1073741629i32 as _);
5224 pub const STATUS_INVALID_OFFSET_ALIGNMENT: NTSTATUS = NTSTATUS(-1073740684i32 as _);
5225 pub const STATUS_INVALID_OPLOCK_PROTOCOL: NTSTATUS = NTSTATUS(-1073741597i32 as _);
5226 pub const STATUS_INVALID_OWNER: NTSTATUS = NTSTATUS(-1073741734i32 as _);
5227 pub const STATUS_INVALID_PACKAGE_SID_LENGTH: NTSTATUS = NTSTATUS(-1073700350i32 as _);
5228 pub const STATUS_INVALID_PAGE_PROTECTION: NTSTATUS = NTSTATUS(-1073741755i32 as _);
5229 pub const STATUS_INVALID_PARAMETER: NTSTATUS = NTSTATUS(-1073741811i32 as _);
5230 pub const STATUS_INVALID_PARAMETER_1: NTSTATUS = NTSTATUS(-1073741585i32 as _);
5231 pub const STATUS_INVALID_PARAMETER_10: NTSTATUS = NTSTATUS(-1073741576i32 as _);
5232 pub const STATUS_INVALID_PARAMETER_11: NTSTATUS = NTSTATUS(-1073741575i32 as _);
5233 pub const STATUS_INVALID_PARAMETER_12: NTSTATUS = NTSTATUS(-1073741574i32 as _);
5234 pub const STATUS_INVALID_PARAMETER_2: NTSTATUS = NTSTATUS(-1073741584i32 as _);
5235 pub const STATUS_INVALID_PARAMETER_3: NTSTATUS = NTSTATUS(-1073741583i32 as _);
5236 pub const STATUS_INVALID_PARAMETER_4: NTSTATUS = NTSTATUS(-1073741582i32 as _);
5237 pub const STATUS_INVALID_PARAMETER_5: NTSTATUS = NTSTATUS(-1073741581i32 as _);
5238 pub const STATUS_INVALID_PARAMETER_6: NTSTATUS = NTSTATUS(-1073741580i32 as _);
5239 pub const STATUS_INVALID_PARAMETER_7: NTSTATUS = NTSTATUS(-1073741579i32 as _);
5240 pub const STATUS_INVALID_PARAMETER_8: NTSTATUS = NTSTATUS(-1073741578i32 as _);
5241 pub const STATUS_INVALID_PARAMETER_9: NTSTATUS = NTSTATUS(-1073741577i32 as _);
5242 pub const STATUS_INVALID_PARAMETER_MIX: NTSTATUS = NTSTATUS(-1073741776i32 as _);
5243 pub const STATUS_INVALID_PEP_INFO_VERSION: NTSTATUS = NTSTATUS(-1073700859i32 as _);
5244 pub const STATUS_INVALID_PIPE_STATE: NTSTATUS = NTSTATUS(-1073741651i32 as _);
5245 pub const STATUS_INVALID_PLUGPLAY_DEVICE_PATH: NTSTATUS = NTSTATUS(-1073741215i32 as _);
5246 pub const STATUS_INVALID_PORT_ATTRIBUTES: NTSTATUS = NTSTATUS(-1073741778i32 as _);
5247 pub const STATUS_INVALID_PORT_HANDLE: NTSTATUS = NTSTATUS(-1073741758i32 as _);
5248 pub const STATUS_INVALID_PRIMARY_GROUP: NTSTATUS = NTSTATUS(-1073741733i32 as _);
5249 pub const STATUS_INVALID_QUOTA_LOWER: NTSTATUS = NTSTATUS(-1073741775i32 as _);
5250 pub const STATUS_INVALID_READ_MODE: NTSTATUS = NTSTATUS(-1073741644i32 as _);
5251 pub const STATUS_INVALID_RUNLEVEL_SETTING: NTSTATUS = NTSTATUS(-1073700542i32 as _);
5252 pub const STATUS_INVALID_SECURITY_DESCR: NTSTATUS = NTSTATUS(-1073741703i32 as _);
5253 pub const STATUS_INVALID_SERVER_STATE: NTSTATUS = NTSTATUS(-1073741604i32 as _);
5254 pub const STATUS_INVALID_SESSION: NTSTATUS = NTSTATUS(-1073740715i32 as _);
5255 pub const STATUS_INVALID_SID: NTSTATUS = NTSTATUS(-1073741704i32 as _);
5256 pub const STATUS_INVALID_SIGNATURE: NTSTATUS = NTSTATUS(-1073700864i32 as _);
5257 pub const STATUS_INVALID_STATE_TRANSITION: NTSTATUS = NTSTATUS(-1073700861i32 as _);
5258 pub const STATUS_INVALID_SUB_AUTHORITY: NTSTATUS = NTSTATUS(-1073741706i32 as _);
5259 pub const STATUS_INVALID_SYSTEM_SERVICE: NTSTATUS = NTSTATUS(-1073741796i32 as _);
5260 pub const STATUS_INVALID_TASK_INDEX: NTSTATUS = NTSTATUS(-1073740543i32 as _);
5261 pub const STATUS_INVALID_TASK_NAME: NTSTATUS = NTSTATUS(-1073740544i32 as _);
5262 pub const STATUS_INVALID_THREAD: NTSTATUS = NTSTATUS(-1073740004i32 as _);
5263 pub const STATUS_INVALID_TOKEN: NTSTATUS = NTSTATUS(-1073740699i32 as _);
5264 pub const STATUS_INVALID_TRANSACTION: NTSTATUS = NTSTATUS(-1072103422i32 as _);
5265 pub const STATUS_INVALID_UNWIND_TARGET: NTSTATUS = NTSTATUS(-1073741783i32 as _);
5266 pub const STATUS_INVALID_USER_BUFFER: NTSTATUS = NTSTATUS(-1073741592i32 as _);
5267 pub const STATUS_INVALID_USER_PRINCIPAL_NAME: NTSTATUS = NTSTATUS(-1073740772i32 as _);
5268 pub const STATUS_INVALID_VARIANT: NTSTATUS = NTSTATUS(-1073741262i32 as _);
5269 pub const STATUS_INVALID_VIEW_SIZE: NTSTATUS = NTSTATUS(-1073741793i32 as _);
5270 pub const STATUS_INVALID_VOLUME_LABEL: NTSTATUS = NTSTATUS(-1073741690i32 as _);
5271 pub const STATUS_INVALID_WEIGHT: NTSTATUS = NTSTATUS(-1073740712i32 as _);
5272 pub const STATUS_INVALID_WORKSTATION: NTSTATUS = NTSTATUS(-1073741712i32 as _);
5273 pub const STATUS_IN_PAGE_ERROR: NTSTATUS = NTSTATUS(-1073741818i32 as _);
5274 pub const STATUS_IORING_COMPLETION_QUEUE_TOO_BIG: NTSTATUS = NTSTATUS(-1069154299i32 as _);
5275 pub const STATUS_IORING_CORRUPT: NTSTATUS = NTSTATUS(-1069154297i32 as _);
5276 pub const STATUS_IORING_REQUIRED_FLAG_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1069154303i32 as _);
5277 pub const STATUS_IORING_SUBMISSION_QUEUE_FULL: NTSTATUS = NTSTATUS(-1069154302i32 as _);
5278 pub const STATUS_IORING_SUBMISSION_QUEUE_TOO_BIG: NTSTATUS = NTSTATUS(-1069154300i32 as _);
5279 pub const STATUS_IORING_SUBMIT_IN_PROGRESS: NTSTATUS = NTSTATUS(-1069154298i32 as _);
5280 pub const STATUS_IORING_VERSION_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1069154301i32 as _);
5281 pub const STATUS_IO_DEVICE_ERROR: NTSTATUS = NTSTATUS(-1073741435i32 as _);
5282 pub const STATUS_IO_DEVICE_INVALID_DATA: NTSTATUS = NTSTATUS(-1073741392i32 as _);
5283 pub const STATUS_IO_OPERATION_TIMEOUT: NTSTATUS = NTSTATUS(-1073740675i32 as _);
5284 pub const STATUS_IO_PREEMPTED: NTSTATUS = NTSTATUS(-1068433407i32 as _);
5285 pub const STATUS_IO_PRIVILEGE_FAILED: NTSTATUS = NTSTATUS(-1073741513i32 as _);
5286 pub const STATUS_IO_REISSUE_AS_CACHED: NTSTATUS = NTSTATUS(-1073479623i32 as _);
5287 pub const STATUS_IO_REPARSE_DATA_INVALID: NTSTATUS = NTSTATUS(-1073741192i32 as _);
5288 pub const STATUS_IO_REPARSE_TAG_INVALID: NTSTATUS = NTSTATUS(-1073741194i32 as _);
5289 pub const STATUS_IO_REPARSE_TAG_MISMATCH: NTSTATUS = NTSTATUS(-1073741193i32 as _);
5290 pub const STATUS_IO_REPARSE_TAG_NOT_HANDLED: NTSTATUS = NTSTATUS(-1073741191i32 as _);
5291 pub const STATUS_IO_TIMEOUT: NTSTATUS = NTSTATUS(-1073741643i32 as _);
5292 pub const STATUS_IO_UNALIGNED_WRITE: NTSTATUS = NTSTATUS(-1073741391i32 as _);
5293 pub const STATUS_IPSEC_AUTH_FIREWALL_DROP: NTSTATUS = NTSTATUS(-1070202872i32 as _);
5294 pub const STATUS_IPSEC_BAD_SPI: NTSTATUS = NTSTATUS(-1070202879i32 as _);
5295 pub const STATUS_IPSEC_CLEAR_TEXT_DROP: NTSTATUS = NTSTATUS(-1070202873i32 as _);
5296 pub const STATUS_IPSEC_DOSP_BLOCK: NTSTATUS = NTSTATUS(-1070170112i32 as _);
5297 pub const STATUS_IPSEC_DOSP_INVALID_PACKET: NTSTATUS = NTSTATUS(-1070170110i32 as _);
5298 pub const STATUS_IPSEC_DOSP_KEYMOD_NOT_ALLOWED: NTSTATUS = NTSTATUS(-1070170107i32 as _);
5299 pub const STATUS_IPSEC_DOSP_MAX_ENTRIES: NTSTATUS = NTSTATUS(-1070170108i32 as _);
5300 pub const STATUS_IPSEC_DOSP_MAX_PER_IP_RATELIMIT_QUEUES: NTSTATUS = NTSTATUS(-1070170106i32 as _);
5301 pub const STATUS_IPSEC_DOSP_RECEIVED_MULTICAST: NTSTATUS = NTSTATUS(-1070170111i32 as _);
5302 pub const STATUS_IPSEC_DOSP_STATE_LOOKUP_FAILED: NTSTATUS = NTSTATUS(-1070170109i32 as _);
5303 pub const STATUS_IPSEC_INTEGRITY_CHECK_FAILED: NTSTATUS = NTSTATUS(-1070202874i32 as _);
5304 pub const STATUS_IPSEC_INVALID_PACKET: NTSTATUS = NTSTATUS(-1070202875i32 as _);
5305 pub const STATUS_IPSEC_QUEUE_OVERFLOW: NTSTATUS = NTSTATUS(-1073700848i32 as _);
5306 pub const STATUS_IPSEC_REPLAY_CHECK_FAILED: NTSTATUS = NTSTATUS(-1070202876i32 as _);
5307 pub const STATUS_IPSEC_SA_LIFETIME_EXPIRED: NTSTATUS = NTSTATUS(-1070202878i32 as _);
5308 pub const STATUS_IPSEC_THROTTLE_DROP: NTSTATUS = NTSTATUS(-1070202871i32 as _);
5309 pub const STATUS_IPSEC_WRONG_SA: NTSTATUS = NTSTATUS(-1070202877i32 as _);
5310 pub const STATUS_IP_ADDRESS_CONFLICT1: NTSTATUS = NTSTATUS(-1073741228i32 as _);
5311 pub const STATUS_IP_ADDRESS_CONFLICT2: NTSTATUS = NTSTATUS(-1073741227i32 as _);
5312 pub const STATUS_ISSUING_CA_UNTRUSTED: NTSTATUS = NTSTATUS(-1073740918i32 as _);
5313 pub const STATUS_ISSUING_CA_UNTRUSTED_KDC: NTSTATUS = NTSTATUS(-1073740787i32 as _);
5314 pub const STATUS_JOB_NOT_EMPTY: NTSTATUS = NTSTATUS(-1073740529i32 as _);
5315 pub const STATUS_JOB_NO_CONTAINER: NTSTATUS = NTSTATUS(-1073740535i32 as _);
5316 pub const STATUS_JOURNAL_DELETE_IN_PROGRESS: NTSTATUS = NTSTATUS(-1073741129i32 as _);
5317 pub const STATUS_JOURNAL_ENTRY_DELETED: NTSTATUS = NTSTATUS(-1073741105i32 as _);
5318 pub const STATUS_JOURNAL_NOT_ACTIVE: NTSTATUS = NTSTATUS(-1073741128i32 as _);
5319 pub const STATUS_KDC_CERT_EXPIRED: NTSTATUS = NTSTATUS(-1073740786i32 as _);
5320 pub const STATUS_KDC_CERT_REVOKED: NTSTATUS = NTSTATUS(-1073740785i32 as _);
5321 pub const STATUS_KDC_INVALID_REQUEST: NTSTATUS = NTSTATUS(-1073741061i32 as _);
5322 pub const STATUS_KDC_UNABLE_TO_REFER: NTSTATUS = NTSTATUS(-1073741060i32 as _);
5323 pub const STATUS_KDC_UNKNOWN_ETYPE: NTSTATUS = NTSTATUS(-1073741059i32 as _);
5324 pub const STATUS_KERNEL_APC: NTSTATUS = NTSTATUS(256i32 as _);
5325 pub const STATUS_KERNEL_EXECUTABLE_MEMORY_WRITE: NTSTATUS = NTSTATUS(-1073739996i32 as _);
5326 pub const STATUS_KEY_DELETED: NTSTATUS = NTSTATUS(-1073741444i32 as _);
5327 pub const STATUS_KEY_HAS_CHILDREN: NTSTATUS = NTSTATUS(-1073741440i32 as _);
5328 pub const STATUS_LAST_ADMIN: NTSTATUS = NTSTATUS(-1073741719i32 as _);
5329 pub const STATUS_LICENSE_QUOTA_EXCEEDED: NTSTATUS = NTSTATUS(-1073741223i32 as _);
5330 pub const STATUS_LICENSE_VIOLATION: NTSTATUS = NTSTATUS(-1073741206i32 as _);
5331 pub const STATUS_LINK_FAILED: NTSTATUS = NTSTATUS(-1073741506i32 as _);
5332 pub const STATUS_LINK_TIMEOUT: NTSTATUS = NTSTATUS(-1073741505i32 as _);
5333 pub const STATUS_LM_CROSS_ENCRYPTION_REQUIRED: NTSTATUS = NTSTATUS(-1073741441i32 as _);
5334 pub const STATUS_LOCAL_DISCONNECT: NTSTATUS = NTSTATUS(-1073741509i32 as _);
5335 pub const STATUS_LOCAL_USER_SESSION_KEY: NTSTATUS = NTSTATUS(1073741830i32 as _);
5336 pub const STATUS_LOCK_NOT_GRANTED: NTSTATUS = NTSTATUS(-1073741739i32 as _);
5337 pub const STATUS_LOGIN_TIME_RESTRICTION: NTSTATUS = NTSTATUS(-1073741241i32 as _);
5338 pub const STATUS_LOGIN_WKSTA_RESTRICTION: NTSTATUS = NTSTATUS(-1073741240i32 as _);
5339 pub const STATUS_LOGON_NOT_GRANTED: NTSTATUS = NTSTATUS(-1073741483i32 as _);
5340 pub const STATUS_LOGON_SERVER_CONFLICT: NTSTATUS = NTSTATUS(-1073741518i32 as _);
5341 pub const STATUS_LOGON_SESSION_COLLISION: NTSTATUS = NTSTATUS(-1073741563i32 as _);
5342 pub const STATUS_LOGON_SESSION_EXISTS: NTSTATUS = NTSTATUS(-1073741586i32 as _);
5343 pub const STATUS_LOG_APPENDED_FLUSH_FAILED: NTSTATUS = NTSTATUS(-1072037841i32 as _);
5344 pub const STATUS_LOG_ARCHIVE_IN_PROGRESS: NTSTATUS = NTSTATUS(-1072037855i32 as _);
5345 pub const STATUS_LOG_ARCHIVE_NOT_IN_PROGRESS: NTSTATUS = NTSTATUS(-1072037856i32 as _);
5346 pub const STATUS_LOG_BLOCKS_EXHAUSTED: NTSTATUS = NTSTATUS(-1072037882i32 as _);
5347 pub const STATUS_LOG_BLOCK_INCOMPLETE: NTSTATUS = NTSTATUS(-1072037884i32 as _);
5348 pub const STATUS_LOG_BLOCK_INVALID: NTSTATUS = NTSTATUS(-1072037878i32 as _);
5349 pub const STATUS_LOG_BLOCK_VERSION: NTSTATUS = NTSTATUS(-1072037879i32 as _);
5350 pub const STATUS_LOG_CANT_DELETE: NTSTATUS = NTSTATUS(-1072037871i32 as _);
5351 pub const STATUS_LOG_CLIENT_ALREADY_REGISTERED: NTSTATUS = NTSTATUS(-1072037852i32 as _);
5352 pub const STATUS_LOG_CLIENT_NOT_REGISTERED: NTSTATUS = NTSTATUS(-1072037851i32 as _);
5353 pub const STATUS_LOG_CONTAINER_LIMIT_EXCEEDED: NTSTATUS = NTSTATUS(-1072037870i32 as _);
5354 pub const STATUS_LOG_CONTAINER_OPEN_FAILED: NTSTATUS = NTSTATUS(-1072037847i32 as _);
5355 pub const STATUS_LOG_CONTAINER_READ_FAILED: NTSTATUS = NTSTATUS(-1072037849i32 as _);
5356 pub const STATUS_LOG_CONTAINER_STATE_INVALID: NTSTATUS = NTSTATUS(-1072037846i32 as _);
5357 pub const STATUS_LOG_CONTAINER_WRITE_FAILED: NTSTATUS = NTSTATUS(-1072037848i32 as _);
5358 pub const STATUS_LOG_CORRUPTION_DETECTED: NTSTATUS = NTSTATUS(-1072103376i32 as _);
5359 pub const STATUS_LOG_DEDICATED: NTSTATUS = NTSTATUS(-1072037857i32 as _);
5360 pub const STATUS_LOG_EPHEMERAL: NTSTATUS = NTSTATUS(-1072037854i32 as _);
5361 pub const STATUS_LOG_FILE_FULL: NTSTATUS = NTSTATUS(-1073741432i32 as _);
5362 pub const STATUS_LOG_FULL: NTSTATUS = NTSTATUS(-1072037859i32 as _);
5363 pub const STATUS_LOG_FULL_HANDLER_IN_PROGRESS: NTSTATUS = NTSTATUS(-1072037850i32 as _);
5364 pub const STATUS_LOG_GROWTH_FAILED: NTSTATUS = NTSTATUS(-1072103399i32 as _);
5365 pub const STATUS_LOG_HARD_ERROR: NTSTATUS = NTSTATUS(1073741850i32 as _);
5366 pub const STATUS_LOG_INCONSISTENT_SECURITY: NTSTATUS = NTSTATUS(-1072037842i32 as _);
5367 pub const STATUS_LOG_INVALID_RANGE: NTSTATUS = NTSTATUS(-1072037883i32 as _);
5368 pub const STATUS_LOG_METADATA_CORRUPT: NTSTATUS = NTSTATUS(-1072037875i32 as _);
5369 pub const STATUS_LOG_METADATA_FLUSH_FAILED: NTSTATUS = NTSTATUS(-1072037843i32 as _);
5370 pub const STATUS_LOG_METADATA_INCONSISTENT: NTSTATUS = NTSTATUS(-1072037873i32 as _);
5371 pub const STATUS_LOG_METADATA_INVALID: NTSTATUS = NTSTATUS(-1072037874i32 as _);
5372 pub const STATUS_LOG_MULTIPLEXED: NTSTATUS = NTSTATUS(-1072037858i32 as _);
5373 pub const STATUS_LOG_NOT_ENOUGH_CONTAINERS: NTSTATUS = NTSTATUS(-1072037853i32 as _);
5374 pub const STATUS_LOG_NO_RESTART: NTSTATUS = NTSTATUS(1075445772i32 as _);
5375 pub const STATUS_LOG_PINNED: NTSTATUS = NTSTATUS(-1072037844i32 as _);
5376 pub const STATUS_LOG_PINNED_ARCHIVE_TAIL: NTSTATUS = NTSTATUS(-1072037864i32 as _);
5377 pub const STATUS_LOG_PINNED_RESERVATION: NTSTATUS = NTSTATUS(-1072037840i32 as _);
5378 pub const STATUS_LOG_POLICY_ALREADY_INSTALLED: NTSTATUS = NTSTATUS(-1072037868i32 as _);
5379 pub const STATUS_LOG_POLICY_CONFLICT: NTSTATUS = NTSTATUS(-1072037865i32 as _);
5380 pub const STATUS_LOG_POLICY_INVALID: NTSTATUS = NTSTATUS(-1072037866i32 as _);
5381 pub const STATUS_LOG_POLICY_NOT_INSTALLED: NTSTATUS = NTSTATUS(-1072037867i32 as _);
5382 pub const STATUS_LOG_READ_CONTEXT_INVALID: NTSTATUS = NTSTATUS(-1072037881i32 as _);
5383 pub const STATUS_LOG_READ_MODE_INVALID: NTSTATUS = NTSTATUS(-1072037877i32 as _);
5384 pub const STATUS_LOG_RECORDS_RESERVED_INVALID: NTSTATUS = NTSTATUS(-1072037862i32 as _);
5385 pub const STATUS_LOG_RECORD_NONEXISTENT: NTSTATUS = NTSTATUS(-1072037863i32 as _);
5386 pub const STATUS_LOG_RESERVATION_INVALID: NTSTATUS = NTSTATUS(-1072037872i32 as _);
5387 pub const STATUS_LOG_RESIZE_INVALID_SIZE: NTSTATUS = NTSTATUS(-1072103413i32 as _);
5388 pub const STATUS_LOG_RESTART_INVALID: NTSTATUS = NTSTATUS(-1072037880i32 as _);
5389 pub const STATUS_LOG_SECTOR_INVALID: NTSTATUS = NTSTATUS(-1072037887i32 as _);
5390 pub const STATUS_LOG_SECTOR_PARITY_INVALID: NTSTATUS = NTSTATUS(-1072037886i32 as _);
5391 pub const STATUS_LOG_SECTOR_REMAPPED: NTSTATUS = NTSTATUS(-1072037885i32 as _);
5392 pub const STATUS_LOG_SPACE_RESERVED_INVALID: NTSTATUS = NTSTATUS(-1072037861i32 as _);
5393 pub const STATUS_LOG_START_OF_LOG: NTSTATUS = NTSTATUS(-1072037869i32 as _);
5394 pub const STATUS_LOG_STATE_INVALID: NTSTATUS = NTSTATUS(-1072037845i32 as _);
5395 pub const STATUS_LOG_TAIL_INVALID: NTSTATUS = NTSTATUS(-1072037860i32 as _);
5396 pub const STATUS_LONGJUMP: NTSTATUS = NTSTATUS(-2147483610i32 as _);
5397 pub const STATUS_LOST_MODE_LOGON_RESTRICTION: NTSTATUS = NTSTATUS(-1073741043i32 as _);
5398 pub const STATUS_LOST_WRITEBEHIND_DATA: NTSTATUS = NTSTATUS(-1073741278i32 as _);
5399 pub const STATUS_LOST_WRITEBEHIND_DATA_LOCAL_DISK_ERROR: NTSTATUS = NTSTATUS(-1073700734i32 as _);
5400 pub const STATUS_LOST_WRITEBEHIND_DATA_NETWORK_DISCONNECTED: NTSTATUS = NTSTATUS(-1073700736i32 as _);
5401 pub const STATUS_LOST_WRITEBEHIND_DATA_NETWORK_SERVER_ERROR: NTSTATUS = NTSTATUS(-1073700735i32 as _);
5402 pub const STATUS_LPAC_ACCESS_DENIED: NTSTATUS = NTSTATUS(-1073700349i32 as _);
5403 pub const STATUS_LPC_HANDLE_COUNT_EXCEEDED: NTSTATUS = NTSTATUS(-1073739998i32 as _);
5404 pub const STATUS_LPC_INVALID_CONNECTION_USAGE: NTSTATUS = NTSTATUS(-1073740026i32 as _);
5405 pub const STATUS_LPC_RECEIVE_BUFFER_EXPECTED: NTSTATUS = NTSTATUS(-1073740027i32 as _);
5406 pub const STATUS_LPC_REPLY_LOST: NTSTATUS = NTSTATUS(-1073741229i32 as _);
5407 pub const STATUS_LPC_REQUESTS_NOT_ALLOWED: NTSTATUS = NTSTATUS(-1073740025i32 as _);
5408 pub const STATUS_LUIDS_EXHAUSTED: NTSTATUS = NTSTATUS(-1073741707i32 as _);
5409 pub const STATUS_MAGAZINE_NOT_PRESENT: NTSTATUS = NTSTATUS(-1073741178i32 as _);
5410 pub const STATUS_MAPPED_ALIGNMENT: NTSTATUS = NTSTATUS(-1073741280i32 as _);
5411 pub const STATUS_MAPPED_FILE_SIZE_ZERO: NTSTATUS = NTSTATUS(-1073741538i32 as _);
5412 pub const STATUS_MARKED_TO_DISALLOW_WRITES: NTSTATUS = NTSTATUS(-1073740659i32 as _);
5413 pub const STATUS_MARSHALL_OVERFLOW: NTSTATUS = NTSTATUS(-1073741263i32 as _);
5414 pub const STATUS_MAX_REFERRALS_EXCEEDED: NTSTATUS = NTSTATUS(-1073741068i32 as _);
5415 pub const STATUS_MCA_EXCEPTION: NTSTATUS = NTSTATUS(-1073740013i32 as _);
5416 pub const STATUS_MCA_OCCURED: NTSTATUS = NTSTATUS(-1073740950i32 as _);
5417 pub const STATUS_MEDIA_CHANGED: NTSTATUS = NTSTATUS(-2147483620i32 as _);
5418 pub const STATUS_MEDIA_CHECK: NTSTATUS = NTSTATUS(-2147483616i32 as _);
5419 pub const STATUS_MEDIA_WRITE_PROTECTED: NTSTATUS = NTSTATUS(-1073741662i32 as _);
5420 pub const STATUS_MEMBERS_PRIMARY_GROUP: NTSTATUS = NTSTATUS(-1073741529i32 as _);
5421 pub const STATUS_MEMBER_IN_ALIAS: NTSTATUS = NTSTATUS(-1073741485i32 as _);
5422 pub const STATUS_MEMBER_IN_GROUP: NTSTATUS = NTSTATUS(-1073741721i32 as _);
5423 pub const STATUS_MEMBER_NOT_IN_ALIAS: NTSTATUS = NTSTATUS(-1073741486i32 as _);
5424 pub const STATUS_MEMBER_NOT_IN_GROUP: NTSTATUS = NTSTATUS(-1073741720i32 as _);
5425 pub const STATUS_MEMORY_NOT_ALLOCATED: NTSTATUS = NTSTATUS(-1073741664i32 as _);
5426 pub const STATUS_MESSAGE_LOST: NTSTATUS = NTSTATUS(-1073740031i32 as _);
5427 pub const STATUS_MESSAGE_NOT_FOUND: NTSTATUS = NTSTATUS(-1073741559i32 as _);
5428 pub const STATUS_MESSAGE_RETRIEVED: NTSTATUS = NTSTATUS(1073741870i32 as _);
5429 pub const STATUS_MFT_TOO_FRAGMENTED: NTSTATUS = NTSTATUS(-1073741052i32 as _);
5430 pub const STATUS_MINIVERSION_INACCESSIBLE_FROM_SPECIFIED_TRANSACTION: NTSTATUS = NTSTATUS(-1072103388i32 as _);
5431 pub const STATUS_MISSING_SYSTEMFILE: NTSTATUS = NTSTATUS(-1073741501i32 as _);
5432 pub const STATUS_MONITOR_INVALID_DESCRIPTOR_CHECKSUM: NTSTATUS = NTSTATUS(-1071841277i32 as _);
5433 pub const STATUS_MONITOR_INVALID_DETAILED_TIMING_BLOCK: NTSTATUS = NTSTATUS(-1071841271i32 as _);
5434 pub const STATUS_MONITOR_INVALID_MANUFACTURE_DATE: NTSTATUS = NTSTATUS(-1071841270i32 as _);
5435 pub const STATUS_MONITOR_INVALID_SERIAL_NUMBER_MONDSC_BLOCK: NTSTATUS = NTSTATUS(-1071841274i32 as _);
5436 pub const STATUS_MONITOR_INVALID_STANDARD_TIMING_BLOCK: NTSTATUS = NTSTATUS(-1071841276i32 as _);
5437 pub const STATUS_MONITOR_INVALID_USER_FRIENDLY_MONDSC_BLOCK: NTSTATUS = NTSTATUS(-1071841273i32 as _);
5438 pub const STATUS_MONITOR_NO_DESCRIPTOR: NTSTATUS = NTSTATUS(-1071841279i32 as _);
5439 pub const STATUS_MONITOR_NO_MORE_DESCRIPTOR_DATA: NTSTATUS = NTSTATUS(-1071841272i32 as _);
5440 pub const STATUS_MONITOR_UNKNOWN_DESCRIPTOR_FORMAT: NTSTATUS = NTSTATUS(-1071841278i32 as _);
5441 pub const STATUS_MONITOR_WMI_DATABLOCK_REGISTRATION_FAILED: NTSTATUS = NTSTATUS(-1071841275i32 as _);
5442 pub const STATUS_MORE_ENTRIES: NTSTATUS = NTSTATUS(261i32 as _);
5443 pub const STATUS_MORE_PROCESSING_REQUIRED: NTSTATUS = NTSTATUS(-1073741802i32 as _);
5444 pub const STATUS_MOUNT_POINT_NOT_RESOLVED: NTSTATUS = NTSTATUS(-1073740952i32 as _);
5445 pub const STATUS_MP_PROCESSOR_MISMATCH: NTSTATUS = NTSTATUS(1073741865i32 as _);
5446 pub const STATUS_MUI_FILE_NOT_FOUND: NTSTATUS = NTSTATUS(-1073020927i32 as _);
5447 pub const STATUS_MUI_FILE_NOT_LOADED: NTSTATUS = NTSTATUS(-1073020922i32 as _);
5448 pub const STATUS_MUI_INVALID_FILE: NTSTATUS = NTSTATUS(-1073020926i32 as _);
5449 pub const STATUS_MUI_INVALID_LOCALE_NAME: NTSTATUS = NTSTATUS(-1073020924i32 as _);
5450 pub const STATUS_MUI_INVALID_RC_CONFIG: NTSTATUS = NTSTATUS(-1073020925i32 as _);
5451 pub const STATUS_MUI_INVALID_ULTIMATEFALLBACK_NAME: NTSTATUS = NTSTATUS(-1073020923i32 as _);
5452 pub const STATUS_MULTIPLE_FAULT_VIOLATION: NTSTATUS = NTSTATUS(-1073741080i32 as _);
5453 pub const STATUS_MUST_BE_KDC: NTSTATUS = NTSTATUS(-1073741067i32 as _);
5454 pub const STATUS_MUTANT_LIMIT_EXCEEDED: NTSTATUS = NTSTATUS(-1073741423i32 as _);
5455 pub const STATUS_MUTANT_NOT_OWNED: NTSTATUS = NTSTATUS(-1073741754i32 as _);
5456 pub const STATUS_MUTUAL_AUTHENTICATION_FAILED: NTSTATUS = NTSTATUS(-1073741117i32 as _);
5457 pub const STATUS_NAME_TOO_LONG: NTSTATUS = NTSTATUS(-1073741562i32 as _);
5458 pub const STATUS_NDIS_ADAPTER_NOT_FOUND: NTSTATUS = NTSTATUS(-1071448058i32 as _);
5459 pub const STATUS_NDIS_ADAPTER_NOT_READY: NTSTATUS = NTSTATUS(-1071448047i32 as _);
5460 pub const STATUS_NDIS_ADAPTER_REMOVED: NTSTATUS = NTSTATUS(-1071448040i32 as _);
5461 pub const STATUS_NDIS_ALREADY_MAPPED: NTSTATUS = NTSTATUS(-1071448035i32 as _);
5462 pub const STATUS_NDIS_BAD_CHARACTERISTICS: NTSTATUS = NTSTATUS(-1071448059i32 as _);
5463 pub const STATUS_NDIS_BAD_VERSION: NTSTATUS = NTSTATUS(-1071448060i32 as _);
5464 pub const STATUS_NDIS_BUFFER_TOO_SHORT: NTSTATUS = NTSTATUS(-1071448042i32 as _);
5465 pub const STATUS_NDIS_CLOSING: NTSTATUS = NTSTATUS(-1071448062i32 as _);
5466 pub const STATUS_NDIS_DEVICE_FAILED: NTSTATUS = NTSTATUS(-1071448056i32 as _);
5467 pub const STATUS_NDIS_DOT11_AP_BAND_CURRENTLY_NOT_AVAILABLE: NTSTATUS = NTSTATUS(-1071439866i32 as _);
5468 pub const STATUS_NDIS_DOT11_AP_BAND_NOT_ALLOWED: NTSTATUS = NTSTATUS(-1071439864i32 as _);
5469 pub const STATUS_NDIS_DOT11_AP_CHANNEL_CURRENTLY_NOT_AVAILABLE: NTSTATUS = NTSTATUS(-1071439867i32 as _);
5470 pub const STATUS_NDIS_DOT11_AP_CHANNEL_NOT_ALLOWED: NTSTATUS = NTSTATUS(-1071439865i32 as _);
5471 pub const STATUS_NDIS_DOT11_AUTO_CONFIG_ENABLED: NTSTATUS = NTSTATUS(-1071439872i32 as _);
5472 pub const STATUS_NDIS_DOT11_MEDIA_IN_USE: NTSTATUS = NTSTATUS(-1071439871i32 as _);
5473 pub const STATUS_NDIS_DOT11_POWER_STATE_INVALID: NTSTATUS = NTSTATUS(-1071439870i32 as _);
5474 pub const STATUS_NDIS_ERROR_READING_FILE: NTSTATUS = NTSTATUS(-1071448036i32 as _);
5475 pub const STATUS_NDIS_FILE_NOT_FOUND: NTSTATUS = NTSTATUS(-1071448037i32 as _);
5476 pub const STATUS_NDIS_GROUP_ADDRESS_IN_USE: NTSTATUS = NTSTATUS(-1071448038i32 as _);
5477 pub const STATUS_NDIS_INDICATION_REQUIRED: NTSTATUS = NTSTATUS(1076035585i32 as _);
5478 pub const STATUS_NDIS_INTERFACE_NOT_FOUND: NTSTATUS = NTSTATUS(-1071448021i32 as _);
5479 pub const STATUS_NDIS_INVALID_ADDRESS: NTSTATUS = NTSTATUS(-1071448030i32 as _);
5480 pub const STATUS_NDIS_INVALID_DATA: NTSTATUS = NTSTATUS(-1071448043i32 as _);
5481 pub const STATUS_NDIS_INVALID_DEVICE_REQUEST: NTSTATUS = NTSTATUS(-1071448048i32 as _);
5482 pub const STATUS_NDIS_INVALID_LENGTH: NTSTATUS = NTSTATUS(-1071448044i32 as _);
5483 pub const STATUS_NDIS_INVALID_OID: NTSTATUS = NTSTATUS(-1071448041i32 as _);
5484 pub const STATUS_NDIS_INVALID_PACKET: NTSTATUS = NTSTATUS(-1071448049i32 as _);
5485 pub const STATUS_NDIS_INVALID_PORT: NTSTATUS = NTSTATUS(-1071448019i32 as _);
5486 pub const STATUS_NDIS_INVALID_PORT_STATE: NTSTATUS = NTSTATUS(-1071448018i32 as _);
5487 pub const STATUS_NDIS_LOW_POWER_STATE: NTSTATUS = NTSTATUS(-1071448017i32 as _);
5488 pub const STATUS_NDIS_MEDIA_DISCONNECTED: NTSTATUS = NTSTATUS(-1071448033i32 as _);
5489 pub const STATUS_NDIS_MULTICAST_EXISTS: NTSTATUS = NTSTATUS(-1071448054i32 as _);
5490 pub const STATUS_NDIS_MULTICAST_FULL: NTSTATUS = NTSTATUS(-1071448055i32 as _);
5491 pub const STATUS_NDIS_MULTICAST_NOT_FOUND: NTSTATUS = NTSTATUS(-1071448053i32 as _);
5492 pub const STATUS_NDIS_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1071447877i32 as _);
5493 pub const STATUS_NDIS_NO_QUEUES: NTSTATUS = NTSTATUS(-1071448015i32 as _);
5494 pub const STATUS_NDIS_OFFLOAD_CONNECTION_REJECTED: NTSTATUS = NTSTATUS(-1071443950i32 as _);
5495 pub const STATUS_NDIS_OFFLOAD_PATH_REJECTED: NTSTATUS = NTSTATUS(-1071443949i32 as _);
5496 pub const STATUS_NDIS_OFFLOAD_POLICY: NTSTATUS = NTSTATUS(-1071443953i32 as _);
5497 pub const STATUS_NDIS_OPEN_FAILED: NTSTATUS = NTSTATUS(-1071448057i32 as _);
5498 pub const STATUS_NDIS_PAUSED: NTSTATUS = NTSTATUS(-1071448022i32 as _);
5499 pub const STATUS_NDIS_PM_PROTOCOL_OFFLOAD_LIST_FULL: NTSTATUS = NTSTATUS(-1071439868i32 as _);
5500 pub const STATUS_NDIS_PM_WOL_PATTERN_LIST_FULL: NTSTATUS = NTSTATUS(-1071439869i32 as _);
5501 pub const STATUS_NDIS_REINIT_REQUIRED: NTSTATUS = NTSTATUS(-1071448016i32 as _);
5502 pub const STATUS_NDIS_REQUEST_ABORTED: NTSTATUS = NTSTATUS(-1071448052i32 as _);
5503 pub const STATUS_NDIS_RESET_IN_PROGRESS: NTSTATUS = NTSTATUS(-1071448051i32 as _);
5504 pub const STATUS_NDIS_RESOURCE_CONFLICT: NTSTATUS = NTSTATUS(-1071448034i32 as _);
5505 pub const STATUS_NDIS_UNSUPPORTED_MEDIA: NTSTATUS = NTSTATUS(-1071448039i32 as _);
5506 pub const STATUS_NDIS_UNSUPPORTED_REVISION: NTSTATUS = NTSTATUS(-1071448020i32 as _);
5507 pub const STATUS_ND_QUEUE_OVERFLOW: NTSTATUS = NTSTATUS(-1073700847i32 as _);
5508 pub const STATUS_NEEDS_REGISTRATION: NTSTATUS = NTSTATUS(-1073740663i32 as _);
5509 pub const STATUS_NEEDS_REMEDIATION: NTSTATUS = NTSTATUS(-1073740702i32 as _);
5510 pub const STATUS_NETLOGON_NOT_STARTED: NTSTATUS = NTSTATUS(-1073741422i32 as _);
5511 pub const STATUS_NETWORK_ACCESS_DENIED: NTSTATUS = NTSTATUS(-1073741622i32 as _);
5512 pub const STATUS_NETWORK_ACCESS_DENIED_EDP: NTSTATUS = NTSTATUS(-1073740658i32 as _);
5513 pub const STATUS_NETWORK_BUSY: NTSTATUS = NTSTATUS(-1073741633i32 as _);
5514 pub const STATUS_NETWORK_CREDENTIAL_CONFLICT: NTSTATUS = NTSTATUS(-1073741419i32 as _);
5515 pub const STATUS_NETWORK_NAME_DELETED: NTSTATUS = NTSTATUS(-1073741623i32 as _);
5516 pub const STATUS_NETWORK_OPEN_RESTRICTION: NTSTATUS = NTSTATUS(-1073741311i32 as _);
5517 pub const STATUS_NETWORK_SESSION_EXPIRED: NTSTATUS = NTSTATUS(-1073740964i32 as _);
5518 pub const STATUS_NETWORK_UNREACHABLE: NTSTATUS = NTSTATUS(-1073741252i32 as _);
5519 pub const STATUS_NET_WRITE_FAULT: NTSTATUS = NTSTATUS(-1073741614i32 as _);
5520 pub const STATUS_NOINTERFACE: NTSTATUS = NTSTATUS(-1073741127i32 as _);
5521 pub const STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT: NTSTATUS = NTSTATUS(-1073741416i32 as _);
5522 pub const STATUS_NOLOGON_SERVER_TRUST_ACCOUNT: NTSTATUS = NTSTATUS(-1073741414i32 as _);
5523 pub const STATUS_NOLOGON_WORKSTATION_TRUST_ACCOUNT: NTSTATUS = NTSTATUS(-1073741415i32 as _);
5524 pub const STATUS_NONCONTINUABLE_EXCEPTION: NTSTATUS = NTSTATUS(-1073741787i32 as _);
5525 pub const STATUS_NONEXISTENT_EA_ENTRY: NTSTATUS = NTSTATUS(-1073741743i32 as _);
5526 pub const STATUS_NONEXISTENT_SECTOR: NTSTATUS = NTSTATUS(-1073741803i32 as _);
5527 pub const STATUS_NONE_MAPPED: NTSTATUS = NTSTATUS(-1073741709i32 as _);
5528 pub const STATUS_NOTHING_TO_TERMINATE: NTSTATUS = NTSTATUS(290i32 as _);
5529 pub const STATUS_NOTIFICATION_GUID_ALREADY_DEFINED: NTSTATUS = NTSTATUS(-1073741404i32 as _);
5530 pub const STATUS_NOTIFY_CLEANUP: NTSTATUS = NTSTATUS(267i32 as _);
5531 pub const STATUS_NOTIFY_ENUM_DIR: NTSTATUS = NTSTATUS(268i32 as _);
5532 pub const STATUS_NOT_ALLOWED_ON_SYSTEM_FILE: NTSTATUS = NTSTATUS(-1073741401i32 as _);
5533 pub const STATUS_NOT_ALL_ASSIGNED: NTSTATUS = NTSTATUS(262i32 as _);
5534 pub const STATUS_NOT_APPCONTAINER: NTSTATUS = NTSTATUS(-1073700352i32 as _);
5535 pub const STATUS_NOT_A_CLOUD_FILE: NTSTATUS = NTSTATUS(-1073688825i32 as _);
5536 pub const STATUS_NOT_A_CLOUD_SYNC_ROOT: NTSTATUS = NTSTATUS(-1073688802i32 as _);
5537 pub const STATUS_NOT_A_DAX_VOLUME: NTSTATUS = NTSTATUS(-1073740623i32 as _);
5538 pub const STATUS_NOT_A_DIRECTORY: NTSTATUS = NTSTATUS(-1073741565i32 as _);
5539 pub const STATUS_NOT_A_REPARSE_POINT: NTSTATUS = NTSTATUS(-1073741195i32 as _);
5540 pub const STATUS_NOT_A_TIERED_VOLUME: NTSTATUS = NTSTATUS(-1073740531i32 as _);
5541 pub const STATUS_NOT_CAPABLE: NTSTATUS = NTSTATUS(-1073740759i32 as _);
5542 pub const STATUS_NOT_CLIENT_SESSION: NTSTATUS = NTSTATUS(-1073741289i32 as _);
5543 pub const STATUS_NOT_COMMITTED: NTSTATUS = NTSTATUS(-1073741779i32 as _);
5544 pub const STATUS_NOT_DAX_MAPPABLE: NTSTATUS = NTSTATUS(-1073740622i32 as _);
5545 pub const STATUS_NOT_EXPORT_FORMAT: NTSTATUS = NTSTATUS(-1073741166i32 as _);
5546 pub const STATUS_NOT_FOUND: NTSTATUS = NTSTATUS(-1073741275i32 as _);
5547 pub const STATUS_NOT_GUI_PROCESS: NTSTATUS = NTSTATUS(-1073740538i32 as _);
5548 pub const STATUS_NOT_IMPLEMENTED: NTSTATUS = NTSTATUS(-1073741822i32 as _);
5549 pub const STATUS_NOT_LOCKED: NTSTATUS = NTSTATUS(-1073741782i32 as _);
5550 pub const STATUS_NOT_LOGON_PROCESS: NTSTATUS = NTSTATUS(-1073741587i32 as _);
5551 pub const STATUS_NOT_MAPPED_DATA: NTSTATUS = NTSTATUS(-1073741688i32 as _);
5552 pub const STATUS_NOT_MAPPED_VIEW: NTSTATUS = NTSTATUS(-1073741799i32 as _);
5553 pub const STATUS_NOT_READ_FROM_COPY: NTSTATUS = NTSTATUS(-1073740694i32 as _);
5554 pub const STATUS_NOT_REDUNDANT_STORAGE: NTSTATUS = NTSTATUS(-1073740679i32 as _);
5555 pub const STATUS_NOT_REGISTRY_FILE: NTSTATUS = NTSTATUS(-1073741476i32 as _);
5556 pub const STATUS_NOT_SAFE_MODE_DRIVER: NTSTATUS = NTSTATUS(-1073740961i32 as _);
5557 pub const STATUS_NOT_SAME_DEVICE: NTSTATUS = NTSTATUS(-1073741612i32 as _);
5558 pub const STATUS_NOT_SAME_OBJECT: NTSTATUS = NTSTATUS(-1073741396i32 as _);
5559 pub const STATUS_NOT_SERVER_SESSION: NTSTATUS = NTSTATUS(-1073741290i32 as _);
5560 pub const STATUS_NOT_SNAPSHOT_VOLUME: NTSTATUS = NTSTATUS(-1072103353i32 as _);
5561 pub const STATUS_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1073741637i32 as _);
5562 pub const STATUS_NOT_SUPPORTED_IN_APPCONTAINER: NTSTATUS = NTSTATUS(-1073700351i32 as _);
5563 pub const STATUS_NOT_SUPPORTED_ON_DAX: NTSTATUS = NTSTATUS(-1073740646i32 as _);
5564 pub const STATUS_NOT_SUPPORTED_ON_SBS: NTSTATUS = NTSTATUS(-1073741056i32 as _);
5565 pub const STATUS_NOT_SUPPORTED_WITH_AUDITING: NTSTATUS = NTSTATUS(-1073740595i32 as _);
5566 pub const STATUS_NOT_SUPPORTED_WITH_BTT: NTSTATUS = NTSTATUS(-1073740619i32 as _);
5567 pub const STATUS_NOT_SUPPORTED_WITH_BYPASSIO: NTSTATUS = NTSTATUS(-1073740601i32 as _);
5568 pub const STATUS_NOT_SUPPORTED_WITH_COMPRESSION: NTSTATUS = NTSTATUS(-1073740598i32 as _);
5569 pub const STATUS_NOT_SUPPORTED_WITH_DEDUPLICATION: NTSTATUS = NTSTATUS(-1073740596i32 as _);
5570 pub const STATUS_NOT_SUPPORTED_WITH_ENCRYPTION: NTSTATUS = NTSTATUS(-1073740599i32 as _);
5571 pub const STATUS_NOT_SUPPORTED_WITH_MONITORING: NTSTATUS = NTSTATUS(-1073740594i32 as _);
5572 pub const STATUS_NOT_SUPPORTED_WITH_REPLICATION: NTSTATUS = NTSTATUS(-1073740597i32 as _);
5573 pub const STATUS_NOT_SUPPORTED_WITH_SNAPSHOT: NTSTATUS = NTSTATUS(-1073740593i32 as _);
5574 pub const STATUS_NOT_SUPPORTED_WITH_VIRTUALIZATION: NTSTATUS = NTSTATUS(-1073740592i32 as _);
5575 pub const STATUS_NOT_TINY_STREAM: NTSTATUS = NTSTATUS(-1073741274i32 as _);
5576 pub const STATUS_NO_ACE_CONDITION: NTSTATUS = NTSTATUS(-2147483601i32 as _);
5577 pub const STATUS_NO_APPLICABLE_APP_LICENSES_FOUND: NTSTATUS = NTSTATUS(-1058406399i32 as _);
5578 pub const STATUS_NO_APPLICATION_PACKAGE: NTSTATUS = NTSTATUS(-1073741398i32 as _);
5579 pub const STATUS_NO_BROWSER_SERVERS_FOUND: NTSTATUS = NTSTATUS(-1073741284i32 as _);
5580 pub const STATUS_NO_BYPASSIO_DRIVER_SUPPORT: NTSTATUS = NTSTATUS(-1073740600i32 as _);
5581 pub const STATUS_NO_CALLBACK_ACTIVE: NTSTATUS = NTSTATUS(-1073741224i32 as _);
5582 pub const STATUS_NO_DATA_DETECTED: NTSTATUS = NTSTATUS(-2147483614i32 as _);
5583 pub const STATUS_NO_EAS_ON_FILE: NTSTATUS = NTSTATUS(-1073741742i32 as _);
5584 pub const STATUS_NO_EFS: NTSTATUS = NTSTATUS(-1073741170i32 as _);
5585 pub const STATUS_NO_EVENT_PAIR: NTSTATUS = NTSTATUS(-1073741490i32 as _);
5586 pub const STATUS_NO_GUID_TRANSLATION: NTSTATUS = NTSTATUS(-1073741556i32 as _);
5587 pub const STATUS_NO_IMPERSONATION_TOKEN: NTSTATUS = NTSTATUS(-1073741732i32 as _);
5588 pub const STATUS_NO_INHERITANCE: NTSTATUS = NTSTATUS(-2147483637i32 as _);
5589 pub const STATUS_NO_IP_ADDRESSES: NTSTATUS = NTSTATUS(-1073741071i32 as _);
5590 pub const STATUS_NO_KERB_KEY: NTSTATUS = NTSTATUS(-1073741022i32 as _);
5591 pub const STATUS_NO_KEY: NTSTATUS = NTSTATUS(-1073739508i32 as _);
5592 pub const STATUS_NO_LDT: NTSTATUS = NTSTATUS(-1073741545i32 as _);
5593 pub const STATUS_NO_LINK_TRACKING_IN_TRANSACTION: NTSTATUS = NTSTATUS(-1072103335i32 as _);
5594 pub const STATUS_NO_LOGON_SERVERS: NTSTATUS = NTSTATUS(-1073741730i32 as _);
5595 pub const STATUS_NO_LOG_SPACE: NTSTATUS = NTSTATUS(-1073741443i32 as _);
5596 pub const STATUS_NO_MATCH: NTSTATUS = NTSTATUS(-1073741198i32 as _);
5597 pub const STATUS_NO_MEDIA: NTSTATUS = NTSTATUS(-1073741448i32 as _);
5598 pub const STATUS_NO_MEDIA_IN_DEVICE: NTSTATUS = NTSTATUS(-1073741805i32 as _);
5599 pub const STATUS_NO_MEMORY: NTSTATUS = NTSTATUS(-1073741801i32 as _);
5600 pub const STATUS_NO_MORE_EAS: NTSTATUS = NTSTATUS(-2147483630i32 as _);
5601 pub const STATUS_NO_MORE_ENTRIES: NTSTATUS = NTSTATUS(-2147483622i32 as _);
5602 pub const STATUS_NO_MORE_FILES: NTSTATUS = NTSTATUS(-2147483642i32 as _);
5603 pub const STATUS_NO_MORE_MATCHES: NTSTATUS = NTSTATUS(-1073741197i32 as _);
5604 pub const STATUS_NO_PAGEFILE: NTSTATUS = NTSTATUS(-1073741497i32 as _);
5605 pub const STATUS_NO_PA_DATA: NTSTATUS = NTSTATUS(-1073741064i32 as _);
5606 pub const STATUS_NO_PHYSICALLY_ALIGNED_FREE_SPACE_FOUND: NTSTATUS = NTSTATUS(-1073740635i32 as _);
5607 pub const STATUS_NO_QUOTAS_FOR_ACCOUNT: NTSTATUS = NTSTATUS(269i32 as _);
5608 pub const STATUS_NO_RANGES_PROCESSED: NTSTATUS = NTSTATUS(-1073740704i32 as _);
5609 pub const STATUS_NO_RECOVERY_POLICY: NTSTATUS = NTSTATUS(-1073741171i32 as _);
5610 pub const STATUS_NO_S4U_PROT_SUPPORT: NTSTATUS = NTSTATUS(-1073740790i32 as _);
5611 pub const STATUS_NO_SAVEPOINT_WITH_OPEN_FILES: NTSTATUS = NTSTATUS(-1072103352i32 as _);
5612 pub const STATUS_NO_SECRETS: NTSTATUS = NTSTATUS(-1073740943i32 as _);
5613 pub const STATUS_NO_SECURITY_CONTEXT: NTSTATUS = NTSTATUS(-1073740755i32 as _);
5614 pub const STATUS_NO_SECURITY_ON_OBJECT: NTSTATUS = NTSTATUS(-1073741609i32 as _);
5615 pub const STATUS_NO_SPOOL_SPACE: NTSTATUS = NTSTATUS(-1073741625i32 as _);
5616 pub const STATUS_NO_SUCH_ALIAS: NTSTATUS = NTSTATUS(-1073741487i32 as _);
5617 pub const STATUS_NO_SUCH_DEVICE: NTSTATUS = NTSTATUS(-1073741810i32 as _);
5618 pub const STATUS_NO_SUCH_DOMAIN: NTSTATUS = NTSTATUS(-1073741601i32 as _);
5619 pub const STATUS_NO_SUCH_FILE: NTSTATUS = NTSTATUS(-1073741809i32 as _);
5620 pub const STATUS_NO_SUCH_GROUP: NTSTATUS = NTSTATUS(-1073741722i32 as _);
5621 pub const STATUS_NO_SUCH_MEMBER: NTSTATUS = NTSTATUS(-1073741446i32 as _);
5622 pub const STATUS_NO_SUCH_PACKAGE: NTSTATUS = NTSTATUS(-1073741570i32 as _);
5623 pub const STATUS_NO_SUCH_PRIVILEGE: NTSTATUS = NTSTATUS(-1073741728i32 as _);
5624 pub const STATUS_NO_TGT_REPLY: NTSTATUS = NTSTATUS(-1073741073i32 as _);
5625 pub const STATUS_NO_TOKEN: NTSTATUS = NTSTATUS(-1073741700i32 as _);
5626 pub const STATUS_NO_TRACKING_SERVICE: NTSTATUS = NTSTATUS(-1073741153i32 as _);
5627 pub const STATUS_NO_TRUST_LSA_SECRET: NTSTATUS = NTSTATUS(-1073741430i32 as _);
5628 pub const STATUS_NO_TRUST_SAM_ACCOUNT: NTSTATUS = NTSTATUS(-1073741429i32 as _);
5629 pub const STATUS_NO_TXF_METADATA: NTSTATUS = NTSTATUS(-2145845207i32 as _);
5630 pub const STATUS_NO_UNICODE_TRANSLATION: NTSTATUS = NTSTATUS(-1073740009i32 as _);
5631 pub const STATUS_NO_USER_KEYS: NTSTATUS = NTSTATUS(-1073741168i32 as _);
5632 pub const STATUS_NO_USER_SESSION_KEY: NTSTATUS = NTSTATUS(-1073741310i32 as _);
5633 pub const STATUS_NO_WORK_DONE: NTSTATUS = NTSTATUS(-2147483598i32 as _);
5634 pub const STATUS_NO_YIELD_PERFORMED: NTSTATUS = NTSTATUS(1073741860i32 as _);
5635 pub const STATUS_NTLM_BLOCKED: NTSTATUS = NTSTATUS(-1073740776i32 as _);
5636 pub const STATUS_NT_CROSS_ENCRYPTION_REQUIRED: NTSTATUS = NTSTATUS(-1073741475i32 as _);
5637 pub const STATUS_NULL_LM_PASSWORD: NTSTATUS = NTSTATUS(1073741837i32 as _);
5638 pub const STATUS_OBJECTID_EXISTS: NTSTATUS = NTSTATUS(-1073741269i32 as _);
5639 pub const STATUS_OBJECTID_NOT_FOUND: NTSTATUS = NTSTATUS(-1073741072i32 as _);
5640 pub const STATUS_OBJECT_IS_IMMUTABLE: NTSTATUS = NTSTATUS(-1073740610i32 as _);
5641 pub const STATUS_OBJECT_NAME_COLLISION: NTSTATUS = NTSTATUS(-1073741771i32 as _);
5642 pub const STATUS_OBJECT_NAME_EXISTS: NTSTATUS = NTSTATUS(1073741824i32 as _);
5643 pub const STATUS_OBJECT_NAME_INVALID: NTSTATUS = NTSTATUS(-1073741773i32 as _);
5644 pub const STATUS_OBJECT_NAME_NOT_FOUND: NTSTATUS = NTSTATUS(-1073741772i32 as _);
5645 pub const STATUS_OBJECT_NOT_EXTERNALLY_BACKED: NTSTATUS = NTSTATUS(-1073740691i32 as _);
5646 pub const STATUS_OBJECT_NO_LONGER_EXISTS: NTSTATUS = NTSTATUS(-1072103391i32 as _);
5647 pub const STATUS_OBJECT_PATH_INVALID: NTSTATUS = NTSTATUS(-1073741767i32 as _);
5648 pub const STATUS_OBJECT_PATH_NOT_FOUND: NTSTATUS = NTSTATUS(-1073741766i32 as _);
5649 pub const STATUS_OBJECT_PATH_SYNTAX_BAD: NTSTATUS = NTSTATUS(-1073741765i32 as _);
5650 pub const STATUS_OBJECT_TYPE_MISMATCH: NTSTATUS = NTSTATUS(-1073741788i32 as _);
5651 pub const STATUS_OFFLOAD_READ_FILE_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1073700189i32 as _);
5652 pub const STATUS_OFFLOAD_READ_FLT_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1073700191i32 as _);
5653 pub const STATUS_OFFLOAD_WRITE_FILE_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1073700188i32 as _);
5654 pub const STATUS_OFFLOAD_WRITE_FLT_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1073700190i32 as _);
5655 pub const STATUS_ONLY_IF_CONNECTED: NTSTATUS = NTSTATUS(-1073741108i32 as _);
5656 pub const STATUS_OPEN_FAILED: NTSTATUS = NTSTATUS(-1073741514i32 as _);
5657 pub const STATUS_OPERATION_IN_PROGRESS: NTSTATUS = NTSTATUS(-1073740682i32 as _);
5658 pub const STATUS_OPERATION_NOT_SUPPORTED_IN_TRANSACTION: NTSTATUS = NTSTATUS(-1072103334i32 as _);
5659 pub const STATUS_OPLOCK_BREAK_IN_PROGRESS: NTSTATUS = NTSTATUS(264i32 as _);
5660 pub const STATUS_OPLOCK_HANDLE_CLOSED: NTSTATUS = NTSTATUS(534i32 as _);
5661 pub const STATUS_OPLOCK_NOT_GRANTED: NTSTATUS = NTSTATUS(-1073741598i32 as _);
5662 pub const STATUS_OPLOCK_SWITCHED_TO_NEW_HANDLE: NTSTATUS = NTSTATUS(533i32 as _);
5663 pub const STATUS_ORDINAL_NOT_FOUND: NTSTATUS = NTSTATUS(-1073741512i32 as _);
5664 pub const STATUS_ORPHAN_NAME_EXHAUSTED: NTSTATUS = NTSTATUS(-1073739762i32 as _);
5665 pub const STATUS_PACKAGE_NOT_AVAILABLE: NTSTATUS = NTSTATUS(-1073740649i32 as _);
5666 pub const STATUS_PACKAGE_UPDATING: NTSTATUS = NTSTATUS(-1073740695i32 as _);
5667 pub const STATUS_PAGEFILE_CREATE_FAILED: NTSTATUS = NTSTATUS(-1073741498i32 as _);
5668 pub const STATUS_PAGEFILE_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1073740603i32 as _);
5669 pub const STATUS_PAGEFILE_QUOTA: NTSTATUS = NTSTATUS(-1073741817i32 as _);
5670 pub const STATUS_PAGEFILE_QUOTA_EXCEEDED: NTSTATUS = NTSTATUS(-1073741524i32 as _);
5671 pub const STATUS_PAGE_FAULT_COPY_ON_WRITE: NTSTATUS = NTSTATUS(274i32 as _);
5672 pub const STATUS_PAGE_FAULT_DEMAND_ZERO: NTSTATUS = NTSTATUS(273i32 as _);
5673 pub const STATUS_PAGE_FAULT_GUARD_PAGE: NTSTATUS = NTSTATUS(275i32 as _);
5674 pub const STATUS_PAGE_FAULT_PAGING_FILE: NTSTATUS = NTSTATUS(276i32 as _);
5675 pub const STATUS_PAGE_FAULT_TRANSITION: NTSTATUS = NTSTATUS(272i32 as _);
5676 pub const STATUS_PARAMETER_QUOTA_EXCEEDED: NTSTATUS = NTSTATUS(-1073740784i32 as _);
5677 pub const STATUS_PARITY_ERROR: NTSTATUS = NTSTATUS(-1073741781i32 as _);
5678 pub const STATUS_PARTIAL_COPY: NTSTATUS = NTSTATUS(-2147483635i32 as _);
5679 pub const STATUS_PARTITION_FAILURE: NTSTATUS = NTSTATUS(-1073741454i32 as _);
5680 pub const STATUS_PARTITION_TERMINATING: NTSTATUS = NTSTATUS(-1073740640i32 as _);
5681 pub const STATUS_PASSWORD_CHANGE_REQUIRED: NTSTATUS = NTSTATUS(-1073741044i32 as _);
5682 pub const STATUS_PASSWORD_RESTRICTION: NTSTATUS = NTSTATUS(-1073741716i32 as _);
5683 pub const STATUS_PATCH_CONFLICT: NTSTATUS = NTSTATUS(-1073740628i32 as _);
5684 pub const STATUS_PATCH_DEFERRED: NTSTATUS = NTSTATUS(1073741879i32 as _);
5685 pub const STATUS_PATH_NOT_COVERED: NTSTATUS = NTSTATUS(-1073741225i32 as _);
5686 pub const STATUS_PCP_ATTESTATION_CHALLENGE_NOT_SET: NTSTATUS = NTSTATUS(-1071046638i32 as _);
5687 pub const STATUS_PCP_AUTHENTICATION_FAILED: NTSTATUS = NTSTATUS(-1071046648i32 as _);
5688 pub const STATUS_PCP_AUTHENTICATION_IGNORED: NTSTATUS = NTSTATUS(-1071046647i32 as _);
5689 pub const STATUS_PCP_BUFFER_LENGTH_MISMATCH: NTSTATUS = NTSTATUS(-1071046626i32 as _);
5690 pub const STATUS_PCP_BUFFER_TOO_SMALL: NTSTATUS = NTSTATUS(-1071046650i32 as _);
5691 pub const STATUS_PCP_CLAIM_TYPE_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1071046628i32 as _);
5692 pub const STATUS_PCP_DEVICE_NOT_FOUND: NTSTATUS = NTSTATUS(-1071046643i32 as _);
5693 pub const STATUS_PCP_DEVICE_NOT_READY: NTSTATUS = NTSTATUS(-1071046655i32 as _);
5694 pub const STATUS_PCP_ERROR_MASK: NTSTATUS = NTSTATUS(-1071046656i32 as _);
5695 pub const STATUS_PCP_FLAG_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1071046652i32 as _);
5696 pub const STATUS_PCP_IFX_RSA_KEY_CREATION_BLOCKED: NTSTATUS = NTSTATUS(-1071046625i32 as _);
5697 pub const STATUS_PCP_INTERNAL_ERROR: NTSTATUS = NTSTATUS(-1071046649i32 as _);
5698 pub const STATUS_PCP_INVALID_HANDLE: NTSTATUS = NTSTATUS(-1071046654i32 as _);
5699 pub const STATUS_PCP_INVALID_PARAMETER: NTSTATUS = NTSTATUS(-1071046653i32 as _);
5700 pub const STATUS_PCP_KEY_ALREADY_FINALIZED: NTSTATUS = NTSTATUS(-1071046636i32 as _);
5701 pub const STATUS_PCP_KEY_HANDLE_INVALIDATED: NTSTATUS = NTSTATUS(-1071046622i32 as _);
5702 pub const STATUS_PCP_KEY_NOT_AIK: NTSTATUS = NTSTATUS(-1071046631i32 as _);
5703 pub const STATUS_PCP_KEY_NOT_AUTHENTICATED: NTSTATUS = NTSTATUS(-1071046632i32 as _);
5704 pub const STATUS_PCP_KEY_NOT_FINALIZED: NTSTATUS = NTSTATUS(-1071046639i32 as _);
5705 pub const STATUS_PCP_KEY_NOT_LOADED: NTSTATUS = NTSTATUS(-1071046641i32 as _);
5706 pub const STATUS_PCP_KEY_NOT_SIGNING_KEY: NTSTATUS = NTSTATUS(-1071046630i32 as _);
5707 pub const STATUS_PCP_KEY_USAGE_POLICY_INVALID: NTSTATUS = NTSTATUS(-1071046634i32 as _);
5708 pub const STATUS_PCP_KEY_USAGE_POLICY_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1071046635i32 as _);
5709 pub const STATUS_PCP_LOCKED_OUT: NTSTATUS = NTSTATUS(-1071046629i32 as _);
5710 pub const STATUS_PCP_NOT_PCR_BOUND: NTSTATUS = NTSTATUS(-1071046637i32 as _);
5711 pub const STATUS_PCP_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1071046651i32 as _);
5712 pub const STATUS_PCP_NO_KEY_CERTIFICATION: NTSTATUS = NTSTATUS(-1071046640i32 as _);
5713 pub const STATUS_PCP_POLICY_NOT_FOUND: NTSTATUS = NTSTATUS(-1071046646i32 as _);
5714 pub const STATUS_PCP_PROFILE_NOT_FOUND: NTSTATUS = NTSTATUS(-1071046645i32 as _);
5715 pub const STATUS_PCP_RAW_POLICY_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1071046623i32 as _);
5716 pub const STATUS_PCP_SOFT_KEY_ERROR: NTSTATUS = NTSTATUS(-1071046633i32 as _);
5717 pub const STATUS_PCP_TICKET_MISSING: NTSTATUS = NTSTATUS(-1071046624i32 as _);
5718 pub const STATUS_PCP_TPM_VERSION_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1071046627i32 as _);
5719 pub const STATUS_PCP_UNSUPPORTED_PSS_SALT: NTSTATUS = NTSTATUS(1076437027i32 as _);
5720 pub const STATUS_PCP_VALIDATION_FAILED: NTSTATUS = NTSTATUS(-1071046644i32 as _);
5721 pub const STATUS_PCP_WRONG_PARENT: NTSTATUS = NTSTATUS(-1071046642i32 as _);
5722 pub const STATUS_PENDING: NTSTATUS = NTSTATUS(259i32 as _);
5723 pub const STATUS_PER_USER_TRUST_QUOTA_EXCEEDED: NTSTATUS = NTSTATUS(-1073740799i32 as _);
5724 pub const STATUS_PIPE_BROKEN: NTSTATUS = NTSTATUS(-1073741493i32 as _);
5725 pub const STATUS_PIPE_BUSY: NTSTATUS = NTSTATUS(-1073741650i32 as _);
5726 pub const STATUS_PIPE_CLOSING: NTSTATUS = NTSTATUS(-1073741647i32 as _);
5727 pub const STATUS_PIPE_CONNECTED: NTSTATUS = NTSTATUS(-1073741646i32 as _);
5728 pub const STATUS_PIPE_DISCONNECTED: NTSTATUS = NTSTATUS(-1073741648i32 as _);
5729 pub const STATUS_PIPE_EMPTY: NTSTATUS = NTSTATUS(-1073741607i32 as _);
5730 pub const STATUS_PIPE_LISTENING: NTSTATUS = NTSTATUS(-1073741645i32 as _);
5731 pub const STATUS_PIPE_NOT_AVAILABLE: NTSTATUS = NTSTATUS(-1073741652i32 as _);
5732 pub const STATUS_PKINIT_CLIENT_FAILURE: NTSTATUS = NTSTATUS(-1073740916i32 as _);
5733 pub const STATUS_PKINIT_FAILURE: NTSTATUS = NTSTATUS(-1073741024i32 as _);
5734 pub const STATUS_PKINIT_NAME_MISMATCH: NTSTATUS = NTSTATUS(-1073741063i32 as _);
5735 pub const STATUS_PKU2U_CERT_FAILURE: NTSTATUS = NTSTATUS(-1073740753i32 as _);
5736 pub const STATUS_PLATFORM_MANIFEST_BINARY_ID_NOT_FOUND: NTSTATUS = NTSTATUS(-1058340859i32 as _);
5737 pub const STATUS_PLATFORM_MANIFEST_CATALOG_NOT_AUTHORIZED: NTSTATUS = NTSTATUS(-1058340860i32 as _);
5738 pub const STATUS_PLATFORM_MANIFEST_FILE_NOT_AUTHORIZED: NTSTATUS = NTSTATUS(-1058340861i32 as _);
5739 pub const STATUS_PLATFORM_MANIFEST_INVALID: NTSTATUS = NTSTATUS(-1058340862i32 as _);
5740 pub const STATUS_PLATFORM_MANIFEST_NOT_ACTIVE: NTSTATUS = NTSTATUS(-1058340858i32 as _);
5741 pub const STATUS_PLATFORM_MANIFEST_NOT_AUTHORIZED: NTSTATUS = NTSTATUS(-1058340863i32 as _);
5742 pub const STATUS_PLATFORM_MANIFEST_NOT_SIGNED: NTSTATUS = NTSTATUS(-1058340857i32 as _);
5743 pub const STATUS_PLUGPLAY_NO_DEVICE: NTSTATUS = NTSTATUS(-1073741218i32 as _);
5744 pub const STATUS_PLUGPLAY_QUERY_VETOED: NTSTATUS = NTSTATUS(-2147483608i32 as _);
5745 pub const STATUS_PNP_BAD_MPS_TABLE: NTSTATUS = NTSTATUS(-1073479627i32 as _);
5746 pub const STATUS_PNP_DEVICE_CONFIGURATION_PENDING: NTSTATUS = NTSTATUS(-1073740651i32 as _);
5747 pub const STATUS_PNP_DRIVER_CONFIGURATION_INCOMPLETE: NTSTATUS = NTSTATUS(-1073740653i32 as _);
5748 pub const STATUS_PNP_DRIVER_CONFIGURATION_NOT_FOUND: NTSTATUS = NTSTATUS(-1073740654i32 as _);
5749 pub const STATUS_PNP_DRIVER_PACKAGE_NOT_FOUND: NTSTATUS = NTSTATUS(-1073740655i32 as _);
5750 pub const STATUS_PNP_FUNCTION_DRIVER_REQUIRED: NTSTATUS = NTSTATUS(-1073740652i32 as _);
5751 pub const STATUS_PNP_INVALID_ID: NTSTATUS = NTSTATUS(-1073479624i32 as _);
5752 pub const STATUS_PNP_IRQ_TRANSLATION_FAILED: NTSTATUS = NTSTATUS(-1073479625i32 as _);
5753 pub const STATUS_PNP_NO_COMPAT_DRIVERS: NTSTATUS = NTSTATUS(-1073740656i32 as _);
5754 pub const STATUS_PNP_REBOOT_REQUIRED: NTSTATUS = NTSTATUS(-1073741102i32 as _);
5755 pub const STATUS_PNP_RESTART_ENUMERATION: NTSTATUS = NTSTATUS(-1073741106i32 as _);
5756 pub const STATUS_PNP_TRANSLATION_FAILED: NTSTATUS = NTSTATUS(-1073479626i32 as _);
5757 pub const STATUS_POLICY_OBJECT_NOT_FOUND: NTSTATUS = NTSTATUS(-1073741158i32 as _);
5758 pub const STATUS_POLICY_ONLY_IN_DS: NTSTATUS = NTSTATUS(-1073741157i32 as _);
5759 pub const STATUS_PORT_ALREADY_HAS_COMPLETION_LIST: NTSTATUS = NTSTATUS(-1073740006i32 as _);
5760 pub const STATUS_PORT_ALREADY_SET: NTSTATUS = NTSTATUS(-1073741752i32 as _);
5761 pub const STATUS_PORT_CLOSED: NTSTATUS = NTSTATUS(-1073740032i32 as _);
5762 pub const STATUS_PORT_CONNECTION_REFUSED: NTSTATUS = NTSTATUS(-1073741759i32 as _);
5763 pub const STATUS_PORT_DISCONNECTED: NTSTATUS = NTSTATUS(-1073741769i32 as _);
5764 pub const STATUS_PORT_DO_NOT_DISTURB: NTSTATUS = NTSTATUS(-1073741770i32 as _);
5765 pub const STATUS_PORT_MESSAGE_TOO_LONG: NTSTATUS = NTSTATUS(-1073741777i32 as _);
5766 pub const STATUS_PORT_NOT_SET: NTSTATUS = NTSTATUS(-1073740973i32 as _);
5767 pub const STATUS_PORT_UNREACHABLE: NTSTATUS = NTSTATUS(-1073741249i32 as _);
5768 pub const STATUS_POSSIBLE_DEADLOCK: NTSTATUS = NTSTATUS(-1073741420i32 as _);
5769 pub const STATUS_POWER_STATE_INVALID: NTSTATUS = NTSTATUS(-1073741101i32 as _);
5770 pub const STATUS_PREDEFINED_HANDLE: NTSTATUS = NTSTATUS(1073741846i32 as _);
5771 pub const STATUS_PRENT4_MACHINE_ACCOUNT: NTSTATUS = NTSTATUS(-1073740969i32 as _);
5772 pub const STATUS_PRIMARY_TRANSPORT_CONNECT_FAILED: NTSTATUS = NTSTATUS(270i32 as _);
5773 pub const STATUS_PRINT_CANCELLED: NTSTATUS = NTSTATUS(-1073741624i32 as _);
5774 pub const STATUS_PRINT_QUEUE_FULL: NTSTATUS = NTSTATUS(-1073741626i32 as _);
5775 pub const STATUS_PRIVILEGED_INSTRUCTION: NTSTATUS = NTSTATUS(-1073741674i32 as _);
5776 pub const STATUS_PRIVILEGE_NOT_HELD: NTSTATUS = NTSTATUS(-1073741727i32 as _);
5777 pub const STATUS_PROACTIVE_SCAN_IN_PROGRESS: NTSTATUS = NTSTATUS(-1073739761i32 as _);
5778 pub const STATUS_PROCEDURE_NOT_FOUND: NTSTATUS = NTSTATUS(-1073741702i32 as _);
5779 pub const STATUS_PROCESS_CLONED: NTSTATUS = NTSTATUS(297i32 as _);
5780 pub const STATUS_PROCESS_IN_JOB: NTSTATUS = NTSTATUS(292i32 as _);
5781 pub const STATUS_PROCESS_IS_PROTECTED: NTSTATUS = NTSTATUS(-1073740014i32 as _);
5782 pub const STATUS_PROCESS_IS_TERMINATING: NTSTATUS = NTSTATUS(-1073741558i32 as _);
5783 pub const STATUS_PROCESS_NOT_IN_JOB: NTSTATUS = NTSTATUS(291i32 as _);
5784 pub const STATUS_PROFILING_AT_LIMIT: NTSTATUS = NTSTATUS(-1073741613i32 as _);
5785 pub const STATUS_PROFILING_NOT_STARTED: NTSTATUS = NTSTATUS(-1073741641i32 as _);
5786 pub const STATUS_PROFILING_NOT_STOPPED: NTSTATUS = NTSTATUS(-1073741640i32 as _);
5787 pub const STATUS_PROPSET_NOT_FOUND: NTSTATUS = NTSTATUS(-1073741264i32 as _);
5788 pub const STATUS_PROTOCOL_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1073700845i32 as _);
5789 pub const STATUS_PROTOCOL_UNREACHABLE: NTSTATUS = NTSTATUS(-1073741250i32 as _);
5790 pub const STATUS_PTE_CHANGED: NTSTATUS = NTSTATUS(-1073740748i32 as _);
5791 pub const STATUS_PURGE_FAILED: NTSTATUS = NTSTATUS(-1073740747i32 as _);
5792 pub const STATUS_PWD_HISTORY_CONFLICT: NTSTATUS = NTSTATUS(-1073741220i32 as _);
5793 pub const STATUS_PWD_TOO_LONG: NTSTATUS = NTSTATUS(-1073741190i32 as _);
5794 pub const STATUS_PWD_TOO_RECENT: NTSTATUS = NTSTATUS(-1073741221i32 as _);
5795 pub const STATUS_PWD_TOO_SHORT: NTSTATUS = NTSTATUS(-1073741222i32 as _);
5796 pub const STATUS_QUERY_STORAGE_ERROR: NTSTATUS = NTSTATUS(-2143682559i32 as _);
5797 pub const STATUS_QUIC_ALPN_NEG_FAILURE: NTSTATUS = NTSTATUS(-1071382521i32 as _);
5798 pub const STATUS_QUIC_CONNECTION_IDLE: NTSTATUS = NTSTATUS(-1071382523i32 as _);
5799 pub const STATUS_QUIC_CONNECTION_TIMEOUT: NTSTATUS = NTSTATUS(-1071382522i32 as _);
5800 pub const STATUS_QUIC_HANDSHAKE_FAILURE: NTSTATUS = NTSTATUS(-1071382528i32 as _);
5801 pub const STATUS_QUIC_INTERNAL_ERROR: NTSTATUS = NTSTATUS(-1071382525i32 as _);
5802 pub const STATUS_QUIC_PROTOCOL_VIOLATION: NTSTATUS = NTSTATUS(-1071382524i32 as _);
5803 pub const STATUS_QUIC_USER_CANCELED: NTSTATUS = NTSTATUS(-1071382526i32 as _);
5804 pub const STATUS_QUIC_VER_NEG_FAILURE: NTSTATUS = NTSTATUS(-1071382527i32 as _);
5805 pub const STATUS_QUOTA_ACTIVITY: NTSTATUS = NTSTATUS(-1073740662i32 as _);
5806 pub const STATUS_QUOTA_EXCEEDED: NTSTATUS = NTSTATUS(-1073741756i32 as _);
5807 pub const STATUS_QUOTA_LIST_INCONSISTENT: NTSTATUS = NTSTATUS(-1073741210i32 as _);
5808 pub const STATUS_QUOTA_NOT_ENABLED: NTSTATUS = NTSTATUS(-1073741399i32 as _);
5809 pub const STATUS_RANGE_LIST_CONFLICT: NTSTATUS = NTSTATUS(-1073741182i32 as _);
5810 pub const STATUS_RANGE_NOT_FOUND: NTSTATUS = NTSTATUS(-1073741172i32 as _);
5811 pub const STATUS_RANGE_NOT_LOCKED: NTSTATUS = NTSTATUS(-1073741698i32 as _);
5812 pub const STATUS_RDBSS_CONTINUE_OPERATION: NTSTATUS = NTSTATUS(-1069481982i32 as _);
5813 pub const STATUS_RDBSS_POST_OPERATION: NTSTATUS = NTSTATUS(-1069481981i32 as _);
5814 pub const STATUS_RDBSS_RESTART_OPERATION: NTSTATUS = NTSTATUS(-1069481983i32 as _);
5815 pub const STATUS_RDBSS_RETRY_LOOKUP: NTSTATUS = NTSTATUS(-1069481980i32 as _);
5816 pub const STATUS_RDP_PROTOCOL_ERROR: NTSTATUS = NTSTATUS(-1073086414i32 as _);
5817 pub const STATUS_RECEIVE_EXPEDITED: NTSTATUS = NTSTATUS(1073741840i32 as _);
5818 pub const STATUS_RECEIVE_PARTIAL: NTSTATUS = NTSTATUS(1073741839i32 as _);
5819 pub const STATUS_RECEIVE_PARTIAL_EXPEDITED: NTSTATUS = NTSTATUS(1073741841i32 as _);
5820 pub const STATUS_RECOVERABLE_BUGCHECK: NTSTATUS = NTSTATUS(-2147483596i32 as _);
5821 pub const STATUS_RECOVERY_FAILURE: NTSTATUS = NTSTATUS(-1073741273i32 as _);
5822 pub const STATUS_RECOVERY_NOT_NEEDED: NTSTATUS = NTSTATUS(1075380276i32 as _);
5823 pub const STATUS_RECURSIVE_DISPATCH: NTSTATUS = NTSTATUS(-1073740028i32 as _);
5824 pub const STATUS_REDIRECTOR_HAS_OPEN_HANDLES: NTSTATUS = NTSTATUS(-2147483613i32 as _);
5825 pub const STATUS_REDIRECTOR_NOT_STARTED: NTSTATUS = NTSTATUS(-1073741573i32 as _);
5826 pub const STATUS_REDIRECTOR_PAUSED: NTSTATUS = NTSTATUS(-1073741615i32 as _);
5827 pub const STATUS_REDIRECTOR_STARTED: NTSTATUS = NTSTATUS(-1073741572i32 as _);
5828 pub const STATUS_REGISTRY_CORRUPT: NTSTATUS = NTSTATUS(-1073741492i32 as _);
5829 pub const STATUS_REGISTRY_HIVE_RECOVERED: NTSTATUS = NTSTATUS(-2147483606i32 as _);
5830 pub const STATUS_REGISTRY_IO_FAILED: NTSTATUS = NTSTATUS(-1073741491i32 as _);
5831 pub const STATUS_REGISTRY_QUOTA_LIMIT: NTSTATUS = NTSTATUS(-1073741226i32 as _);
5832 pub const STATUS_REGISTRY_RECOVERED: NTSTATUS = NTSTATUS(1073741833i32 as _);
5833 pub const STATUS_REG_NAT_CONSUMPTION: NTSTATUS = NTSTATUS(-1073741111i32 as _);
5834 pub const STATUS_REINITIALIZATION_NEEDED: NTSTATUS = NTSTATUS(-1073741177i32 as _);
5835 pub const STATUS_REMOTE_DISCONNECT: NTSTATUS = NTSTATUS(-1073741508i32 as _);
5836 pub const STATUS_REMOTE_FILE_VERSION_MISMATCH: NTSTATUS = NTSTATUS(-1072103412i32 as _);
5837 pub const STATUS_REMOTE_NOT_LISTENING: NTSTATUS = NTSTATUS(-1073741636i32 as _);
5838 pub const STATUS_REMOTE_RESOURCES: NTSTATUS = NTSTATUS(-1073741507i32 as _);
5839 pub const STATUS_REMOTE_SESSION_LIMIT: NTSTATUS = NTSTATUS(-1073741418i32 as _);
5840 pub const STATUS_REMOTE_STORAGE_MEDIA_ERROR: NTSTATUS = NTSTATUS(-1073741154i32 as _);
5841 pub const STATUS_REMOTE_STORAGE_NOT_ACTIVE: NTSTATUS = NTSTATUS(-1073741155i32 as _);
5842 pub const STATUS_REPAIR_NEEDED: NTSTATUS = NTSTATUS(-1073741400i32 as _);
5843 pub const STATUS_REPARSE: NTSTATUS = NTSTATUS(260i32 as _);
5844 pub const STATUS_REPARSE_ATTRIBUTE_CONFLICT: NTSTATUS = NTSTATUS(-1073741134i32 as _);
5845 pub const STATUS_REPARSE_GLOBAL: NTSTATUS = NTSTATUS(872i32 as _);
5846 pub const STATUS_REPARSE_OBJECT: NTSTATUS = NTSTATUS(280i32 as _);
5847 pub const STATUS_REPARSE_POINT_ENCOUNTERED: NTSTATUS = NTSTATUS(-1073740533i32 as _);
5848 pub const STATUS_REPARSE_POINT_NOT_RESOLVED: NTSTATUS = NTSTATUS(-1073741184i32 as _);
5849 pub const STATUS_REPLY_MESSAGE_MISMATCH: NTSTATUS = NTSTATUS(-1073741281i32 as _);
5850 pub const STATUS_REQUEST_ABORTED: NTSTATUS = NTSTATUS(-1073741248i32 as _);
5851 pub const STATUS_REQUEST_CANCELED: NTSTATUS = NTSTATUS(-1073740029i32 as _);
5852 pub const STATUS_REQUEST_NOT_ACCEPTED: NTSTATUS = NTSTATUS(-1073741616i32 as _);
5853 pub const STATUS_REQUEST_OUT_OF_SEQUENCE: NTSTATUS = NTSTATUS(-1073740758i32 as _);
5854 pub const STATUS_REQUEST_PAUSED: NTSTATUS = NTSTATUS(-1073740711i32 as _);
5855 pub const STATUS_RESIDENT_FILE_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1073740678i32 as _);
5856 pub const STATUS_RESOURCEMANAGER_NOT_FOUND: NTSTATUS = NTSTATUS(-1072103345i32 as _);
5857 pub const STATUS_RESOURCEMANAGER_READ_ONLY: NTSTATUS = NTSTATUS(514i32 as _);
5858 pub const STATUS_RESOURCE_DATA_NOT_FOUND: NTSTATUS = NTSTATUS(-1073741687i32 as _);
5859 pub const STATUS_RESOURCE_ENUM_USER_STOP: NTSTATUS = NTSTATUS(-1073020921i32 as _);
5860 pub const STATUS_RESOURCE_IN_USE: NTSTATUS = NTSTATUS(-1073740024i32 as _);
5861 pub const STATUS_RESOURCE_LANG_NOT_FOUND: NTSTATUS = NTSTATUS(-1073741308i32 as _);
5862 pub const STATUS_RESOURCE_NAME_NOT_FOUND: NTSTATUS = NTSTATUS(-1073741685i32 as _);
5863 pub const STATUS_RESOURCE_NOT_OWNED: NTSTATUS = NTSTATUS(-1073741212i32 as _);
5864 pub const STATUS_RESOURCE_REQUIREMENTS_CHANGED: NTSTATUS = NTSTATUS(281i32 as _);
5865 pub const STATUS_RESOURCE_TYPE_NOT_FOUND: NTSTATUS = NTSTATUS(-1073741686i32 as _);
5866 pub const STATUS_RESTART_BOOT_APPLICATION: NTSTATUS = NTSTATUS(-1073740717i32 as _);
5867 pub const STATUS_RESUME_HIBERNATION: NTSTATUS = NTSTATUS(1073741867i32 as _);
5868 pub const STATUS_RETRY: NTSTATUS = NTSTATUS(-1073741267i32 as _);
5869 pub const STATUS_RETURN_ADDRESS_HIJACK_ATTEMPT: NTSTATUS = NTSTATUS(-2147483597i32 as _);
5870 pub const STATUS_REVISION_MISMATCH: NTSTATUS = NTSTATUS(-1073741735i32 as _);
5871 pub const STATUS_REVOCATION_OFFLINE_C: NTSTATUS = NTSTATUS(-1073740917i32 as _);
5872 pub const STATUS_REVOCATION_OFFLINE_KDC: NTSTATUS = NTSTATUS(-1073740788i32 as _);
5873 pub const STATUS_RING_NEWLY_EMPTY: NTSTATUS = NTSTATUS(531i32 as _);
5874 pub const STATUS_RING_PREVIOUSLY_ABOVE_QUOTA: NTSTATUS = NTSTATUS(530i32 as _);
5875 pub const STATUS_RING_PREVIOUSLY_EMPTY: NTSTATUS = NTSTATUS(528i32 as _);
5876 pub const STATUS_RING_PREVIOUSLY_FULL: NTSTATUS = NTSTATUS(529i32 as _);
5877 pub const STATUS_RING_SIGNAL_OPPOSITE_ENDPOINT: NTSTATUS = NTSTATUS(532i32 as _);
5878 pub const STATUS_RKF_ACTIVE_KEY: NTSTATUS = NTSTATUS(-1069547514i32 as _);
5879 pub const STATUS_RKF_BLOB_FULL: NTSTATUS = NTSTATUS(-1069547517i32 as _);
5880 pub const STATUS_RKF_DUPLICATE_KEY: NTSTATUS = NTSTATUS(-1069547518i32 as _);
5881 pub const STATUS_RKF_FILE_BLOCKED: NTSTATUS = NTSTATUS(-1069547515i32 as _);
5882 pub const STATUS_RKF_KEY_NOT_FOUND: NTSTATUS = NTSTATUS(-1069547519i32 as _);
5883 pub const STATUS_RKF_STORE_FULL: NTSTATUS = NTSTATUS(-1069547516i32 as _);
5884 pub const STATUS_RM_ALREADY_STARTED: NTSTATUS = NTSTATUS(1075380277i32 as _);
5885 pub const STATUS_RM_CANNOT_BE_FROZEN_FOR_SNAPSHOT: NTSTATUS = NTSTATUS(-1072103331i32 as _);
5886 pub const STATUS_RM_DISCONNECTED: NTSTATUS = NTSTATUS(-1072103374i32 as _);
5887 pub const STATUS_RM_METADATA_CORRUPT: NTSTATUS = NTSTATUS(-1072103418i32 as _);
5888 pub const STATUS_RM_NOT_ACTIVE: NTSTATUS = NTSTATUS(-1072103419i32 as _);
5889 pub const STATUS_ROLLBACK_TIMER_EXPIRED: NTSTATUS = NTSTATUS(-1072103364i32 as _);
5890 pub const STATUS_RTPM_CONTEXT_COMPLETE: NTSTATUS = NTSTATUS(2699265i32 as _);
5891 pub const STATUS_RTPM_CONTEXT_CONTINUE: NTSTATUS = NTSTATUS(2699264i32 as _);
5892 pub const STATUS_RTPM_INVALID_CONTEXT: NTSTATUS = NTSTATUS(-1071042556i32 as _);
5893 pub const STATUS_RTPM_NO_RESULT: NTSTATUS = NTSTATUS(-1071042558i32 as _);
5894 pub const STATUS_RTPM_PCR_READ_INCOMPLETE: NTSTATUS = NTSTATUS(-1071042557i32 as _);
5895 pub const STATUS_RTPM_UNSUPPORTED_CMD: NTSTATUS = NTSTATUS(-1071042555i32 as _);
5896 pub const STATUS_RUNLEVEL_SWITCH_AGENT_TIMEOUT: NTSTATUS = NTSTATUS(-1073700539i32 as _);
5897 pub const STATUS_RUNLEVEL_SWITCH_IN_PROGRESS: NTSTATUS = NTSTATUS(-1073700538i32 as _);
5898 pub const STATUS_RUNLEVEL_SWITCH_TIMEOUT: NTSTATUS = NTSTATUS(-1073700541i32 as _);
5899 pub const STATUS_RWRAW_ENCRYPTED_FILE_NOT_ENCRYPTED: NTSTATUS = NTSTATUS(-1073740633i32 as _);
5900 pub const STATUS_RWRAW_ENCRYPTED_INVALID_EDATAINFO_FILEOFFSET: NTSTATUS = NTSTATUS(-1073740632i32 as _);
5901 pub const STATUS_RWRAW_ENCRYPTED_INVALID_EDATAINFO_FILERANGE: NTSTATUS = NTSTATUS(-1073740631i32 as _);
5902 pub const STATUS_RWRAW_ENCRYPTED_INVALID_EDATAINFO_PARAMETER: NTSTATUS = NTSTATUS(-1073740630i32 as _);
5903 pub const STATUS_RXACT_COMMITTED: NTSTATUS = NTSTATUS(266i32 as _);
5904 pub const STATUS_RXACT_COMMIT_FAILURE: NTSTATUS = NTSTATUS(-1073741539i32 as _);
5905 pub const STATUS_RXACT_COMMIT_NECESSARY: NTSTATUS = NTSTATUS(-2147483624i32 as _);
5906 pub const STATUS_RXACT_INVALID_STATE: NTSTATUS = NTSTATUS(-1073741540i32 as _);
5907 pub const STATUS_RXACT_STATE_CREATED: NTSTATUS = NTSTATUS(1073741828i32 as _);
5908 pub const STATUS_SAM_INIT_FAILURE: NTSTATUS = NTSTATUS(-1073741085i32 as _);
5909 pub const STATUS_SAM_NEED_BOOTKEY_FLOPPY: NTSTATUS = NTSTATUS(-1073741088i32 as _);
5910 pub const STATUS_SAM_NEED_BOOTKEY_PASSWORD: NTSTATUS = NTSTATUS(-1073741089i32 as _);
5911 pub const STATUS_SCRUB_DATA_DISABLED: NTSTATUS = NTSTATUS(-1073740680i32 as _);
5912 pub const STATUS_SECCORE_INVALID_COMMAND: NTSTATUS = NTSTATUS(-1058537472i32 as _);
5913 pub const STATUS_SECONDARY_IC_PROVIDER_NOT_REGISTERED: NTSTATUS = NTSTATUS(-1073700575i32 as _);
5914 pub const STATUS_SECRET_TOO_LONG: NTSTATUS = NTSTATUS(-1073741481i32 as _);
5915 pub const STATUS_SECTION_DIRECT_MAP_ONLY: NTSTATUS = NTSTATUS(-1073739503i32 as _);
5916 pub const STATUS_SECTION_NOT_EXTENDED: NTSTATUS = NTSTATUS(-1073741689i32 as _);
5917 pub const STATUS_SECTION_NOT_IMAGE: NTSTATUS = NTSTATUS(-1073741751i32 as _);
5918 pub const STATUS_SECTION_PROTECTION: NTSTATUS = NTSTATUS(-1073741746i32 as _);
5919 pub const STATUS_SECTION_TOO_BIG: NTSTATUS = NTSTATUS(-1073741760i32 as _);
5920 pub const STATUS_SECUREBOOT_FILE_REPLACED: NTSTATUS = NTSTATUS(-1069350905i32 as _);
5921 pub const STATUS_SECUREBOOT_INVALID_POLICY: NTSTATUS = NTSTATUS(-1069350909i32 as _);
5922 pub const STATUS_SECUREBOOT_NOT_BASE_POLICY: NTSTATUS = NTSTATUS(-1069350897i32 as _);
5923 pub const STATUS_SECUREBOOT_NOT_ENABLED: NTSTATUS = NTSTATUS(-2143092730i32 as _);
5924 pub const STATUS_SECUREBOOT_NOT_SUPPLEMENTAL_POLICY: NTSTATUS = NTSTATUS(-1069350896i32 as _);
5925 pub const STATUS_SECUREBOOT_PLATFORM_ID_MISMATCH: NTSTATUS = NTSTATUS(-1069350901i32 as _);
5926 pub const STATUS_SECUREBOOT_POLICY_MISSING_ANTIROLLBACKVERSION: NTSTATUS = NTSTATUS(-1069350902i32 as _);
5927 pub const STATUS_SECUREBOOT_POLICY_NOT_AUTHORIZED: NTSTATUS = NTSTATUS(-1069350904i32 as _);
5928 pub const STATUS_SECUREBOOT_POLICY_NOT_SIGNED: NTSTATUS = NTSTATUS(-1069350907i32 as _);
5929 pub const STATUS_SECUREBOOT_POLICY_PUBLISHER_NOT_FOUND: NTSTATUS = NTSTATUS(-1069350908i32 as _);
5930 pub const STATUS_SECUREBOOT_POLICY_ROLLBACK_DETECTED: NTSTATUS = NTSTATUS(-1069350900i32 as _);
5931 pub const STATUS_SECUREBOOT_POLICY_UNKNOWN: NTSTATUS = NTSTATUS(-1069350903i32 as _);
5932 pub const STATUS_SECUREBOOT_POLICY_UPGRADE_MISMATCH: NTSTATUS = NTSTATUS(-1069350899i32 as _);
5933 pub const STATUS_SECUREBOOT_POLICY_VIOLATION: NTSTATUS = NTSTATUS(-1069350910i32 as _);
5934 pub const STATUS_SECUREBOOT_REQUIRED_POLICY_FILE_MISSING: NTSTATUS = NTSTATUS(-1069350898i32 as _);
5935 pub const STATUS_SECUREBOOT_ROLLBACK_DETECTED: NTSTATUS = NTSTATUS(-1069350911i32 as _);
5936 pub const STATUS_SECURITY_STREAM_IS_INCONSISTENT: NTSTATUS = NTSTATUS(-1073741408i32 as _);
5937 pub const STATUS_SEGMENT_NOTIFICATION: NTSTATUS = NTSTATUS(1073741829i32 as _);
5938 pub const STATUS_SEMAPHORE_LIMIT_EXCEEDED: NTSTATUS = NTSTATUS(-1073741753i32 as _);
5939 pub const STATUS_SERIAL_COUNTER_TIMEOUT: NTSTATUS = NTSTATUS(1073741836i32 as _);
5940 pub const STATUS_SERIAL_MORE_WRITES: NTSTATUS = NTSTATUS(1073741832i32 as _);
5941 pub const STATUS_SERIAL_NO_DEVICE_INITED: NTSTATUS = NTSTATUS(-1073741488i32 as _);
5942 pub const STATUS_SERVER_DISABLED: NTSTATUS = NTSTATUS(-1073741696i32 as _);
5943 pub const STATUS_SERVER_HAS_OPEN_HANDLES: NTSTATUS = NTSTATUS(-2147483612i32 as _);
5944 pub const STATUS_SERVER_NOT_DISABLED: NTSTATUS = NTSTATUS(-1073741695i32 as _);
5945 pub const STATUS_SERVER_SHUTDOWN_IN_PROGRESS: NTSTATUS = NTSTATUS(-1073741057i32 as _);
5946 pub const STATUS_SERVER_SID_MISMATCH: NTSTATUS = NTSTATUS(-1073741152i32 as _);
5947 pub const STATUS_SERVER_TRANSPORT_CONFLICT: NTSTATUS = NTSTATUS(-1073741388i32 as _);
5948 pub const STATUS_SERVER_UNAVAILABLE: NTSTATUS = NTSTATUS(-1073740698i32 as _);
5949 pub const STATUS_SERVICES_FAILED_AUTOSTART: NTSTATUS = NTSTATUS(1073783108i32 as _);
5950 pub const STATUS_SERVICE_NOTIFICATION: NTSTATUS = NTSTATUS(1073741848i32 as _);
5951 pub const STATUS_SESSION_KEY_TOO_SHORT: NTSTATUS = NTSTATUS(-1073740521i32 as _);
5952 pub const STATUS_SETMARK_DETECTED: NTSTATUS = NTSTATUS(-2147483615i32 as _);
5953 pub const STATUS_SET_CONTEXT_DENIED: NTSTATUS = NTSTATUS(-1073740278i32 as _);
5954 pub const STATUS_SEVERITY_COERROR: u32 = 2u32;
5955 pub const STATUS_SEVERITY_COFAIL: u32 = 3u32;
5956 pub const STATUS_SHARED_IRQ_BUSY: NTSTATUS = NTSTATUS(-1073741460i32 as _);
5957 pub const STATUS_SHARED_POLICY: NTSTATUS = NTSTATUS(-1073741159i32 as _);
5958 pub const STATUS_SHARE_UNAVAILABLE: NTSTATUS = NTSTATUS(-1073740672i32 as _);
5959 pub const STATUS_SHARING_PAUSED: NTSTATUS = NTSTATUS(-1073741617i32 as _);
5960 pub const STATUS_SHARING_VIOLATION: NTSTATUS = NTSTATUS(-1073741757i32 as _);
5961 pub const STATUS_SHORT_NAMES_NOT_ENABLED_ON_VOLUME: NTSTATUS = NTSTATUS(-1073741409i32 as _);
5962 pub const STATUS_SHUTDOWN_IN_PROGRESS: NTSTATUS = NTSTATUS(-1073741058i32 as _);
5963 pub const STATUS_SINGLE_STEP: NTSTATUS = NTSTATUS(-2147483644i32 as _);
5964 pub const STATUS_SMARTCARD_CARD_BLOCKED: NTSTATUS = NTSTATUS(-1073740927i32 as _);
5965 pub const STATUS_SMARTCARD_CARD_NOT_AUTHENTICATED: NTSTATUS = NTSTATUS(-1073740926i32 as _);
5966 pub const STATUS_SMARTCARD_CERT_EXPIRED: NTSTATUS = NTSTATUS(-1073740915i32 as _);
5967 pub const STATUS_SMARTCARD_CERT_REVOKED: NTSTATUS = NTSTATUS(-1073740919i32 as _);
5968 pub const STATUS_SMARTCARD_IO_ERROR: NTSTATUS = NTSTATUS(-1073740921i32 as _);
5969 pub const STATUS_SMARTCARD_LOGON_REQUIRED: NTSTATUS = NTSTATUS(-1073741062i32 as _);
5970 pub const STATUS_SMARTCARD_NO_CARD: NTSTATUS = NTSTATUS(-1073740925i32 as _);
5971 pub const STATUS_SMARTCARD_NO_CERTIFICATE: NTSTATUS = NTSTATUS(-1073740923i32 as _);
5972 pub const STATUS_SMARTCARD_NO_KEYSET: NTSTATUS = NTSTATUS(-1073740922i32 as _);
5973 pub const STATUS_SMARTCARD_NO_KEY_CONTAINER: NTSTATUS = NTSTATUS(-1073740924i32 as _);
5974 pub const STATUS_SMARTCARD_SILENT_CONTEXT: NTSTATUS = NTSTATUS(-1073740913i32 as _);
5975 pub const STATUS_SMARTCARD_SUBSYSTEM_FAILURE: NTSTATUS = NTSTATUS(-1073741023i32 as _);
5976 pub const STATUS_SMARTCARD_WRONG_PIN: NTSTATUS = NTSTATUS(-1073740928i32 as _);
5977 pub const STATUS_SMB1_NOT_AVAILABLE: NTSTATUS = NTSTATUS(-1073740525i32 as _);
5978 pub const STATUS_SMB_BAD_CLUSTER_DIALECT: NTSTATUS = NTSTATUS(-1067646975i32 as _);
5979 pub const STATUS_SMB_GUEST_LOGON_BLOCKED: NTSTATUS = NTSTATUS(-1067646974i32 as _);
5980 pub const STATUS_SMB_NO_PREAUTH_INTEGRITY_HASH_OVERLAP: NTSTATUS = NTSTATUS(-1067646976i32 as _);
5981 pub const STATUS_SMB_NO_SIGNING_ALGORITHM_OVERLAP: NTSTATUS = NTSTATUS(-1067646973i32 as _);
5982 pub const STATUS_SMI_PRIMITIVE_INSTALLER_FAILED: NTSTATUS = NTSTATUS(-1072365531i32 as _);
5983 pub const STATUS_SMR_GARBAGE_COLLECTION_REQUIRED: NTSTATUS = NTSTATUS(-1073740524i32 as _);
5984 pub const STATUS_SOME_NOT_MAPPED: NTSTATUS = NTSTATUS(263i32 as _);
5985 pub const STATUS_SOURCE_ELEMENT_EMPTY: NTSTATUS = NTSTATUS(-1073741181i32 as _);
5986 pub const STATUS_SPACES_ALLOCATION_SIZE_INVALID: NTSTATUS = NTSTATUS(-1058602994i32 as _);
5987 pub const STATUS_SPACES_CACHE_FULL: NTSTATUS = NTSTATUS(-1058602970i32 as _);
5988 pub const STATUS_SPACES_COMPLETE: NTSTATUS = NTSTATUS(15138818i32 as _);
5989 pub const STATUS_SPACES_CORRUPT_METADATA: NTSTATUS = NTSTATUS(-1058602986i32 as _);
5990 pub const STATUS_SPACES_DRIVE_LOST_DATA: NTSTATUS = NTSTATUS(-1058602979i32 as _);
5991 pub const STATUS_SPACES_DRIVE_NOT_READY: NTSTATUS = NTSTATUS(-1058602981i32 as _);
5992 pub const STATUS_SPACES_DRIVE_OPERATIONAL_STATE_INVALID: NTSTATUS = NTSTATUS(-1058602990i32 as _);
5993 pub const STATUS_SPACES_DRIVE_REDUNDANCY_INVALID: NTSTATUS = NTSTATUS(-1058603002i32 as _);
5994 pub const STATUS_SPACES_DRIVE_SECTOR_SIZE_INVALID: NTSTATUS = NTSTATUS(-1058603004i32 as _);
5995 pub const STATUS_SPACES_DRIVE_SPLIT: NTSTATUS = NTSTATUS(-1058602980i32 as _);
5996 pub const STATUS_SPACES_DRT_FULL: NTSTATUS = NTSTATUS(-1058602985i32 as _);
5997 pub const STATUS_SPACES_ENCLOSURE_AWARE_INVALID: NTSTATUS = NTSTATUS(-1058602993i32 as _);
5998 pub const STATUS_SPACES_ENTRY_INCOMPLETE: NTSTATUS = NTSTATUS(-1058602978i32 as _);
5999 pub const STATUS_SPACES_ENTRY_INVALID: NTSTATUS = NTSTATUS(-1058602977i32 as _);
6000 pub const STATUS_SPACES_EXTENDED_ERROR: NTSTATUS = NTSTATUS(-1058602996i32 as _);
6001 pub const STATUS_SPACES_FAULT_DOMAIN_TYPE_INVALID: NTSTATUS = NTSTATUS(-1058603007i32 as _);
6002 pub const STATUS_SPACES_FLUSH_METADATA: NTSTATUS = NTSTATUS(-1058602971i32 as _);
6003 pub const STATUS_SPACES_INCONSISTENCY: NTSTATUS = NTSTATUS(-1058602984i32 as _);
6004 pub const STATUS_SPACES_INTERLEAVE_LENGTH_INVALID: NTSTATUS = NTSTATUS(-1058602999i32 as _);
6005 pub const STATUS_SPACES_LOG_NOT_READY: NTSTATUS = NTSTATUS(-1058602983i32 as _);
6006 pub const STATUS_SPACES_MAP_REQUIRED: NTSTATUS = NTSTATUS(-1058602988i32 as _);
6007 pub const STATUS_SPACES_MARK_DIRTY: NTSTATUS = NTSTATUS(-1058602976i32 as _);
6008 pub const STATUS_SPACES_NOT_ENOUGH_DRIVES: NTSTATUS = NTSTATUS(-1058602997i32 as _);
6009 pub const STATUS_SPACES_NO_REDUNDANCY: NTSTATUS = NTSTATUS(-1058602982i32 as _);
6010 pub const STATUS_SPACES_NUMBER_OF_COLUMNS_INVALID: NTSTATUS = NTSTATUS(-1058602998i32 as _);
6011 pub const STATUS_SPACES_NUMBER_OF_DATA_COPIES_INVALID: NTSTATUS = NTSTATUS(-1058603001i32 as _);
6012 pub const STATUS_SPACES_NUMBER_OF_GROUPS_INVALID: NTSTATUS = NTSTATUS(-1058602991i32 as _);
6013 pub const STATUS_SPACES_PAUSE: NTSTATUS = NTSTATUS(15138817i32 as _);
6014 pub const STATUS_SPACES_PD_INVALID_DATA: NTSTATUS = NTSTATUS(-1058602972i32 as _);
6015 pub const STATUS_SPACES_PD_LENGTH_MISMATCH: NTSTATUS = NTSTATUS(-1058602974i32 as _);
6016 pub const STATUS_SPACES_PD_NOT_FOUND: NTSTATUS = NTSTATUS(-1058602975i32 as _);
6017 pub const STATUS_SPACES_PD_UNSUPPORTED_VERSION: NTSTATUS = NTSTATUS(-1058602973i32 as _);
6018 pub const STATUS_SPACES_PROVISIONING_TYPE_INVALID: NTSTATUS = NTSTATUS(-1058602995i32 as _);
6019 pub const STATUS_SPACES_REDIRECT: NTSTATUS = NTSTATUS(15138819i32 as _);
6020 pub const STATUS_SPACES_REPAIRED: NTSTATUS = NTSTATUS(15138816i32 as _);
6021 pub const STATUS_SPACES_RESILIENCY_TYPE_INVALID: NTSTATUS = NTSTATUS(-1058603005i32 as _);
6022 pub const STATUS_SPACES_UNSUPPORTED_VERSION: NTSTATUS = NTSTATUS(-1058602987i32 as _);
6023 pub const STATUS_SPACES_UPDATE_COLUMN_STATE: NTSTATUS = NTSTATUS(-1058602989i32 as _);
6024 pub const STATUS_SPACES_WRITE_CACHE_SIZE_INVALID: NTSTATUS = NTSTATUS(-1058602992i32 as _);
6025 pub const STATUS_SPARSE_FILE_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1073740604i32 as _);
6026 pub const STATUS_SPARSE_NOT_ALLOWED_IN_TRANSACTION: NTSTATUS = NTSTATUS(-1072103351i32 as _);
6027 pub const STATUS_SPECIAL_ACCOUNT: NTSTATUS = NTSTATUS(-1073741532i32 as _);
6028 pub const STATUS_SPECIAL_GROUP: NTSTATUS = NTSTATUS(-1073741531i32 as _);
6029 pub const STATUS_SPECIAL_USER: NTSTATUS = NTSTATUS(-1073741530i32 as _);
6030 pub const STATUS_STACK_BUFFER_OVERRUN: NTSTATUS = NTSTATUS(-1073740791i32 as _);
6031 pub const STATUS_STACK_OVERFLOW: NTSTATUS = NTSTATUS(-1073741571i32 as _);
6032 pub const STATUS_STACK_OVERFLOW_READ: NTSTATUS = NTSTATUS(-1073741272i32 as _);
6033 pub const STATUS_STOPPED_ON_SYMLINK: NTSTATUS = NTSTATUS(-2147483603i32 as _);
6034 pub const STATUS_STORAGE_LOST_DATA_PERSISTENCE: NTSTATUS = NTSTATUS(-1073740642i32 as _);
6035 pub const STATUS_STORAGE_RESERVE_ALREADY_EXISTS: NTSTATUS = NTSTATUS(-1073740625i32 as _);
6036 pub const STATUS_STORAGE_RESERVE_DOES_NOT_EXIST: NTSTATUS = NTSTATUS(-1073740626i32 as _);
6037 pub const STATUS_STORAGE_RESERVE_ID_INVALID: NTSTATUS = NTSTATUS(-1073740627i32 as _);
6038 pub const STATUS_STORAGE_RESERVE_NOT_EMPTY: NTSTATUS = NTSTATUS(-1073740624i32 as _);
6039 pub const STATUS_STORAGE_STACK_ACCESS_DENIED: NTSTATUS = NTSTATUS(-1073740607i32 as _);
6040 pub const STATUS_STORAGE_TOPOLOGY_ID_MISMATCH: NTSTATUS = NTSTATUS(-1073740666i32 as _);
6041 pub const STATUS_STOWED_EXCEPTION: NTSTATUS = NTSTATUS(-1073741189i32 as _);
6042 pub const STATUS_STREAM_MINIVERSION_NOT_FOUND: NTSTATUS = NTSTATUS(-1072103390i32 as _);
6043 pub const STATUS_STREAM_MINIVERSION_NOT_VALID: NTSTATUS = NTSTATUS(-1072103389i32 as _);
6044 pub const STATUS_STRICT_CFG_VIOLATION: NTSTATUS = NTSTATUS(-1073740282i32 as _);
6045 pub const STATUS_STRONG_CRYPTO_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1073741066i32 as _);
6046 pub const STATUS_SUCCESS: NTSTATUS = NTSTATUS(0i32 as _);
6047 pub const STATUS_SUSPEND_COUNT_EXCEEDED: NTSTATUS = NTSTATUS(-1073741750i32 as _);
6048 pub const STATUS_SVHDX_ERROR_NOT_AVAILABLE: NTSTATUS = NTSTATUS(-1067647232i32 as _);
6049 pub const STATUS_SVHDX_ERROR_STORED: NTSTATUS = NTSTATUS(-1067712512i32 as _);
6050 pub const STATUS_SVHDX_NO_INITIATOR: NTSTATUS = NTSTATUS(-1067647221i32 as _);
6051 pub const STATUS_SVHDX_RESERVATION_CONFLICT: NTSTATUS = NTSTATUS(-1067647225i32 as _);
6052 pub const STATUS_SVHDX_UNIT_ATTENTION_AVAILABLE: NTSTATUS = NTSTATUS(-1067647231i32 as _);
6053 pub const STATUS_SVHDX_UNIT_ATTENTION_CAPACITY_DATA_CHANGED: NTSTATUS = NTSTATUS(-1067647230i32 as _);
6054 pub const STATUS_SVHDX_UNIT_ATTENTION_OPERATING_DEFINITION_CHANGED: NTSTATUS = NTSTATUS(-1067647226i32 as _);
6055 pub const STATUS_SVHDX_UNIT_ATTENTION_REGISTRATIONS_PREEMPTED: NTSTATUS = NTSTATUS(-1067647227i32 as _);
6056 pub const STATUS_SVHDX_UNIT_ATTENTION_RESERVATIONS_PREEMPTED: NTSTATUS = NTSTATUS(-1067647229i32 as _);
6057 pub const STATUS_SVHDX_UNIT_ATTENTION_RESERVATIONS_RELEASED: NTSTATUS = NTSTATUS(-1067647228i32 as _);
6058 pub const STATUS_SVHDX_VERSION_MISMATCH: NTSTATUS = NTSTATUS(-1067647223i32 as _);
6059 pub const STATUS_SVHDX_WRONG_FILE_TYPE: NTSTATUS = NTSTATUS(-1067647224i32 as _);
6060 pub const STATUS_SXS_ACTIVATION_CONTEXT_DISABLED: NTSTATUS = NTSTATUS(-1072365561i32 as _);
6061 pub const STATUS_SXS_ASSEMBLY_IS_NOT_A_DEPLOYMENT: NTSTATUS = NTSTATUS(-1072365538i32 as _);
6062 pub const STATUS_SXS_ASSEMBLY_MISSING: NTSTATUS = NTSTATUS(-1072365556i32 as _);
6063 pub const STATUS_SXS_ASSEMBLY_NOT_FOUND: NTSTATUS = NTSTATUS(-1072365564i32 as _);
6064 pub const STATUS_SXS_CANT_GEN_ACTCTX: NTSTATUS = NTSTATUS(-1072365566i32 as _);
6065 pub const STATUS_SXS_COMPONENT_STORE_CORRUPT: NTSTATUS = NTSTATUS(-1072365542i32 as _);
6066 pub const STATUS_SXS_CORRUPTION: NTSTATUS = NTSTATUS(-1072365547i32 as _);
6067 pub const STATUS_SXS_CORRUPT_ACTIVATION_STACK: NTSTATUS = NTSTATUS(-1072365548i32 as _);
6068 pub const STATUS_SXS_EARLY_DEACTIVATION: NTSTATUS = NTSTATUS(-1072365553i32 as _);
6069 pub const STATUS_SXS_FILE_HASH_MISMATCH: NTSTATUS = NTSTATUS(-1072365541i32 as _);
6070 pub const STATUS_SXS_FILE_HASH_MISSING: NTSTATUS = NTSTATUS(-1072365529i32 as _);
6071 pub const STATUS_SXS_FILE_NOT_PART_OF_ASSEMBLY: NTSTATUS = NTSTATUS(-1072365537i32 as _);
6072 pub const STATUS_SXS_IDENTITIES_DIFFERENT: NTSTATUS = NTSTATUS(-1072365539i32 as _);
6073 pub const STATUS_SXS_IDENTITY_DUPLICATE_ATTRIBUTE: NTSTATUS = NTSTATUS(-1072365544i32 as _);
6074 pub const STATUS_SXS_IDENTITY_PARSE_ERROR: NTSTATUS = NTSTATUS(-1072365543i32 as _);
6075 pub const STATUS_SXS_INVALID_ACTCTXDATA_FORMAT: NTSTATUS = NTSTATUS(-1072365565i32 as _);
6076 pub const STATUS_SXS_INVALID_DEACTIVATION: NTSTATUS = NTSTATUS(-1072365552i32 as _);
6077 pub const STATUS_SXS_INVALID_IDENTITY_ATTRIBUTE_NAME: NTSTATUS = NTSTATUS(-1072365545i32 as _);
6078 pub const STATUS_SXS_INVALID_IDENTITY_ATTRIBUTE_VALUE: NTSTATUS = NTSTATUS(-1072365546i32 as _);
6079 pub const STATUS_SXS_KEY_NOT_FOUND: NTSTATUS = NTSTATUS(-1072365560i32 as _);
6080 pub const STATUS_SXS_MANIFEST_FORMAT_ERROR: NTSTATUS = NTSTATUS(-1072365563i32 as _);
6081 pub const STATUS_SXS_MANIFEST_IDENTITY_SAME_BUT_CONTENTS_DIFFERENT: NTSTATUS = NTSTATUS(-1072365540i32 as _);
6082 pub const STATUS_SXS_MANIFEST_PARSE_ERROR: NTSTATUS = NTSTATUS(-1072365562i32 as _);
6083 pub const STATUS_SXS_MANIFEST_TOO_BIG: NTSTATUS = NTSTATUS(-1072365534i32 as _);
6084 pub const STATUS_SXS_MULTIPLE_DEACTIVATION: NTSTATUS = NTSTATUS(-1072365551i32 as _);
6085 pub const STATUS_SXS_PROCESS_DEFAULT_ALREADY_SET: NTSTATUS = NTSTATUS(-1072365554i32 as _);
6086 pub const STATUS_SXS_PROCESS_TERMINATION_REQUESTED: NTSTATUS = NTSTATUS(-1072365549i32 as _);
6087 pub const STATUS_SXS_RELEASE_ACTIVATION_CONTEXT: NTSTATUS = NTSTATUS(1075118093i32 as _);
6088 pub const STATUS_SXS_SECTION_NOT_FOUND: NTSTATUS = NTSTATUS(-1072365567i32 as _);
6089 pub const STATUS_SXS_SETTING_NOT_REGISTERED: NTSTATUS = NTSTATUS(-1072365533i32 as _);
6090 pub const STATUS_SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY: NTSTATUS = NTSTATUS(-1072365550i32 as _);
6091 pub const STATUS_SXS_THREAD_QUERIES_DISABLED: NTSTATUS = NTSTATUS(-1072365557i32 as _);
6092 pub const STATUS_SXS_TRANSACTION_CLOSURE_INCOMPLETE: NTSTATUS = NTSTATUS(-1072365532i32 as _);
6093 pub const STATUS_SXS_VERSION_CONFLICT: NTSTATUS = NTSTATUS(-1072365559i32 as _);
6094 pub const STATUS_SXS_WRONG_SECTION_TYPE: NTSTATUS = NTSTATUS(-1072365558i32 as _);
6095 pub const STATUS_SYMLINK_CLASS_DISABLED: NTSTATUS = NTSTATUS(-1073740011i32 as _);
6096 pub const STATUS_SYNCHRONIZATION_REQUIRED: NTSTATUS = NTSTATUS(-1073741516i32 as _);
6097 pub const STATUS_SYSTEM_DEVICE_NOT_FOUND: NTSTATUS = NTSTATUS(-1073740718i32 as _);
6098 pub const STATUS_SYSTEM_HIVE_TOO_LARGE: NTSTATUS = NTSTATUS(-1073740946i32 as _);
6099 pub const STATUS_SYSTEM_IMAGE_BAD_SIGNATURE: NTSTATUS = NTSTATUS(-1073741103i32 as _);
6100 pub const STATUS_SYSTEM_INTEGRITY_INVALID_POLICY: NTSTATUS = NTSTATUS(-1058471933i32 as _);
6101 pub const STATUS_SYSTEM_INTEGRITY_POLICY_NOT_SIGNED: NTSTATUS = NTSTATUS(-1058471932i32 as _);
6102 pub const STATUS_SYSTEM_INTEGRITY_POLICY_VIOLATION: NTSTATUS = NTSTATUS(-1058471934i32 as _);
6103 pub const STATUS_SYSTEM_INTEGRITY_REPUTATION_DANGEROUS_EXT: NTSTATUS = NTSTATUS(-1058471927i32 as _);
6104 pub const STATUS_SYSTEM_INTEGRITY_REPUTATION_MALICIOUS: NTSTATUS = NTSTATUS(-1058471929i32 as _);
6105 pub const STATUS_SYSTEM_INTEGRITY_REPUTATION_OFFLINE: NTSTATUS = NTSTATUS(-1058471926i32 as _);
6106 pub const STATUS_SYSTEM_INTEGRITY_REPUTATION_PUA: NTSTATUS = NTSTATUS(-1058471928i32 as _);
6107 pub const STATUS_SYSTEM_INTEGRITY_ROLLBACK_DETECTED: NTSTATUS = NTSTATUS(-1058471935i32 as _);
6108 pub const STATUS_SYSTEM_INTEGRITY_SUPPLEMENTAL_POLICY_NOT_AUTHORIZED: NTSTATUS = NTSTATUS(-1058471930i32 as _);
6109 pub const STATUS_SYSTEM_INTEGRITY_TOO_MANY_POLICIES: NTSTATUS = NTSTATUS(-1058471931i32 as _);
6110 pub const STATUS_SYSTEM_NEEDS_REMEDIATION: NTSTATUS = NTSTATUS(-1073740674i32 as _);
6111 pub const STATUS_SYSTEM_POWERSTATE_COMPLEX_TRANSITION: NTSTATUS = NTSTATUS(1073741873i32 as _);
6112 pub const STATUS_SYSTEM_POWERSTATE_TRANSITION: NTSTATUS = NTSTATUS(1073741871i32 as _);
6113 pub const STATUS_SYSTEM_PROCESS_TERMINATED: NTSTATUS = NTSTATUS(-1073741286i32 as _);
6114 pub const STATUS_SYSTEM_SHUTDOWN: NTSTATUS = NTSTATUS(-1073741077i32 as _);
6115 pub const STATUS_THREADPOOL_FREE_LIBRARY_ON_COMPLETION_FAILED: NTSTATUS = NTSTATUS(-1073740018i32 as _);
6116 pub const STATUS_THREADPOOL_HANDLE_EXCEPTION: NTSTATUS = NTSTATUS(-1073740022i32 as _);
6117 pub const STATUS_THREADPOOL_RELEASED_DURING_OPERATION: NTSTATUS = NTSTATUS(-1073740017i32 as _);
6118 pub const STATUS_THREADPOOL_RELEASE_MUTEX_ON_COMPLETION_FAILED: NTSTATUS = NTSTATUS(-1073740019i32 as _);
6119 pub const STATUS_THREADPOOL_RELEASE_SEMAPHORE_ON_COMPLETION_FAILED: NTSTATUS = NTSTATUS(-1073740020i32 as _);
6120 pub const STATUS_THREADPOOL_SET_EVENT_ON_COMPLETION_FAILED: NTSTATUS = NTSTATUS(-1073740021i32 as _);
6121 pub const STATUS_THREAD_ALREADY_IN_SESSION: NTSTATUS = NTSTATUS(-1073740714i32 as _);
6122 pub const STATUS_THREAD_ALREADY_IN_TASK: NTSTATUS = NTSTATUS(-1073740542i32 as _);
6123 pub const STATUS_THREAD_IS_TERMINATING: NTSTATUS = NTSTATUS(-1073741749i32 as _);
6124 pub const STATUS_THREAD_NOT_IN_PROCESS: NTSTATUS = NTSTATUS(-1073741526i32 as _);
6125 pub const STATUS_THREAD_NOT_IN_SESSION: NTSTATUS = NTSTATUS(-1073740713i32 as _);
6126 pub const STATUS_THREAD_NOT_RUNNING: NTSTATUS = NTSTATUS(-1073740522i32 as _);
6127 pub const STATUS_THREAD_WAS_SUSPENDED: NTSTATUS = NTSTATUS(1073741825i32 as _);
6128 pub const STATUS_TIMEOUT: NTSTATUS = NTSTATUS(258i32 as _);
6129 pub const STATUS_TIMER_NOT_CANCELED: NTSTATUS = NTSTATUS(-1073741812i32 as _);
6130 pub const STATUS_TIMER_RESOLUTION_NOT_SET: NTSTATUS = NTSTATUS(-1073741243i32 as _);
6131 pub const STATUS_TIMER_RESUME_IGNORED: NTSTATUS = NTSTATUS(1073741861i32 as _);
6132 pub const STATUS_TIME_DIFFERENCE_AT_DC: NTSTATUS = NTSTATUS(-1073741517i32 as _);
6133 pub const STATUS_TM_IDENTITY_MISMATCH: NTSTATUS = NTSTATUS(-1072103350i32 as _);
6134 pub const STATUS_TM_INITIALIZATION_FAILED: NTSTATUS = NTSTATUS(-1072103420i32 as _);
6135 pub const STATUS_TM_VOLATILE: NTSTATUS = NTSTATUS(-1072103365i32 as _);
6136 pub const STATUS_TOKEN_ALREADY_IN_USE: NTSTATUS = NTSTATUS(-1073741525i32 as _);
6137 pub const STATUS_TOO_LATE: NTSTATUS = NTSTATUS(-1073741431i32 as _);
6138 pub const STATUS_TOO_MANY_ADDRESSES: NTSTATUS = NTSTATUS(-1073741303i32 as _);
6139 pub const STATUS_TOO_MANY_COMMANDS: NTSTATUS = NTSTATUS(-1073741631i32 as _);
6140 pub const STATUS_TOO_MANY_CONTEXT_IDS: NTSTATUS = NTSTATUS(-1073741478i32 as _);
6141 pub const STATUS_TOO_MANY_GUIDS_REQUESTED: NTSTATUS = NTSTATUS(-1073741694i32 as _);
6142 pub const STATUS_TOO_MANY_LINKS: NTSTATUS = NTSTATUS(-1073741211i32 as _);
6143 pub const STATUS_TOO_MANY_LUIDS_REQUESTED: NTSTATUS = NTSTATUS(-1073741708i32 as _);
6144 pub const STATUS_TOO_MANY_NAMES: NTSTATUS = NTSTATUS(-1073741619i32 as _);
6145 pub const STATUS_TOO_MANY_NODES: NTSTATUS = NTSTATUS(-1073741298i32 as _);
6146 pub const STATUS_TOO_MANY_OPENED_FILES: NTSTATUS = NTSTATUS(-1073741537i32 as _);
6147 pub const STATUS_TOO_MANY_PAGING_FILES: NTSTATUS = NTSTATUS(-1073741673i32 as _);
6148 pub const STATUS_TOO_MANY_PRINCIPALS: NTSTATUS = NTSTATUS(-1073741065i32 as _);
6149 pub const STATUS_TOO_MANY_SECRETS: NTSTATUS = NTSTATUS(-1073741482i32 as _);
6150 pub const STATUS_TOO_MANY_SEGMENT_DESCRIPTORS: NTSTATUS = NTSTATUS(-1073740685i32 as _);
6151 pub const STATUS_TOO_MANY_SESSIONS: NTSTATUS = NTSTATUS(-1073741618i32 as _);
6152 pub const STATUS_TOO_MANY_SIDS: NTSTATUS = NTSTATUS(-1073741442i32 as _);
6153 pub const STATUS_TOO_MANY_THREADS: NTSTATUS = NTSTATUS(-1073741527i32 as _);
6154 pub const STATUS_TPM_20_E_ASYMMETRIC: NTSTATUS = NTSTATUS(-1071054719i32 as _);
6155 pub const STATUS_TPM_20_E_ATTRIBUTES: NTSTATUS = NTSTATUS(-1071054718i32 as _);
6156 pub const STATUS_TPM_20_E_AUTHSIZE: NTSTATUS = NTSTATUS(-1071054524i32 as _);
6157 pub const STATUS_TPM_20_E_AUTH_CONTEXT: NTSTATUS = NTSTATUS(-1071054523i32 as _);
6158 pub const STATUS_TPM_20_E_AUTH_FAIL: NTSTATUS = NTSTATUS(-1071054706i32 as _);
6159 pub const STATUS_TPM_20_E_AUTH_MISSING: NTSTATUS = NTSTATUS(-1071054555i32 as _);
6160 pub const STATUS_TPM_20_E_AUTH_TYPE: NTSTATUS = NTSTATUS(-1071054556i32 as _);
6161 pub const STATUS_TPM_20_E_AUTH_UNAVAILABLE: NTSTATUS = NTSTATUS(-1071054545i32 as _);
6162 pub const STATUS_TPM_20_E_BAD_AUTH: NTSTATUS = NTSTATUS(-1071054686i32 as _);
6163 pub const STATUS_TPM_20_E_BAD_CONTEXT: NTSTATUS = NTSTATUS(-1071054512i32 as _);
6164 pub const STATUS_TPM_20_E_BINDING: NTSTATUS = NTSTATUS(-1071054683i32 as _);
6165 pub const STATUS_TPM_20_E_COMMAND_CODE: NTSTATUS = NTSTATUS(-1071054525i32 as _);
6166 pub const STATUS_TPM_20_E_COMMAND_SIZE: NTSTATUS = NTSTATUS(-1071054526i32 as _);
6167 pub const STATUS_TPM_20_E_CPHASH: NTSTATUS = NTSTATUS(-1071054511i32 as _);
6168 pub const STATUS_TPM_20_E_CURVE: NTSTATUS = NTSTATUS(-1071054682i32 as _);
6169 pub const STATUS_TPM_20_E_DISABLED: NTSTATUS = NTSTATUS(-1071054560i32 as _);
6170 pub const STATUS_TPM_20_E_ECC_CURVE: NTSTATUS = NTSTATUS(-1071054557i32 as _);
6171 pub const STATUS_TPM_20_E_ECC_POINT: NTSTATUS = NTSTATUS(-1071054681i32 as _);
6172 pub const STATUS_TPM_20_E_EXCLUSIVE: NTSTATUS = NTSTATUS(-1071054559i32 as _);
6173 pub const STATUS_TPM_20_E_EXPIRED: NTSTATUS = NTSTATUS(-1071054685i32 as _);
6174 pub const STATUS_TPM_20_E_FAILURE: NTSTATUS = NTSTATUS(-1071054591i32 as _);
6175 pub const STATUS_TPM_20_E_HANDLE: NTSTATUS = NTSTATUS(-1071054709i32 as _);
6176 pub const STATUS_TPM_20_E_HASH: NTSTATUS = NTSTATUS(-1071054717i32 as _);
6177 pub const STATUS_TPM_20_E_HIERARCHY: NTSTATUS = NTSTATUS(-1071054715i32 as _);
6178 pub const STATUS_TPM_20_E_HMAC: NTSTATUS = NTSTATUS(-1071054567i32 as _);
6179 pub const STATUS_TPM_20_E_INITIALIZE: NTSTATUS = NTSTATUS(-1071054592i32 as _);
6180 pub const STATUS_TPM_20_E_INSUFFICIENT: NTSTATUS = NTSTATUS(-1071054694i32 as _);
6181 pub const STATUS_TPM_20_E_INTEGRITY: NTSTATUS = NTSTATUS(-1071054689i32 as _);
6182 pub const STATUS_TPM_20_E_KDF: NTSTATUS = NTSTATUS(-1071054708i32 as _);
6183 pub const STATUS_TPM_20_E_KEY: NTSTATUS = NTSTATUS(-1071054692i32 as _);
6184 pub const STATUS_TPM_20_E_KEY_SIZE: NTSTATUS = NTSTATUS(-1071054713i32 as _);
6185 pub const STATUS_TPM_20_E_MGF: NTSTATUS = NTSTATUS(-1071054712i32 as _);
6186 pub const STATUS_TPM_20_E_MODE: NTSTATUS = NTSTATUS(-1071054711i32 as _);
6187 pub const STATUS_TPM_20_E_NEEDS_TEST: NTSTATUS = NTSTATUS(-1071054509i32 as _);
6188 pub const STATUS_TPM_20_E_NONCE: NTSTATUS = NTSTATUS(-1071054705i32 as _);
6189 pub const STATUS_TPM_20_E_NO_RESULT: NTSTATUS = NTSTATUS(-1071054508i32 as _);
6190 pub const STATUS_TPM_20_E_NV_AUTHORIZATION: NTSTATUS = NTSTATUS(-1071054519i32 as _);
6191 pub const STATUS_TPM_20_E_NV_DEFINED: NTSTATUS = NTSTATUS(-1071054516i32 as _);
6192 pub const STATUS_TPM_20_E_NV_LOCKED: NTSTATUS = NTSTATUS(-1071054520i32 as _);
6193 pub const STATUS_TPM_20_E_NV_RANGE: NTSTATUS = NTSTATUS(-1071054522i32 as _);
6194 pub const STATUS_TPM_20_E_NV_SIZE: NTSTATUS = NTSTATUS(-1071054521i32 as _);
6195 pub const STATUS_TPM_20_E_NV_SPACE: NTSTATUS = NTSTATUS(-1071054517i32 as _);
6196 pub const STATUS_TPM_20_E_NV_UNINITIALIZED: NTSTATUS = NTSTATUS(-1071054518i32 as _);
6197 pub const STATUS_TPM_20_E_PARENT: NTSTATUS = NTSTATUS(-1071054510i32 as _);
6198 pub const STATUS_TPM_20_E_PCR: NTSTATUS = NTSTATUS(-1071054553i32 as _);
6199 pub const STATUS_TPM_20_E_PCR_CHANGED: NTSTATUS = NTSTATUS(-1071054552i32 as _);
6200 pub const STATUS_TPM_20_E_POLICY: NTSTATUS = NTSTATUS(-1071054554i32 as _);
6201 pub const STATUS_TPM_20_E_POLICY_CC: NTSTATUS = NTSTATUS(-1071054684i32 as _);
6202 pub const STATUS_TPM_20_E_POLICY_FAIL: NTSTATUS = NTSTATUS(-1071054691i32 as _);
6203 pub const STATUS_TPM_20_E_PP: NTSTATUS = NTSTATUS(-1071054704i32 as _);
6204 pub const STATUS_TPM_20_E_PRIVATE: NTSTATUS = NTSTATUS(-1071054581i32 as _);
6205 pub const STATUS_TPM_20_E_RANGE: NTSTATUS = NTSTATUS(-1071054707i32 as _);
6206 pub const STATUS_TPM_20_E_REBOOT: NTSTATUS = NTSTATUS(-1071054544i32 as _);
6207 pub const STATUS_TPM_20_E_RESERVED_BITS: NTSTATUS = NTSTATUS(-1071054687i32 as _);
6208 pub const STATUS_TPM_20_E_SCHEME: NTSTATUS = NTSTATUS(-1071054702i32 as _);
6209 pub const STATUS_TPM_20_E_SELECTOR: NTSTATUS = NTSTATUS(-1071054696i32 as _);
6210 pub const STATUS_TPM_20_E_SENSITIVE: NTSTATUS = NTSTATUS(-1071054507i32 as _);
6211 pub const STATUS_TPM_20_E_SEQUENCE: NTSTATUS = NTSTATUS(-1071054589i32 as _);
6212 pub const STATUS_TPM_20_E_SIGNATURE: NTSTATUS = NTSTATUS(-1071054693i32 as _);
6213 pub const STATUS_TPM_20_E_SIZE: NTSTATUS = NTSTATUS(-1071054699i32 as _);
6214 pub const STATUS_TPM_20_E_SYMMETRIC: NTSTATUS = NTSTATUS(-1071054698i32 as _);
6215 pub const STATUS_TPM_20_E_TAG: NTSTATUS = NTSTATUS(-1071054697i32 as _);
6216 pub const STATUS_TPM_20_E_TICKET: NTSTATUS = NTSTATUS(-1071054688i32 as _);
6217 pub const STATUS_TPM_20_E_TOO_MANY_CONTEXTS: NTSTATUS = NTSTATUS(-1071054546i32 as _);
6218 pub const STATUS_TPM_20_E_TYPE: NTSTATUS = NTSTATUS(-1071054710i32 as _);
6219 pub const STATUS_TPM_20_E_UNBALANCED: NTSTATUS = NTSTATUS(-1071054543i32 as _);
6220 pub const STATUS_TPM_20_E_UPGRADE: NTSTATUS = NTSTATUS(-1071054547i32 as _);
6221 pub const STATUS_TPM_20_E_VALUE: NTSTATUS = NTSTATUS(-1071054716i32 as _);
6222 pub const STATUS_TPM_ACCESS_DENIED: NTSTATUS = NTSTATUS(-1071050748i32 as _);
6223 pub const STATUS_TPM_AREA_LOCKED: NTSTATUS = NTSTATUS(-1071054788i32 as _);
6224 pub const STATUS_TPM_AUDITFAILURE: NTSTATUS = NTSTATUS(-1071054844i32 as _);
6225 pub const STATUS_TPM_AUDITFAIL_SUCCESSFUL: NTSTATUS = NTSTATUS(-1071054799i32 as _);
6226 pub const STATUS_TPM_AUDITFAIL_UNSUCCESSFUL: NTSTATUS = NTSTATUS(-1071054800i32 as _);
6227 pub const STATUS_TPM_AUTH2FAIL: NTSTATUS = NTSTATUS(-1071054819i32 as _);
6228 pub const STATUS_TPM_AUTHFAIL: NTSTATUS = NTSTATUS(-1071054847i32 as _);
6229 pub const STATUS_TPM_AUTH_CONFLICT: NTSTATUS = NTSTATUS(-1071054789i32 as _);
6230 pub const STATUS_TPM_BADCONTEXT: NTSTATUS = NTSTATUS(-1071054758i32 as _);
6231 pub const STATUS_TPM_BADINDEX: NTSTATUS = NTSTATUS(-1071054846i32 as _);
6232 pub const STATUS_TPM_BADTAG: NTSTATUS = NTSTATUS(-1071054818i32 as _);
6233 pub const STATUS_TPM_BAD_ATTRIBUTES: NTSTATUS = NTSTATUS(-1071054782i32 as _);
6234 pub const STATUS_TPM_BAD_COUNTER: NTSTATUS = NTSTATUS(-1071054779i32 as _);
6235 pub const STATUS_TPM_BAD_DATASIZE: NTSTATUS = NTSTATUS(-1071054805i32 as _);
6236 pub const STATUS_TPM_BAD_DELEGATE: NTSTATUS = NTSTATUS(-1071054759i32 as _);
6237 pub const STATUS_TPM_BAD_HANDLE: NTSTATUS = NTSTATUS(-1071054760i32 as _);
6238 pub const STATUS_TPM_BAD_KEY_PROPERTY: NTSTATUS = NTSTATUS(-1071054808i32 as _);
6239 pub const STATUS_TPM_BAD_LOCALITY: NTSTATUS = NTSTATUS(-1071054787i32 as _);
6240 pub const STATUS_TPM_BAD_MIGRATION: NTSTATUS = NTSTATUS(-1071054807i32 as _);
6241 pub const STATUS_TPM_BAD_MODE: NTSTATUS = NTSTATUS(-1071054804i32 as _);
6242 pub const STATUS_TPM_BAD_ORDINAL: NTSTATUS = NTSTATUS(-1071054838i32 as _);
6243 pub const STATUS_TPM_BAD_PARAMETER: NTSTATUS = NTSTATUS(-1071054845i32 as _);
6244 pub const STATUS_TPM_BAD_PARAM_SIZE: NTSTATUS = NTSTATUS(-1071054823i32 as _);
6245 pub const STATUS_TPM_BAD_PRESENCE: NTSTATUS = NTSTATUS(-1071054803i32 as _);
6246 pub const STATUS_TPM_BAD_SCHEME: NTSTATUS = NTSTATUS(-1071054806i32 as _);
6247 pub const STATUS_TPM_BAD_SIGNATURE: NTSTATUS = NTSTATUS(-1071054750i32 as _);
6248 pub const STATUS_TPM_BAD_TYPE: NTSTATUS = NTSTATUS(-1071054796i32 as _);
6249 pub const STATUS_TPM_BAD_VERSION: NTSTATUS = NTSTATUS(-1071054802i32 as _);
6250 pub const STATUS_TPM_CLEAR_DISABLED: NTSTATUS = NTSTATUS(-1071054843i32 as _);
6251 pub const STATUS_TPM_COMMAND_BLOCKED: NTSTATUS = NTSTATUS(-1071053824i32 as _);
6252 pub const STATUS_TPM_COMMAND_CANCELED: NTSTATUS = NTSTATUS(-1071050751i32 as _);
6253 pub const STATUS_TPM_CONTEXT_GAP: NTSTATUS = NTSTATUS(-1071054777i32 as _);
6254 pub const STATUS_TPM_DAA_INPUT_DATA0: NTSTATUS = NTSTATUS(-1071054767i32 as _);
6255 pub const STATUS_TPM_DAA_INPUT_DATA1: NTSTATUS = NTSTATUS(-1071054766i32 as _);
6256 pub const STATUS_TPM_DAA_ISSUER_SETTINGS: NTSTATUS = NTSTATUS(-1071054765i32 as _);
6257 pub const STATUS_TPM_DAA_ISSUER_VALIDITY: NTSTATUS = NTSTATUS(-1071054762i32 as _);
6258 pub const STATUS_TPM_DAA_RESOURCES: NTSTATUS = NTSTATUS(-1071054768i32 as _);
6259 pub const STATUS_TPM_DAA_STAGE: NTSTATUS = NTSTATUS(-1071054763i32 as _);
6260 pub const STATUS_TPM_DAA_TPM_SETTINGS: NTSTATUS = NTSTATUS(-1071054764i32 as _);
6261 pub const STATUS_TPM_DAA_WRONG_W: NTSTATUS = NTSTATUS(-1071054761i32 as _);
6262 pub const STATUS_TPM_DEACTIVATED: NTSTATUS = NTSTATUS(-1071054842i32 as _);
6263 pub const STATUS_TPM_DECRYPT_ERROR: NTSTATUS = NTSTATUS(-1071054815i32 as _);
6264 pub const STATUS_TPM_DEFEND_LOCK_RUNNING: NTSTATUS = NTSTATUS(-1071052797i32 as _);
6265 pub const STATUS_TPM_DELEGATE_ADMIN: NTSTATUS = NTSTATUS(-1071054771i32 as _);
6266 pub const STATUS_TPM_DELEGATE_FAMILY: NTSTATUS = NTSTATUS(-1071054772i32 as _);
6267 pub const STATUS_TPM_DELEGATE_LOCK: NTSTATUS = NTSTATUS(-1071054773i32 as _);
6268 pub const STATUS_TPM_DISABLED: NTSTATUS = NTSTATUS(-1071054841i32 as _);
6269 pub const STATUS_TPM_DISABLED_CMD: NTSTATUS = NTSTATUS(-1071054840i32 as _);
6270 pub const STATUS_TPM_DOING_SELFTEST: NTSTATUS = NTSTATUS(-1071052798i32 as _);
6271 pub const STATUS_TPM_DUPLICATE_VHANDLE: NTSTATUS = NTSTATUS(-1071053822i32 as _);
6272 pub const STATUS_TPM_EMBEDDED_COMMAND_BLOCKED: NTSTATUS = NTSTATUS(-1071053821i32 as _);
6273 pub const STATUS_TPM_EMBEDDED_COMMAND_UNSUPPORTED: NTSTATUS = NTSTATUS(-1071053820i32 as _);
6274 pub const STATUS_TPM_ENCRYPT_ERROR: NTSTATUS = NTSTATUS(-1071054816i32 as _);
6275 pub const STATUS_TPM_ERROR_MASK: NTSTATUS = NTSTATUS(-1071054848i32 as _);
6276 pub const STATUS_TPM_FAIL: NTSTATUS = NTSTATUS(-1071054839i32 as _);
6277 pub const STATUS_TPM_FAILEDSELFTEST: NTSTATUS = NTSTATUS(-1071054820i32 as _);
6278 pub const STATUS_TPM_FAMILYCOUNT: NTSTATUS = NTSTATUS(-1071054784i32 as _);
6279 pub const STATUS_TPM_INAPPROPRIATE_ENC: NTSTATUS = NTSTATUS(-1071054834i32 as _);
6280 pub const STATUS_TPM_INAPPROPRIATE_SIG: NTSTATUS = NTSTATUS(-1071054809i32 as _);
6281 pub const STATUS_TPM_INSTALL_DISABLED: NTSTATUS = NTSTATUS(-1071054837i32 as _);
6282 pub const STATUS_TPM_INSUFFICIENT_BUFFER: NTSTATUS = NTSTATUS(-1071050747i32 as _);
6283 pub const STATUS_TPM_INVALID_AUTHHANDLE: NTSTATUS = NTSTATUS(-1071054814i32 as _);
6284 pub const STATUS_TPM_INVALID_FAMILY: NTSTATUS = NTSTATUS(-1071054793i32 as _);
6285 pub const STATUS_TPM_INVALID_HANDLE: NTSTATUS = NTSTATUS(-1071053823i32 as _);
6286 pub const STATUS_TPM_INVALID_KEYHANDLE: NTSTATUS = NTSTATUS(-1071054836i32 as _);
6287 pub const STATUS_TPM_INVALID_KEYUSAGE: NTSTATUS = NTSTATUS(-1071054812i32 as _);
6288 pub const STATUS_TPM_INVALID_PCR_INFO: NTSTATUS = NTSTATUS(-1071054832i32 as _);
6289 pub const STATUS_TPM_INVALID_POSTINIT: NTSTATUS = NTSTATUS(-1071054810i32 as _);
6290 pub const STATUS_TPM_INVALID_RESOURCE: NTSTATUS = NTSTATUS(-1071054795i32 as _);
6291 pub const STATUS_TPM_INVALID_STRUCTURE: NTSTATUS = NTSTATUS(-1071054781i32 as _);
6292 pub const STATUS_TPM_IOERROR: NTSTATUS = NTSTATUS(-1071054817i32 as _);
6293 pub const STATUS_TPM_KEYNOTFOUND: NTSTATUS = NTSTATUS(-1071054835i32 as _);
6294 pub const STATUS_TPM_KEY_NOTSUPPORTED: NTSTATUS = NTSTATUS(-1071054790i32 as _);
6295 pub const STATUS_TPM_KEY_OWNER_CONTROL: NTSTATUS = NTSTATUS(-1071054780i32 as _);
6296 pub const STATUS_TPM_MAXNVWRITES: NTSTATUS = NTSTATUS(-1071054776i32 as _);
6297 pub const STATUS_TPM_MA_AUTHORITY: NTSTATUS = NTSTATUS(-1071054753i32 as _);
6298 pub const STATUS_TPM_MA_DESTINATION: NTSTATUS = NTSTATUS(-1071054755i32 as _);
6299 pub const STATUS_TPM_MA_SOURCE: NTSTATUS = NTSTATUS(-1071054754i32 as _);
6300 pub const STATUS_TPM_MA_TICKET_SIGNATURE: NTSTATUS = NTSTATUS(-1071054756i32 as _);
6301 pub const STATUS_TPM_MIGRATEFAIL: NTSTATUS = NTSTATUS(-1071054833i32 as _);
6302 pub const STATUS_TPM_NEEDS_SELFTEST: NTSTATUS = NTSTATUS(-1071052799i32 as _);
6303 pub const STATUS_TPM_NOCONTEXTSPACE: NTSTATUS = NTSTATUS(-1071054749i32 as _);
6304 pub const STATUS_TPM_NOOPERATOR: NTSTATUS = NTSTATUS(-1071054775i32 as _);
6305 pub const STATUS_TPM_NOSPACE: NTSTATUS = NTSTATUS(-1071054831i32 as _);
6306 pub const STATUS_TPM_NOSRK: NTSTATUS = NTSTATUS(-1071054830i32 as _);
6307 pub const STATUS_TPM_NOTFIPS: NTSTATUS = NTSTATUS(-1071054794i32 as _);
6308 pub const STATUS_TPM_NOTLOCAL: NTSTATUS = NTSTATUS(-1071054797i32 as _);
6309 pub const STATUS_TPM_NOTRESETABLE: NTSTATUS = NTSTATUS(-1071054798i32 as _);
6310 pub const STATUS_TPM_NOTSEALED_BLOB: NTSTATUS = NTSTATUS(-1071054829i32 as _);
6311 pub const STATUS_TPM_NOT_FOUND: NTSTATUS = NTSTATUS(-1071050749i32 as _);
6312 pub const STATUS_TPM_NOT_FULLWRITE: NTSTATUS = NTSTATUS(-1071054778i32 as _);
6313 pub const STATUS_TPM_NO_ENDORSEMENT: NTSTATUS = NTSTATUS(-1071054813i32 as _);
6314 pub const STATUS_TPM_NO_NV_PERMISSION: NTSTATUS = NTSTATUS(-1071054792i32 as _);
6315 pub const STATUS_TPM_NO_WRAP_TRANSPORT: NTSTATUS = NTSTATUS(-1071054801i32 as _);
6316 pub const STATUS_TPM_OWNER_CONTROL: NTSTATUS = NTSTATUS(-1071054769i32 as _);
6317 pub const STATUS_TPM_OWNER_SET: NTSTATUS = NTSTATUS(-1071054828i32 as _);
6318 pub const STATUS_TPM_PERMANENTEK: NTSTATUS = NTSTATUS(-1071054751i32 as _);
6319 pub const STATUS_TPM_PER_NOWRITE: NTSTATUS = NTSTATUS(-1071054785i32 as _);
6320 pub const STATUS_TPM_PPI_FUNCTION_UNSUPPORTED: NTSTATUS = NTSTATUS(-1071050746i32 as _);
6321 pub const STATUS_TPM_READ_ONLY: NTSTATUS = NTSTATUS(-1071054786i32 as _);
6322 pub const STATUS_TPM_REQUIRES_SIGN: NTSTATUS = NTSTATUS(-1071054791i32 as _);
6323 pub const STATUS_TPM_RESOURCEMISSING: NTSTATUS = NTSTATUS(-1071054774i32 as _);
6324 pub const STATUS_TPM_RESOURCES: NTSTATUS = NTSTATUS(-1071054827i32 as _);
6325 pub const STATUS_TPM_RETRY: NTSTATUS = NTSTATUS(-1071052800i32 as _);
6326 pub const STATUS_TPM_SHA_ERROR: NTSTATUS = NTSTATUS(-1071054821i32 as _);
6327 pub const STATUS_TPM_SHA_THREAD: NTSTATUS = NTSTATUS(-1071054822i32 as _);
6328 pub const STATUS_TPM_SHORTRANDOM: NTSTATUS = NTSTATUS(-1071054826i32 as _);
6329 pub const STATUS_TPM_SIZE: NTSTATUS = NTSTATUS(-1071054825i32 as _);
6330 pub const STATUS_TPM_TOOMANYCONTEXTS: NTSTATUS = NTSTATUS(-1071054757i32 as _);
6331 pub const STATUS_TPM_TOO_MANY_CONTEXTS: NTSTATUS = NTSTATUS(-1071050750i32 as _);
6332 pub const STATUS_TPM_TRANSPORT_NOTEXCLUSIVE: NTSTATUS = NTSTATUS(-1071054770i32 as _);
6333 pub const STATUS_TPM_WRITE_LOCKED: NTSTATUS = NTSTATUS(-1071054783i32 as _);
6334 pub const STATUS_TPM_WRONGPCRVAL: NTSTATUS = NTSTATUS(-1071054824i32 as _);
6335 pub const STATUS_TPM_WRONG_ENTITYTYPE: NTSTATUS = NTSTATUS(-1071054811i32 as _);
6336 pub const STATUS_TPM_ZERO_EXHAUST_ENABLED: NTSTATUS = NTSTATUS(-1071038464i32 as _);
6337 pub const STATUS_TRANSACTED_MAPPING_UNSUPPORTED_REMOTE: NTSTATUS = NTSTATUS(-1072103360i32 as _);
6338 pub const STATUS_TRANSACTIONAL_CONFLICT: NTSTATUS = NTSTATUS(-1072103423i32 as _);
6339 pub const STATUS_TRANSACTIONAL_OPEN_NOT_ALLOWED: NTSTATUS = NTSTATUS(-1072103361i32 as _);
6340 pub const STATUS_TRANSACTIONMANAGER_IDENTITY_MISMATCH: NTSTATUS = NTSTATUS(-1072103332i32 as _);
6341 pub const STATUS_TRANSACTIONMANAGER_NOT_FOUND: NTSTATUS = NTSTATUS(-1072103343i32 as _);
6342 pub const STATUS_TRANSACTIONMANAGER_NOT_ONLINE: NTSTATUS = NTSTATUS(-1072103342i32 as _);
6343 pub const STATUS_TRANSACTIONMANAGER_RECOVERY_NAME_COLLISION: NTSTATUS = NTSTATUS(-1072103341i32 as _);
6344 pub const STATUS_TRANSACTIONS_NOT_FROZEN: NTSTATUS = NTSTATUS(-1072103355i32 as _);
6345 pub const STATUS_TRANSACTIONS_UNSUPPORTED_REMOTE: NTSTATUS = NTSTATUS(-1072103414i32 as _);
6346 pub const STATUS_TRANSACTION_ABORTED: NTSTATUS = NTSTATUS(-1073741297i32 as _);
6347 pub const STATUS_TRANSACTION_ALREADY_ABORTED: NTSTATUS = NTSTATUS(-1072103403i32 as _);
6348 pub const STATUS_TRANSACTION_ALREADY_COMMITTED: NTSTATUS = NTSTATUS(-1072103402i32 as _);
6349 pub const STATUS_TRANSACTION_FREEZE_IN_PROGRESS: NTSTATUS = NTSTATUS(-1072103354i32 as _);
6350 pub const STATUS_TRANSACTION_INTEGRITY_VIOLATED: NTSTATUS = NTSTATUS(-1072103333i32 as _);
6351 pub const STATUS_TRANSACTION_INVALID_ID: NTSTATUS = NTSTATUS(-1073741292i32 as _);
6352 pub const STATUS_TRANSACTION_INVALID_MARSHALL_BUFFER: NTSTATUS = NTSTATUS(-1072103401i32 as _);
6353 pub const STATUS_TRANSACTION_INVALID_TYPE: NTSTATUS = NTSTATUS(-1073741291i32 as _);
6354 pub const STATUS_TRANSACTION_MUST_WRITETHROUGH: NTSTATUS = NTSTATUS(-1072103330i32 as _);
6355 pub const STATUS_TRANSACTION_NOT_ACTIVE: NTSTATUS = NTSTATUS(-1072103421i32 as _);
6356 pub const STATUS_TRANSACTION_NOT_ENLISTED: NTSTATUS = NTSTATUS(-1072103327i32 as _);
6357 pub const STATUS_TRANSACTION_NOT_FOUND: NTSTATUS = NTSTATUS(-1072103346i32 as _);
6358 pub const STATUS_TRANSACTION_NOT_JOINED: NTSTATUS = NTSTATUS(-1072103417i32 as _);
6359 pub const STATUS_TRANSACTION_NOT_REQUESTED: NTSTATUS = NTSTATUS(-1072103404i32 as _);
6360 pub const STATUS_TRANSACTION_NOT_ROOT: NTSTATUS = NTSTATUS(-1072103340i32 as _);
6361 pub const STATUS_TRANSACTION_NO_MATCH: NTSTATUS = NTSTATUS(-1073741294i32 as _);
6362 pub const STATUS_TRANSACTION_NO_RELEASE: NTSTATUS = NTSTATUS(-1073741295i32 as _);
6363 pub const STATUS_TRANSACTION_NO_SUPERIOR: NTSTATUS = NTSTATUS(-1072103329i32 as _);
6364 pub const STATUS_TRANSACTION_OBJECT_EXPIRED: NTSTATUS = NTSTATUS(-1072103339i32 as _);
6365 pub const STATUS_TRANSACTION_PROPAGATION_FAILED: NTSTATUS = NTSTATUS(-1072103408i32 as _);
6366 pub const STATUS_TRANSACTION_RECORD_TOO_LONG: NTSTATUS = NTSTATUS(-1072103336i32 as _);
6367 pub const STATUS_TRANSACTION_REQUEST_NOT_VALID: NTSTATUS = NTSTATUS(-1072103405i32 as _);
6368 pub const STATUS_TRANSACTION_REQUIRED_PROMOTION: NTSTATUS = NTSTATUS(-1072103357i32 as _);
6369 pub const STATUS_TRANSACTION_RESPONDED: NTSTATUS = NTSTATUS(-1073741293i32 as _);
6370 pub const STATUS_TRANSACTION_RESPONSE_NOT_ENLISTED: NTSTATUS = NTSTATUS(-1072103337i32 as _);
6371 pub const STATUS_TRANSACTION_SCOPE_CALLBACKS_NOT_SET: NTSTATUS = NTSTATUS(-2145845182i32 as _);
6372 pub const STATUS_TRANSACTION_SUPERIOR_EXISTS: NTSTATUS = NTSTATUS(-1072103406i32 as _);
6373 pub const STATUS_TRANSACTION_TIMED_OUT: NTSTATUS = NTSTATUS(-1073741296i32 as _);
6374 pub const STATUS_TRANSLATION_COMPLETE: NTSTATUS = NTSTATUS(288i32 as _);
6375 pub const STATUS_TRANSPORT_FULL: NTSTATUS = NTSTATUS(-1073741110i32 as _);
6376 pub const STATUS_TRIGGERED_EXECUTABLE_MEMORY_WRITE: NTSTATUS = NTSTATUS(-1073739994i32 as _);
6377 pub const STATUS_TRIM_READ_ZERO_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1073740686i32 as _);
6378 pub const STATUS_TRUSTED_DOMAIN_FAILURE: NTSTATUS = NTSTATUS(-1073741428i32 as _);
6379 pub const STATUS_TRUSTED_RELATIONSHIP_FAILURE: NTSTATUS = NTSTATUS(-1073741427i32 as _);
6380 pub const STATUS_TRUST_FAILURE: NTSTATUS = NTSTATUS(-1073741424i32 as _);
6381 pub const STATUS_TS_INCOMPATIBLE_SESSIONS: NTSTATUS = NTSTATUS(-1073086407i32 as _);
6382 pub const STATUS_TS_VIDEO_SUBSYSTEM_ERROR: NTSTATUS = NTSTATUS(-1073086406i32 as _);
6383 pub const STATUS_TXF_ATTRIBUTE_CORRUPT: NTSTATUS = NTSTATUS(-1072103363i32 as _);
6384 pub const STATUS_TXF_DIR_NOT_EMPTY: NTSTATUS = NTSTATUS(-1072103367i32 as _);
6385 pub const STATUS_TXF_METADATA_ALREADY_PRESENT: NTSTATUS = NTSTATUS(-2145845183i32 as _);
6386 pub const STATUS_UNABLE_TO_DECOMMIT_VM: NTSTATUS = NTSTATUS(-1073741780i32 as _);
6387 pub const STATUS_UNABLE_TO_DELETE_SECTION: NTSTATUS = NTSTATUS(-1073741797i32 as _);
6388 pub const STATUS_UNABLE_TO_FREE_VM: NTSTATUS = NTSTATUS(-1073741798i32 as _);
6389 pub const STATUS_UNABLE_TO_LOCK_MEDIA: NTSTATUS = NTSTATUS(-1073741451i32 as _);
6390 pub const STATUS_UNABLE_TO_UNLOAD_MEDIA: NTSTATUS = NTSTATUS(-1073741450i32 as _);
6391 pub const STATUS_UNDEFINED_CHARACTER: NTSTATUS = NTSTATUS(-1073741469i32 as _);
6392 pub const STATUS_UNDEFINED_SCOPE: NTSTATUS = NTSTATUS(-1073740540i32 as _);
6393 pub const STATUS_UNEXPECTED_IO_ERROR: NTSTATUS = NTSTATUS(-1073741591i32 as _);
6394 pub const STATUS_UNEXPECTED_MM_CREATE_ERR: NTSTATUS = NTSTATUS(-1073741590i32 as _);
6395 pub const STATUS_UNEXPECTED_MM_EXTEND_ERR: NTSTATUS = NTSTATUS(-1073741588i32 as _);
6396 pub const STATUS_UNEXPECTED_MM_MAP_ERROR: NTSTATUS = NTSTATUS(-1073741589i32 as _);
6397 pub const STATUS_UNEXPECTED_NETWORK_ERROR: NTSTATUS = NTSTATUS(-1073741628i32 as _);
6398 pub const STATUS_UNFINISHED_CONTEXT_DELETED: NTSTATUS = NTSTATUS(-1073741074i32 as _);
6399 pub const STATUS_UNHANDLED_EXCEPTION: NTSTATUS = NTSTATUS(-1073741500i32 as _);
6400 pub const STATUS_UNKNOWN_REVISION: NTSTATUS = NTSTATUS(-1073741736i32 as _);
6401 pub const STATUS_UNMAPPABLE_CHARACTER: NTSTATUS = NTSTATUS(-1073741470i32 as _);
6402 pub const STATUS_UNRECOGNIZED_MEDIA: NTSTATUS = NTSTATUS(-1073741804i32 as _);
6403 pub const STATUS_UNRECOGNIZED_VOLUME: NTSTATUS = NTSTATUS(-1073741489i32 as _);
6404 pub const STATUS_UNSATISFIED_DEPENDENCIES: NTSTATUS = NTSTATUS(-1073740615i32 as _);
6405 pub const STATUS_UNSUCCESSFUL: NTSTATUS = NTSTATUS(-1073741823i32 as _);
6406 pub const STATUS_UNSUPPORTED_COMPRESSION: NTSTATUS = NTSTATUS(-1073741217i32 as _);
6407 pub const STATUS_UNSUPPORTED_PAGING_MODE: NTSTATUS = NTSTATUS(-1073740613i32 as _);
6408 pub const STATUS_UNSUPPORTED_PREAUTH: NTSTATUS = NTSTATUS(-1073740975i32 as _);
6409 pub const STATUS_UNTRUSTED_MOUNT_POINT: NTSTATUS = NTSTATUS(-1073740612i32 as _);
6410 pub const STATUS_UNWIND: NTSTATUS = NTSTATUS(-1073741785i32 as _);
6411 pub const STATUS_UNWIND_CONSOLIDATE: NTSTATUS = NTSTATUS(-2147483607i32 as _);
6412 pub const STATUS_USER2USER_REQUIRED: NTSTATUS = NTSTATUS(-1073740792i32 as _);
6413 pub const STATUS_USER_APC: NTSTATUS = NTSTATUS(192i32 as _);
6414 pub const STATUS_USER_DELETE_TRUST_QUOTA_EXCEEDED: NTSTATUS = NTSTATUS(-1073740797i32 as _);
6415 pub const STATUS_USER_EXISTS: NTSTATUS = NTSTATUS(-1073741725i32 as _);
6416 pub const STATUS_USER_MAPPED_FILE: NTSTATUS = NTSTATUS(-1073741245i32 as _);
6417 pub const STATUS_USER_SESSION_DELETED: NTSTATUS = NTSTATUS(-1073741309i32 as _);
6418 pub const STATUS_VALIDATE_CONTINUE: NTSTATUS = NTSTATUS(-1073741199i32 as _);
6419 pub const STATUS_VALID_CATALOG_HASH: NTSTATUS = NTSTATUS(301i32 as _);
6420 pub const STATUS_VALID_IMAGE_HASH: NTSTATUS = NTSTATUS(300i32 as _);
6421 pub const STATUS_VALID_STRONG_CODE_HASH: NTSTATUS = NTSTATUS(302i32 as _);
6422 pub const STATUS_VARIABLE_NOT_FOUND: NTSTATUS = NTSTATUS(-1073741568i32 as _);
6423 pub const STATUS_VDM_DISALLOWED: NTSTATUS = NTSTATUS(-1073740780i32 as _);
6424 pub const STATUS_VDM_HARD_ERROR: NTSTATUS = NTSTATUS(-1073741283i32 as _);
6425 pub const STATUS_VERIFIER_STOP: NTSTATUS = NTSTATUS(-1073740767i32 as _);
6426 pub const STATUS_VERIFY_REQUIRED: NTSTATUS = NTSTATUS(-2147483626i32 as _);
6427 pub const STATUS_VHDSET_BACKING_STORAGE_NOT_FOUND: NTSTATUS = NTSTATUS(-1067647220i32 as _);
6428 pub const STATUS_VHD_ALREADY_AT_OR_BELOW_MINIMUM_VIRTUAL_SIZE: NTSTATUS = NTSTATUS(-1069940685i32 as _);
6429 pub const STATUS_VHD_BITMAP_MISMATCH: NTSTATUS = NTSTATUS(-1069940724i32 as _);
6430 pub const STATUS_VHD_BLOCK_ALLOCATION_FAILURE: NTSTATUS = NTSTATUS(-1069940727i32 as _);
6431 pub const STATUS_VHD_BLOCK_ALLOCATION_TABLE_CORRUPT: NTSTATUS = NTSTATUS(-1069940726i32 as _);
6432 pub const STATUS_VHD_CHANGE_TRACKING_DISABLED: NTSTATUS = NTSTATUS(-1069940694i32 as _);
6433 pub const STATUS_VHD_CHILD_PARENT_ID_MISMATCH: NTSTATUS = NTSTATUS(-1069940722i32 as _);
6434 pub const STATUS_VHD_CHILD_PARENT_SIZE_MISMATCH: NTSTATUS = NTSTATUS(-1069940713i32 as _);
6435 pub const STATUS_VHD_CHILD_PARENT_TIMESTAMP_MISMATCH: NTSTATUS = NTSTATUS(-1069940721i32 as _);
6436 pub const STATUS_VHD_COULD_NOT_COMPUTE_MINIMUM_VIRTUAL_SIZE: NTSTATUS = NTSTATUS(-1069940686i32 as _);
6437 pub const STATUS_VHD_DIFFERENCING_CHAIN_CYCLE_DETECTED: NTSTATUS = NTSTATUS(-1069940712i32 as _);
6438 pub const STATUS_VHD_DIFFERENCING_CHAIN_ERROR_IN_PARENT: NTSTATUS = NTSTATUS(-1069940711i32 as _);
6439 pub const STATUS_VHD_DRIVE_FOOTER_CHECKSUM_MISMATCH: NTSTATUS = NTSTATUS(-1069940734i32 as _);
6440 pub const STATUS_VHD_DRIVE_FOOTER_CORRUPT: NTSTATUS = NTSTATUS(-1069940733i32 as _);
6441 pub const STATUS_VHD_DRIVE_FOOTER_MISSING: NTSTATUS = NTSTATUS(-1069940735i32 as _);
6442 pub const STATUS_VHD_FORMAT_UNKNOWN: NTSTATUS = NTSTATUS(-1069940732i32 as _);
6443 pub const STATUS_VHD_FORMAT_UNSUPPORTED_VERSION: NTSTATUS = NTSTATUS(-1069940731i32 as _);
6444 pub const STATUS_VHD_INVALID_BLOCK_SIZE: NTSTATUS = NTSTATUS(-1069940725i32 as _);
6445 pub const STATUS_VHD_INVALID_CHANGE_TRACKING_ID: NTSTATUS = NTSTATUS(-1069940695i32 as _);
6446 pub const STATUS_VHD_INVALID_FILE_SIZE: NTSTATUS = NTSTATUS(-1069940717i32 as _);
6447 pub const STATUS_VHD_INVALID_SIZE: NTSTATUS = NTSTATUS(-1069940718i32 as _);
6448 pub const STATUS_VHD_INVALID_STATE: NTSTATUS = NTSTATUS(-1069940708i32 as _);
6449 pub const STATUS_VHD_INVALID_TYPE: NTSTATUS = NTSTATUS(-1069940709i32 as _);
6450 pub const STATUS_VHD_METADATA_FULL: NTSTATUS = NTSTATUS(-1069940696i32 as _);
6451 pub const STATUS_VHD_METADATA_READ_FAILURE: NTSTATUS = NTSTATUS(-1069940720i32 as _);
6452 pub const STATUS_VHD_METADATA_WRITE_FAILURE: NTSTATUS = NTSTATUS(-1069940719i32 as _);
6453 pub const STATUS_VHD_MISSING_CHANGE_TRACKING_INFORMATION: NTSTATUS = NTSTATUS(-1069940688i32 as _);
6454 pub const STATUS_VHD_PARENT_VHD_ACCESS_DENIED: NTSTATUS = NTSTATUS(-1069940714i32 as _);
6455 pub const STATUS_VHD_PARENT_VHD_NOT_FOUND: NTSTATUS = NTSTATUS(-1069940723i32 as _);
6456 pub const STATUS_VHD_RESIZE_WOULD_TRUNCATE_DATA: NTSTATUS = NTSTATUS(-1069940687i32 as _);
6457 pub const STATUS_VHD_SHARED: NTSTATUS = NTSTATUS(-1067647222i32 as _);
6458 pub const STATUS_VHD_SPARSE_HEADER_CHECKSUM_MISMATCH: NTSTATUS = NTSTATUS(-1069940730i32 as _);
6459 pub const STATUS_VHD_SPARSE_HEADER_CORRUPT: NTSTATUS = NTSTATUS(-1069940728i32 as _);
6460 pub const STATUS_VHD_SPARSE_HEADER_UNSUPPORTED_VERSION: NTSTATUS = NTSTATUS(-1069940729i32 as _);
6461 pub const STATUS_VIDEO_DRIVER_DEBUG_REPORT_REQUEST: NTSTATUS = NTSTATUS(1075511532i32 as _);
6462 pub const STATUS_VIDEO_HUNG_DISPLAY_DRIVER_THREAD: NTSTATUS = NTSTATUS(-1071972118i32 as _);
6463 pub const STATUS_VIDEO_HUNG_DISPLAY_DRIVER_THREAD_RECOVERED: NTSTATUS = NTSTATUS(-2145713941i32 as _);
6464 pub const STATUS_VID_CHILD_GPA_PAGE_SET_CORRUPTED: NTSTATUS = NTSTATUS(-1070137330i32 as _);
6465 pub const STATUS_VID_DUPLICATE_HANDLER: NTSTATUS = NTSTATUS(-1070137343i32 as _);
6466 pub const STATUS_VID_EXCEEDED_KM_CONTEXT_COUNT_LIMIT: NTSTATUS = NTSTATUS(-1070137314i32 as _);
6467 pub const STATUS_VID_EXCEEDED_MBP_ENTRY_MAP_LIMIT: NTSTATUS = NTSTATUS(-1070137332i32 as _);
6468 pub const STATUS_VID_HANDLER_NOT_PRESENT: NTSTATUS = NTSTATUS(-1070137340i32 as _);
6469 pub const STATUS_VID_INVALID_CHILD_GPA_PAGE_SET: NTSTATUS = NTSTATUS(-1070137310i32 as _);
6470 pub const STATUS_VID_INVALID_GPA_RANGE_HANDLE: NTSTATUS = NTSTATUS(-1070137323i32 as _);
6471 pub const STATUS_VID_INVALID_MEMORY_BLOCK_HANDLE: NTSTATUS = NTSTATUS(-1070137326i32 as _);
6472 pub const STATUS_VID_INVALID_MESSAGE_QUEUE_HANDLE: NTSTATUS = NTSTATUS(-1070137324i32 as _);
6473 pub const STATUS_VID_INVALID_NUMA_NODE_INDEX: NTSTATUS = NTSTATUS(-1070137328i32 as _);
6474 pub const STATUS_VID_INVALID_NUMA_SETTINGS: NTSTATUS = NTSTATUS(-1070137329i32 as _);
6475 pub const STATUS_VID_INVALID_OBJECT_NAME: NTSTATUS = NTSTATUS(-1070137339i32 as _);
6476 pub const STATUS_VID_INVALID_PPM_HANDLE: NTSTATUS = NTSTATUS(-1070137320i32 as _);
6477 pub const STATUS_VID_INVALID_PROCESSOR_STATE: NTSTATUS = NTSTATUS(-1070137315i32 as _);
6478 pub const STATUS_VID_KM_INTERFACE_ALREADY_INITIALIZED: NTSTATUS = NTSTATUS(-1070137313i32 as _);
6479 pub const STATUS_VID_MBPS_ARE_LOCKED: NTSTATUS = NTSTATUS(-1070137319i32 as _);
6480 pub const STATUS_VID_MBP_ALREADY_LOCKED_USING_RESERVED_PAGE: NTSTATUS = NTSTATUS(-1070137307i32 as _);
6481 pub const STATUS_VID_MBP_COUNT_EXCEEDED_LIMIT: NTSTATUS = NTSTATUS(-1070137306i32 as _);
6482 pub const STATUS_VID_MB_PROPERTY_ALREADY_SET_RESET: NTSTATUS = NTSTATUS(-1070137312i32 as _);
6483 pub const STATUS_VID_MB_STILL_REFERENCED: NTSTATUS = NTSTATUS(-1070137331i32 as _);
6484 pub const STATUS_VID_MEMORY_BLOCK_LOCK_COUNT_EXCEEDED: NTSTATUS = NTSTATUS(-1070137321i32 as _);
6485 pub const STATUS_VID_MESSAGE_QUEUE_ALREADY_EXISTS: NTSTATUS = NTSTATUS(-1070137333i32 as _);
6486 pub const STATUS_VID_MESSAGE_QUEUE_CLOSED: NTSTATUS = NTSTATUS(-1070137318i32 as _);
6487 pub const STATUS_VID_MESSAGE_QUEUE_NAME_TOO_LONG: NTSTATUS = NTSTATUS(-1070137337i32 as _);
6488 pub const STATUS_VID_MMIO_RANGE_DESTROYED: NTSTATUS = NTSTATUS(-1070137311i32 as _);
6489 pub const STATUS_VID_NOTIFICATION_QUEUE_ALREADY_ASSOCIATED: NTSTATUS = NTSTATUS(-1070137327i32 as _);
6490 pub const STATUS_VID_NO_MEMORY_BLOCK_NOTIFICATION_QUEUE: NTSTATUS = NTSTATUS(-1070137322i32 as _);
6491 pub const STATUS_VID_PAGE_RANGE_OVERFLOW: NTSTATUS = NTSTATUS(-1070137325i32 as _);
6492 pub const STATUS_VID_PARTITION_ALREADY_EXISTS: NTSTATUS = NTSTATUS(-1070137336i32 as _);
6493 pub const STATUS_VID_PARTITION_DOES_NOT_EXIST: NTSTATUS = NTSTATUS(-1070137335i32 as _);
6494 pub const STATUS_VID_PARTITION_NAME_NOT_FOUND: NTSTATUS = NTSTATUS(-1070137334i32 as _);
6495 pub const STATUS_VID_PARTITION_NAME_TOO_LONG: NTSTATUS = NTSTATUS(-1070137338i32 as _);
6496 pub const STATUS_VID_QUEUE_FULL: NTSTATUS = NTSTATUS(-1070137341i32 as _);
6497 pub const STATUS_VID_REMOTE_NODE_PARENT_GPA_PAGES_USED: NTSTATUS = NTSTATUS(-2143879167i32 as _);
6498 pub const STATUS_VID_RESERVE_PAGE_SET_IS_BEING_USED: NTSTATUS = NTSTATUS(-1070137309i32 as _);
6499 pub const STATUS_VID_RESERVE_PAGE_SET_TOO_SMALL: NTSTATUS = NTSTATUS(-1070137308i32 as _);
6500 pub const STATUS_VID_SAVED_STATE_CORRUPT: NTSTATUS = NTSTATUS(-1070137305i32 as _);
6501 pub const STATUS_VID_SAVED_STATE_INCOMPATIBLE: NTSTATUS = NTSTATUS(-1070137303i32 as _);
6502 pub const STATUS_VID_SAVED_STATE_UNRECOGNIZED_ITEM: NTSTATUS = NTSTATUS(-1070137304i32 as _);
6503 pub const STATUS_VID_STOP_PENDING: NTSTATUS = NTSTATUS(-1070137316i32 as _);
6504 pub const STATUS_VID_TOO_MANY_HANDLERS: NTSTATUS = NTSTATUS(-1070137342i32 as _);
6505 pub const STATUS_VID_VIRTUAL_PROCESSOR_LIMIT_EXCEEDED: NTSTATUS = NTSTATUS(-1070137317i32 as _);
6506 pub const STATUS_VID_VTL_ACCESS_DENIED: NTSTATUS = NTSTATUS(-1070137302i32 as _);
6507 pub const STATUS_VIRTDISK_DISK_ALREADY_OWNED: NTSTATUS = NTSTATUS(-1069940706i32 as _);
6508 pub const STATUS_VIRTDISK_DISK_ONLINE_AND_WRITABLE: NTSTATUS = NTSTATUS(-1069940705i32 as _);
6509 pub const STATUS_VIRTDISK_NOT_VIRTUAL_DISK: NTSTATUS = NTSTATUS(-1069940715i32 as _);
6510 pub const STATUS_VIRTDISK_PROVIDER_NOT_FOUND: NTSTATUS = NTSTATUS(-1069940716i32 as _);
6511 pub const STATUS_VIRTDISK_UNSUPPORTED_DISK_SECTOR_SIZE: NTSTATUS = NTSTATUS(-1069940707i32 as _);
6512 pub const STATUS_VIRTUAL_CIRCUIT_CLOSED: NTSTATUS = NTSTATUS(-1073741610i32 as _);
6513 pub const STATUS_VIRTUAL_DISK_LIMITATION: NTSTATUS = NTSTATUS(-1069940710i32 as _);
6514 pub const STATUS_VIRUS_DELETED: NTSTATUS = NTSTATUS(-1073739513i32 as _);
6515 pub const STATUS_VIRUS_INFECTED: NTSTATUS = NTSTATUS(-1073739514i32 as _);
6516 pub const STATUS_VOLMGR_ALL_DISKS_FAILED: NTSTATUS = NTSTATUS(-1070071767i32 as _);
6517 pub const STATUS_VOLMGR_BAD_BOOT_DISK: NTSTATUS = NTSTATUS(-1070071729i32 as _);
6518 pub const STATUS_VOLMGR_DATABASE_FULL: NTSTATUS = NTSTATUS(-1070071807i32 as _);
6519 pub const STATUS_VOLMGR_DIFFERENT_SECTOR_SIZE: NTSTATUS = NTSTATUS(-1070071730i32 as _);
6520 pub const STATUS_VOLMGR_DISK_CONFIGURATION_CORRUPTED: NTSTATUS = NTSTATUS(-1070071806i32 as _);
6521 pub const STATUS_VOLMGR_DISK_CONFIGURATION_NOT_IN_SYNC: NTSTATUS = NTSTATUS(-1070071805i32 as _);
6522 pub const STATUS_VOLMGR_DISK_CONTAINS_NON_SIMPLE_VOLUME: NTSTATUS = NTSTATUS(-1070071803i32 as _);
6523 pub const STATUS_VOLMGR_DISK_DUPLICATE: NTSTATUS = NTSTATUS(-1070071802i32 as _);
6524 pub const STATUS_VOLMGR_DISK_DYNAMIC: NTSTATUS = NTSTATUS(-1070071801i32 as _);
6525 pub const STATUS_VOLMGR_DISK_ID_INVALID: NTSTATUS = NTSTATUS(-1070071800i32 as _);
6526 pub const STATUS_VOLMGR_DISK_INVALID: NTSTATUS = NTSTATUS(-1070071799i32 as _);
6527 pub const STATUS_VOLMGR_DISK_LAST_VOTER: NTSTATUS = NTSTATUS(-1070071798i32 as _);
6528 pub const STATUS_VOLMGR_DISK_LAYOUT_INVALID: NTSTATUS = NTSTATUS(-1070071797i32 as _);
6529 pub const STATUS_VOLMGR_DISK_LAYOUT_NON_BASIC_BETWEEN_BASIC_PARTITIONS: NTSTATUS = NTSTATUS(-1070071796i32 as _);
6530 pub const STATUS_VOLMGR_DISK_LAYOUT_NOT_CYLINDER_ALIGNED: NTSTATUS = NTSTATUS(-1070071795i32 as _);
6531 pub const STATUS_VOLMGR_DISK_LAYOUT_PARTITIONS_TOO_SMALL: NTSTATUS = NTSTATUS(-1070071794i32 as _);
6532 pub const STATUS_VOLMGR_DISK_LAYOUT_PRIMARY_BETWEEN_LOGICAL_PARTITIONS: NTSTATUS = NTSTATUS(-1070071793i32 as _);
6533 pub const STATUS_VOLMGR_DISK_LAYOUT_TOO_MANY_PARTITIONS: NTSTATUS = NTSTATUS(-1070071792i32 as _);
6534 pub const STATUS_VOLMGR_DISK_MISSING: NTSTATUS = NTSTATUS(-1070071791i32 as _);
6535 pub const STATUS_VOLMGR_DISK_NOT_EMPTY: NTSTATUS = NTSTATUS(-1070071790i32 as _);
6536 pub const STATUS_VOLMGR_DISK_NOT_ENOUGH_SPACE: NTSTATUS = NTSTATUS(-1070071789i32 as _);
6537 pub const STATUS_VOLMGR_DISK_REVECTORING_FAILED: NTSTATUS = NTSTATUS(-1070071788i32 as _);
6538 pub const STATUS_VOLMGR_DISK_SECTOR_SIZE_INVALID: NTSTATUS = NTSTATUS(-1070071787i32 as _);
6539 pub const STATUS_VOLMGR_DISK_SET_NOT_CONTAINED: NTSTATUS = NTSTATUS(-1070071786i32 as _);
6540 pub const STATUS_VOLMGR_DISK_USED_BY_MULTIPLE_MEMBERS: NTSTATUS = NTSTATUS(-1070071785i32 as _);
6541 pub const STATUS_VOLMGR_DISK_USED_BY_MULTIPLE_PLEXES: NTSTATUS = NTSTATUS(-1070071784i32 as _);
6542 pub const STATUS_VOLMGR_DYNAMIC_DISK_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1070071783i32 as _);
6543 pub const STATUS_VOLMGR_EXTENT_ALREADY_USED: NTSTATUS = NTSTATUS(-1070071782i32 as _);
6544 pub const STATUS_VOLMGR_EXTENT_NOT_CONTIGUOUS: NTSTATUS = NTSTATUS(-1070071781i32 as _);
6545 pub const STATUS_VOLMGR_EXTENT_NOT_IN_PUBLIC_REGION: NTSTATUS = NTSTATUS(-1070071780i32 as _);
6546 pub const STATUS_VOLMGR_EXTENT_NOT_SECTOR_ALIGNED: NTSTATUS = NTSTATUS(-1070071779i32 as _);
6547 pub const STATUS_VOLMGR_EXTENT_OVERLAPS_EBR_PARTITION: NTSTATUS = NTSTATUS(-1070071778i32 as _);
6548 pub const STATUS_VOLMGR_EXTENT_VOLUME_LENGTHS_DO_NOT_MATCH: NTSTATUS = NTSTATUS(-1070071777i32 as _);
6549 pub const STATUS_VOLMGR_FAULT_TOLERANT_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1070071776i32 as _);
6550 pub const STATUS_VOLMGR_INCOMPLETE_DISK_MIGRATION: NTSTATUS = NTSTATUS(-2143813630i32 as _);
6551 pub const STATUS_VOLMGR_INCOMPLETE_REGENERATION: NTSTATUS = NTSTATUS(-2143813631i32 as _);
6552 pub const STATUS_VOLMGR_INTERLEAVE_LENGTH_INVALID: NTSTATUS = NTSTATUS(-1070071775i32 as _);
6553 pub const STATUS_VOLMGR_MAXIMUM_REGISTERED_USERS: NTSTATUS = NTSTATUS(-1070071774i32 as _);
6554 pub const STATUS_VOLMGR_MEMBER_INDEX_DUPLICATE: NTSTATUS = NTSTATUS(-1070071772i32 as _);
6555 pub const STATUS_VOLMGR_MEMBER_INDEX_INVALID: NTSTATUS = NTSTATUS(-1070071771i32 as _);
6556 pub const STATUS_VOLMGR_MEMBER_IN_SYNC: NTSTATUS = NTSTATUS(-1070071773i32 as _);
6557 pub const STATUS_VOLMGR_MEMBER_MISSING: NTSTATUS = NTSTATUS(-1070071770i32 as _);
6558 pub const STATUS_VOLMGR_MEMBER_NOT_DETACHED: NTSTATUS = NTSTATUS(-1070071769i32 as _);
6559 pub const STATUS_VOLMGR_MEMBER_REGENERATING: NTSTATUS = NTSTATUS(-1070071768i32 as _);
6560 pub const STATUS_VOLMGR_MIRROR_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1070071717i32 as _);
6561 pub const STATUS_VOLMGR_NOTIFICATION_RESET: NTSTATUS = NTSTATUS(-1070071764i32 as _);
6562 pub const STATUS_VOLMGR_NOT_PRIMARY_PACK: NTSTATUS = NTSTATUS(-1070071726i32 as _);
6563 pub const STATUS_VOLMGR_NO_REGISTERED_USERS: NTSTATUS = NTSTATUS(-1070071766i32 as _);
6564 pub const STATUS_VOLMGR_NO_SUCH_USER: NTSTATUS = NTSTATUS(-1070071765i32 as _);
6565 pub const STATUS_VOLMGR_NO_VALID_LOG_COPIES: NTSTATUS = NTSTATUS(-1070071720i32 as _);
6566 pub const STATUS_VOLMGR_NUMBER_OF_DISKS_INVALID: NTSTATUS = NTSTATUS(-1070071718i32 as _);
6567 pub const STATUS_VOLMGR_NUMBER_OF_DISKS_IN_MEMBER_INVALID: NTSTATUS = NTSTATUS(-1070071723i32 as _);
6568 pub const STATUS_VOLMGR_NUMBER_OF_DISKS_IN_PLEX_INVALID: NTSTATUS = NTSTATUS(-1070071724i32 as _);
6569 pub const STATUS_VOLMGR_NUMBER_OF_EXTENTS_INVALID: NTSTATUS = NTSTATUS(-1070071731i32 as _);
6570 pub const STATUS_VOLMGR_NUMBER_OF_MEMBERS_INVALID: NTSTATUS = NTSTATUS(-1070071763i32 as _);
6571 pub const STATUS_VOLMGR_NUMBER_OF_PLEXES_INVALID: NTSTATUS = NTSTATUS(-1070071762i32 as _);
6572 pub const STATUS_VOLMGR_PACK_CONFIG_OFFLINE: NTSTATUS = NTSTATUS(-1070071728i32 as _);
6573 pub const STATUS_VOLMGR_PACK_CONFIG_ONLINE: NTSTATUS = NTSTATUS(-1070071727i32 as _);
6574 pub const STATUS_VOLMGR_PACK_CONFIG_UPDATE_FAILED: NTSTATUS = NTSTATUS(-1070071804i32 as _);
6575 pub const STATUS_VOLMGR_PACK_DUPLICATE: NTSTATUS = NTSTATUS(-1070071761i32 as _);
6576 pub const STATUS_VOLMGR_PACK_HAS_QUORUM: NTSTATUS = NTSTATUS(-1070071756i32 as _);
6577 pub const STATUS_VOLMGR_PACK_ID_INVALID: NTSTATUS = NTSTATUS(-1070071760i32 as _);
6578 pub const STATUS_VOLMGR_PACK_INVALID: NTSTATUS = NTSTATUS(-1070071759i32 as _);
6579 pub const STATUS_VOLMGR_PACK_LOG_UPDATE_FAILED: NTSTATUS = NTSTATUS(-1070071725i32 as _);
6580 pub const STATUS_VOLMGR_PACK_NAME_INVALID: NTSTATUS = NTSTATUS(-1070071758i32 as _);
6581 pub const STATUS_VOLMGR_PACK_OFFLINE: NTSTATUS = NTSTATUS(-1070071757i32 as _);
6582 pub const STATUS_VOLMGR_PACK_WITHOUT_QUORUM: NTSTATUS = NTSTATUS(-1070071755i32 as _);
6583 pub const STATUS_VOLMGR_PARTITION_STYLE_INVALID: NTSTATUS = NTSTATUS(-1070071754i32 as _);
6584 pub const STATUS_VOLMGR_PARTITION_UPDATE_FAILED: NTSTATUS = NTSTATUS(-1070071753i32 as _);
6585 pub const STATUS_VOLMGR_PLEX_INDEX_DUPLICATE: NTSTATUS = NTSTATUS(-1070071751i32 as _);
6586 pub const STATUS_VOLMGR_PLEX_INDEX_INVALID: NTSTATUS = NTSTATUS(-1070071750i32 as _);
6587 pub const STATUS_VOLMGR_PLEX_IN_SYNC: NTSTATUS = NTSTATUS(-1070071752i32 as _);
6588 pub const STATUS_VOLMGR_PLEX_LAST_ACTIVE: NTSTATUS = NTSTATUS(-1070071749i32 as _);
6589 pub const STATUS_VOLMGR_PLEX_MISSING: NTSTATUS = NTSTATUS(-1070071748i32 as _);
6590 pub const STATUS_VOLMGR_PLEX_NOT_RAID5: NTSTATUS = NTSTATUS(-1070071745i32 as _);
6591 pub const STATUS_VOLMGR_PLEX_NOT_SIMPLE: NTSTATUS = NTSTATUS(-1070071744i32 as _);
6592 pub const STATUS_VOLMGR_PLEX_NOT_SIMPLE_SPANNED: NTSTATUS = NTSTATUS(-1070071721i32 as _);
6593 pub const STATUS_VOLMGR_PLEX_REGENERATING: NTSTATUS = NTSTATUS(-1070071747i32 as _);
6594 pub const STATUS_VOLMGR_PLEX_TYPE_INVALID: NTSTATUS = NTSTATUS(-1070071746i32 as _);
6595 pub const STATUS_VOLMGR_PRIMARY_PACK_PRESENT: NTSTATUS = NTSTATUS(-1070071719i32 as _);
6596 pub const STATUS_VOLMGR_RAID5_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1070071716i32 as _);
6597 pub const STATUS_VOLMGR_STRUCTURE_SIZE_INVALID: NTSTATUS = NTSTATUS(-1070071743i32 as _);
6598 pub const STATUS_VOLMGR_TOO_MANY_NOTIFICATION_REQUESTS: NTSTATUS = NTSTATUS(-1070071742i32 as _);
6599 pub const STATUS_VOLMGR_TRANSACTION_IN_PROGRESS: NTSTATUS = NTSTATUS(-1070071741i32 as _);
6600 pub const STATUS_VOLMGR_UNEXPECTED_DISK_LAYOUT_CHANGE: NTSTATUS = NTSTATUS(-1070071740i32 as _);
6601 pub const STATUS_VOLMGR_VOLUME_CONTAINS_MISSING_DISK: NTSTATUS = NTSTATUS(-1070071739i32 as _);
6602 pub const STATUS_VOLMGR_VOLUME_ID_INVALID: NTSTATUS = NTSTATUS(-1070071738i32 as _);
6603 pub const STATUS_VOLMGR_VOLUME_LENGTH_INVALID: NTSTATUS = NTSTATUS(-1070071737i32 as _);
6604 pub const STATUS_VOLMGR_VOLUME_LENGTH_NOT_SECTOR_SIZE_MULTIPLE: NTSTATUS = NTSTATUS(-1070071736i32 as _);
6605 pub const STATUS_VOLMGR_VOLUME_MIRRORED: NTSTATUS = NTSTATUS(-1070071722i32 as _);
6606 pub const STATUS_VOLMGR_VOLUME_NOT_MIRRORED: NTSTATUS = NTSTATUS(-1070071735i32 as _);
6607 pub const STATUS_VOLMGR_VOLUME_NOT_RETAINED: NTSTATUS = NTSTATUS(-1070071734i32 as _);
6608 pub const STATUS_VOLMGR_VOLUME_OFFLINE: NTSTATUS = NTSTATUS(-1070071733i32 as _);
6609 pub const STATUS_VOLMGR_VOLUME_RETAINED: NTSTATUS = NTSTATUS(-1070071732i32 as _);
6610 pub const STATUS_VOLSNAP_ACTIVATION_TIMEOUT: NTSTATUS = NTSTATUS(-1068498940i32 as _);
6611 pub const STATUS_VOLSNAP_BOOTFILE_NOT_VALID: NTSTATUS = NTSTATUS(-1068498941i32 as _);
6612 pub const STATUS_VOLSNAP_HIBERNATE_READY: NTSTATUS = NTSTATUS(293i32 as _);
6613 pub const STATUS_VOLSNAP_NO_BYPASSIO_WITH_SNAPSHOT: NTSTATUS = NTSTATUS(-1068498939i32 as _);
6614 pub const STATUS_VOLSNAP_PREPARE_HIBERNATE: NTSTATUS = NTSTATUS(-1073740793i32 as _);
6615 pub const STATUS_VOLUME_DIRTY: NTSTATUS = NTSTATUS(-1073739770i32 as _);
6616 pub const STATUS_VOLUME_DISMOUNTED: NTSTATUS = NTSTATUS(-1073741202i32 as _);
6617 pub const STATUS_VOLUME_MOUNTED: NTSTATUS = NTSTATUS(265i32 as _);
6618 pub const STATUS_VOLUME_NOT_CLUSTER_ALIGNED: NTSTATUS = NTSTATUS(-1073740636i32 as _);
6619 pub const STATUS_VOLUME_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1073740602i32 as _);
6620 pub const STATUS_VOLUME_NOT_UPGRADED: NTSTATUS = NTSTATUS(-1073741156i32 as _);
6621 pub const STATUS_VOLUME_WRITE_ACCESS_DENIED: NTSTATUS = NTSTATUS(-1073740589i32 as _);
6622 pub const STATUS_VRF_VOLATILE_CFG_AND_IO_ENABLED: NTSTATUS = NTSTATUS(-1073738744i32 as _);
6623 pub const STATUS_VRF_VOLATILE_NMI_REGISTERED: NTSTATUS = NTSTATUS(-1073738738i32 as _);
6624 pub const STATUS_VRF_VOLATILE_NOT_RUNNABLE_SYSTEM: NTSTATUS = NTSTATUS(-1073738741i32 as _);
6625 pub const STATUS_VRF_VOLATILE_NOT_STOPPABLE: NTSTATUS = NTSTATUS(-1073738743i32 as _);
6626 pub const STATUS_VRF_VOLATILE_NOT_SUPPORTED_RULECLASS: NTSTATUS = NTSTATUS(-1073738740i32 as _);
6627 pub const STATUS_VRF_VOLATILE_PROTECTED_DRIVER: NTSTATUS = NTSTATUS(-1073738739i32 as _);
6628 pub const STATUS_VRF_VOLATILE_SAFE_MODE: NTSTATUS = NTSTATUS(-1073738742i32 as _);
6629 pub const STATUS_VRF_VOLATILE_SETTINGS_CONFLICT: NTSTATUS = NTSTATUS(-1073738737i32 as _);
6630 pub const STATUS_VSM_DMA_PROTECTION_NOT_IN_USE: NTSTATUS = NTSTATUS(-1069219839i32 as _);
6631 pub const STATUS_VSM_NOT_INITIALIZED: NTSTATUS = NTSTATUS(-1069219840i32 as _);
6632 pub const STATUS_WAIT_0: NTSTATUS = NTSTATUS(0i32 as _);
6633 pub const STATUS_WAIT_1: NTSTATUS = NTSTATUS(1i32 as _);
6634 pub const STATUS_WAIT_2: NTSTATUS = NTSTATUS(2i32 as _);
6635 pub const STATUS_WAIT_3: NTSTATUS = NTSTATUS(3i32 as _);
6636 pub const STATUS_WAIT_63: NTSTATUS = NTSTATUS(63i32 as _);
6637 pub const STATUS_WAIT_FOR_OPLOCK: NTSTATUS = NTSTATUS(871i32 as _);
6638 pub const STATUS_WAKE_SYSTEM: NTSTATUS = NTSTATUS(1073742484i32 as _);
6639 pub const STATUS_WAKE_SYSTEM_DEBUGGER: NTSTATUS = NTSTATUS(-2147483641i32 as _);
6640 pub const STATUS_WAS_LOCKED: NTSTATUS = NTSTATUS(1073741849i32 as _);
6641 pub const STATUS_WAS_UNLOCKED: NTSTATUS = NTSTATUS(1073741847i32 as _);
6642 pub const STATUS_WEAK_WHFBKEY_BLOCKED: NTSTATUS = NTSTATUS(-1073741389i32 as _);
6643 pub const STATUS_WIM_NOT_BOOTABLE: NTSTATUS = NTSTATUS(-1073740665i32 as _);
6644 pub const STATUS_WMI_ALREADY_DISABLED: NTSTATUS = NTSTATUS(-1073741054i32 as _);
6645 pub const STATUS_WMI_ALREADY_ENABLED: NTSTATUS = NTSTATUS(-1073741053i32 as _);
6646 pub const STATUS_WMI_GUID_DISCONNECTED: NTSTATUS = NTSTATUS(-1073741055i32 as _);
6647 pub const STATUS_WMI_GUID_NOT_FOUND: NTSTATUS = NTSTATUS(-1073741163i32 as _);
6648 pub const STATUS_WMI_INSTANCE_NOT_FOUND: NTSTATUS = NTSTATUS(-1073741162i32 as _);
6649 pub const STATUS_WMI_ITEMID_NOT_FOUND: NTSTATUS = NTSTATUS(-1073741161i32 as _);
6650 pub const STATUS_WMI_NOT_SUPPORTED: NTSTATUS = NTSTATUS(-1073741091i32 as _);
6651 pub const STATUS_WMI_READ_ONLY: NTSTATUS = NTSTATUS(-1073741114i32 as _);
6652 pub const STATUS_WMI_SET_FAILURE: NTSTATUS = NTSTATUS(-1073741113i32 as _);
6653 pub const STATUS_WMI_TRY_AGAIN: NTSTATUS = NTSTATUS(-1073741160i32 as _);
6654 pub const STATUS_WOF_FILE_RESOURCE_TABLE_CORRUPT: NTSTATUS = NTSTATUS(-1073700185i32 as _);
6655 pub const STATUS_WOF_WIM_HEADER_CORRUPT: NTSTATUS = NTSTATUS(-1073700187i32 as _);
6656 pub const STATUS_WOF_WIM_RESOURCE_TABLE_CORRUPT: NTSTATUS = NTSTATUS(-1073700186i32 as _);
6657 pub const STATUS_WORKING_SET_LIMIT_RANGE: NTSTATUS = NTSTATUS(1073741826i32 as _);
6658 pub const STATUS_WORKING_SET_QUOTA: NTSTATUS = NTSTATUS(-1073741663i32 as _);
6659 pub const STATUS_WOW_ASSERTION: NTSTATUS = NTSTATUS(-1073702760i32 as _);
6660 pub const STATUS_WRONG_COMPARTMENT: NTSTATUS = NTSTATUS(-1073700731i32 as _);
6661 pub const STATUS_WRONG_CREDENTIAL_HANDLE: NTSTATUS = NTSTATUS(-1073741070i32 as _);
6662 pub const STATUS_WRONG_EFS: NTSTATUS = NTSTATUS(-1073741169i32 as _);
6663 pub const STATUS_WRONG_PASSWORD_CORE: NTSTATUS = NTSTATUS(-1073741495i32 as _);
6664 pub const STATUS_WRONG_VOLUME: NTSTATUS = NTSTATUS(-1073741806i32 as _);
6665 pub const STATUS_WX86_BREAKPOINT: NTSTATUS = NTSTATUS(1073741855i32 as _);
6666 pub const STATUS_WX86_CONTINUE: NTSTATUS = NTSTATUS(1073741853i32 as _);
6667 pub const STATUS_WX86_CREATEWX86TIB: NTSTATUS = NTSTATUS(1073741864i32 as _);
6668 pub const STATUS_WX86_EXCEPTION_CHAIN: NTSTATUS = NTSTATUS(1073741858i32 as _);
6669 pub const STATUS_WX86_EXCEPTION_CONTINUE: NTSTATUS = NTSTATUS(1073741856i32 as _);
6670 pub const STATUS_WX86_EXCEPTION_LASTCHANCE: NTSTATUS = NTSTATUS(1073741857i32 as _);
6671 pub const STATUS_WX86_FLOAT_STACK_CHECK: NTSTATUS = NTSTATUS(-1073741200i32 as _);
6672 pub const STATUS_WX86_INTERNAL_ERROR: NTSTATUS = NTSTATUS(-1073741201i32 as _);
6673 pub const STATUS_WX86_SINGLE_STEP: NTSTATUS = NTSTATUS(1073741854i32 as _);
6674 pub const STATUS_WX86_UNSIMULATE: NTSTATUS = NTSTATUS(1073741852i32 as _);
6675 pub const STATUS_XMLDSIG_ERROR: NTSTATUS = NTSTATUS(-1073700732i32 as _);
6676 pub const STATUS_XML_ENCODING_MISMATCH: NTSTATUS = NTSTATUS(-1072365535i32 as _);
6677 pub const STATUS_XML_PARSE_ERROR: NTSTATUS = NTSTATUS(-1073700733i32 as _);
6678 pub const STG_E_ABNORMALAPIEXIT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147286790i32 as _);
6679 pub const STG_E_ACCESSDENIED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147287035i32 as _);
6680 pub const STG_E_BADBASEADDRESS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147286768i32 as _);
6681 pub const STG_E_CANTSAVE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147286781i32 as _);
6682 pub const STG_E_CSS_AUTHENTICATION_FAILURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147286266i32 as _);
6683 pub const STG_E_CSS_KEY_NOT_ESTABLISHED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147286264i32 as _);
6684 pub const STG_E_CSS_KEY_NOT_PRESENT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147286265i32 as _);
6685 pub const STG_E_CSS_REGION_MISMATCH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147286262i32 as _);
6686 pub const STG_E_CSS_SCRAMBLED_SECTOR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147286263i32 as _);
6687 pub const STG_E_DEVICE_UNRESPONSIVE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147286518i32 as _);
6688 pub const STG_E_DISKISWRITEPROTECTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147287021i32 as _);
6689 pub const STG_E_DOCFILECORRUPT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147286775i32 as _);
6690 pub const STG_E_DOCFILETOOLARGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147286767i32 as _);
6691 pub const STG_E_EXTANTMARSHALLINGS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147286776i32 as _);
6692 pub const STG_E_FILEALREADYEXISTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147286960i32 as _);
6693 pub const STG_E_FILENOTFOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147287038i32 as _);
6694 pub const STG_E_FIRMWARE_IMAGE_INVALID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147286519i32 as _);
6695 pub const STG_E_FIRMWARE_SLOT_INVALID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147286520i32 as _);
6696 pub const STG_E_INCOMPLETE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147286527i32 as _);
6697 pub const STG_E_INSUFFICIENTMEMORY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147287032i32 as _);
6698 pub const STG_E_INUSE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147286784i32 as _);
6699 pub const STG_E_INVALIDFLAG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147286785i32 as _);
6700 pub const STG_E_INVALIDFUNCTION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147287039i32 as _);
6701 pub const STG_E_INVALIDHANDLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147287034i32 as _);
6702 pub const STG_E_INVALIDHEADER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147286789i32 as _);
6703 pub const STG_E_INVALIDNAME: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147286788i32 as _);
6704 pub const STG_E_INVALIDPARAMETER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147286953i32 as _);
6705 pub const STG_E_INVALIDPOINTER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147287031i32 as _);
6706 pub const STG_E_LOCKVIOLATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147287007i32 as _);
6707 pub const STG_E_MEDIUMFULL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147286928i32 as _);
6708 pub const STG_E_NOMOREFILES: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147287022i32 as _);
6709 pub const STG_E_NOTCURRENT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147286783i32 as _);
6710 pub const STG_E_NOTFILEBASEDSTORAGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147286777i32 as _);
6711 pub const STG_E_NOTSIMPLEFORMAT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147286766i32 as _);
6712 pub const STG_E_OLDDLL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147286779i32 as _);
6713 pub const STG_E_OLDFORMAT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147286780i32 as _);
6714 pub const STG_E_PATHNOTFOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147287037i32 as _);
6715 pub const STG_E_PROPSETMISMATCHED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147286800i32 as _);
6716 pub const STG_E_READFAULT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147287010i32 as _);
6717 pub const STG_E_RESETS_EXHAUSTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147286261i32 as _);
6718 pub const STG_E_REVERTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147286782i32 as _);
6719 pub const STG_E_SEEKERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147287015i32 as _);
6720 pub const STG_E_SHAREREQUIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147286778i32 as _);
6721 pub const STG_E_SHAREVIOLATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147287008i32 as _);
6722 pub const STG_E_STATUS_COPY_PROTECTION_FAILURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147286267i32 as _);
6723 pub const STG_E_TERMINATED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147286526i32 as _);
6724 pub const STG_E_TOOMANYOPENFILES: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147287036i32 as _);
6725 pub const STG_E_UNIMPLEMENTEDFUNCTION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147286786i32 as _);
6726 pub const STG_E_UNKNOWN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147286787i32 as _);
6727 pub const STG_E_WRITEFAULT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147287011i32 as _);
6728 pub const STG_S_BLOCK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(197121i32 as _);
6729 pub const STG_S_CANNOTCONSOLIDATE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(197126i32 as _);
6730 pub const STG_S_CONSOLIDATIONFAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(197125i32 as _);
6731 pub const STG_S_CONVERTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(197120i32 as _);
6732 pub const STG_S_MONITORING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(197123i32 as _);
6733 pub const STG_S_MULTIPLEOPENS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(197124i32 as _);
6734 pub const STG_S_POWER_CYCLE_REQUIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(197127i32 as _);
6735 pub const STG_S_RETRYNOW: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(197122i32 as _);
6736 pub const STORE_ERROR_LICENSE_REVOKED: i32 = 15864i32;
6737 pub const STORE_ERROR_PENDING_COM_TRANSACTION: i32 = 15863i32;
6738 pub const STORE_ERROR_UNLICENSED: i32 = 15861i32;
6739 pub const STORE_ERROR_UNLICENSED_USER: i32 = 15862i32;
6740 pub const STRICT: u32 = 1u32;
6741 pub const SUCCESS: u32 = 0u32;
6742 #[derive(:: std :: clone :: Clone, :: std :: marker :: Copy)]
6743 #[repr(C)]
6744 pub struct SYSTEMTIME {
6745     pub wYear: u16,
6746     pub wMonth: u16,
6747     pub wDayOfWeek: u16,
6748     pub wDay: u16,
6749     pub wHour: u16,
6750     pub wMinute: u16,
6751     pub wSecond: u16,
6752     pub wMilliseconds: u16,
6753 }
6754 impl SYSTEMTIME {}
6755 impl ::std::default::Default for SYSTEMTIME {
default() -> Self6756     fn default() -> Self {
6757         unsafe { ::std::mem::zeroed() }
6758     }
6759 }
6760 impl ::std::fmt::Debug for SYSTEMTIME {
fmt(&self, fmt: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result6761     fn fmt(&self, fmt: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
6762         fmt.debug_struct("SYSTEMTIME").field("wYear", &self.wYear).field("wMonth", &self.wMonth).field("wDayOfWeek", &self.wDayOfWeek).field("wDay", &self.wDay).field("wHour", &self.wHour).field("wMinute", &self.wMinute).field("wSecond", &self.wSecond).field("wMilliseconds", &self.wMilliseconds).finish()
6763     }
6764 }
6765 impl ::std::cmp::PartialEq for SYSTEMTIME {
eq(&self, other: &Self) -> bool6766     fn eq(&self, other: &Self) -> bool {
6767         self.wYear == other.wYear && self.wMonth == other.wMonth && self.wDayOfWeek == other.wDayOfWeek && self.wDay == other.wDay && self.wHour == other.wHour && self.wMinute == other.wMinute && self.wSecond == other.wSecond && self.wMilliseconds == other.wMilliseconds
6768     }
6769 }
6770 impl ::std::cmp::Eq for SYSTEMTIME {}
6771 unsafe impl ::windows::runtime::Abi for SYSTEMTIME {
6772     type Abi = Self;
6773     type DefaultType = Self;
6774 }
6775 pub const S_APPLICATION_ACTIVATION_ERROR_HANDLED_BY_DIALOG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(2556505i32 as _);
6776 pub const S_FALSE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(1i32 as _);
6777 pub const S_OK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(0i32 as _);
6778 pub const S_STORE_LAUNCHED_FOR_REMEDIATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(2556504i32 as _);
6779 #[inline]
SetHandleInformation<'a, Param0: ::windows::runtime::IntoParam<'a, HANDLE>>(hobject: Param0, dwmask: u32, dwflags: HANDLE_FLAGS) -> BOOL6780 pub unsafe fn SetHandleInformation<'a, Param0: ::windows::runtime::IntoParam<'a, HANDLE>>(hobject: Param0, dwmask: u32, dwflags: HANDLE_FLAGS) -> BOOL {
6781     #[cfg(windows)]
6782     {
6783         #[link(name = "windows")]
6784         extern "system" {
6785             fn SetHandleInformation(hobject: HANDLE, dwmask: u32, dwflags: HANDLE_FLAGS) -> BOOL;
6786         }
6787         ::std::mem::transmute(SetHandleInformation(hobject.into_param().abi(), ::std::mem::transmute(dwmask), ::std::mem::transmute(dwflags)))
6788     }
6789     #[cfg(not(windows))]
6790     unimplemented!("Unsupported target OS");
6791 }
6792 #[inline]
SetLastError(dwerrcode: WIN32_ERROR)6793 pub unsafe fn SetLastError(dwerrcode: WIN32_ERROR) {
6794     #[cfg(windows)]
6795     {
6796         #[link(name = "windows")]
6797         extern "system" {
6798             fn SetLastError(dwerrcode: WIN32_ERROR);
6799         }
6800         ::std::mem::transmute(SetLastError(::std::mem::transmute(dwerrcode)))
6801     }
6802     #[cfg(not(windows))]
6803     unimplemented!("Unsupported target OS");
6804 }
6805 #[inline]
SetLastErrorEx(dwerrcode: WIN32_ERROR, dwtype: u32)6806 pub unsafe fn SetLastErrorEx(dwerrcode: WIN32_ERROR, dwtype: u32) {
6807     #[cfg(windows)]
6808     {
6809         #[link(name = "windows")]
6810         extern "system" {
6811             fn SetLastErrorEx(dwerrcode: WIN32_ERROR, dwtype: u32);
6812         }
6813         ::std::mem::transmute(SetLastErrorEx(::std::mem::transmute(dwerrcode), ::std::mem::transmute(dwtype)))
6814     }
6815     #[cfg(not(windows))]
6816     unimplemented!("Unsupported target OS");
6817 }
6818 #[inline]
SysAddRefString<'a, Param0: ::windows::runtime::IntoParam<'a, BSTR>>(bstrstring: Param0) -> ::windows::runtime::Result<()>6819 pub unsafe fn SysAddRefString<'a, Param0: ::windows::runtime::IntoParam<'a, BSTR>>(bstrstring: Param0) -> ::windows::runtime::Result<()> {
6820     #[cfg(windows)]
6821     {
6822         #[link(name = "windows")]
6823         extern "system" {
6824             fn SysAddRefString(bstrstring: ::std::mem::ManuallyDrop<BSTR>) -> ::windows::runtime::HRESULT;
6825         }
6826         SysAddRefString(bstrstring.into_param().abi()).ok()
6827     }
6828     #[cfg(not(windows))]
6829     unimplemented!("Unsupported target OS");
6830 }
6831 #[inline]
SysAllocString<'a, Param0: ::windows::runtime::IntoParam<'a, PWSTR>>(psz: Param0) -> BSTR6832 pub unsafe fn SysAllocString<'a, Param0: ::windows::runtime::IntoParam<'a, PWSTR>>(psz: Param0) -> BSTR {
6833     #[cfg(windows)]
6834     {
6835         #[link(name = "windows")]
6836         extern "system" {
6837             fn SysAllocString(psz: PWSTR) -> BSTR;
6838         }
6839         ::std::mem::transmute(SysAllocString(psz.into_param().abi()))
6840     }
6841     #[cfg(not(windows))]
6842     unimplemented!("Unsupported target OS");
6843 }
6844 #[inline]
SysAllocStringByteLen<'a, Param0: ::windows::runtime::IntoParam<'a, PSTR>>(psz: Param0, len: u32) -> BSTR6845 pub unsafe fn SysAllocStringByteLen<'a, Param0: ::windows::runtime::IntoParam<'a, PSTR>>(psz: Param0, len: u32) -> BSTR {
6846     #[cfg(windows)]
6847     {
6848         #[link(name = "windows")]
6849         extern "system" {
6850             fn SysAllocStringByteLen(psz: PSTR, len: u32) -> BSTR;
6851         }
6852         ::std::mem::transmute(SysAllocStringByteLen(psz.into_param().abi(), ::std::mem::transmute(len)))
6853     }
6854     #[cfg(not(windows))]
6855     unimplemented!("Unsupported target OS");
6856 }
6857 #[inline]
SysAllocStringLen<'a, Param0: ::windows::runtime::IntoParam<'a, PWSTR>>(strin: Param0, ui: u32) -> BSTR6858 pub unsafe fn SysAllocStringLen<'a, Param0: ::windows::runtime::IntoParam<'a, PWSTR>>(strin: Param0, ui: u32) -> BSTR {
6859     #[cfg(windows)]
6860     {
6861         #[link(name = "windows")]
6862         extern "system" {
6863             fn SysAllocStringLen(strin: PWSTR, ui: u32) -> BSTR;
6864         }
6865         ::std::mem::transmute(SysAllocStringLen(strin.into_param().abi(), ::std::mem::transmute(ui)))
6866     }
6867     #[cfg(not(windows))]
6868     unimplemented!("Unsupported target OS");
6869 }
6870 #[inline]
SysFreeString<'a, Param0: ::windows::runtime::IntoParam<'a, BSTR>>(bstrstring: Param0)6871 pub unsafe fn SysFreeString<'a, Param0: ::windows::runtime::IntoParam<'a, BSTR>>(bstrstring: Param0) {
6872     #[cfg(windows)]
6873     {
6874         #[link(name = "windows")]
6875         extern "system" {
6876             fn SysFreeString(bstrstring: ::std::mem::ManuallyDrop<BSTR>);
6877         }
6878         ::std::mem::transmute(SysFreeString(bstrstring.into_param().abi()))
6879     }
6880     #[cfg(not(windows))]
6881     unimplemented!("Unsupported target OS");
6882 }
6883 #[inline]
SysReAllocString<'a, Param1: ::windows::runtime::IntoParam<'a, PWSTR>>(pbstr: *mut BSTR, psz: Param1) -> i326884 pub unsafe fn SysReAllocString<'a, Param1: ::windows::runtime::IntoParam<'a, PWSTR>>(pbstr: *mut BSTR, psz: Param1) -> i32 {
6885     #[cfg(windows)]
6886     {
6887         #[link(name = "windows")]
6888         extern "system" {
6889             fn SysReAllocString(pbstr: *mut ::std::mem::ManuallyDrop<BSTR>, psz: PWSTR) -> i32;
6890         }
6891         ::std::mem::transmute(SysReAllocString(::std::mem::transmute(pbstr), psz.into_param().abi()))
6892     }
6893     #[cfg(not(windows))]
6894     unimplemented!("Unsupported target OS");
6895 }
6896 #[inline]
SysReAllocStringLen<'a, Param1: ::windows::runtime::IntoParam<'a, PWSTR>>(pbstr: *mut BSTR, psz: Param1, len: u32) -> i326897 pub unsafe fn SysReAllocStringLen<'a, Param1: ::windows::runtime::IntoParam<'a, PWSTR>>(pbstr: *mut BSTR, psz: Param1, len: u32) -> i32 {
6898     #[cfg(windows)]
6899     {
6900         #[link(name = "windows")]
6901         extern "system" {
6902             fn SysReAllocStringLen(pbstr: *mut ::std::mem::ManuallyDrop<BSTR>, psz: PWSTR, len: u32) -> i32;
6903         }
6904         ::std::mem::transmute(SysReAllocStringLen(::std::mem::transmute(pbstr), psz.into_param().abi(), ::std::mem::transmute(len)))
6905     }
6906     #[cfg(not(windows))]
6907     unimplemented!("Unsupported target OS");
6908 }
6909 #[inline]
SysReleaseString<'a, Param0: ::windows::runtime::IntoParam<'a, BSTR>>(bstrstring: Param0)6910 pub unsafe fn SysReleaseString<'a, Param0: ::windows::runtime::IntoParam<'a, BSTR>>(bstrstring: Param0) {
6911     #[cfg(windows)]
6912     {
6913         #[link(name = "windows")]
6914         extern "system" {
6915             fn SysReleaseString(bstrstring: ::std::mem::ManuallyDrop<BSTR>);
6916         }
6917         ::std::mem::transmute(SysReleaseString(bstrstring.into_param().abi()))
6918     }
6919     #[cfg(not(windows))]
6920     unimplemented!("Unsupported target OS");
6921 }
6922 #[inline]
SysStringByteLen<'a, Param0: ::windows::runtime::IntoParam<'a, BSTR>>(bstr: Param0) -> u326923 pub unsafe fn SysStringByteLen<'a, Param0: ::windows::runtime::IntoParam<'a, BSTR>>(bstr: Param0) -> u32 {
6924     #[cfg(windows)]
6925     {
6926         #[link(name = "windows")]
6927         extern "system" {
6928             fn SysStringByteLen(bstr: ::std::mem::ManuallyDrop<BSTR>) -> u32;
6929         }
6930         ::std::mem::transmute(SysStringByteLen(bstr.into_param().abi()))
6931     }
6932     #[cfg(not(windows))]
6933     unimplemented!("Unsupported target OS");
6934 }
6935 #[inline]
SysStringLen<'a, Param0: ::windows::runtime::IntoParam<'a, BSTR>>(pbstr: Param0) -> u326936 pub unsafe fn SysStringLen<'a, Param0: ::windows::runtime::IntoParam<'a, BSTR>>(pbstr: Param0) -> u32 {
6937     #[cfg(windows)]
6938     {
6939         #[link(name = "windows")]
6940         extern "system" {
6941             fn SysStringLen(pbstr: ::std::mem::ManuallyDrop<BSTR>) -> u32;
6942         }
6943         ::std::mem::transmute(SysStringLen(pbstr.into_param().abi()))
6944     }
6945     #[cfg(not(windows))]
6946     unimplemented!("Unsupported target OS");
6947 }
6948 pub const TBSIMP_E_BUFFER_TOO_SMALL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796160i32 as _);
6949 pub const TBSIMP_E_CLEANUP_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796159i32 as _);
6950 pub const TBSIMP_E_COMMAND_CANCELED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796149i32 as _);
6951 pub const TBSIMP_E_COMMAND_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796143i32 as _);
6952 pub const TBSIMP_E_DUPLICATE_VHANDLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796154i32 as _);
6953 pub const TBSIMP_E_HASH_BAD_KEY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796155i32 as _);
6954 pub const TBSIMP_E_HASH_TABLE_FULL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796138i32 as _);
6955 pub const TBSIMP_E_INVALID_CONTEXT_HANDLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796158i32 as _);
6956 pub const TBSIMP_E_INVALID_CONTEXT_PARAM: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796157i32 as _);
6957 pub const TBSIMP_E_INVALID_OUTPUT_POINTER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796153i32 as _);
6958 pub const TBSIMP_E_INVALID_PARAMETER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796152i32 as _);
6959 pub const TBSIMP_E_INVALID_RESOURCE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796140i32 as _);
6960 pub const TBSIMP_E_LIST_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796146i32 as _);
6961 pub const TBSIMP_E_LIST_NO_MORE_ITEMS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796147i32 as _);
6962 pub const TBSIMP_E_NOTHING_TO_UNLOAD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796139i32 as _);
6963 pub const TBSIMP_E_NOT_ENOUGH_SPACE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796145i32 as _);
6964 pub const TBSIMP_E_NOT_ENOUGH_TPM_CONTEXTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796144i32 as _);
6965 pub const TBSIMP_E_NO_EVENT_LOG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796133i32 as _);
6966 pub const TBSIMP_E_OUT_OF_MEMORY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796148i32 as _);
6967 pub const TBSIMP_E_PPI_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796135i32 as _);
6968 pub const TBSIMP_E_RESOURCE_EXPIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796141i32 as _);
6969 pub const TBSIMP_E_RPC_INIT_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796151i32 as _);
6970 pub const TBSIMP_E_SCHEDULER_NOT_RUNNING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796150i32 as _);
6971 pub const TBSIMP_E_TOO_MANY_RESOURCES: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796136i32 as _);
6972 pub const TBSIMP_E_TOO_MANY_TBS_CONTEXTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796137i32 as _);
6973 pub const TBSIMP_E_TPM_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796156i32 as _);
6974 pub const TBSIMP_E_TPM_INCOMPATIBLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796134i32 as _);
6975 pub const TBSIMP_E_UNKNOWN_ORDINAL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796142i32 as _);
6976 pub const TBS_E_ACCESS_DENIED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144845806i32 as _);
6977 pub const TBS_E_BAD_PARAMETER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144845822i32 as _);
6978 pub const TBS_E_BUFFER_TOO_LARGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144845810i32 as _);
6979 pub const TBS_E_COMMAND_CANCELED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144845811i32 as _);
6980 pub const TBS_E_INSUFFICIENT_BUFFER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144845819i32 as _);
6981 pub const TBS_E_INTERNAL_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144845823i32 as _);
6982 pub const TBS_E_INVALID_CONTEXT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144845820i32 as _);
6983 pub const TBS_E_INVALID_CONTEXT_PARAM: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144845817i32 as _);
6984 pub const TBS_E_INVALID_OUTPUT_POINTER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144845821i32 as _);
6985 pub const TBS_E_IOERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144845818i32 as _);
6986 pub const TBS_E_NO_EVENT_LOG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144845807i32 as _);
6987 pub const TBS_E_OWNERAUTH_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144845803i32 as _);
6988 pub const TBS_E_PPI_FUNCTION_UNSUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144845804i32 as _);
6989 pub const TBS_E_PPI_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144845812i32 as _);
6990 pub const TBS_E_PROVISIONING_INCOMPLETE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144845802i32 as _);
6991 pub const TBS_E_PROVISIONING_NOT_ALLOWED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144845805i32 as _);
6992 pub const TBS_E_SERVICE_DISABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144845808i32 as _);
6993 pub const TBS_E_SERVICE_NOT_RUNNING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144845816i32 as _);
6994 pub const TBS_E_SERVICE_START_PENDING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144845813i32 as _);
6995 pub const TBS_E_TOO_MANY_RESOURCES: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144845814i32 as _);
6996 pub const TBS_E_TOO_MANY_TBS_CONTEXTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144845815i32 as _);
6997 pub const TBS_E_TPM_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144845809i32 as _);
6998 pub const TPC_E_INITIALIZE_FAIL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147220957i32 as _);
6999 pub const TPC_E_INVALID_CONFIGURATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147220935i32 as _);
7000 pub const TPC_E_INVALID_DATA_FROM_RECOGNIZER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147220934i32 as _);
7001 pub const TPC_E_INVALID_INPUT_RECT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147220967i32 as _);
7002 pub const TPC_E_INVALID_PACKET_DESCRIPTION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147220941i32 as _);
7003 pub const TPC_E_INVALID_PROPERTY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147220927i32 as _);
7004 pub const TPC_E_INVALID_RIGHTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147220938i32 as _);
7005 pub const TPC_E_INVALID_STROKE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147220958i32 as _);
7006 pub const TPC_E_NOT_RELEVANT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147220942i32 as _);
7007 pub const TPC_E_NO_DEFAULT_TABLET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147220974i32 as _);
7008 pub const TPC_E_OUT_OF_ORDER_CALL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147220937i32 as _);
7009 pub const TPC_E_QUEUE_FULL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147220936i32 as _);
7010 pub const TPC_E_RECOGNIZER_NOT_REGISTERED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147220939i32 as _);
7011 pub const TPC_E_UNKNOWN_PROPERTY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147220965i32 as _);
7012 pub const TPC_S_INTERRUPTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(262739i32 as _);
7013 pub const TPC_S_NO_DATA_TO_PROCESS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(262740i32 as _);
7014 pub const TPC_S_TRUNCATED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(262738i32 as _);
7015 pub const TPMAPI_E_ACCESS_DENIED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796408i32 as _);
7016 pub const TPMAPI_E_AUTHORIZATION_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796407i32 as _);
7017 pub const TPMAPI_E_AUTHORIZATION_REVOKED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796378i32 as _);
7018 pub const TPMAPI_E_AUTHORIZING_KEY_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796376i32 as _);
7019 pub const TPMAPI_E_BUFFER_TOO_SMALL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796410i32 as _);
7020 pub const TPMAPI_E_EMPTY_TCG_LOG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796390i32 as _);
7021 pub const TPMAPI_E_ENCRYPTION_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796400i32 as _);
7022 pub const TPMAPI_E_ENDORSEMENT_AUTH_NOT_NULL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796379i32 as _);
7023 pub const TPMAPI_E_FIPS_RNG_CHECK_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796391i32 as _);
7024 pub const TPMAPI_E_INTERNAL_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796409i32 as _);
7025 pub const TPMAPI_E_INVALID_AUTHORIZATION_SIGNATURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796375i32 as _);
7026 pub const TPMAPI_E_INVALID_CONTEXT_HANDLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796406i32 as _);
7027 pub const TPMAPI_E_INVALID_CONTEXT_PARAMS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796395i32 as _);
7028 pub const TPMAPI_E_INVALID_DELEGATE_BLOB: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796396i32 as _);
7029 pub const TPMAPI_E_INVALID_ENCODING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796402i32 as _);
7030 pub const TPMAPI_E_INVALID_KEY_BLOB: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796394i32 as _);
7031 pub const TPMAPI_E_INVALID_KEY_PARAMS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796399i32 as _);
7032 pub const TPMAPI_E_INVALID_KEY_SIZE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796401i32 as _);
7033 pub const TPMAPI_E_INVALID_MIGRATION_AUTHORIZATION_BLOB: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796398i32 as _);
7034 pub const TPMAPI_E_INVALID_OUTPUT_POINTER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796413i32 as _);
7035 pub const TPMAPI_E_INVALID_OWNER_AUTH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796392i32 as _);
7036 pub const TPMAPI_E_INVALID_PARAMETER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796412i32 as _);
7037 pub const TPMAPI_E_INVALID_PCR_DATA: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796393i32 as _);
7038 pub const TPMAPI_E_INVALID_PCR_INDEX: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796397i32 as _);
7039 pub const TPMAPI_E_INVALID_POLICYAUTH_BLOB_TYPE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796370i32 as _);
7040 pub const TPMAPI_E_INVALID_STATE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796416i32 as _);
7041 pub const TPMAPI_E_INVALID_TCG_LOG_ENTRY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796389i32 as _);
7042 pub const TPMAPI_E_INVALID_TPM_VERSION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796371i32 as _);
7043 pub const TPMAPI_E_MALFORMED_AUTHORIZATION_KEY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796377i32 as _);
7044 pub const TPMAPI_E_MALFORMED_AUTHORIZATION_OTHER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796373i32 as _);
7045 pub const TPMAPI_E_MALFORMED_AUTHORIZATION_POLICY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796374i32 as _);
7046 pub const TPMAPI_E_MESSAGE_TOO_LARGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796403i32 as _);
7047 pub const TPMAPI_E_NOT_ENOUGH_DATA: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796415i32 as _);
7048 pub const TPMAPI_E_NO_AUTHORIZATION_CHAIN_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796382i32 as _);
7049 pub const TPMAPI_E_NV_BITS_NOT_DEFINED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796385i32 as _);
7050 pub const TPMAPI_E_NV_BITS_NOT_READY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796384i32 as _);
7051 pub const TPMAPI_E_OUT_OF_MEMORY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796411i32 as _);
7052 pub const TPMAPI_E_OWNER_AUTH_NOT_NULL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796380i32 as _);
7053 pub const TPMAPI_E_POLICY_DENIES_OPERATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796386i32 as _);
7054 pub const TPMAPI_E_SEALING_KEY_CHANGED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796372i32 as _);
7055 pub const TPMAPI_E_SEALING_KEY_NOT_AVAILABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796383i32 as _);
7056 pub const TPMAPI_E_SVN_COUNTER_NOT_AVAILABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796381i32 as _);
7057 pub const TPMAPI_E_TBS_COMMUNICATION_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796405i32 as _);
7058 pub const TPMAPI_E_TCG_INVALID_DIGEST_ENTRY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796387i32 as _);
7059 pub const TPMAPI_E_TCG_SEPARATOR_ABSENT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796388i32 as _);
7060 pub const TPMAPI_E_TOO_MUCH_DATA: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796414i32 as _);
7061 pub const TPMAPI_E_TPM_COMMAND_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144796404i32 as _);
7062 pub const TPM_20_E_ASYMMETRIC: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862079i32 as _);
7063 pub const TPM_20_E_ATTRIBUTES: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862078i32 as _);
7064 pub const TPM_20_E_AUTHSIZE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144861884i32 as _);
7065 pub const TPM_20_E_AUTH_CONTEXT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144861883i32 as _);
7066 pub const TPM_20_E_AUTH_FAIL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862066i32 as _);
7067 pub const TPM_20_E_AUTH_MISSING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144861915i32 as _);
7068 pub const TPM_20_E_AUTH_TYPE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144861916i32 as _);
7069 pub const TPM_20_E_AUTH_UNAVAILABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144861905i32 as _);
7070 pub const TPM_20_E_BAD_AUTH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862046i32 as _);
7071 pub const TPM_20_E_BAD_CONTEXT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144861872i32 as _);
7072 pub const TPM_20_E_BINDING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862043i32 as _);
7073 pub const TPM_20_E_CANCELED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144859895i32 as _);
7074 pub const TPM_20_E_COMMAND_CODE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144861885i32 as _);
7075 pub const TPM_20_E_COMMAND_SIZE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144861886i32 as _);
7076 pub const TPM_20_E_CONTEXT_GAP: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144859903i32 as _);
7077 pub const TPM_20_E_CPHASH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144861871i32 as _);
7078 pub const TPM_20_E_CURVE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862042i32 as _);
7079 pub const TPM_20_E_DISABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144861920i32 as _);
7080 pub const TPM_20_E_ECC_CURVE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144861917i32 as _);
7081 pub const TPM_20_E_ECC_POINT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862041i32 as _);
7082 pub const TPM_20_E_EXCLUSIVE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144861919i32 as _);
7083 pub const TPM_20_E_EXPIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862045i32 as _);
7084 pub const TPM_20_E_FAILURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144861951i32 as _);
7085 pub const TPM_20_E_HANDLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862069i32 as _);
7086 pub const TPM_20_E_HASH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862077i32 as _);
7087 pub const TPM_20_E_HIERARCHY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862075i32 as _);
7088 pub const TPM_20_E_HMAC: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144861927i32 as _);
7089 pub const TPM_20_E_INITIALIZE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144861952i32 as _);
7090 pub const TPM_20_E_INSUFFICIENT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862054i32 as _);
7091 pub const TPM_20_E_INTEGRITY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862049i32 as _);
7092 pub const TPM_20_E_KDF: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862068i32 as _);
7093 pub const TPM_20_E_KEY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862052i32 as _);
7094 pub const TPM_20_E_KEY_SIZE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862073i32 as _);
7095 pub const TPM_20_E_LOCALITY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144859897i32 as _);
7096 pub const TPM_20_E_LOCKOUT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144859871i32 as _);
7097 pub const TPM_20_E_MEMORY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144859900i32 as _);
7098 pub const TPM_20_E_MGF: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862072i32 as _);
7099 pub const TPM_20_E_MODE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862071i32 as _);
7100 pub const TPM_20_E_NEEDS_TEST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144861869i32 as _);
7101 pub const TPM_20_E_NONCE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862065i32 as _);
7102 pub const TPM_20_E_NO_RESULT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144861868i32 as _);
7103 pub const TPM_20_E_NV_AUTHORIZATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144861879i32 as _);
7104 pub const TPM_20_E_NV_DEFINED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144861876i32 as _);
7105 pub const TPM_20_E_NV_LOCKED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144861880i32 as _);
7106 pub const TPM_20_E_NV_RANGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144861882i32 as _);
7107 pub const TPM_20_E_NV_RATE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144859872i32 as _);
7108 pub const TPM_20_E_NV_SIZE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144861881i32 as _);
7109 pub const TPM_20_E_NV_SPACE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144861877i32 as _);
7110 pub const TPM_20_E_NV_UNAVAILABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144859869i32 as _);
7111 pub const TPM_20_E_NV_UNINITIALIZED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144861878i32 as _);
7112 pub const TPM_20_E_OBJECT_HANDLES: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144859898i32 as _);
7113 pub const TPM_20_E_OBJECT_MEMORY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144859902i32 as _);
7114 pub const TPM_20_E_PARENT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144861870i32 as _);
7115 pub const TPM_20_E_PCR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144861913i32 as _);
7116 pub const TPM_20_E_PCR_CHANGED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144861912i32 as _);
7117 pub const TPM_20_E_POLICY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144861914i32 as _);
7118 pub const TPM_20_E_POLICY_CC: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862044i32 as _);
7119 pub const TPM_20_E_POLICY_FAIL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862051i32 as _);
7120 pub const TPM_20_E_PP: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862064i32 as _);
7121 pub const TPM_20_E_PRIVATE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144861941i32 as _);
7122 pub const TPM_20_E_RANGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862067i32 as _);
7123 pub const TPM_20_E_REBOOT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144861904i32 as _);
7124 pub const TPM_20_E_RESERVED_BITS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862047i32 as _);
7125 pub const TPM_20_E_RETRY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144859870i32 as _);
7126 pub const TPM_20_E_SCHEME: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862062i32 as _);
7127 pub const TPM_20_E_SELECTOR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862056i32 as _);
7128 pub const TPM_20_E_SENSITIVE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144861867i32 as _);
7129 pub const TPM_20_E_SEQUENCE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144861949i32 as _);
7130 pub const TPM_20_E_SESSION_HANDLES: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144859899i32 as _);
7131 pub const TPM_20_E_SESSION_MEMORY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144859901i32 as _);
7132 pub const TPM_20_E_SIGNATURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862053i32 as _);
7133 pub const TPM_20_E_SIZE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862059i32 as _);
7134 pub const TPM_20_E_SYMMETRIC: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862058i32 as _);
7135 pub const TPM_20_E_TAG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862057i32 as _);
7136 pub const TPM_20_E_TESTING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144859894i32 as _);
7137 pub const TPM_20_E_TICKET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862048i32 as _);
7138 pub const TPM_20_E_TOO_MANY_CONTEXTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144861906i32 as _);
7139 pub const TPM_20_E_TYPE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862070i32 as _);
7140 pub const TPM_20_E_UNBALANCED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144861903i32 as _);
7141 pub const TPM_20_E_UPGRADE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144861907i32 as _);
7142 pub const TPM_20_E_VALUE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862076i32 as _);
7143 pub const TPM_20_E_YIELDED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144859896i32 as _);
7144 pub const TPM_E_AREA_LOCKED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862148i32 as _);
7145 pub const TPM_E_ATTESTATION_CHALLENGE_NOT_SET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144795630i32 as _);
7146 pub const TPM_E_AUDITFAILURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862204i32 as _);
7147 pub const TPM_E_AUDITFAIL_SUCCESSFUL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862159i32 as _);
7148 pub const TPM_E_AUDITFAIL_UNSUCCESSFUL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862160i32 as _);
7149 pub const TPM_E_AUTH2FAIL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862179i32 as _);
7150 pub const TPM_E_AUTHFAIL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862207i32 as _);
7151 pub const TPM_E_AUTH_CONFLICT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862149i32 as _);
7152 pub const TPM_E_BADCONTEXT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862118i32 as _);
7153 pub const TPM_E_BADINDEX: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862206i32 as _);
7154 pub const TPM_E_BADTAG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862178i32 as _);
7155 pub const TPM_E_BAD_ATTRIBUTES: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862142i32 as _);
7156 pub const TPM_E_BAD_COUNTER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862139i32 as _);
7157 pub const TPM_E_BAD_DATASIZE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862165i32 as _);
7158 pub const TPM_E_BAD_DELEGATE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862119i32 as _);
7159 pub const TPM_E_BAD_HANDLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862120i32 as _);
7160 pub const TPM_E_BAD_KEY_PROPERTY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862168i32 as _);
7161 pub const TPM_E_BAD_LOCALITY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862147i32 as _);
7162 pub const TPM_E_BAD_MIGRATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862167i32 as _);
7163 pub const TPM_E_BAD_MODE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862164i32 as _);
7164 pub const TPM_E_BAD_ORDINAL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862198i32 as _);
7165 pub const TPM_E_BAD_PARAMETER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862205i32 as _);
7166 pub const TPM_E_BAD_PARAM_SIZE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862183i32 as _);
7167 pub const TPM_E_BAD_PRESENCE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862163i32 as _);
7168 pub const TPM_E_BAD_SCHEME: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862166i32 as _);
7169 pub const TPM_E_BAD_SIGNATURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862110i32 as _);
7170 pub const TPM_E_BAD_TYPE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862156i32 as _);
7171 pub const TPM_E_BAD_VERSION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862162i32 as _);
7172 pub const TPM_E_BUFFER_LENGTH_MISMATCH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144795618i32 as _);
7173 pub const TPM_E_CLAIM_TYPE_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144795620i32 as _);
7174 pub const TPM_E_CLEAR_DISABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862203i32 as _);
7175 pub const TPM_E_COMMAND_BLOCKED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144861184i32 as _);
7176 pub const TPM_E_CONTEXT_GAP: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862137i32 as _);
7177 pub const TPM_E_DAA_INPUT_DATA0: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862127i32 as _);
7178 pub const TPM_E_DAA_INPUT_DATA1: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862126i32 as _);
7179 pub const TPM_E_DAA_ISSUER_SETTINGS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862125i32 as _);
7180 pub const TPM_E_DAA_ISSUER_VALIDITY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862122i32 as _);
7181 pub const TPM_E_DAA_RESOURCES: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862128i32 as _);
7182 pub const TPM_E_DAA_STAGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862123i32 as _);
7183 pub const TPM_E_DAA_TPM_SETTINGS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862124i32 as _);
7184 pub const TPM_E_DAA_WRONG_W: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862121i32 as _);
7185 pub const TPM_E_DEACTIVATED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862202i32 as _);
7186 pub const TPM_E_DECRYPT_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862175i32 as _);
7187 pub const TPM_E_DEFEND_LOCK_RUNNING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144860157i32 as _);
7188 pub const TPM_E_DELEGATE_ADMIN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862131i32 as _);
7189 pub const TPM_E_DELEGATE_FAMILY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862132i32 as _);
7190 pub const TPM_E_DELEGATE_LOCK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862133i32 as _);
7191 pub const TPM_E_DISABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862201i32 as _);
7192 pub const TPM_E_DISABLED_CMD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862200i32 as _);
7193 pub const TPM_E_DOING_SELFTEST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144860158i32 as _);
7194 pub const TPM_E_DUPLICATE_VHANDLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144861182i32 as _);
7195 pub const TPM_E_EMBEDDED_COMMAND_BLOCKED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144861181i32 as _);
7196 pub const TPM_E_EMBEDDED_COMMAND_UNSUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144861180i32 as _);
7197 pub const TPM_E_ENCRYPT_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862176i32 as _);
7198 pub const TPM_E_ERROR_MASK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862208i32 as _);
7199 pub const TPM_E_FAIL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862199i32 as _);
7200 pub const TPM_E_FAILEDSELFTEST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862180i32 as _);
7201 pub const TPM_E_FAMILYCOUNT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862144i32 as _);
7202 pub const TPM_E_INAPPROPRIATE_ENC: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862194i32 as _);
7203 pub const TPM_E_INAPPROPRIATE_SIG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862169i32 as _);
7204 pub const TPM_E_INSTALL_DISABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862197i32 as _);
7205 pub const TPM_E_INVALID_AUTHHANDLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862174i32 as _);
7206 pub const TPM_E_INVALID_FAMILY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862153i32 as _);
7207 pub const TPM_E_INVALID_HANDLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144861183i32 as _);
7208 pub const TPM_E_INVALID_KEYHANDLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862196i32 as _);
7209 pub const TPM_E_INVALID_KEYUSAGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862172i32 as _);
7210 pub const TPM_E_INVALID_OWNER_AUTH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144795135i32 as _);
7211 pub const TPM_E_INVALID_PCR_INFO: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862192i32 as _);
7212 pub const TPM_E_INVALID_POSTINIT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862170i32 as _);
7213 pub const TPM_E_INVALID_RESOURCE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862155i32 as _);
7214 pub const TPM_E_INVALID_STRUCTURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862141i32 as _);
7215 pub const TPM_E_IOERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862177i32 as _);
7216 pub const TPM_E_KEYNOTFOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862195i32 as _);
7217 pub const TPM_E_KEY_ALREADY_FINALIZED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144795628i32 as _);
7218 pub const TPM_E_KEY_NOTSUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862150i32 as _);
7219 pub const TPM_E_KEY_NOT_AUTHENTICATED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144795624i32 as _);
7220 pub const TPM_E_KEY_NOT_FINALIZED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144795631i32 as _);
7221 pub const TPM_E_KEY_NOT_LOADED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144795633i32 as _);
7222 pub const TPM_E_KEY_NOT_SIGNING_KEY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144795622i32 as _);
7223 pub const TPM_E_KEY_OWNER_CONTROL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862140i32 as _);
7224 pub const TPM_E_KEY_USAGE_POLICY_INVALID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144795626i32 as _);
7225 pub const TPM_E_KEY_USAGE_POLICY_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144795627i32 as _);
7226 pub const TPM_E_LOCKED_OUT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144795621i32 as _);
7227 pub const TPM_E_MAXNVWRITES: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862136i32 as _);
7228 pub const TPM_E_MA_AUTHORITY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862113i32 as _);
7229 pub const TPM_E_MA_DESTINATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862115i32 as _);
7230 pub const TPM_E_MA_SOURCE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862114i32 as _);
7231 pub const TPM_E_MA_TICKET_SIGNATURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862116i32 as _);
7232 pub const TPM_E_MIGRATEFAIL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862193i32 as _);
7233 pub const TPM_E_NEEDS_SELFTEST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144860159i32 as _);
7234 pub const TPM_E_NOCONTEXTSPACE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862109i32 as _);
7235 pub const TPM_E_NOOPERATOR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862135i32 as _);
7236 pub const TPM_E_NOSPACE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862191i32 as _);
7237 pub const TPM_E_NOSRK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862190i32 as _);
7238 pub const TPM_E_NOTFIPS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862154i32 as _);
7239 pub const TPM_E_NOTLOCAL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862157i32 as _);
7240 pub const TPM_E_NOTRESETABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862158i32 as _);
7241 pub const TPM_E_NOTSEALED_BLOB: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862189i32 as _);
7242 pub const TPM_E_NOT_FULLWRITE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862138i32 as _);
7243 pub const TPM_E_NOT_PCR_BOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144795629i32 as _);
7244 pub const TPM_E_NO_ENDORSEMENT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862173i32 as _);
7245 pub const TPM_E_NO_KEY_CERTIFICATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144795632i32 as _);
7246 pub const TPM_E_NO_NV_PERMISSION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862152i32 as _);
7247 pub const TPM_E_NO_WRAP_TRANSPORT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862161i32 as _);
7248 pub const TPM_E_OWNER_CONTROL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862129i32 as _);
7249 pub const TPM_E_OWNER_SET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862188i32 as _);
7250 pub const TPM_E_PCP_AUTHENTICATION_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144795640i32 as _);
7251 pub const TPM_E_PCP_AUTHENTICATION_IGNORED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144795639i32 as _);
7252 pub const TPM_E_PCP_BUFFER_TOO_SMALL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144795642i32 as _);
7253 pub const TPM_E_PCP_DEVICE_NOT_READY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144795647i32 as _);
7254 pub const TPM_E_PCP_ERROR_MASK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144795648i32 as _);
7255 pub const TPM_E_PCP_FLAG_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144795644i32 as _);
7256 pub const TPM_E_PCP_IFX_RSA_KEY_CREATION_BLOCKED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144795617i32 as _);
7257 pub const TPM_E_PCP_INTERNAL_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144795641i32 as _);
7258 pub const TPM_E_PCP_INVALID_HANDLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144795646i32 as _);
7259 pub const TPM_E_PCP_INVALID_PARAMETER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144795645i32 as _);
7260 pub const TPM_E_PCP_KEY_HANDLE_INVALIDATED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144795614i32 as _);
7261 pub const TPM_E_PCP_KEY_NOT_AIK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144795623i32 as _);
7262 pub const TPM_E_PCP_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144795643i32 as _);
7263 pub const TPM_E_PCP_PLATFORM_CLAIM_MAY_BE_OUTDATED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(1076429860i32 as _);
7264 pub const TPM_E_PCP_PLATFORM_CLAIM_OUTDATED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(1076429861i32 as _);
7265 pub const TPM_E_PCP_PLATFORM_CLAIM_REBOOT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(1076429862i32 as _);
7266 pub const TPM_E_PCP_POLICY_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144795638i32 as _);
7267 pub const TPM_E_PCP_PROFILE_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144795637i32 as _);
7268 pub const TPM_E_PCP_RAW_POLICY_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144795615i32 as _);
7269 pub const TPM_E_PCP_TICKET_MISSING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144795616i32 as _);
7270 pub const TPM_E_PCP_UNSUPPORTED_PSS_SALT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(1076429859i32 as _);
7271 pub const TPM_E_PCP_VALIDATION_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144795636i32 as _);
7272 pub const TPM_E_PCP_WRONG_PARENT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144795634i32 as _);
7273 pub const TPM_E_PERMANENTEK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862111i32 as _);
7274 pub const TPM_E_PER_NOWRITE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862145i32 as _);
7275 pub const TPM_E_PPI_ACPI_FAILURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144795904i32 as _);
7276 pub const TPM_E_PPI_BIOS_FAILURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144795902i32 as _);
7277 pub const TPM_E_PPI_BLOCKED_IN_BIOS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144795900i32 as _);
7278 pub const TPM_E_PPI_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144795901i32 as _);
7279 pub const TPM_E_PPI_USER_ABORT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144795903i32 as _);
7280 pub const TPM_E_PROVISIONING_INCOMPLETE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144795136i32 as _);
7281 pub const TPM_E_READ_ONLY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862146i32 as _);
7282 pub const TPM_E_REQUIRES_SIGN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862151i32 as _);
7283 pub const TPM_E_RESOURCEMISSING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862134i32 as _);
7284 pub const TPM_E_RESOURCES: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862187i32 as _);
7285 pub const TPM_E_RETRY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144860160i32 as _);
7286 pub const TPM_E_SHA_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862181i32 as _);
7287 pub const TPM_E_SHA_THREAD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862182i32 as _);
7288 pub const TPM_E_SHORTRANDOM: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862186i32 as _);
7289 pub const TPM_E_SIZE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862185i32 as _);
7290 pub const TPM_E_SOFT_KEY_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144795625i32 as _);
7291 pub const TPM_E_TOOMANYCONTEXTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862117i32 as _);
7292 pub const TPM_E_TOO_MUCH_DATA: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144795134i32 as _);
7293 pub const TPM_E_TRANSPORT_NOTEXCLUSIVE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862130i32 as _);
7294 pub const TPM_E_VERSION_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144795619i32 as _);
7295 pub const TPM_E_WRITE_LOCKED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862143i32 as _);
7296 pub const TPM_E_WRONGPCRVAL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862184i32 as _);
7297 pub const TPM_E_WRONG_ENTITYTYPE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144862171i32 as _);
7298 pub const TPM_E_ZERO_EXHAUST_ENABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144795392i32 as _);
7299 pub const TRUST_E_ACTION_UNKNOWN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146762750i32 as _);
7300 pub const TRUST_E_BAD_DIGEST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146869232i32 as _);
7301 pub const TRUST_E_BASIC_CONSTRAINTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146869223i32 as _);
7302 pub const TRUST_E_CERT_SIGNATURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146869244i32 as _);
7303 pub const TRUST_E_COUNTER_SIGNER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146869245i32 as _);
7304 pub const TRUST_E_EXPLICIT_DISTRUST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146762479i32 as _);
7305 pub const TRUST_E_FAIL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146762485i32 as _);
7306 pub const TRUST_E_FINANCIAL_CRITERIA: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146869218i32 as _);
7307 pub const TRUST_E_MALFORMED_SIGNATURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146869231i32 as _);
7308 pub const TRUST_E_NOSIGNATURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146762496i32 as _);
7309 pub const TRUST_E_NO_SIGNER_CERT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146869246i32 as _);
7310 pub const TRUST_E_PROVIDER_UNKNOWN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146762751i32 as _);
7311 pub const TRUST_E_SUBJECT_FORM_UNKNOWN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146762749i32 as _);
7312 pub const TRUST_E_SUBJECT_NOT_TRUSTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146762748i32 as _);
7313 pub const TRUST_E_SYSTEM_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146869247i32 as _);
7314 pub const TRUST_E_TIME_STAMP: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146869243i32 as _);
7315 pub const TYPE_E_AMBIGUOUSNAME: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147319764i32 as _);
7316 pub const TYPE_E_BADMODULEKIND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147317571i32 as _);
7317 pub const TYPE_E_BUFFERTOOSMALL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147319786i32 as _);
7318 pub const TYPE_E_CANTCREATETMPFILE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147316573i32 as _);
7319 pub const TYPE_E_CANTLOADLIBRARY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147312566i32 as _);
7320 pub const TYPE_E_CIRCULARTYPE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147312508i32 as _);
7321 pub const TYPE_E_DLLFUNCTIONNOTFOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147319761i32 as _);
7322 pub const TYPE_E_DUPLICATEID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147317562i32 as _);
7323 pub const TYPE_E_ELEMENTNOTFOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147319765i32 as _);
7324 pub const TYPE_E_FIELDNOTFOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147319785i32 as _);
7325 pub const TYPE_E_INCONSISTENTPROPFUNCS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147312509i32 as _);
7326 pub const TYPE_E_INVALIDID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147317553i32 as _);
7327 pub const TYPE_E_INVALIDSTATE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147319767i32 as _);
7328 pub const TYPE_E_INVDATAREAD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147319784i32 as _);
7329 pub const TYPE_E_IOERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147316574i32 as _);
7330 pub const TYPE_E_LIBNOTREGISTERED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147319779i32 as _);
7331 pub const TYPE_E_NAMECONFLICT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147319763i32 as _);
7332 pub const TYPE_E_OUTOFBOUNDS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147316575i32 as _);
7333 pub const TYPE_E_QUALIFIEDNAMEDISALLOWED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147319768i32 as _);
7334 pub const TYPE_E_REGISTRYACCESS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147319780i32 as _);
7335 pub const TYPE_E_SIZETOOBIG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147317563i32 as _);
7336 pub const TYPE_E_TYPEMISMATCH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147316576i32 as _);
7337 pub const TYPE_E_UNDEFINEDTYPE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147319769i32 as _);
7338 pub const TYPE_E_UNKNOWNLCID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147319762i32 as _);
7339 pub const TYPE_E_UNSUPFORMAT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147319783i32 as _);
7340 pub const TYPE_E_WRONGTYPEKIND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147319766i32 as _);
7341 pub const UCEERR_BLOCKSFULL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003303415i32 as _);
7342 pub const UCEERR_CHANNELSYNCABANDONED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003303404i32 as _);
7343 pub const UCEERR_CHANNELSYNCTIMEDOUT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003303405i32 as _);
7344 pub const UCEERR_COMMANDTRANSPORTDENIED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003303400i32 as _);
7345 pub const UCEERR_CONNECTIONIDLOOKUPFAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003303416i32 as _);
7346 pub const UCEERR_CTXSTACKFRSTTARGETNULL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003303417i32 as _);
7347 pub const UCEERR_FEEDBACK_UNSUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003303401i32 as _);
7348 pub const UCEERR_GRAPHICSSTREAMALREADYOPEN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003303392i32 as _);
7349 pub const UCEERR_GRAPHICSSTREAMUNAVAILABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003303399i32 as _);
7350 pub const UCEERR_HANDLELOOKUPFAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003303419i32 as _);
7351 pub const UCEERR_ILLEGALHANDLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003303420i32 as _);
7352 pub const UCEERR_ILLEGALPACKET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003303422i32 as _);
7353 pub const UCEERR_ILLEGALRECORDTYPE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003303412i32 as _);
7354 pub const UCEERR_INVALIDPACKETHEADER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003303424i32 as _);
7355 pub const UCEERR_MALFORMEDPACKET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003303421i32 as _);
7356 pub const UCEERR_MEMORYFAILURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003303414i32 as _);
7357 pub const UCEERR_MISSINGBEGINCOMMAND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003303406i32 as _);
7358 pub const UCEERR_MISSINGENDCOMMAND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003303407i32 as _);
7359 pub const UCEERR_NO_MULTIPLE_WORKER_THREADS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003303409i32 as _);
7360 pub const UCEERR_OUTOFHANDLES: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003303411i32 as _);
7361 pub const UCEERR_PACKETRECORDOUTOFRANGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003303413i32 as _);
7362 pub const UCEERR_PARTITION_ZOMBIED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003303389i32 as _);
7363 pub const UCEERR_REMOTINGNOTSUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003303408i32 as _);
7364 pub const UCEERR_RENDERTHREADFAILURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003303418i32 as _);
7365 pub const UCEERR_TRANSPORTDISCONNECTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003303391i32 as _);
7366 pub const UCEERR_TRANSPORTOVERLOADED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003303390i32 as _);
7367 pub const UCEERR_TRANSPORTUNAVAILABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003303402i32 as _);
7368 pub const UCEERR_UNCHANGABLE_UPDATE_ATTEMPTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003303410i32 as _);
7369 pub const UCEERR_UNKNOWNPACKET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003303423i32 as _);
7370 pub const UCEERR_UNSUPPORTEDTRANSPORTVERSION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003303403i32 as _);
7371 pub const UI_E_AMBIGUOUS_MATCH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144731126i32 as _);
7372 pub const UI_E_BOOLEAN_EXPECTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144731128i32 as _);
7373 pub const UI_E_CREATE_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144731135i32 as _);
7374 pub const UI_E_DIFFERENT_OWNER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144731127i32 as _);
7375 pub const UI_E_END_KEYFRAME_NOT_DETERMINED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144730876i32 as _);
7376 pub const UI_E_FP_OVERFLOW: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144731125i32 as _);
7377 pub const UI_E_ILLEGAL_REENTRANCY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144731133i32 as _);
7378 pub const UI_E_INVALID_DIMENSION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144730869i32 as _);
7379 pub const UI_E_INVALID_OUTPUT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144731129i32 as _);
7380 pub const UI_E_LOOPS_OVERLAP: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144730875i32 as _);
7381 pub const UI_E_OBJECT_SEALED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144731132i32 as _);
7382 pub const UI_E_PRIMITIVE_OUT_OF_BOUNDS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144730868i32 as _);
7383 pub const UI_E_SHUTDOWN_CALLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144731134i32 as _);
7384 pub const UI_E_START_KEYFRAME_AFTER_END: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144730877i32 as _);
7385 pub const UI_E_STORYBOARD_ACTIVE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144730879i32 as _);
7386 pub const UI_E_STORYBOARD_NOT_PLAYING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144730878i32 as _);
7387 pub const UI_E_TIMER_CLIENT_ALREADY_CONNECTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144730870i32 as _);
7388 pub const UI_E_TIME_BEFORE_LAST_UPDATE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144730871i32 as _);
7389 pub const UI_E_TRANSITION_ALREADY_USED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144730874i32 as _);
7390 pub const UI_E_TRANSITION_ECLIPSED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144730872i32 as _);
7391 pub const UI_E_TRANSITION_NOT_IN_STORYBOARD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144730873i32 as _);
7392 pub const UI_E_VALUE_NOT_DETERMINED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144731130i32 as _);
7393 pub const UI_E_VALUE_NOT_SET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144731131i32 as _);
7394 pub const UI_E_WINDOW_CLOSED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144730623i32 as _);
7395 pub const UI_E_WRONG_THREAD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2144731124i32 as _);
7396 #[derive(:: std :: clone :: Clone, :: std :: marker :: Copy)]
7397 #[repr(C)]
7398 pub struct UNICODE_STRING {
7399     pub Length: u16,
7400     pub MaximumLength: u16,
7401     pub Buffer: PWSTR,
7402 }
7403 impl UNICODE_STRING {}
7404 impl ::std::default::Default for UNICODE_STRING {
default() -> Self7405     fn default() -> Self {
7406         unsafe { ::std::mem::zeroed() }
7407     }
7408 }
7409 impl ::std::fmt::Debug for UNICODE_STRING {
fmt(&self, fmt: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result7410     fn fmt(&self, fmt: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
7411         fmt.debug_struct("UNICODE_STRING").field("Length", &self.Length).field("MaximumLength", &self.MaximumLength).field("Buffer", &self.Buffer).finish()
7412     }
7413 }
7414 impl ::std::cmp::PartialEq for UNICODE_STRING {
eq(&self, other: &Self) -> bool7415     fn eq(&self, other: &Self) -> bool {
7416         self.Length == other.Length && self.MaximumLength == other.MaximumLength && self.Buffer == other.Buffer
7417     }
7418 }
7419 impl ::std::cmp::Eq for UNICODE_STRING {}
7420 unsafe impl ::windows::runtime::Abi for UNICODE_STRING {
7421     type Abi = Self;
7422     type DefaultType = Self;
7423 }
7424 pub const UTC_E_ACTION_NOT_SUPPORTED_IN_DESTINATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128380i32 as _);
7425 pub const UTC_E_AGENT_DIAGNOSTICS_TOO_LARGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128363i32 as _);
7426 pub const UTC_E_ALTERNATIVE_TRACE_CANNOT_PREEMPT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128446i32 as _);
7427 pub const UTC_E_AOT_NOT_RUNNING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128445i32 as _);
7428 pub const UTC_E_API_BUSY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128405i32 as _);
7429 pub const UTC_E_API_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128388i32 as _);
7430 pub const UTC_E_API_RESULT_UNAVAILABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128408i32 as _);
7431 pub const UTC_E_BINARY_MISSING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128396i32 as _);
7432 pub const UTC_E_CANNOT_LOAD_SCENARIO_EDITOR_XML: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128417i32 as _);
7433 pub const UTC_E_CERT_REV_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128385i32 as _);
7434 pub const UTC_E_CHILD_PROCESS_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128419i32 as _);
7435 pub const UTC_E_COMMAND_LINE_NOT_AUTHORIZED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128418i32 as _);
7436 pub const UTC_E_DELAY_TERMINATED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128411i32 as _);
7437 pub const UTC_E_DEVICE_TICKET_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128410i32 as _);
7438 pub const UTC_E_DIAGRULES_SCHEMAVERSION_MISMATCH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128438i32 as _);
7439 pub const UTC_E_ESCALATION_ALREADY_RUNNING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128433i32 as _);
7440 pub const UTC_E_ESCALATION_CANCELLED_AT_SHUTDOWN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128358i32 as _);
7441 pub const UTC_E_ESCALATION_DIRECTORY_ALREADY_EXISTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128401i32 as _);
7442 pub const UTC_E_ESCALATION_NOT_AUTHORIZED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128421i32 as _);
7443 pub const UTC_E_ESCALATION_TIMED_OUT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128416i32 as _);
7444 pub const UTC_E_EVENTLOG_ENTRY_MALFORMED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128439i32 as _);
7445 pub const UTC_E_EXCLUSIVITY_NOT_AVAILABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128403i32 as _);
7446 pub const UTC_E_EXE_TERMINATED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128422i32 as _);
7447 pub const UTC_E_FAILED_TO_RECEIVE_AGENT_DIAGNOSTICS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128362i32 as _);
7448 pub const UTC_E_FAILED_TO_RESOLVE_CONTAINER_ID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128394i32 as _);
7449 pub const UTC_E_FAILED_TO_START_NDISCAP: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128384i32 as _);
7450 pub const UTC_E_FILTER_FUNCTION_RESTRICTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128376i32 as _);
7451 pub const UTC_E_FILTER_ILLEGAL_EVAL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128365i32 as _);
7452 pub const UTC_E_FILTER_INVALID_COMMAND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128366i32 as _);
7453 pub const UTC_E_FILTER_INVALID_FUNCTION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128368i32 as _);
7454 pub const UTC_E_FILTER_INVALID_FUNCTION_PARAMS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128367i32 as _);
7455 pub const UTC_E_FILTER_INVALID_TYPE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128378i32 as _);
7456 pub const UTC_E_FILTER_MISSING_ATTRIBUTE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128379i32 as _);
7457 pub const UTC_E_FILTER_VARIABLE_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128377i32 as _);
7458 pub const UTC_E_FILTER_VERSION_MISMATCH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128375i32 as _);
7459 pub const UTC_E_FORWARDER_ALREADY_DISABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128440i32 as _);
7460 pub const UTC_E_FORWARDER_ALREADY_ENABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128441i32 as _);
7461 pub const UTC_E_FORWARDER_PRODUCER_MISMATCH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128430i32 as _);
7462 pub const UTC_E_GETFILEINFOACTION_FILE_NOT_APPROVED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128357i32 as _);
7463 pub const UTC_E_GETFILE_EXTERNAL_PATH_NOT_APPROVED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128387i32 as _);
7464 pub const UTC_E_GETFILE_FILE_PATH_NOT_APPROVED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128402i32 as _);
7465 pub const UTC_E_INSUFFICIENT_SPACE_TO_START_TRACE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128359i32 as _);
7466 pub const UTC_E_INTENTIONAL_SCRIPT_FAILURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128429i32 as _);
7467 pub const UTC_E_INVALID_AGGREGATION_STRUCT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128381i32 as _);
7468 pub const UTC_E_INVALID_CUSTOM_FILTER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128436i32 as _);
7469 pub const UTC_E_INVALID_FILTER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128423i32 as _);
7470 pub const UTC_E_KERNELDUMP_LIMIT_REACHED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128383i32 as _);
7471 pub const UTC_E_MISSING_AGGREGATE_EVENT_TAG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128382i32 as _);
7472 pub const UTC_E_MULTIPLE_TIME_TRIGGER_ON_SINGLE_STATE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128397i32 as _);
7473 pub const UTC_E_NO_WER_LOGGER_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128427i32 as _);
7474 pub const UTC_E_PERFTRACK_ALREADY_TRACING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128432i32 as _);
7475 pub const UTC_E_REACHED_MAX_ESCALATIONS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128431i32 as _);
7476 pub const UTC_E_REESCALATED_TOO_QUICKLY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128434i32 as _);
7477 pub const UTC_E_RPC_TIMEOUT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128407i32 as _);
7478 pub const UTC_E_RPC_WAIT_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128406i32 as _);
7479 pub const UTC_E_SCENARIODEF_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128443i32 as _);
7480 pub const UTC_E_SCENARIODEF_SCHEMAVERSION_MISMATCH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128424i32 as _);
7481 pub const UTC_E_SCENARIO_HAS_NO_ACTIONS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128361i32 as _);
7482 pub const UTC_E_SCENARIO_THROTTLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128389i32 as _);
7483 pub const UTC_E_SCRIPT_MISSING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128390i32 as _);
7484 pub const UTC_E_SCRIPT_TERMINATED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128437i32 as _);
7485 pub const UTC_E_SCRIPT_TYPE_INVALID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128444i32 as _);
7486 pub const UTC_E_SETREGKEYACTION_TYPE_NOT_APPROVED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128356i32 as _);
7487 pub const UTC_E_SETUP_NOT_AUTHORIZED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128420i32 as _);
7488 pub const UTC_E_SETUP_TIMED_OUT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128415i32 as _);
7489 pub const UTC_E_SIF_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128412i32 as _);
7490 pub const UTC_E_SQM_INIT_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128428i32 as _);
7491 pub const UTC_E_THROTTLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128392i32 as _);
7492 pub const UTC_E_TIME_TRIGGER_INVALID_TIME_RANGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128398i32 as _);
7493 pub const UTC_E_TIME_TRIGGER_ONLY_VALID_ON_SINGLE_TRANSITION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128399i32 as _);
7494 pub const UTC_E_TIME_TRIGGER_ON_START_INVALID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128400i32 as _);
7495 pub const UTC_E_TOGGLE_TRACE_STARTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128447i32 as _);
7496 pub const UTC_E_TRACEPROFILE_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128442i32 as _);
7497 pub const UTC_E_TRACERS_DONT_EXIST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128426i32 as _);
7498 pub const UTC_E_TRACE_BUFFER_LIMIT_EXCEEDED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128409i32 as _);
7499 pub const UTC_E_TRACE_MIN_DURATION_REQUIREMENT_NOT_MET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128404i32 as _);
7500 pub const UTC_E_TRACE_NOT_RUNNING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128435i32 as _);
7501 pub const UTC_E_TRACE_THROTTLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128355i32 as _);
7502 pub const UTC_E_TRIGGER_MISMATCH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128414i32 as _);
7503 pub const UTC_E_TRIGGER_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128413i32 as _);
7504 pub const UTC_E_TRY_GET_SCENARIO_TIMEOUT_EXCEEDED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128386i32 as _);
7505 pub const UTC_E_TTTRACER_RETURNED_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128364i32 as _);
7506 pub const UTC_E_TTTRACER_STORAGE_FULL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128360i32 as _);
7507 pub const UTC_E_UNABLE_TO_RESOLVE_SESSION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128393i32 as _);
7508 pub const UTC_E_UNAPPROVED_SCRIPT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128391i32 as _);
7509 pub const UTC_E_WINRT_INIT_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2017128425i32 as _);
7510 pub const VIEW_E_DRAW: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147221184i32 as _);
7511 pub const VIEW_E_FIRST: i32 = -2147221184i32;
7512 pub const VIEW_E_LAST: i32 = -2147221169i32;
7513 pub const VIEW_S_ALREADY_FROZEN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(262464i32 as _);
7514 pub const VIEW_S_FIRST: i32 = 262464i32;
7515 pub const VIEW_S_LAST: i32 = 262479i32;
7516 pub const VM_SAVED_STATE_DUMP_E_GUEST_MEMORY_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1070136063i32 as _);
7517 pub const VM_SAVED_STATE_DUMP_E_INVALID_VP_STATE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1070136058i32 as _);
7518 pub const VM_SAVED_STATE_DUMP_E_NESTED_VIRTUALIZATION_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1070136061i32 as _);
7519 pub const VM_SAVED_STATE_DUMP_E_NO_VP_FOUND_IN_PARTITION_STATE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1070136062i32 as _);
7520 pub const VM_SAVED_STATE_DUMP_E_PARTITION_STATE_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1070136064i32 as _);
7521 pub const VM_SAVED_STATE_DUMP_E_VA_NOT_MAPPED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1070136059i32 as _);
7522 pub const VM_SAVED_STATE_DUMP_E_VP_VTL_NOT_ENABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1070136055i32 as _);
7523 pub const VM_SAVED_STATE_DUMP_E_WINDOWS_KERNEL_IMAGE_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-1070136060i32 as _);
7524 pub const WARNING_IPSEC_MM_POLICY_PRUNED: i32 = 13024i32;
7525 pub const WARNING_IPSEC_QM_POLICY_PRUNED: i32 = 13025i32;
7526 pub const WARNING_NO_MD5_MIGRATION: u32 = 946u32;
7527 pub const WBREAK_E_BUFFER_TOO_SMALL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215485i32 as _);
7528 pub const WBREAK_E_END_OF_TEXT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215488i32 as _);
7529 pub const WBREAK_E_INIT_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215483i32 as _);
7530 pub const WBREAK_E_QUERY_ONLY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147215486i32 as _);
7531 pub const WEB_E_INVALID_JSON_NUMBER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2089484280i32 as _);
7532 pub const WEB_E_INVALID_JSON_STRING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2089484281i32 as _);
7533 pub const WEB_E_INVALID_XML: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2089484286i32 as _);
7534 pub const WEB_E_JSON_VALUE_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2089484279i32 as _);
7535 pub const WEB_E_MISSING_REQUIRED_ATTRIBUTE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2089484284i32 as _);
7536 pub const WEB_E_MISSING_REQUIRED_ELEMENT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2089484285i32 as _);
7537 pub const WEB_E_RESOURCE_TOO_LARGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2089484282i32 as _);
7538 pub const WEB_E_UNEXPECTED_CONTENT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2089484283i32 as _);
7539 pub const WEB_E_UNSUPPORTED_FORMAT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2089484287i32 as _);
7540 pub const WEP_E_BUFFER_TOO_LARGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2013200375i32 as _);
7541 pub const WEP_E_FIXED_DATA_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2013200382i32 as _);
7542 pub const WEP_E_HARDWARE_NOT_COMPLIANT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2013200381i32 as _);
7543 pub const WEP_E_LOCK_NOT_CONFIGURED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2013200380i32 as _);
7544 pub const WEP_E_NOT_PROVISIONED_ON_ALL_VOLUMES: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2013200383i32 as _);
7545 pub const WEP_E_NO_LICENSE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2013200378i32 as _);
7546 pub const WEP_E_OS_NOT_PROTECTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2013200377i32 as _);
7547 pub const WEP_E_PROTECTION_SUSPENDED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2013200379i32 as _);
7548 pub const WEP_E_UNEXPECTED_FAIL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2013200376i32 as _);
7549 pub const WER_E_ALREADY_REPORTING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145681404i32 as _);
7550 pub const WER_E_CANCELED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145681407i32 as _);
7551 pub const WER_E_CRASH_FAILURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145681408i32 as _);
7552 pub const WER_E_DUMP_THROTTLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145681403i32 as _);
7553 pub const WER_E_INSUFFICIENT_CONSENT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145681402i32 as _);
7554 pub const WER_E_NETWORK_FAILURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145681406i32 as _);
7555 pub const WER_E_NOT_INITIALIZED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145681405i32 as _);
7556 pub const WER_E_TOO_HEAVY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2145681401i32 as _);
7557 pub const WER_S_ASSERT_CONTINUE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(1769482i32 as _);
7558 pub const WER_S_DISABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(1769475i32 as _);
7559 pub const WER_S_DISABLED_ARCHIVE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(1769478i32 as _);
7560 pub const WER_S_DISABLED_QUEUE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(1769477i32 as _);
7561 pub const WER_S_IGNORE_ALL_ASSERTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(1769481i32 as _);
7562 pub const WER_S_IGNORE_ASSERT_INSTANCE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(1769480i32 as _);
7563 pub const WER_S_REPORT_ASYNC: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(1769479i32 as _);
7564 pub const WER_S_REPORT_DEBUG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(1769472i32 as _);
7565 pub const WER_S_REPORT_QUEUED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(1769474i32 as _);
7566 pub const WER_S_REPORT_UPLOADED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(1769473i32 as _);
7567 pub const WER_S_REPORT_UPLOADED_CAB: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(1769484i32 as _);
7568 pub const WER_S_SUSPENDED_UPLOAD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(1769476i32 as _);
7569 pub const WER_S_THROTTLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(1769483i32 as _);
7570 pub const WHV_E_GPA_RANGE_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143878395i32 as _);
7571 pub const WHV_E_INSUFFICIENT_BUFFER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143878399i32 as _);
7572 pub const WHV_E_INVALID_PARTITION_CONFIG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143878396i32 as _);
7573 pub const WHV_E_INVALID_VP_REGISTER_NAME: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143878391i32 as _);
7574 pub const WHV_E_INVALID_VP_STATE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143878392i32 as _);
7575 pub const WHV_E_UNKNOWN_CAPABILITY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143878400i32 as _);
7576 pub const WHV_E_UNKNOWN_PROPERTY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143878398i32 as _);
7577 pub const WHV_E_UNSUPPORTED_HYPERVISOR_CONFIG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143878397i32 as _);
7578 pub const WHV_E_UNSUPPORTED_PROCESSOR_CONFIG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143878384i32 as _);
7579 pub const WHV_E_VP_ALREADY_EXISTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143878394i32 as _);
7580 pub const WHV_E_VP_DOES_NOT_EXIST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143878393i32 as _);
7581 #[derive(:: std :: cmp :: PartialEq, :: std :: cmp :: Eq, :: std :: marker :: Copy, :: std :: clone :: Clone, :: std :: default :: Default, :: std :: fmt :: Debug)]
7582 #[repr(transparent)]
7583 pub struct WIN32_ERROR(pub u32);
7584 pub const NO_ERROR: WIN32_ERROR = WIN32_ERROR(0u32);
7585 pub const WAIT_TIMEOUT: WIN32_ERROR = WIN32_ERROR(258u32);
7586 pub const WAIT_FAILED: WIN32_ERROR = WIN32_ERROR(4294967295u32);
7587 pub const ERROR_SUCCESS: WIN32_ERROR = WIN32_ERROR(0u32);
7588 pub const ERROR_INVALID_FUNCTION: WIN32_ERROR = WIN32_ERROR(1u32);
7589 pub const ERROR_FILE_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(2u32);
7590 pub const ERROR_PATH_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(3u32);
7591 pub const ERROR_TOO_MANY_OPEN_FILES: WIN32_ERROR = WIN32_ERROR(4u32);
7592 pub const ERROR_ACCESS_DENIED: WIN32_ERROR = WIN32_ERROR(5u32);
7593 pub const ERROR_INVALID_HANDLE: WIN32_ERROR = WIN32_ERROR(6u32);
7594 pub const ERROR_ARENA_TRASHED: WIN32_ERROR = WIN32_ERROR(7u32);
7595 pub const ERROR_NOT_ENOUGH_MEMORY: WIN32_ERROR = WIN32_ERROR(8u32);
7596 pub const ERROR_INVALID_BLOCK: WIN32_ERROR = WIN32_ERROR(9u32);
7597 pub const ERROR_BAD_ENVIRONMENT: WIN32_ERROR = WIN32_ERROR(10u32);
7598 pub const ERROR_BAD_FORMAT: WIN32_ERROR = WIN32_ERROR(11u32);
7599 pub const ERROR_INVALID_ACCESS: WIN32_ERROR = WIN32_ERROR(12u32);
7600 pub const ERROR_INVALID_DATA: WIN32_ERROR = WIN32_ERROR(13u32);
7601 pub const ERROR_OUTOFMEMORY: WIN32_ERROR = WIN32_ERROR(14u32);
7602 pub const ERROR_INVALID_DRIVE: WIN32_ERROR = WIN32_ERROR(15u32);
7603 pub const ERROR_CURRENT_DIRECTORY: WIN32_ERROR = WIN32_ERROR(16u32);
7604 pub const ERROR_NOT_SAME_DEVICE: WIN32_ERROR = WIN32_ERROR(17u32);
7605 pub const ERROR_NO_MORE_FILES: WIN32_ERROR = WIN32_ERROR(18u32);
7606 pub const ERROR_WRITE_PROTECT: WIN32_ERROR = WIN32_ERROR(19u32);
7607 pub const ERROR_BAD_UNIT: WIN32_ERROR = WIN32_ERROR(20u32);
7608 pub const ERROR_NOT_READY: WIN32_ERROR = WIN32_ERROR(21u32);
7609 pub const ERROR_BAD_COMMAND: WIN32_ERROR = WIN32_ERROR(22u32);
7610 pub const ERROR_CRC: WIN32_ERROR = WIN32_ERROR(23u32);
7611 pub const ERROR_BAD_LENGTH: WIN32_ERROR = WIN32_ERROR(24u32);
7612 pub const ERROR_SEEK: WIN32_ERROR = WIN32_ERROR(25u32);
7613 pub const ERROR_NOT_DOS_DISK: WIN32_ERROR = WIN32_ERROR(26u32);
7614 pub const ERROR_SECTOR_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(27u32);
7615 pub const ERROR_OUT_OF_PAPER: WIN32_ERROR = WIN32_ERROR(28u32);
7616 pub const ERROR_WRITE_FAULT: WIN32_ERROR = WIN32_ERROR(29u32);
7617 pub const ERROR_READ_FAULT: WIN32_ERROR = WIN32_ERROR(30u32);
7618 pub const ERROR_GEN_FAILURE: WIN32_ERROR = WIN32_ERROR(31u32);
7619 pub const ERROR_SHARING_VIOLATION: WIN32_ERROR = WIN32_ERROR(32u32);
7620 pub const ERROR_LOCK_VIOLATION: WIN32_ERROR = WIN32_ERROR(33u32);
7621 pub const ERROR_WRONG_DISK: WIN32_ERROR = WIN32_ERROR(34u32);
7622 pub const ERROR_SHARING_BUFFER_EXCEEDED: WIN32_ERROR = WIN32_ERROR(36u32);
7623 pub const ERROR_HANDLE_EOF: WIN32_ERROR = WIN32_ERROR(38u32);
7624 pub const ERROR_HANDLE_DISK_FULL: WIN32_ERROR = WIN32_ERROR(39u32);
7625 pub const ERROR_NOT_SUPPORTED: WIN32_ERROR = WIN32_ERROR(50u32);
7626 pub const ERROR_REM_NOT_LIST: WIN32_ERROR = WIN32_ERROR(51u32);
7627 pub const ERROR_DUP_NAME: WIN32_ERROR = WIN32_ERROR(52u32);
7628 pub const ERROR_BAD_NETPATH: WIN32_ERROR = WIN32_ERROR(53u32);
7629 pub const ERROR_NETWORK_BUSY: WIN32_ERROR = WIN32_ERROR(54u32);
7630 pub const ERROR_DEV_NOT_EXIST: WIN32_ERROR = WIN32_ERROR(55u32);
7631 pub const ERROR_TOO_MANY_CMDS: WIN32_ERROR = WIN32_ERROR(56u32);
7632 pub const ERROR_ADAP_HDW_ERR: WIN32_ERROR = WIN32_ERROR(57u32);
7633 pub const ERROR_BAD_NET_RESP: WIN32_ERROR = WIN32_ERROR(58u32);
7634 pub const ERROR_UNEXP_NET_ERR: WIN32_ERROR = WIN32_ERROR(59u32);
7635 pub const ERROR_BAD_REM_ADAP: WIN32_ERROR = WIN32_ERROR(60u32);
7636 pub const ERROR_PRINTQ_FULL: WIN32_ERROR = WIN32_ERROR(61u32);
7637 pub const ERROR_NO_SPOOL_SPACE: WIN32_ERROR = WIN32_ERROR(62u32);
7638 pub const ERROR_PRINT_CANCELLED: WIN32_ERROR = WIN32_ERROR(63u32);
7639 pub const ERROR_NETNAME_DELETED: WIN32_ERROR = WIN32_ERROR(64u32);
7640 pub const ERROR_NETWORK_ACCESS_DENIED: WIN32_ERROR = WIN32_ERROR(65u32);
7641 pub const ERROR_BAD_DEV_TYPE: WIN32_ERROR = WIN32_ERROR(66u32);
7642 pub const ERROR_BAD_NET_NAME: WIN32_ERROR = WIN32_ERROR(67u32);
7643 pub const ERROR_TOO_MANY_NAMES: WIN32_ERROR = WIN32_ERROR(68u32);
7644 pub const ERROR_TOO_MANY_SESS: WIN32_ERROR = WIN32_ERROR(69u32);
7645 pub const ERROR_SHARING_PAUSED: WIN32_ERROR = WIN32_ERROR(70u32);
7646 pub const ERROR_REQ_NOT_ACCEP: WIN32_ERROR = WIN32_ERROR(71u32);
7647 pub const ERROR_REDIR_PAUSED: WIN32_ERROR = WIN32_ERROR(72u32);
7648 pub const ERROR_FILE_EXISTS: WIN32_ERROR = WIN32_ERROR(80u32);
7649 pub const ERROR_CANNOT_MAKE: WIN32_ERROR = WIN32_ERROR(82u32);
7650 pub const ERROR_FAIL_I24: WIN32_ERROR = WIN32_ERROR(83u32);
7651 pub const ERROR_OUT_OF_STRUCTURES: WIN32_ERROR = WIN32_ERROR(84u32);
7652 pub const ERROR_ALREADY_ASSIGNED: WIN32_ERROR = WIN32_ERROR(85u32);
7653 pub const ERROR_INVALID_PASSWORD: WIN32_ERROR = WIN32_ERROR(86u32);
7654 pub const ERROR_INVALID_PARAMETER: WIN32_ERROR = WIN32_ERROR(87u32);
7655 pub const ERROR_NET_WRITE_FAULT: WIN32_ERROR = WIN32_ERROR(88u32);
7656 pub const ERROR_NO_PROC_SLOTS: WIN32_ERROR = WIN32_ERROR(89u32);
7657 pub const ERROR_TOO_MANY_SEMAPHORES: WIN32_ERROR = WIN32_ERROR(100u32);
7658 pub const ERROR_EXCL_SEM_ALREADY_OWNED: WIN32_ERROR = WIN32_ERROR(101u32);
7659 pub const ERROR_SEM_IS_SET: WIN32_ERROR = WIN32_ERROR(102u32);
7660 pub const ERROR_TOO_MANY_SEM_REQUESTS: WIN32_ERROR = WIN32_ERROR(103u32);
7661 pub const ERROR_INVALID_AT_INTERRUPT_TIME: WIN32_ERROR = WIN32_ERROR(104u32);
7662 pub const ERROR_SEM_OWNER_DIED: WIN32_ERROR = WIN32_ERROR(105u32);
7663 pub const ERROR_SEM_USER_LIMIT: WIN32_ERROR = WIN32_ERROR(106u32);
7664 pub const ERROR_DISK_CHANGE: WIN32_ERROR = WIN32_ERROR(107u32);
7665 pub const ERROR_DRIVE_LOCKED: WIN32_ERROR = WIN32_ERROR(108u32);
7666 pub const ERROR_BROKEN_PIPE: WIN32_ERROR = WIN32_ERROR(109u32);
7667 pub const ERROR_OPEN_FAILED: WIN32_ERROR = WIN32_ERROR(110u32);
7668 pub const ERROR_BUFFER_OVERFLOW: WIN32_ERROR = WIN32_ERROR(111u32);
7669 pub const ERROR_DISK_FULL: WIN32_ERROR = WIN32_ERROR(112u32);
7670 pub const ERROR_NO_MORE_SEARCH_HANDLES: WIN32_ERROR = WIN32_ERROR(113u32);
7671 pub const ERROR_INVALID_TARGET_HANDLE: WIN32_ERROR = WIN32_ERROR(114u32);
7672 pub const ERROR_INVALID_CATEGORY: WIN32_ERROR = WIN32_ERROR(117u32);
7673 pub const ERROR_INVALID_VERIFY_SWITCH: WIN32_ERROR = WIN32_ERROR(118u32);
7674 pub const ERROR_BAD_DRIVER_LEVEL: WIN32_ERROR = WIN32_ERROR(119u32);
7675 pub const ERROR_CALL_NOT_IMPLEMENTED: WIN32_ERROR = WIN32_ERROR(120u32);
7676 pub const ERROR_SEM_TIMEOUT: WIN32_ERROR = WIN32_ERROR(121u32);
7677 pub const ERROR_INSUFFICIENT_BUFFER: WIN32_ERROR = WIN32_ERROR(122u32);
7678 pub const ERROR_INVALID_NAME: WIN32_ERROR = WIN32_ERROR(123u32);
7679 pub const ERROR_INVALID_LEVEL: WIN32_ERROR = WIN32_ERROR(124u32);
7680 pub const ERROR_NO_VOLUME_LABEL: WIN32_ERROR = WIN32_ERROR(125u32);
7681 pub const ERROR_MOD_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(126u32);
7682 pub const ERROR_PROC_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(127u32);
7683 pub const ERROR_WAIT_NO_CHILDREN: WIN32_ERROR = WIN32_ERROR(128u32);
7684 pub const ERROR_CHILD_NOT_COMPLETE: WIN32_ERROR = WIN32_ERROR(129u32);
7685 pub const ERROR_DIRECT_ACCESS_HANDLE: WIN32_ERROR = WIN32_ERROR(130u32);
7686 pub const ERROR_NEGATIVE_SEEK: WIN32_ERROR = WIN32_ERROR(131u32);
7687 pub const ERROR_SEEK_ON_DEVICE: WIN32_ERROR = WIN32_ERROR(132u32);
7688 pub const ERROR_IS_JOIN_TARGET: WIN32_ERROR = WIN32_ERROR(133u32);
7689 pub const ERROR_IS_JOINED: WIN32_ERROR = WIN32_ERROR(134u32);
7690 pub const ERROR_IS_SUBSTED: WIN32_ERROR = WIN32_ERROR(135u32);
7691 pub const ERROR_NOT_JOINED: WIN32_ERROR = WIN32_ERROR(136u32);
7692 pub const ERROR_NOT_SUBSTED: WIN32_ERROR = WIN32_ERROR(137u32);
7693 pub const ERROR_JOIN_TO_JOIN: WIN32_ERROR = WIN32_ERROR(138u32);
7694 pub const ERROR_SUBST_TO_SUBST: WIN32_ERROR = WIN32_ERROR(139u32);
7695 pub const ERROR_JOIN_TO_SUBST: WIN32_ERROR = WIN32_ERROR(140u32);
7696 pub const ERROR_SUBST_TO_JOIN: WIN32_ERROR = WIN32_ERROR(141u32);
7697 pub const ERROR_BUSY_DRIVE: WIN32_ERROR = WIN32_ERROR(142u32);
7698 pub const ERROR_SAME_DRIVE: WIN32_ERROR = WIN32_ERROR(143u32);
7699 pub const ERROR_DIR_NOT_ROOT: WIN32_ERROR = WIN32_ERROR(144u32);
7700 pub const ERROR_DIR_NOT_EMPTY: WIN32_ERROR = WIN32_ERROR(145u32);
7701 pub const ERROR_IS_SUBST_PATH: WIN32_ERROR = WIN32_ERROR(146u32);
7702 pub const ERROR_IS_JOIN_PATH: WIN32_ERROR = WIN32_ERROR(147u32);
7703 pub const ERROR_PATH_BUSY: WIN32_ERROR = WIN32_ERROR(148u32);
7704 pub const ERROR_IS_SUBST_TARGET: WIN32_ERROR = WIN32_ERROR(149u32);
7705 pub const ERROR_SYSTEM_TRACE: WIN32_ERROR = WIN32_ERROR(150u32);
7706 pub const ERROR_INVALID_EVENT_COUNT: WIN32_ERROR = WIN32_ERROR(151u32);
7707 pub const ERROR_TOO_MANY_MUXWAITERS: WIN32_ERROR = WIN32_ERROR(152u32);
7708 pub const ERROR_INVALID_LIST_FORMAT: WIN32_ERROR = WIN32_ERROR(153u32);
7709 pub const ERROR_LABEL_TOO_LONG: WIN32_ERROR = WIN32_ERROR(154u32);
7710 pub const ERROR_TOO_MANY_TCBS: WIN32_ERROR = WIN32_ERROR(155u32);
7711 pub const ERROR_SIGNAL_REFUSED: WIN32_ERROR = WIN32_ERROR(156u32);
7712 pub const ERROR_DISCARDED: WIN32_ERROR = WIN32_ERROR(157u32);
7713 pub const ERROR_NOT_LOCKED: WIN32_ERROR = WIN32_ERROR(158u32);
7714 pub const ERROR_BAD_THREADID_ADDR: WIN32_ERROR = WIN32_ERROR(159u32);
7715 pub const ERROR_BAD_ARGUMENTS: WIN32_ERROR = WIN32_ERROR(160u32);
7716 pub const ERROR_BAD_PATHNAME: WIN32_ERROR = WIN32_ERROR(161u32);
7717 pub const ERROR_SIGNAL_PENDING: WIN32_ERROR = WIN32_ERROR(162u32);
7718 pub const ERROR_MAX_THRDS_REACHED: WIN32_ERROR = WIN32_ERROR(164u32);
7719 pub const ERROR_LOCK_FAILED: WIN32_ERROR = WIN32_ERROR(167u32);
7720 pub const ERROR_BUSY: WIN32_ERROR = WIN32_ERROR(170u32);
7721 pub const ERROR_DEVICE_SUPPORT_IN_PROGRESS: WIN32_ERROR = WIN32_ERROR(171u32);
7722 pub const ERROR_CANCEL_VIOLATION: WIN32_ERROR = WIN32_ERROR(173u32);
7723 pub const ERROR_ATOMIC_LOCKS_NOT_SUPPORTED: WIN32_ERROR = WIN32_ERROR(174u32);
7724 pub const ERROR_INVALID_SEGMENT_NUMBER: WIN32_ERROR = WIN32_ERROR(180u32);
7725 pub const ERROR_INVALID_ORDINAL: WIN32_ERROR = WIN32_ERROR(182u32);
7726 pub const ERROR_ALREADY_EXISTS: WIN32_ERROR = WIN32_ERROR(183u32);
7727 pub const ERROR_INVALID_FLAG_NUMBER: WIN32_ERROR = WIN32_ERROR(186u32);
7728 pub const ERROR_SEM_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(187u32);
7729 pub const ERROR_INVALID_STARTING_CODESEG: WIN32_ERROR = WIN32_ERROR(188u32);
7730 pub const ERROR_INVALID_STACKSEG: WIN32_ERROR = WIN32_ERROR(189u32);
7731 pub const ERROR_INVALID_MODULETYPE: WIN32_ERROR = WIN32_ERROR(190u32);
7732 pub const ERROR_INVALID_EXE_SIGNATURE: WIN32_ERROR = WIN32_ERROR(191u32);
7733 pub const ERROR_EXE_MARKED_INVALID: WIN32_ERROR = WIN32_ERROR(192u32);
7734 pub const ERROR_BAD_EXE_FORMAT: WIN32_ERROR = WIN32_ERROR(193u32);
7735 pub const ERROR_ITERATED_DATA_EXCEEDS_64k: WIN32_ERROR = WIN32_ERROR(194u32);
7736 pub const ERROR_INVALID_MINALLOCSIZE: WIN32_ERROR = WIN32_ERROR(195u32);
7737 pub const ERROR_DYNLINK_FROM_INVALID_RING: WIN32_ERROR = WIN32_ERROR(196u32);
7738 pub const ERROR_IOPL_NOT_ENABLED: WIN32_ERROR = WIN32_ERROR(197u32);
7739 pub const ERROR_INVALID_SEGDPL: WIN32_ERROR = WIN32_ERROR(198u32);
7740 pub const ERROR_AUTODATASEG_EXCEEDS_64k: WIN32_ERROR = WIN32_ERROR(199u32);
7741 pub const ERROR_RING2SEG_MUST_BE_MOVABLE: WIN32_ERROR = WIN32_ERROR(200u32);
7742 pub const ERROR_RELOC_CHAIN_XEEDS_SEGLIM: WIN32_ERROR = WIN32_ERROR(201u32);
7743 pub const ERROR_INFLOOP_IN_RELOC_CHAIN: WIN32_ERROR = WIN32_ERROR(202u32);
7744 pub const ERROR_ENVVAR_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(203u32);
7745 pub const ERROR_NO_SIGNAL_SENT: WIN32_ERROR = WIN32_ERROR(205u32);
7746 pub const ERROR_FILENAME_EXCED_RANGE: WIN32_ERROR = WIN32_ERROR(206u32);
7747 pub const ERROR_RING2_STACK_IN_USE: WIN32_ERROR = WIN32_ERROR(207u32);
7748 pub const ERROR_META_EXPANSION_TOO_LONG: WIN32_ERROR = WIN32_ERROR(208u32);
7749 pub const ERROR_INVALID_SIGNAL_NUMBER: WIN32_ERROR = WIN32_ERROR(209u32);
7750 pub const ERROR_THREAD_1_INACTIVE: WIN32_ERROR = WIN32_ERROR(210u32);
7751 pub const ERROR_LOCKED: WIN32_ERROR = WIN32_ERROR(212u32);
7752 pub const ERROR_TOO_MANY_MODULES: WIN32_ERROR = WIN32_ERROR(214u32);
7753 pub const ERROR_NESTING_NOT_ALLOWED: WIN32_ERROR = WIN32_ERROR(215u32);
7754 pub const ERROR_EXE_MACHINE_TYPE_MISMATCH: WIN32_ERROR = WIN32_ERROR(216u32);
7755 pub const ERROR_EXE_CANNOT_MODIFY_SIGNED_BINARY: WIN32_ERROR = WIN32_ERROR(217u32);
7756 pub const ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY: WIN32_ERROR = WIN32_ERROR(218u32);
7757 pub const ERROR_FILE_CHECKED_OUT: WIN32_ERROR = WIN32_ERROR(220u32);
7758 pub const ERROR_CHECKOUT_REQUIRED: WIN32_ERROR = WIN32_ERROR(221u32);
7759 pub const ERROR_BAD_FILE_TYPE: WIN32_ERROR = WIN32_ERROR(222u32);
7760 pub const ERROR_FILE_TOO_LARGE: WIN32_ERROR = WIN32_ERROR(223u32);
7761 pub const ERROR_FORMS_AUTH_REQUIRED: WIN32_ERROR = WIN32_ERROR(224u32);
7762 pub const ERROR_VIRUS_INFECTED: WIN32_ERROR = WIN32_ERROR(225u32);
7763 pub const ERROR_VIRUS_DELETED: WIN32_ERROR = WIN32_ERROR(226u32);
7764 pub const ERROR_PIPE_LOCAL: WIN32_ERROR = WIN32_ERROR(229u32);
7765 pub const ERROR_BAD_PIPE: WIN32_ERROR = WIN32_ERROR(230u32);
7766 pub const ERROR_PIPE_BUSY: WIN32_ERROR = WIN32_ERROR(231u32);
7767 pub const ERROR_NO_DATA: WIN32_ERROR = WIN32_ERROR(232u32);
7768 pub const ERROR_PIPE_NOT_CONNECTED: WIN32_ERROR = WIN32_ERROR(233u32);
7769 pub const ERROR_MORE_DATA: WIN32_ERROR = WIN32_ERROR(234u32);
7770 pub const ERROR_NO_WORK_DONE: WIN32_ERROR = WIN32_ERROR(235u32);
7771 pub const ERROR_VC_DISCONNECTED: WIN32_ERROR = WIN32_ERROR(240u32);
7772 pub const ERROR_INVALID_EA_NAME: WIN32_ERROR = WIN32_ERROR(254u32);
7773 pub const ERROR_EA_LIST_INCONSISTENT: WIN32_ERROR = WIN32_ERROR(255u32);
7774 pub const ERROR_NO_MORE_ITEMS: WIN32_ERROR = WIN32_ERROR(259u32);
7775 pub const ERROR_CANNOT_COPY: WIN32_ERROR = WIN32_ERROR(266u32);
7776 pub const ERROR_DIRECTORY: WIN32_ERROR = WIN32_ERROR(267u32);
7777 pub const ERROR_EAS_DIDNT_FIT: WIN32_ERROR = WIN32_ERROR(275u32);
7778 pub const ERROR_EA_FILE_CORRUPT: WIN32_ERROR = WIN32_ERROR(276u32);
7779 pub const ERROR_EA_TABLE_FULL: WIN32_ERROR = WIN32_ERROR(277u32);
7780 pub const ERROR_INVALID_EA_HANDLE: WIN32_ERROR = WIN32_ERROR(278u32);
7781 pub const ERROR_EAS_NOT_SUPPORTED: WIN32_ERROR = WIN32_ERROR(282u32);
7782 pub const ERROR_NOT_OWNER: WIN32_ERROR = WIN32_ERROR(288u32);
7783 pub const ERROR_TOO_MANY_POSTS: WIN32_ERROR = WIN32_ERROR(298u32);
7784 pub const ERROR_PARTIAL_COPY: WIN32_ERROR = WIN32_ERROR(299u32);
7785 pub const ERROR_OPLOCK_NOT_GRANTED: WIN32_ERROR = WIN32_ERROR(300u32);
7786 pub const ERROR_INVALID_OPLOCK_PROTOCOL: WIN32_ERROR = WIN32_ERROR(301u32);
7787 pub const ERROR_DISK_TOO_FRAGMENTED: WIN32_ERROR = WIN32_ERROR(302u32);
7788 pub const ERROR_DELETE_PENDING: WIN32_ERROR = WIN32_ERROR(303u32);
7789 pub const ERROR_INCOMPATIBLE_WITH_GLOBAL_SHORT_NAME_REGISTRY_SETTING: WIN32_ERROR = WIN32_ERROR(304u32);
7790 pub const ERROR_SHORT_NAMES_NOT_ENABLED_ON_VOLUME: WIN32_ERROR = WIN32_ERROR(305u32);
7791 pub const ERROR_SECURITY_STREAM_IS_INCONSISTENT: WIN32_ERROR = WIN32_ERROR(306u32);
7792 pub const ERROR_INVALID_LOCK_RANGE: WIN32_ERROR = WIN32_ERROR(307u32);
7793 pub const ERROR_IMAGE_SUBSYSTEM_NOT_PRESENT: WIN32_ERROR = WIN32_ERROR(308u32);
7794 pub const ERROR_NOTIFICATION_GUID_ALREADY_DEFINED: WIN32_ERROR = WIN32_ERROR(309u32);
7795 pub const ERROR_INVALID_EXCEPTION_HANDLER: WIN32_ERROR = WIN32_ERROR(310u32);
7796 pub const ERROR_DUPLICATE_PRIVILEGES: WIN32_ERROR = WIN32_ERROR(311u32);
7797 pub const ERROR_NO_RANGES_PROCESSED: WIN32_ERROR = WIN32_ERROR(312u32);
7798 pub const ERROR_NOT_ALLOWED_ON_SYSTEM_FILE: WIN32_ERROR = WIN32_ERROR(313u32);
7799 pub const ERROR_DISK_RESOURCES_EXHAUSTED: WIN32_ERROR = WIN32_ERROR(314u32);
7800 pub const ERROR_INVALID_TOKEN: WIN32_ERROR = WIN32_ERROR(315u32);
7801 pub const ERROR_DEVICE_FEATURE_NOT_SUPPORTED: WIN32_ERROR = WIN32_ERROR(316u32);
7802 pub const ERROR_MR_MID_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(317u32);
7803 pub const ERROR_SCOPE_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(318u32);
7804 pub const ERROR_UNDEFINED_SCOPE: WIN32_ERROR = WIN32_ERROR(319u32);
7805 pub const ERROR_INVALID_CAP: WIN32_ERROR = WIN32_ERROR(320u32);
7806 pub const ERROR_DEVICE_UNREACHABLE: WIN32_ERROR = WIN32_ERROR(321u32);
7807 pub const ERROR_DEVICE_NO_RESOURCES: WIN32_ERROR = WIN32_ERROR(322u32);
7808 pub const ERROR_DATA_CHECKSUM_ERROR: WIN32_ERROR = WIN32_ERROR(323u32);
7809 pub const ERROR_INTERMIXED_KERNEL_EA_OPERATION: WIN32_ERROR = WIN32_ERROR(324u32);
7810 pub const ERROR_FILE_LEVEL_TRIM_NOT_SUPPORTED: WIN32_ERROR = WIN32_ERROR(326u32);
7811 pub const ERROR_OFFSET_ALIGNMENT_VIOLATION: WIN32_ERROR = WIN32_ERROR(327u32);
7812 pub const ERROR_INVALID_FIELD_IN_PARAMETER_LIST: WIN32_ERROR = WIN32_ERROR(328u32);
7813 pub const ERROR_OPERATION_IN_PROGRESS: WIN32_ERROR = WIN32_ERROR(329u32);
7814 pub const ERROR_BAD_DEVICE_PATH: WIN32_ERROR = WIN32_ERROR(330u32);
7815 pub const ERROR_TOO_MANY_DESCRIPTORS: WIN32_ERROR = WIN32_ERROR(331u32);
7816 pub const ERROR_SCRUB_DATA_DISABLED: WIN32_ERROR = WIN32_ERROR(332u32);
7817 pub const ERROR_NOT_REDUNDANT_STORAGE: WIN32_ERROR = WIN32_ERROR(333u32);
7818 pub const ERROR_RESIDENT_FILE_NOT_SUPPORTED: WIN32_ERROR = WIN32_ERROR(334u32);
7819 pub const ERROR_COMPRESSED_FILE_NOT_SUPPORTED: WIN32_ERROR = WIN32_ERROR(335u32);
7820 pub const ERROR_DIRECTORY_NOT_SUPPORTED: WIN32_ERROR = WIN32_ERROR(336u32);
7821 pub const ERROR_NOT_READ_FROM_COPY: WIN32_ERROR = WIN32_ERROR(337u32);
7822 pub const ERROR_FT_WRITE_FAILURE: WIN32_ERROR = WIN32_ERROR(338u32);
7823 pub const ERROR_FT_DI_SCAN_REQUIRED: WIN32_ERROR = WIN32_ERROR(339u32);
7824 pub const ERROR_INVALID_KERNEL_INFO_VERSION: WIN32_ERROR = WIN32_ERROR(340u32);
7825 pub const ERROR_INVALID_PEP_INFO_VERSION: WIN32_ERROR = WIN32_ERROR(341u32);
7826 pub const ERROR_OBJECT_NOT_EXTERNALLY_BACKED: WIN32_ERROR = WIN32_ERROR(342u32);
7827 pub const ERROR_EXTERNAL_BACKING_PROVIDER_UNKNOWN: WIN32_ERROR = WIN32_ERROR(343u32);
7828 pub const ERROR_COMPRESSION_NOT_BENEFICIAL: WIN32_ERROR = WIN32_ERROR(344u32);
7829 pub const ERROR_STORAGE_TOPOLOGY_ID_MISMATCH: WIN32_ERROR = WIN32_ERROR(345u32);
7830 pub const ERROR_BLOCKED_BY_PARENTAL_CONTROLS: WIN32_ERROR = WIN32_ERROR(346u32);
7831 pub const ERROR_BLOCK_TOO_MANY_REFERENCES: WIN32_ERROR = WIN32_ERROR(347u32);
7832 pub const ERROR_MARKED_TO_DISALLOW_WRITES: WIN32_ERROR = WIN32_ERROR(348u32);
7833 pub const ERROR_ENCLAVE_FAILURE: WIN32_ERROR = WIN32_ERROR(349u32);
7834 pub const ERROR_FAIL_NOACTION_REBOOT: WIN32_ERROR = WIN32_ERROR(350u32);
7835 pub const ERROR_FAIL_SHUTDOWN: WIN32_ERROR = WIN32_ERROR(351u32);
7836 pub const ERROR_FAIL_RESTART: WIN32_ERROR = WIN32_ERROR(352u32);
7837 pub const ERROR_MAX_SESSIONS_REACHED: WIN32_ERROR = WIN32_ERROR(353u32);
7838 pub const ERROR_NETWORK_ACCESS_DENIED_EDP: WIN32_ERROR = WIN32_ERROR(354u32);
7839 pub const ERROR_DEVICE_HINT_NAME_BUFFER_TOO_SMALL: WIN32_ERROR = WIN32_ERROR(355u32);
7840 pub const ERROR_EDP_POLICY_DENIES_OPERATION: WIN32_ERROR = WIN32_ERROR(356u32);
7841 pub const ERROR_EDP_DPL_POLICY_CANT_BE_SATISFIED: WIN32_ERROR = WIN32_ERROR(357u32);
7842 pub const ERROR_CLOUD_FILE_SYNC_ROOT_METADATA_CORRUPT: WIN32_ERROR = WIN32_ERROR(358u32);
7843 pub const ERROR_DEVICE_IN_MAINTENANCE: WIN32_ERROR = WIN32_ERROR(359u32);
7844 pub const ERROR_NOT_SUPPORTED_ON_DAX: WIN32_ERROR = WIN32_ERROR(360u32);
7845 pub const ERROR_DAX_MAPPING_EXISTS: WIN32_ERROR = WIN32_ERROR(361u32);
7846 pub const ERROR_CLOUD_FILE_PROVIDER_NOT_RUNNING: WIN32_ERROR = WIN32_ERROR(362u32);
7847 pub const ERROR_CLOUD_FILE_METADATA_CORRUPT: WIN32_ERROR = WIN32_ERROR(363u32);
7848 pub const ERROR_CLOUD_FILE_METADATA_TOO_LARGE: WIN32_ERROR = WIN32_ERROR(364u32);
7849 pub const ERROR_CLOUD_FILE_PROPERTY_BLOB_TOO_LARGE: WIN32_ERROR = WIN32_ERROR(365u32);
7850 pub const ERROR_CLOUD_FILE_PROPERTY_BLOB_CHECKSUM_MISMATCH: WIN32_ERROR = WIN32_ERROR(366u32);
7851 pub const ERROR_CHILD_PROCESS_BLOCKED: WIN32_ERROR = WIN32_ERROR(367u32);
7852 pub const ERROR_STORAGE_LOST_DATA_PERSISTENCE: WIN32_ERROR = WIN32_ERROR(368u32);
7853 pub const ERROR_FILE_SYSTEM_VIRTUALIZATION_UNAVAILABLE: WIN32_ERROR = WIN32_ERROR(369u32);
7854 pub const ERROR_FILE_SYSTEM_VIRTUALIZATION_METADATA_CORRUPT: WIN32_ERROR = WIN32_ERROR(370u32);
7855 pub const ERROR_FILE_SYSTEM_VIRTUALIZATION_BUSY: WIN32_ERROR = WIN32_ERROR(371u32);
7856 pub const ERROR_FILE_SYSTEM_VIRTUALIZATION_PROVIDER_UNKNOWN: WIN32_ERROR = WIN32_ERROR(372u32);
7857 pub const ERROR_GDI_HANDLE_LEAK: WIN32_ERROR = WIN32_ERROR(373u32);
7858 pub const ERROR_CLOUD_FILE_TOO_MANY_PROPERTY_BLOBS: WIN32_ERROR = WIN32_ERROR(374u32);
7859 pub const ERROR_CLOUD_FILE_PROPERTY_VERSION_NOT_SUPPORTED: WIN32_ERROR = WIN32_ERROR(375u32);
7860 pub const ERROR_NOT_A_CLOUD_FILE: WIN32_ERROR = WIN32_ERROR(376u32);
7861 pub const ERROR_CLOUD_FILE_NOT_IN_SYNC: WIN32_ERROR = WIN32_ERROR(377u32);
7862 pub const ERROR_CLOUD_FILE_ALREADY_CONNECTED: WIN32_ERROR = WIN32_ERROR(378u32);
7863 pub const ERROR_CLOUD_FILE_NOT_SUPPORTED: WIN32_ERROR = WIN32_ERROR(379u32);
7864 pub const ERROR_CLOUD_FILE_INVALID_REQUEST: WIN32_ERROR = WIN32_ERROR(380u32);
7865 pub const ERROR_CLOUD_FILE_READ_ONLY_VOLUME: WIN32_ERROR = WIN32_ERROR(381u32);
7866 pub const ERROR_CLOUD_FILE_CONNECTED_PROVIDER_ONLY: WIN32_ERROR = WIN32_ERROR(382u32);
7867 pub const ERROR_CLOUD_FILE_VALIDATION_FAILED: WIN32_ERROR = WIN32_ERROR(383u32);
7868 pub const ERROR_SMB1_NOT_AVAILABLE: WIN32_ERROR = WIN32_ERROR(384u32);
7869 pub const ERROR_FILE_SYSTEM_VIRTUALIZATION_INVALID_OPERATION: WIN32_ERROR = WIN32_ERROR(385u32);
7870 pub const ERROR_CLOUD_FILE_AUTHENTICATION_FAILED: WIN32_ERROR = WIN32_ERROR(386u32);
7871 pub const ERROR_CLOUD_FILE_INSUFFICIENT_RESOURCES: WIN32_ERROR = WIN32_ERROR(387u32);
7872 pub const ERROR_CLOUD_FILE_NETWORK_UNAVAILABLE: WIN32_ERROR = WIN32_ERROR(388u32);
7873 pub const ERROR_CLOUD_FILE_UNSUCCESSFUL: WIN32_ERROR = WIN32_ERROR(389u32);
7874 pub const ERROR_CLOUD_FILE_NOT_UNDER_SYNC_ROOT: WIN32_ERROR = WIN32_ERROR(390u32);
7875 pub const ERROR_CLOUD_FILE_IN_USE: WIN32_ERROR = WIN32_ERROR(391u32);
7876 pub const ERROR_CLOUD_FILE_PINNED: WIN32_ERROR = WIN32_ERROR(392u32);
7877 pub const ERROR_CLOUD_FILE_REQUEST_ABORTED: WIN32_ERROR = WIN32_ERROR(393u32);
7878 pub const ERROR_CLOUD_FILE_PROPERTY_CORRUPT: WIN32_ERROR = WIN32_ERROR(394u32);
7879 pub const ERROR_CLOUD_FILE_ACCESS_DENIED: WIN32_ERROR = WIN32_ERROR(395u32);
7880 pub const ERROR_CLOUD_FILE_INCOMPATIBLE_HARDLINKS: WIN32_ERROR = WIN32_ERROR(396u32);
7881 pub const ERROR_CLOUD_FILE_PROPERTY_LOCK_CONFLICT: WIN32_ERROR = WIN32_ERROR(397u32);
7882 pub const ERROR_CLOUD_FILE_REQUEST_CANCELED: WIN32_ERROR = WIN32_ERROR(398u32);
7883 pub const ERROR_EXTERNAL_SYSKEY_NOT_SUPPORTED: WIN32_ERROR = WIN32_ERROR(399u32);
7884 pub const ERROR_THREAD_MODE_ALREADY_BACKGROUND: WIN32_ERROR = WIN32_ERROR(400u32);
7885 pub const ERROR_THREAD_MODE_NOT_BACKGROUND: WIN32_ERROR = WIN32_ERROR(401u32);
7886 pub const ERROR_PROCESS_MODE_ALREADY_BACKGROUND: WIN32_ERROR = WIN32_ERROR(402u32);
7887 pub const ERROR_PROCESS_MODE_NOT_BACKGROUND: WIN32_ERROR = WIN32_ERROR(403u32);
7888 pub const ERROR_CLOUD_FILE_PROVIDER_TERMINATED: WIN32_ERROR = WIN32_ERROR(404u32);
7889 pub const ERROR_NOT_A_CLOUD_SYNC_ROOT: WIN32_ERROR = WIN32_ERROR(405u32);
7890 pub const ERROR_FILE_PROTECTED_UNDER_DPL: WIN32_ERROR = WIN32_ERROR(406u32);
7891 pub const ERROR_VOLUME_NOT_CLUSTER_ALIGNED: WIN32_ERROR = WIN32_ERROR(407u32);
7892 pub const ERROR_NO_PHYSICALLY_ALIGNED_FREE_SPACE_FOUND: WIN32_ERROR = WIN32_ERROR(408u32);
7893 pub const ERROR_APPX_FILE_NOT_ENCRYPTED: WIN32_ERROR = WIN32_ERROR(409u32);
7894 pub const ERROR_RWRAW_ENCRYPTED_FILE_NOT_ENCRYPTED: WIN32_ERROR = WIN32_ERROR(410u32);
7895 pub const ERROR_RWRAW_ENCRYPTED_INVALID_EDATAINFO_FILEOFFSET: WIN32_ERROR = WIN32_ERROR(411u32);
7896 pub const ERROR_RWRAW_ENCRYPTED_INVALID_EDATAINFO_FILERANGE: WIN32_ERROR = WIN32_ERROR(412u32);
7897 pub const ERROR_RWRAW_ENCRYPTED_INVALID_EDATAINFO_PARAMETER: WIN32_ERROR = WIN32_ERROR(413u32);
7898 pub const ERROR_LINUX_SUBSYSTEM_NOT_PRESENT: WIN32_ERROR = WIN32_ERROR(414u32);
7899 pub const ERROR_FT_READ_FAILURE: WIN32_ERROR = WIN32_ERROR(415u32);
7900 pub const ERROR_STORAGE_RESERVE_ID_INVALID: WIN32_ERROR = WIN32_ERROR(416u32);
7901 pub const ERROR_STORAGE_RESERVE_DOES_NOT_EXIST: WIN32_ERROR = WIN32_ERROR(417u32);
7902 pub const ERROR_STORAGE_RESERVE_ALREADY_EXISTS: WIN32_ERROR = WIN32_ERROR(418u32);
7903 pub const ERROR_STORAGE_RESERVE_NOT_EMPTY: WIN32_ERROR = WIN32_ERROR(419u32);
7904 pub const ERROR_NOT_A_DAX_VOLUME: WIN32_ERROR = WIN32_ERROR(420u32);
7905 pub const ERROR_NOT_DAX_MAPPABLE: WIN32_ERROR = WIN32_ERROR(421u32);
7906 pub const ERROR_TIME_SENSITIVE_THREAD: WIN32_ERROR = WIN32_ERROR(422u32);
7907 pub const ERROR_DPL_NOT_SUPPORTED_FOR_USER: WIN32_ERROR = WIN32_ERROR(423u32);
7908 pub const ERROR_CASE_DIFFERING_NAMES_IN_DIR: WIN32_ERROR = WIN32_ERROR(424u32);
7909 pub const ERROR_FILE_NOT_SUPPORTED: WIN32_ERROR = WIN32_ERROR(425u32);
7910 pub const ERROR_CLOUD_FILE_REQUEST_TIMEOUT: WIN32_ERROR = WIN32_ERROR(426u32);
7911 pub const ERROR_NO_TASK_QUEUE: WIN32_ERROR = WIN32_ERROR(427u32);
7912 pub const ERROR_SRC_SRV_DLL_LOAD_FAILED: WIN32_ERROR = WIN32_ERROR(428u32);
7913 pub const ERROR_NOT_SUPPORTED_WITH_BTT: WIN32_ERROR = WIN32_ERROR(429u32);
7914 pub const ERROR_ENCRYPTION_DISABLED: WIN32_ERROR = WIN32_ERROR(430u32);
7915 pub const ERROR_ENCRYPTING_METADATA_DISALLOWED: WIN32_ERROR = WIN32_ERROR(431u32);
7916 pub const ERROR_CANT_CLEAR_ENCRYPTION_FLAG: WIN32_ERROR = WIN32_ERROR(432u32);
7917 pub const ERROR_NO_SUCH_DEVICE: WIN32_ERROR = WIN32_ERROR(433u32);
7918 pub const ERROR_CLOUD_FILE_DEHYDRATION_DISALLOWED: WIN32_ERROR = WIN32_ERROR(434u32);
7919 pub const ERROR_FILE_SNAP_IN_PROGRESS: WIN32_ERROR = WIN32_ERROR(435u32);
7920 pub const ERROR_FILE_SNAP_USER_SECTION_NOT_SUPPORTED: WIN32_ERROR = WIN32_ERROR(436u32);
7921 pub const ERROR_FILE_SNAP_MODIFY_NOT_SUPPORTED: WIN32_ERROR = WIN32_ERROR(437u32);
7922 pub const ERROR_FILE_SNAP_IO_NOT_COORDINATED: WIN32_ERROR = WIN32_ERROR(438u32);
7923 pub const ERROR_FILE_SNAP_UNEXPECTED_ERROR: WIN32_ERROR = WIN32_ERROR(439u32);
7924 pub const ERROR_FILE_SNAP_INVALID_PARAMETER: WIN32_ERROR = WIN32_ERROR(440u32);
7925 pub const ERROR_UNSATISFIED_DEPENDENCIES: WIN32_ERROR = WIN32_ERROR(441u32);
7926 pub const ERROR_CASE_SENSITIVE_PATH: WIN32_ERROR = WIN32_ERROR(442u32);
7927 pub const ERROR_UNEXPECTED_NTCACHEMANAGER_ERROR: WIN32_ERROR = WIN32_ERROR(443u32);
7928 pub const ERROR_LINUX_SUBSYSTEM_UPDATE_REQUIRED: WIN32_ERROR = WIN32_ERROR(444u32);
7929 pub const ERROR_DLP_POLICY_WARNS_AGAINST_OPERATION: WIN32_ERROR = WIN32_ERROR(445u32);
7930 pub const ERROR_DLP_POLICY_DENIES_OPERATION: WIN32_ERROR = WIN32_ERROR(446u32);
7931 pub const ERROR_SECURITY_DENIES_OPERATION: WIN32_ERROR = WIN32_ERROR(447u32);
7932 pub const ERROR_UNTRUSTED_MOUNT_POINT: WIN32_ERROR = WIN32_ERROR(448u32);
7933 pub const ERROR_DLP_POLICY_SILENTLY_FAIL: WIN32_ERROR = WIN32_ERROR(449u32);
7934 pub const ERROR_CAPAUTHZ_NOT_DEVUNLOCKED: WIN32_ERROR = WIN32_ERROR(450u32);
7935 pub const ERROR_CAPAUTHZ_CHANGE_TYPE: WIN32_ERROR = WIN32_ERROR(451u32);
7936 pub const ERROR_CAPAUTHZ_NOT_PROVISIONED: WIN32_ERROR = WIN32_ERROR(452u32);
7937 pub const ERROR_CAPAUTHZ_NOT_AUTHORIZED: WIN32_ERROR = WIN32_ERROR(453u32);
7938 pub const ERROR_CAPAUTHZ_NO_POLICY: WIN32_ERROR = WIN32_ERROR(454u32);
7939 pub const ERROR_CAPAUTHZ_DB_CORRUPTED: WIN32_ERROR = WIN32_ERROR(455u32);
7940 pub const ERROR_CAPAUTHZ_SCCD_INVALID_CATALOG: WIN32_ERROR = WIN32_ERROR(456u32);
7941 pub const ERROR_CAPAUTHZ_SCCD_NO_AUTH_ENTITY: WIN32_ERROR = WIN32_ERROR(457u32);
7942 pub const ERROR_CAPAUTHZ_SCCD_PARSE_ERROR: WIN32_ERROR = WIN32_ERROR(458u32);
7943 pub const ERROR_CAPAUTHZ_SCCD_DEV_MODE_REQUIRED: WIN32_ERROR = WIN32_ERROR(459u32);
7944 pub const ERROR_CAPAUTHZ_SCCD_NO_CAPABILITY_MATCH: WIN32_ERROR = WIN32_ERROR(460u32);
7945 pub const ERROR_CIMFS_IMAGE_CORRUPT: WIN32_ERROR = WIN32_ERROR(470u32);
7946 pub const ERROR_CIMFS_IMAGE_VERSION_NOT_SUPPORTED: WIN32_ERROR = WIN32_ERROR(471u32);
7947 pub const ERROR_STORAGE_STACK_ACCESS_DENIED: WIN32_ERROR = WIN32_ERROR(472u32);
7948 pub const ERROR_INSUFFICIENT_VIRTUAL_ADDR_RESOURCES: WIN32_ERROR = WIN32_ERROR(473u32);
7949 pub const ERROR_INDEX_OUT_OF_BOUNDS: WIN32_ERROR = WIN32_ERROR(474u32);
7950 pub const ERROR_PNP_QUERY_REMOVE_DEVICE_TIMEOUT: WIN32_ERROR = WIN32_ERROR(480u32);
7951 pub const ERROR_PNP_QUERY_REMOVE_RELATED_DEVICE_TIMEOUT: WIN32_ERROR = WIN32_ERROR(481u32);
7952 pub const ERROR_PNP_QUERY_REMOVE_UNRELATED_DEVICE_TIMEOUT: WIN32_ERROR = WIN32_ERROR(482u32);
7953 pub const ERROR_DEVICE_HARDWARE_ERROR: WIN32_ERROR = WIN32_ERROR(483u32);
7954 pub const ERROR_INVALID_ADDRESS: WIN32_ERROR = WIN32_ERROR(487u32);
7955 pub const ERROR_HAS_SYSTEM_CRITICAL_FILES: WIN32_ERROR = WIN32_ERROR(488u32);
7956 pub const ERROR_ENCRYPTED_FILE_NOT_SUPPORTED: WIN32_ERROR = WIN32_ERROR(489u32);
7957 pub const ERROR_SPARSE_FILE_NOT_SUPPORTED: WIN32_ERROR = WIN32_ERROR(490u32);
7958 pub const ERROR_PAGEFILE_NOT_SUPPORTED: WIN32_ERROR = WIN32_ERROR(491u32);
7959 pub const ERROR_VOLUME_NOT_SUPPORTED: WIN32_ERROR = WIN32_ERROR(492u32);
7960 pub const ERROR_NOT_SUPPORTED_WITH_BYPASSIO: WIN32_ERROR = WIN32_ERROR(493u32);
7961 pub const ERROR_NO_BYPASSIO_DRIVER_SUPPORT: WIN32_ERROR = WIN32_ERROR(494u32);
7962 pub const ERROR_NOT_SUPPORTED_WITH_ENCRYPTION: WIN32_ERROR = WIN32_ERROR(495u32);
7963 pub const ERROR_NOT_SUPPORTED_WITH_COMPRESSION: WIN32_ERROR = WIN32_ERROR(496u32);
7964 pub const ERROR_NOT_SUPPORTED_WITH_REPLICATION: WIN32_ERROR = WIN32_ERROR(497u32);
7965 pub const ERROR_NOT_SUPPORTED_WITH_DEDUPLICATION: WIN32_ERROR = WIN32_ERROR(498u32);
7966 pub const ERROR_NOT_SUPPORTED_WITH_AUDITING: WIN32_ERROR = WIN32_ERROR(499u32);
7967 pub const ERROR_USER_PROFILE_LOAD: WIN32_ERROR = WIN32_ERROR(500u32);
7968 pub const ERROR_SESSION_KEY_TOO_SHORT: WIN32_ERROR = WIN32_ERROR(501u32);
7969 pub const ERROR_ACCESS_DENIED_APPDATA: WIN32_ERROR = WIN32_ERROR(502u32);
7970 pub const ERROR_NOT_SUPPORTED_WITH_MONITORING: WIN32_ERROR = WIN32_ERROR(503u32);
7971 pub const ERROR_NOT_SUPPORTED_WITH_SNAPSHOT: WIN32_ERROR = WIN32_ERROR(504u32);
7972 pub const ERROR_NOT_SUPPORTED_WITH_VIRTUALIZATION: WIN32_ERROR = WIN32_ERROR(505u32);
7973 pub const ERROR_BYPASSIO_FLT_NOT_SUPPORTED: WIN32_ERROR = WIN32_ERROR(506u32);
7974 pub const ERROR_DEVICE_RESET_REQUIRED: WIN32_ERROR = WIN32_ERROR(507u32);
7975 pub const ERROR_VOLUME_WRITE_ACCESS_DENIED: WIN32_ERROR = WIN32_ERROR(508u32);
7976 pub const ERROR_ARITHMETIC_OVERFLOW: WIN32_ERROR = WIN32_ERROR(534u32);
7977 pub const ERROR_PIPE_CONNECTED: WIN32_ERROR = WIN32_ERROR(535u32);
7978 pub const ERROR_PIPE_LISTENING: WIN32_ERROR = WIN32_ERROR(536u32);
7979 pub const ERROR_VERIFIER_STOP: WIN32_ERROR = WIN32_ERROR(537u32);
7980 pub const ERROR_ABIOS_ERROR: WIN32_ERROR = WIN32_ERROR(538u32);
7981 pub const ERROR_WX86_WARNING: WIN32_ERROR = WIN32_ERROR(539u32);
7982 pub const ERROR_WX86_ERROR: WIN32_ERROR = WIN32_ERROR(540u32);
7983 pub const ERROR_TIMER_NOT_CANCELED: WIN32_ERROR = WIN32_ERROR(541u32);
7984 pub const ERROR_UNWIND: WIN32_ERROR = WIN32_ERROR(542u32);
7985 pub const ERROR_BAD_STACK: WIN32_ERROR = WIN32_ERROR(543u32);
7986 pub const ERROR_INVALID_UNWIND_TARGET: WIN32_ERROR = WIN32_ERROR(544u32);
7987 pub const ERROR_INVALID_PORT_ATTRIBUTES: WIN32_ERROR = WIN32_ERROR(545u32);
7988 pub const ERROR_PORT_MESSAGE_TOO_LONG: WIN32_ERROR = WIN32_ERROR(546u32);
7989 pub const ERROR_INVALID_QUOTA_LOWER: WIN32_ERROR = WIN32_ERROR(547u32);
7990 pub const ERROR_DEVICE_ALREADY_ATTACHED: WIN32_ERROR = WIN32_ERROR(548u32);
7991 pub const ERROR_INSTRUCTION_MISALIGNMENT: WIN32_ERROR = WIN32_ERROR(549u32);
7992 pub const ERROR_PROFILING_NOT_STARTED: WIN32_ERROR = WIN32_ERROR(550u32);
7993 pub const ERROR_PROFILING_NOT_STOPPED: WIN32_ERROR = WIN32_ERROR(551u32);
7994 pub const ERROR_COULD_NOT_INTERPRET: WIN32_ERROR = WIN32_ERROR(552u32);
7995 pub const ERROR_PROFILING_AT_LIMIT: WIN32_ERROR = WIN32_ERROR(553u32);
7996 pub const ERROR_CANT_WAIT: WIN32_ERROR = WIN32_ERROR(554u32);
7997 pub const ERROR_CANT_TERMINATE_SELF: WIN32_ERROR = WIN32_ERROR(555u32);
7998 pub const ERROR_UNEXPECTED_MM_CREATE_ERR: WIN32_ERROR = WIN32_ERROR(556u32);
7999 pub const ERROR_UNEXPECTED_MM_MAP_ERROR: WIN32_ERROR = WIN32_ERROR(557u32);
8000 pub const ERROR_UNEXPECTED_MM_EXTEND_ERR: WIN32_ERROR = WIN32_ERROR(558u32);
8001 pub const ERROR_BAD_FUNCTION_TABLE: WIN32_ERROR = WIN32_ERROR(559u32);
8002 pub const ERROR_NO_GUID_TRANSLATION: WIN32_ERROR = WIN32_ERROR(560u32);
8003 pub const ERROR_INVALID_LDT_SIZE: WIN32_ERROR = WIN32_ERROR(561u32);
8004 pub const ERROR_INVALID_LDT_OFFSET: WIN32_ERROR = WIN32_ERROR(563u32);
8005 pub const ERROR_INVALID_LDT_DESCRIPTOR: WIN32_ERROR = WIN32_ERROR(564u32);
8006 pub const ERROR_TOO_MANY_THREADS: WIN32_ERROR = WIN32_ERROR(565u32);
8007 pub const ERROR_THREAD_NOT_IN_PROCESS: WIN32_ERROR = WIN32_ERROR(566u32);
8008 pub const ERROR_PAGEFILE_QUOTA_EXCEEDED: WIN32_ERROR = WIN32_ERROR(567u32);
8009 pub const ERROR_LOGON_SERVER_CONFLICT: WIN32_ERROR = WIN32_ERROR(568u32);
8010 pub const ERROR_SYNCHRONIZATION_REQUIRED: WIN32_ERROR = WIN32_ERROR(569u32);
8011 pub const ERROR_NET_OPEN_FAILED: WIN32_ERROR = WIN32_ERROR(570u32);
8012 pub const ERROR_IO_PRIVILEGE_FAILED: WIN32_ERROR = WIN32_ERROR(571u32);
8013 pub const ERROR_CONTROL_C_EXIT: WIN32_ERROR = WIN32_ERROR(572u32);
8014 pub const ERROR_MISSING_SYSTEMFILE: WIN32_ERROR = WIN32_ERROR(573u32);
8015 pub const ERROR_UNHANDLED_EXCEPTION: WIN32_ERROR = WIN32_ERROR(574u32);
8016 pub const ERROR_APP_INIT_FAILURE: WIN32_ERROR = WIN32_ERROR(575u32);
8017 pub const ERROR_PAGEFILE_CREATE_FAILED: WIN32_ERROR = WIN32_ERROR(576u32);
8018 pub const ERROR_INVALID_IMAGE_HASH: WIN32_ERROR = WIN32_ERROR(577u32);
8019 pub const ERROR_NO_PAGEFILE: WIN32_ERROR = WIN32_ERROR(578u32);
8020 pub const ERROR_ILLEGAL_FLOAT_CONTEXT: WIN32_ERROR = WIN32_ERROR(579u32);
8021 pub const ERROR_NO_EVENT_PAIR: WIN32_ERROR = WIN32_ERROR(580u32);
8022 pub const ERROR_DOMAIN_CTRLR_CONFIG_ERROR: WIN32_ERROR = WIN32_ERROR(581u32);
8023 pub const ERROR_ILLEGAL_CHARACTER: WIN32_ERROR = WIN32_ERROR(582u32);
8024 pub const ERROR_UNDEFINED_CHARACTER: WIN32_ERROR = WIN32_ERROR(583u32);
8025 pub const ERROR_FLOPPY_VOLUME: WIN32_ERROR = WIN32_ERROR(584u32);
8026 pub const ERROR_BIOS_FAILED_TO_CONNECT_INTERRUPT: WIN32_ERROR = WIN32_ERROR(585u32);
8027 pub const ERROR_BACKUP_CONTROLLER: WIN32_ERROR = WIN32_ERROR(586u32);
8028 pub const ERROR_MUTANT_LIMIT_EXCEEDED: WIN32_ERROR = WIN32_ERROR(587u32);
8029 pub const ERROR_FS_DRIVER_REQUIRED: WIN32_ERROR = WIN32_ERROR(588u32);
8030 pub const ERROR_CANNOT_LOAD_REGISTRY_FILE: WIN32_ERROR = WIN32_ERROR(589u32);
8031 pub const ERROR_DEBUG_ATTACH_FAILED: WIN32_ERROR = WIN32_ERROR(590u32);
8032 pub const ERROR_SYSTEM_PROCESS_TERMINATED: WIN32_ERROR = WIN32_ERROR(591u32);
8033 pub const ERROR_DATA_NOT_ACCEPTED: WIN32_ERROR = WIN32_ERROR(592u32);
8034 pub const ERROR_VDM_HARD_ERROR: WIN32_ERROR = WIN32_ERROR(593u32);
8035 pub const ERROR_DRIVER_CANCEL_TIMEOUT: WIN32_ERROR = WIN32_ERROR(594u32);
8036 pub const ERROR_REPLY_MESSAGE_MISMATCH: WIN32_ERROR = WIN32_ERROR(595u32);
8037 pub const ERROR_LOST_WRITEBEHIND_DATA: WIN32_ERROR = WIN32_ERROR(596u32);
8038 pub const ERROR_CLIENT_SERVER_PARAMETERS_INVALID: WIN32_ERROR = WIN32_ERROR(597u32);
8039 pub const ERROR_NOT_TINY_STREAM: WIN32_ERROR = WIN32_ERROR(598u32);
8040 pub const ERROR_STACK_OVERFLOW_READ: WIN32_ERROR = WIN32_ERROR(599u32);
8041 pub const ERROR_CONVERT_TO_LARGE: WIN32_ERROR = WIN32_ERROR(600u32);
8042 pub const ERROR_FOUND_OUT_OF_SCOPE: WIN32_ERROR = WIN32_ERROR(601u32);
8043 pub const ERROR_ALLOCATE_BUCKET: WIN32_ERROR = WIN32_ERROR(602u32);
8044 pub const ERROR_MARSHALL_OVERFLOW: WIN32_ERROR = WIN32_ERROR(603u32);
8045 pub const ERROR_INVALID_VARIANT: WIN32_ERROR = WIN32_ERROR(604u32);
8046 pub const ERROR_BAD_COMPRESSION_BUFFER: WIN32_ERROR = WIN32_ERROR(605u32);
8047 pub const ERROR_AUDIT_FAILED: WIN32_ERROR = WIN32_ERROR(606u32);
8048 pub const ERROR_TIMER_RESOLUTION_NOT_SET: WIN32_ERROR = WIN32_ERROR(607u32);
8049 pub const ERROR_INSUFFICIENT_LOGON_INFO: WIN32_ERROR = WIN32_ERROR(608u32);
8050 pub const ERROR_BAD_DLL_ENTRYPOINT: WIN32_ERROR = WIN32_ERROR(609u32);
8051 pub const ERROR_BAD_SERVICE_ENTRYPOINT: WIN32_ERROR = WIN32_ERROR(610u32);
8052 pub const ERROR_IP_ADDRESS_CONFLICT1: WIN32_ERROR = WIN32_ERROR(611u32);
8053 pub const ERROR_IP_ADDRESS_CONFLICT2: WIN32_ERROR = WIN32_ERROR(612u32);
8054 pub const ERROR_REGISTRY_QUOTA_LIMIT: WIN32_ERROR = WIN32_ERROR(613u32);
8055 pub const ERROR_NO_CALLBACK_ACTIVE: WIN32_ERROR = WIN32_ERROR(614u32);
8056 pub const ERROR_PWD_TOO_SHORT: WIN32_ERROR = WIN32_ERROR(615u32);
8057 pub const ERROR_PWD_TOO_RECENT: WIN32_ERROR = WIN32_ERROR(616u32);
8058 pub const ERROR_PWD_HISTORY_CONFLICT: WIN32_ERROR = WIN32_ERROR(617u32);
8059 pub const ERROR_UNSUPPORTED_COMPRESSION: WIN32_ERROR = WIN32_ERROR(618u32);
8060 pub const ERROR_INVALID_HW_PROFILE: WIN32_ERROR = WIN32_ERROR(619u32);
8061 pub const ERROR_INVALID_PLUGPLAY_DEVICE_PATH: WIN32_ERROR = WIN32_ERROR(620u32);
8062 pub const ERROR_QUOTA_LIST_INCONSISTENT: WIN32_ERROR = WIN32_ERROR(621u32);
8063 pub const ERROR_EVALUATION_EXPIRATION: WIN32_ERROR = WIN32_ERROR(622u32);
8064 pub const ERROR_ILLEGAL_DLL_RELOCATION: WIN32_ERROR = WIN32_ERROR(623u32);
8065 pub const ERROR_DLL_INIT_FAILED_LOGOFF: WIN32_ERROR = WIN32_ERROR(624u32);
8066 pub const ERROR_VALIDATE_CONTINUE: WIN32_ERROR = WIN32_ERROR(625u32);
8067 pub const ERROR_NO_MORE_MATCHES: WIN32_ERROR = WIN32_ERROR(626u32);
8068 pub const ERROR_RANGE_LIST_CONFLICT: WIN32_ERROR = WIN32_ERROR(627u32);
8069 pub const ERROR_SERVER_SID_MISMATCH: WIN32_ERROR = WIN32_ERROR(628u32);
8070 pub const ERROR_CANT_ENABLE_DENY_ONLY: WIN32_ERROR = WIN32_ERROR(629u32);
8071 pub const ERROR_FLOAT_MULTIPLE_FAULTS: WIN32_ERROR = WIN32_ERROR(630u32);
8072 pub const ERROR_FLOAT_MULTIPLE_TRAPS: WIN32_ERROR = WIN32_ERROR(631u32);
8073 pub const ERROR_NOINTERFACE: WIN32_ERROR = WIN32_ERROR(632u32);
8074 pub const ERROR_DRIVER_FAILED_SLEEP: WIN32_ERROR = WIN32_ERROR(633u32);
8075 pub const ERROR_CORRUPT_SYSTEM_FILE: WIN32_ERROR = WIN32_ERROR(634u32);
8076 pub const ERROR_COMMITMENT_MINIMUM: WIN32_ERROR = WIN32_ERROR(635u32);
8077 pub const ERROR_PNP_RESTART_ENUMERATION: WIN32_ERROR = WIN32_ERROR(636u32);
8078 pub const ERROR_SYSTEM_IMAGE_BAD_SIGNATURE: WIN32_ERROR = WIN32_ERROR(637u32);
8079 pub const ERROR_PNP_REBOOT_REQUIRED: WIN32_ERROR = WIN32_ERROR(638u32);
8080 pub const ERROR_INSUFFICIENT_POWER: WIN32_ERROR = WIN32_ERROR(639u32);
8081 pub const ERROR_MULTIPLE_FAULT_VIOLATION: WIN32_ERROR = WIN32_ERROR(640u32);
8082 pub const ERROR_SYSTEM_SHUTDOWN: WIN32_ERROR = WIN32_ERROR(641u32);
8083 pub const ERROR_PORT_NOT_SET: WIN32_ERROR = WIN32_ERROR(642u32);
8084 pub const ERROR_DS_VERSION_CHECK_FAILURE: WIN32_ERROR = WIN32_ERROR(643u32);
8085 pub const ERROR_RANGE_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(644u32);
8086 pub const ERROR_NOT_SAFE_MODE_DRIVER: WIN32_ERROR = WIN32_ERROR(646u32);
8087 pub const ERROR_FAILED_DRIVER_ENTRY: WIN32_ERROR = WIN32_ERROR(647u32);
8088 pub const ERROR_DEVICE_ENUMERATION_ERROR: WIN32_ERROR = WIN32_ERROR(648u32);
8089 pub const ERROR_MOUNT_POINT_NOT_RESOLVED: WIN32_ERROR = WIN32_ERROR(649u32);
8090 pub const ERROR_INVALID_DEVICE_OBJECT_PARAMETER: WIN32_ERROR = WIN32_ERROR(650u32);
8091 pub const ERROR_MCA_OCCURED: WIN32_ERROR = WIN32_ERROR(651u32);
8092 pub const ERROR_DRIVER_DATABASE_ERROR: WIN32_ERROR = WIN32_ERROR(652u32);
8093 pub const ERROR_SYSTEM_HIVE_TOO_LARGE: WIN32_ERROR = WIN32_ERROR(653u32);
8094 pub const ERROR_DRIVER_FAILED_PRIOR_UNLOAD: WIN32_ERROR = WIN32_ERROR(654u32);
8095 pub const ERROR_VOLSNAP_PREPARE_HIBERNATE: WIN32_ERROR = WIN32_ERROR(655u32);
8096 pub const ERROR_HIBERNATION_FAILURE: WIN32_ERROR = WIN32_ERROR(656u32);
8097 pub const ERROR_PWD_TOO_LONG: WIN32_ERROR = WIN32_ERROR(657u32);
8098 pub const ERROR_FILE_SYSTEM_LIMITATION: WIN32_ERROR = WIN32_ERROR(665u32);
8099 pub const ERROR_ASSERTION_FAILURE: WIN32_ERROR = WIN32_ERROR(668u32);
8100 pub const ERROR_ACPI_ERROR: WIN32_ERROR = WIN32_ERROR(669u32);
8101 pub const ERROR_WOW_ASSERTION: WIN32_ERROR = WIN32_ERROR(670u32);
8102 pub const ERROR_PNP_BAD_MPS_TABLE: WIN32_ERROR = WIN32_ERROR(671u32);
8103 pub const ERROR_PNP_TRANSLATION_FAILED: WIN32_ERROR = WIN32_ERROR(672u32);
8104 pub const ERROR_PNP_IRQ_TRANSLATION_FAILED: WIN32_ERROR = WIN32_ERROR(673u32);
8105 pub const ERROR_PNP_INVALID_ID: WIN32_ERROR = WIN32_ERROR(674u32);
8106 pub const ERROR_WAKE_SYSTEM_DEBUGGER: WIN32_ERROR = WIN32_ERROR(675u32);
8107 pub const ERROR_HANDLES_CLOSED: WIN32_ERROR = WIN32_ERROR(676u32);
8108 pub const ERROR_EXTRANEOUS_INFORMATION: WIN32_ERROR = WIN32_ERROR(677u32);
8109 pub const ERROR_RXACT_COMMIT_NECESSARY: WIN32_ERROR = WIN32_ERROR(678u32);
8110 pub const ERROR_MEDIA_CHECK: WIN32_ERROR = WIN32_ERROR(679u32);
8111 pub const ERROR_GUID_SUBSTITUTION_MADE: WIN32_ERROR = WIN32_ERROR(680u32);
8112 pub const ERROR_STOPPED_ON_SYMLINK: WIN32_ERROR = WIN32_ERROR(681u32);
8113 pub const ERROR_LONGJUMP: WIN32_ERROR = WIN32_ERROR(682u32);
8114 pub const ERROR_PLUGPLAY_QUERY_VETOED: WIN32_ERROR = WIN32_ERROR(683u32);
8115 pub const ERROR_UNWIND_CONSOLIDATE: WIN32_ERROR = WIN32_ERROR(684u32);
8116 pub const ERROR_REGISTRY_HIVE_RECOVERED: WIN32_ERROR = WIN32_ERROR(685u32);
8117 pub const ERROR_DLL_MIGHT_BE_INSECURE: WIN32_ERROR = WIN32_ERROR(686u32);
8118 pub const ERROR_DLL_MIGHT_BE_INCOMPATIBLE: WIN32_ERROR = WIN32_ERROR(687u32);
8119 pub const ERROR_DBG_EXCEPTION_NOT_HANDLED: WIN32_ERROR = WIN32_ERROR(688u32);
8120 pub const ERROR_DBG_REPLY_LATER: WIN32_ERROR = WIN32_ERROR(689u32);
8121 pub const ERROR_DBG_UNABLE_TO_PROVIDE_HANDLE: WIN32_ERROR = WIN32_ERROR(690u32);
8122 pub const ERROR_DBG_TERMINATE_THREAD: WIN32_ERROR = WIN32_ERROR(691u32);
8123 pub const ERROR_DBG_TERMINATE_PROCESS: WIN32_ERROR = WIN32_ERROR(692u32);
8124 pub const ERROR_DBG_CONTROL_C: WIN32_ERROR = WIN32_ERROR(693u32);
8125 pub const ERROR_DBG_PRINTEXCEPTION_C: WIN32_ERROR = WIN32_ERROR(694u32);
8126 pub const ERROR_DBG_RIPEXCEPTION: WIN32_ERROR = WIN32_ERROR(695u32);
8127 pub const ERROR_DBG_CONTROL_BREAK: WIN32_ERROR = WIN32_ERROR(696u32);
8128 pub const ERROR_DBG_COMMAND_EXCEPTION: WIN32_ERROR = WIN32_ERROR(697u32);
8129 pub const ERROR_OBJECT_NAME_EXISTS: WIN32_ERROR = WIN32_ERROR(698u32);
8130 pub const ERROR_THREAD_WAS_SUSPENDED: WIN32_ERROR = WIN32_ERROR(699u32);
8131 pub const ERROR_IMAGE_NOT_AT_BASE: WIN32_ERROR = WIN32_ERROR(700u32);
8132 pub const ERROR_RXACT_STATE_CREATED: WIN32_ERROR = WIN32_ERROR(701u32);
8133 pub const ERROR_SEGMENT_NOTIFICATION: WIN32_ERROR = WIN32_ERROR(702u32);
8134 pub const ERROR_BAD_CURRENT_DIRECTORY: WIN32_ERROR = WIN32_ERROR(703u32);
8135 pub const ERROR_FT_READ_RECOVERY_FROM_BACKUP: WIN32_ERROR = WIN32_ERROR(704u32);
8136 pub const ERROR_FT_WRITE_RECOVERY: WIN32_ERROR = WIN32_ERROR(705u32);
8137 pub const ERROR_IMAGE_MACHINE_TYPE_MISMATCH: WIN32_ERROR = WIN32_ERROR(706u32);
8138 pub const ERROR_RECEIVE_PARTIAL: WIN32_ERROR = WIN32_ERROR(707u32);
8139 pub const ERROR_RECEIVE_EXPEDITED: WIN32_ERROR = WIN32_ERROR(708u32);
8140 pub const ERROR_RECEIVE_PARTIAL_EXPEDITED: WIN32_ERROR = WIN32_ERROR(709u32);
8141 pub const ERROR_EVENT_DONE: WIN32_ERROR = WIN32_ERROR(710u32);
8142 pub const ERROR_EVENT_PENDING: WIN32_ERROR = WIN32_ERROR(711u32);
8143 pub const ERROR_CHECKING_FILE_SYSTEM: WIN32_ERROR = WIN32_ERROR(712u32);
8144 pub const ERROR_FATAL_APP_EXIT: WIN32_ERROR = WIN32_ERROR(713u32);
8145 pub const ERROR_PREDEFINED_HANDLE: WIN32_ERROR = WIN32_ERROR(714u32);
8146 pub const ERROR_WAS_UNLOCKED: WIN32_ERROR = WIN32_ERROR(715u32);
8147 pub const ERROR_SERVICE_NOTIFICATION: WIN32_ERROR = WIN32_ERROR(716u32);
8148 pub const ERROR_WAS_LOCKED: WIN32_ERROR = WIN32_ERROR(717u32);
8149 pub const ERROR_LOG_HARD_ERROR: WIN32_ERROR = WIN32_ERROR(718u32);
8150 pub const ERROR_ALREADY_WIN32: WIN32_ERROR = WIN32_ERROR(719u32);
8151 pub const ERROR_IMAGE_MACHINE_TYPE_MISMATCH_EXE: WIN32_ERROR = WIN32_ERROR(720u32);
8152 pub const ERROR_NO_YIELD_PERFORMED: WIN32_ERROR = WIN32_ERROR(721u32);
8153 pub const ERROR_TIMER_RESUME_IGNORED: WIN32_ERROR = WIN32_ERROR(722u32);
8154 pub const ERROR_ARBITRATION_UNHANDLED: WIN32_ERROR = WIN32_ERROR(723u32);
8155 pub const ERROR_CARDBUS_NOT_SUPPORTED: WIN32_ERROR = WIN32_ERROR(724u32);
8156 pub const ERROR_MP_PROCESSOR_MISMATCH: WIN32_ERROR = WIN32_ERROR(725u32);
8157 pub const ERROR_HIBERNATED: WIN32_ERROR = WIN32_ERROR(726u32);
8158 pub const ERROR_RESUME_HIBERNATION: WIN32_ERROR = WIN32_ERROR(727u32);
8159 pub const ERROR_FIRMWARE_UPDATED: WIN32_ERROR = WIN32_ERROR(728u32);
8160 pub const ERROR_DRIVERS_LEAKING_LOCKED_PAGES: WIN32_ERROR = WIN32_ERROR(729u32);
8161 pub const ERROR_WAKE_SYSTEM: WIN32_ERROR = WIN32_ERROR(730u32);
8162 pub const ERROR_WAIT_1: WIN32_ERROR = WIN32_ERROR(731u32);
8163 pub const ERROR_WAIT_2: WIN32_ERROR = WIN32_ERROR(732u32);
8164 pub const ERROR_WAIT_3: WIN32_ERROR = WIN32_ERROR(733u32);
8165 pub const ERROR_WAIT_63: WIN32_ERROR = WIN32_ERROR(734u32);
8166 pub const ERROR_ABANDONED_WAIT_0: WIN32_ERROR = WIN32_ERROR(735u32);
8167 pub const ERROR_ABANDONED_WAIT_63: WIN32_ERROR = WIN32_ERROR(736u32);
8168 pub const ERROR_USER_APC: WIN32_ERROR = WIN32_ERROR(737u32);
8169 pub const ERROR_KERNEL_APC: WIN32_ERROR = WIN32_ERROR(738u32);
8170 pub const ERROR_ALERTED: WIN32_ERROR = WIN32_ERROR(739u32);
8171 pub const ERROR_ELEVATION_REQUIRED: WIN32_ERROR = WIN32_ERROR(740u32);
8172 pub const ERROR_REPARSE: WIN32_ERROR = WIN32_ERROR(741u32);
8173 pub const ERROR_OPLOCK_BREAK_IN_PROGRESS: WIN32_ERROR = WIN32_ERROR(742u32);
8174 pub const ERROR_VOLUME_MOUNTED: WIN32_ERROR = WIN32_ERROR(743u32);
8175 pub const ERROR_RXACT_COMMITTED: WIN32_ERROR = WIN32_ERROR(744u32);
8176 pub const ERROR_NOTIFY_CLEANUP: WIN32_ERROR = WIN32_ERROR(745u32);
8177 pub const ERROR_PRIMARY_TRANSPORT_CONNECT_FAILED: WIN32_ERROR = WIN32_ERROR(746u32);
8178 pub const ERROR_PAGE_FAULT_TRANSITION: WIN32_ERROR = WIN32_ERROR(747u32);
8179 pub const ERROR_PAGE_FAULT_DEMAND_ZERO: WIN32_ERROR = WIN32_ERROR(748u32);
8180 pub const ERROR_PAGE_FAULT_COPY_ON_WRITE: WIN32_ERROR = WIN32_ERROR(749u32);
8181 pub const ERROR_PAGE_FAULT_GUARD_PAGE: WIN32_ERROR = WIN32_ERROR(750u32);
8182 pub const ERROR_PAGE_FAULT_PAGING_FILE: WIN32_ERROR = WIN32_ERROR(751u32);
8183 pub const ERROR_CACHE_PAGE_LOCKED: WIN32_ERROR = WIN32_ERROR(752u32);
8184 pub const ERROR_CRASH_DUMP: WIN32_ERROR = WIN32_ERROR(753u32);
8185 pub const ERROR_BUFFER_ALL_ZEROS: WIN32_ERROR = WIN32_ERROR(754u32);
8186 pub const ERROR_REPARSE_OBJECT: WIN32_ERROR = WIN32_ERROR(755u32);
8187 pub const ERROR_RESOURCE_REQUIREMENTS_CHANGED: WIN32_ERROR = WIN32_ERROR(756u32);
8188 pub const ERROR_TRANSLATION_COMPLETE: WIN32_ERROR = WIN32_ERROR(757u32);
8189 pub const ERROR_NOTHING_TO_TERMINATE: WIN32_ERROR = WIN32_ERROR(758u32);
8190 pub const ERROR_PROCESS_NOT_IN_JOB: WIN32_ERROR = WIN32_ERROR(759u32);
8191 pub const ERROR_PROCESS_IN_JOB: WIN32_ERROR = WIN32_ERROR(760u32);
8192 pub const ERROR_VOLSNAP_HIBERNATE_READY: WIN32_ERROR = WIN32_ERROR(761u32);
8193 pub const ERROR_FSFILTER_OP_COMPLETED_SUCCESSFULLY: WIN32_ERROR = WIN32_ERROR(762u32);
8194 pub const ERROR_INTERRUPT_VECTOR_ALREADY_CONNECTED: WIN32_ERROR = WIN32_ERROR(763u32);
8195 pub const ERROR_INTERRUPT_STILL_CONNECTED: WIN32_ERROR = WIN32_ERROR(764u32);
8196 pub const ERROR_WAIT_FOR_OPLOCK: WIN32_ERROR = WIN32_ERROR(765u32);
8197 pub const ERROR_DBG_EXCEPTION_HANDLED: WIN32_ERROR = WIN32_ERROR(766u32);
8198 pub const ERROR_DBG_CONTINUE: WIN32_ERROR = WIN32_ERROR(767u32);
8199 pub const ERROR_CALLBACK_POP_STACK: WIN32_ERROR = WIN32_ERROR(768u32);
8200 pub const ERROR_COMPRESSION_DISABLED: WIN32_ERROR = WIN32_ERROR(769u32);
8201 pub const ERROR_CANTFETCHBACKWARDS: WIN32_ERROR = WIN32_ERROR(770u32);
8202 pub const ERROR_CANTSCROLLBACKWARDS: WIN32_ERROR = WIN32_ERROR(771u32);
8203 pub const ERROR_ROWSNOTRELEASED: WIN32_ERROR = WIN32_ERROR(772u32);
8204 pub const ERROR_BAD_ACCESSOR_FLAGS: WIN32_ERROR = WIN32_ERROR(773u32);
8205 pub const ERROR_ERRORS_ENCOUNTERED: WIN32_ERROR = WIN32_ERROR(774u32);
8206 pub const ERROR_NOT_CAPABLE: WIN32_ERROR = WIN32_ERROR(775u32);
8207 pub const ERROR_REQUEST_OUT_OF_SEQUENCE: WIN32_ERROR = WIN32_ERROR(776u32);
8208 pub const ERROR_VERSION_PARSE_ERROR: WIN32_ERROR = WIN32_ERROR(777u32);
8209 pub const ERROR_BADSTARTPOSITION: WIN32_ERROR = WIN32_ERROR(778u32);
8210 pub const ERROR_MEMORY_HARDWARE: WIN32_ERROR = WIN32_ERROR(779u32);
8211 pub const ERROR_DISK_REPAIR_DISABLED: WIN32_ERROR = WIN32_ERROR(780u32);
8212 pub const ERROR_INSUFFICIENT_RESOURCE_FOR_SPECIFIED_SHARED_SECTION_SIZE: WIN32_ERROR = WIN32_ERROR(781u32);
8213 pub const ERROR_SYSTEM_POWERSTATE_TRANSITION: WIN32_ERROR = WIN32_ERROR(782u32);
8214 pub const ERROR_SYSTEM_POWERSTATE_COMPLEX_TRANSITION: WIN32_ERROR = WIN32_ERROR(783u32);
8215 pub const ERROR_MCA_EXCEPTION: WIN32_ERROR = WIN32_ERROR(784u32);
8216 pub const ERROR_ACCESS_AUDIT_BY_POLICY: WIN32_ERROR = WIN32_ERROR(785u32);
8217 pub const ERROR_ACCESS_DISABLED_NO_SAFER_UI_BY_POLICY: WIN32_ERROR = WIN32_ERROR(786u32);
8218 pub const ERROR_ABANDON_HIBERFILE: WIN32_ERROR = WIN32_ERROR(787u32);
8219 pub const ERROR_LOST_WRITEBEHIND_DATA_NETWORK_DISCONNECTED: WIN32_ERROR = WIN32_ERROR(788u32);
8220 pub const ERROR_LOST_WRITEBEHIND_DATA_NETWORK_SERVER_ERROR: WIN32_ERROR = WIN32_ERROR(789u32);
8221 pub const ERROR_LOST_WRITEBEHIND_DATA_LOCAL_DISK_ERROR: WIN32_ERROR = WIN32_ERROR(790u32);
8222 pub const ERROR_BAD_MCFG_TABLE: WIN32_ERROR = WIN32_ERROR(791u32);
8223 pub const ERROR_DISK_REPAIR_REDIRECTED: WIN32_ERROR = WIN32_ERROR(792u32);
8224 pub const ERROR_DISK_REPAIR_UNSUCCESSFUL: WIN32_ERROR = WIN32_ERROR(793u32);
8225 pub const ERROR_CORRUPT_LOG_OVERFULL: WIN32_ERROR = WIN32_ERROR(794u32);
8226 pub const ERROR_CORRUPT_LOG_CORRUPTED: WIN32_ERROR = WIN32_ERROR(795u32);
8227 pub const ERROR_CORRUPT_LOG_UNAVAILABLE: WIN32_ERROR = WIN32_ERROR(796u32);
8228 pub const ERROR_CORRUPT_LOG_DELETED_FULL: WIN32_ERROR = WIN32_ERROR(797u32);
8229 pub const ERROR_CORRUPT_LOG_CLEARED: WIN32_ERROR = WIN32_ERROR(798u32);
8230 pub const ERROR_ORPHAN_NAME_EXHAUSTED: WIN32_ERROR = WIN32_ERROR(799u32);
8231 pub const ERROR_OPLOCK_SWITCHED_TO_NEW_HANDLE: WIN32_ERROR = WIN32_ERROR(800u32);
8232 pub const ERROR_CANNOT_GRANT_REQUESTED_OPLOCK: WIN32_ERROR = WIN32_ERROR(801u32);
8233 pub const ERROR_CANNOT_BREAK_OPLOCK: WIN32_ERROR = WIN32_ERROR(802u32);
8234 pub const ERROR_OPLOCK_HANDLE_CLOSED: WIN32_ERROR = WIN32_ERROR(803u32);
8235 pub const ERROR_NO_ACE_CONDITION: WIN32_ERROR = WIN32_ERROR(804u32);
8236 pub const ERROR_INVALID_ACE_CONDITION: WIN32_ERROR = WIN32_ERROR(805u32);
8237 pub const ERROR_FILE_HANDLE_REVOKED: WIN32_ERROR = WIN32_ERROR(806u32);
8238 pub const ERROR_IMAGE_AT_DIFFERENT_BASE: WIN32_ERROR = WIN32_ERROR(807u32);
8239 pub const ERROR_ENCRYPTED_IO_NOT_POSSIBLE: WIN32_ERROR = WIN32_ERROR(808u32);
8240 pub const ERROR_FILE_METADATA_OPTIMIZATION_IN_PROGRESS: WIN32_ERROR = WIN32_ERROR(809u32);
8241 pub const ERROR_QUOTA_ACTIVITY: WIN32_ERROR = WIN32_ERROR(810u32);
8242 pub const ERROR_HANDLE_REVOKED: WIN32_ERROR = WIN32_ERROR(811u32);
8243 pub const ERROR_CALLBACK_INVOKE_INLINE: WIN32_ERROR = WIN32_ERROR(812u32);
8244 pub const ERROR_CPU_SET_INVALID: WIN32_ERROR = WIN32_ERROR(813u32);
8245 pub const ERROR_ENCLAVE_NOT_TERMINATED: WIN32_ERROR = WIN32_ERROR(814u32);
8246 pub const ERROR_ENCLAVE_VIOLATION: WIN32_ERROR = WIN32_ERROR(815u32);
8247 pub const ERROR_SERVER_TRANSPORT_CONFLICT: WIN32_ERROR = WIN32_ERROR(816u32);
8248 pub const ERROR_CERTIFICATE_VALIDATION_PREFERENCE_CONFLICT: WIN32_ERROR = WIN32_ERROR(817u32);
8249 pub const ERROR_FT_READ_FROM_COPY_FAILURE: WIN32_ERROR = WIN32_ERROR(818u32);
8250 pub const ERROR_SECTION_DIRECT_MAP_ONLY: WIN32_ERROR = WIN32_ERROR(819u32);
8251 pub const ERROR_EA_ACCESS_DENIED: WIN32_ERROR = WIN32_ERROR(994u32);
8252 pub const ERROR_OPERATION_ABORTED: WIN32_ERROR = WIN32_ERROR(995u32);
8253 pub const ERROR_IO_INCOMPLETE: WIN32_ERROR = WIN32_ERROR(996u32);
8254 pub const ERROR_IO_PENDING: WIN32_ERROR = WIN32_ERROR(997u32);
8255 pub const ERROR_NOACCESS: WIN32_ERROR = WIN32_ERROR(998u32);
8256 pub const ERROR_SWAPERROR: WIN32_ERROR = WIN32_ERROR(999u32);
8257 pub const ERROR_STACK_OVERFLOW: WIN32_ERROR = WIN32_ERROR(1001u32);
8258 pub const ERROR_INVALID_MESSAGE: WIN32_ERROR = WIN32_ERROR(1002u32);
8259 pub const ERROR_CAN_NOT_COMPLETE: WIN32_ERROR = WIN32_ERROR(1003u32);
8260 pub const ERROR_INVALID_FLAGS: WIN32_ERROR = WIN32_ERROR(1004u32);
8261 pub const ERROR_UNRECOGNIZED_VOLUME: WIN32_ERROR = WIN32_ERROR(1005u32);
8262 pub const ERROR_FILE_INVALID: WIN32_ERROR = WIN32_ERROR(1006u32);
8263 pub const ERROR_FULLSCREEN_MODE: WIN32_ERROR = WIN32_ERROR(1007u32);
8264 pub const ERROR_NO_TOKEN: WIN32_ERROR = WIN32_ERROR(1008u32);
8265 pub const ERROR_BADDB: WIN32_ERROR = WIN32_ERROR(1009u32);
8266 pub const ERROR_BADKEY: WIN32_ERROR = WIN32_ERROR(1010u32);
8267 pub const ERROR_CANTOPEN: WIN32_ERROR = WIN32_ERROR(1011u32);
8268 pub const ERROR_CANTREAD: WIN32_ERROR = WIN32_ERROR(1012u32);
8269 pub const ERROR_CANTWRITE: WIN32_ERROR = WIN32_ERROR(1013u32);
8270 pub const ERROR_REGISTRY_RECOVERED: WIN32_ERROR = WIN32_ERROR(1014u32);
8271 pub const ERROR_REGISTRY_CORRUPT: WIN32_ERROR = WIN32_ERROR(1015u32);
8272 pub const ERROR_REGISTRY_IO_FAILED: WIN32_ERROR = WIN32_ERROR(1016u32);
8273 pub const ERROR_NOT_REGISTRY_FILE: WIN32_ERROR = WIN32_ERROR(1017u32);
8274 pub const ERROR_KEY_DELETED: WIN32_ERROR = WIN32_ERROR(1018u32);
8275 pub const ERROR_NO_LOG_SPACE: WIN32_ERROR = WIN32_ERROR(1019u32);
8276 pub const ERROR_KEY_HAS_CHILDREN: WIN32_ERROR = WIN32_ERROR(1020u32);
8277 pub const ERROR_CHILD_MUST_BE_VOLATILE: WIN32_ERROR = WIN32_ERROR(1021u32);
8278 pub const ERROR_NOTIFY_ENUM_DIR: WIN32_ERROR = WIN32_ERROR(1022u32);
8279 pub const ERROR_DEPENDENT_SERVICES_RUNNING: WIN32_ERROR = WIN32_ERROR(1051u32);
8280 pub const ERROR_INVALID_SERVICE_CONTROL: WIN32_ERROR = WIN32_ERROR(1052u32);
8281 pub const ERROR_SERVICE_REQUEST_TIMEOUT: WIN32_ERROR = WIN32_ERROR(1053u32);
8282 pub const ERROR_SERVICE_NO_THREAD: WIN32_ERROR = WIN32_ERROR(1054u32);
8283 pub const ERROR_SERVICE_DATABASE_LOCKED: WIN32_ERROR = WIN32_ERROR(1055u32);
8284 pub const ERROR_SERVICE_ALREADY_RUNNING: WIN32_ERROR = WIN32_ERROR(1056u32);
8285 pub const ERROR_INVALID_SERVICE_ACCOUNT: WIN32_ERROR = WIN32_ERROR(1057u32);
8286 pub const ERROR_SERVICE_DISABLED: WIN32_ERROR = WIN32_ERROR(1058u32);
8287 pub const ERROR_CIRCULAR_DEPENDENCY: WIN32_ERROR = WIN32_ERROR(1059u32);
8288 pub const ERROR_SERVICE_DOES_NOT_EXIST: WIN32_ERROR = WIN32_ERROR(1060u32);
8289 pub const ERROR_SERVICE_CANNOT_ACCEPT_CTRL: WIN32_ERROR = WIN32_ERROR(1061u32);
8290 pub const ERROR_SERVICE_NOT_ACTIVE: WIN32_ERROR = WIN32_ERROR(1062u32);
8291 pub const ERROR_FAILED_SERVICE_CONTROLLER_CONNECT: WIN32_ERROR = WIN32_ERROR(1063u32);
8292 pub const ERROR_EXCEPTION_IN_SERVICE: WIN32_ERROR = WIN32_ERROR(1064u32);
8293 pub const ERROR_DATABASE_DOES_NOT_EXIST: WIN32_ERROR = WIN32_ERROR(1065u32);
8294 pub const ERROR_SERVICE_SPECIFIC_ERROR: WIN32_ERROR = WIN32_ERROR(1066u32);
8295 pub const ERROR_PROCESS_ABORTED: WIN32_ERROR = WIN32_ERROR(1067u32);
8296 pub const ERROR_SERVICE_DEPENDENCY_FAIL: WIN32_ERROR = WIN32_ERROR(1068u32);
8297 pub const ERROR_SERVICE_LOGON_FAILED: WIN32_ERROR = WIN32_ERROR(1069u32);
8298 pub const ERROR_SERVICE_START_HANG: WIN32_ERROR = WIN32_ERROR(1070u32);
8299 pub const ERROR_INVALID_SERVICE_LOCK: WIN32_ERROR = WIN32_ERROR(1071u32);
8300 pub const ERROR_SERVICE_MARKED_FOR_DELETE: WIN32_ERROR = WIN32_ERROR(1072u32);
8301 pub const ERROR_SERVICE_EXISTS: WIN32_ERROR = WIN32_ERROR(1073u32);
8302 pub const ERROR_ALREADY_RUNNING_LKG: WIN32_ERROR = WIN32_ERROR(1074u32);
8303 pub const ERROR_SERVICE_DEPENDENCY_DELETED: WIN32_ERROR = WIN32_ERROR(1075u32);
8304 pub const ERROR_BOOT_ALREADY_ACCEPTED: WIN32_ERROR = WIN32_ERROR(1076u32);
8305 pub const ERROR_SERVICE_NEVER_STARTED: WIN32_ERROR = WIN32_ERROR(1077u32);
8306 pub const ERROR_DUPLICATE_SERVICE_NAME: WIN32_ERROR = WIN32_ERROR(1078u32);
8307 pub const ERROR_DIFFERENT_SERVICE_ACCOUNT: WIN32_ERROR = WIN32_ERROR(1079u32);
8308 pub const ERROR_CANNOT_DETECT_DRIVER_FAILURE: WIN32_ERROR = WIN32_ERROR(1080u32);
8309 pub const ERROR_CANNOT_DETECT_PROCESS_ABORT: WIN32_ERROR = WIN32_ERROR(1081u32);
8310 pub const ERROR_NO_RECOVERY_PROGRAM: WIN32_ERROR = WIN32_ERROR(1082u32);
8311 pub const ERROR_SERVICE_NOT_IN_EXE: WIN32_ERROR = WIN32_ERROR(1083u32);
8312 pub const ERROR_NOT_SAFEBOOT_SERVICE: WIN32_ERROR = WIN32_ERROR(1084u32);
8313 pub const ERROR_END_OF_MEDIA: WIN32_ERROR = WIN32_ERROR(1100u32);
8314 pub const ERROR_FILEMARK_DETECTED: WIN32_ERROR = WIN32_ERROR(1101u32);
8315 pub const ERROR_BEGINNING_OF_MEDIA: WIN32_ERROR = WIN32_ERROR(1102u32);
8316 pub const ERROR_SETMARK_DETECTED: WIN32_ERROR = WIN32_ERROR(1103u32);
8317 pub const ERROR_NO_DATA_DETECTED: WIN32_ERROR = WIN32_ERROR(1104u32);
8318 pub const ERROR_PARTITION_FAILURE: WIN32_ERROR = WIN32_ERROR(1105u32);
8319 pub const ERROR_INVALID_BLOCK_LENGTH: WIN32_ERROR = WIN32_ERROR(1106u32);
8320 pub const ERROR_DEVICE_NOT_PARTITIONED: WIN32_ERROR = WIN32_ERROR(1107u32);
8321 pub const ERROR_UNABLE_TO_LOCK_MEDIA: WIN32_ERROR = WIN32_ERROR(1108u32);
8322 pub const ERROR_UNABLE_TO_UNLOAD_MEDIA: WIN32_ERROR = WIN32_ERROR(1109u32);
8323 pub const ERROR_MEDIA_CHANGED: WIN32_ERROR = WIN32_ERROR(1110u32);
8324 pub const ERROR_BUS_RESET: WIN32_ERROR = WIN32_ERROR(1111u32);
8325 pub const ERROR_NO_MEDIA_IN_DRIVE: WIN32_ERROR = WIN32_ERROR(1112u32);
8326 pub const ERROR_NO_UNICODE_TRANSLATION: WIN32_ERROR = WIN32_ERROR(1113u32);
8327 pub const ERROR_DLL_INIT_FAILED: WIN32_ERROR = WIN32_ERROR(1114u32);
8328 pub const ERROR_SHUTDOWN_IN_PROGRESS: WIN32_ERROR = WIN32_ERROR(1115u32);
8329 pub const ERROR_NO_SHUTDOWN_IN_PROGRESS: WIN32_ERROR = WIN32_ERROR(1116u32);
8330 pub const ERROR_IO_DEVICE: WIN32_ERROR = WIN32_ERROR(1117u32);
8331 pub const ERROR_SERIAL_NO_DEVICE: WIN32_ERROR = WIN32_ERROR(1118u32);
8332 pub const ERROR_IRQ_BUSY: WIN32_ERROR = WIN32_ERROR(1119u32);
8333 pub const ERROR_MORE_WRITES: WIN32_ERROR = WIN32_ERROR(1120u32);
8334 pub const ERROR_COUNTER_TIMEOUT: WIN32_ERROR = WIN32_ERROR(1121u32);
8335 pub const ERROR_FLOPPY_ID_MARK_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(1122u32);
8336 pub const ERROR_FLOPPY_WRONG_CYLINDER: WIN32_ERROR = WIN32_ERROR(1123u32);
8337 pub const ERROR_FLOPPY_UNKNOWN_ERROR: WIN32_ERROR = WIN32_ERROR(1124u32);
8338 pub const ERROR_FLOPPY_BAD_REGISTERS: WIN32_ERROR = WIN32_ERROR(1125u32);
8339 pub const ERROR_DISK_RECALIBRATE_FAILED: WIN32_ERROR = WIN32_ERROR(1126u32);
8340 pub const ERROR_DISK_OPERATION_FAILED: WIN32_ERROR = WIN32_ERROR(1127u32);
8341 pub const ERROR_DISK_RESET_FAILED: WIN32_ERROR = WIN32_ERROR(1128u32);
8342 pub const ERROR_EOM_OVERFLOW: WIN32_ERROR = WIN32_ERROR(1129u32);
8343 pub const ERROR_NOT_ENOUGH_SERVER_MEMORY: WIN32_ERROR = WIN32_ERROR(1130u32);
8344 pub const ERROR_POSSIBLE_DEADLOCK: WIN32_ERROR = WIN32_ERROR(1131u32);
8345 pub const ERROR_MAPPED_ALIGNMENT: WIN32_ERROR = WIN32_ERROR(1132u32);
8346 pub const ERROR_SET_POWER_STATE_VETOED: WIN32_ERROR = WIN32_ERROR(1140u32);
8347 pub const ERROR_SET_POWER_STATE_FAILED: WIN32_ERROR = WIN32_ERROR(1141u32);
8348 pub const ERROR_TOO_MANY_LINKS: WIN32_ERROR = WIN32_ERROR(1142u32);
8349 pub const ERROR_OLD_WIN_VERSION: WIN32_ERROR = WIN32_ERROR(1150u32);
8350 pub const ERROR_APP_WRONG_OS: WIN32_ERROR = WIN32_ERROR(1151u32);
8351 pub const ERROR_SINGLE_INSTANCE_APP: WIN32_ERROR = WIN32_ERROR(1152u32);
8352 pub const ERROR_RMODE_APP: WIN32_ERROR = WIN32_ERROR(1153u32);
8353 pub const ERROR_INVALID_DLL: WIN32_ERROR = WIN32_ERROR(1154u32);
8354 pub const ERROR_NO_ASSOCIATION: WIN32_ERROR = WIN32_ERROR(1155u32);
8355 pub const ERROR_DDE_FAIL: WIN32_ERROR = WIN32_ERROR(1156u32);
8356 pub const ERROR_DLL_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(1157u32);
8357 pub const ERROR_NO_MORE_USER_HANDLES: WIN32_ERROR = WIN32_ERROR(1158u32);
8358 pub const ERROR_MESSAGE_SYNC_ONLY: WIN32_ERROR = WIN32_ERROR(1159u32);
8359 pub const ERROR_SOURCE_ELEMENT_EMPTY: WIN32_ERROR = WIN32_ERROR(1160u32);
8360 pub const ERROR_DESTINATION_ELEMENT_FULL: WIN32_ERROR = WIN32_ERROR(1161u32);
8361 pub const ERROR_ILLEGAL_ELEMENT_ADDRESS: WIN32_ERROR = WIN32_ERROR(1162u32);
8362 pub const ERROR_MAGAZINE_NOT_PRESENT: WIN32_ERROR = WIN32_ERROR(1163u32);
8363 pub const ERROR_DEVICE_REINITIALIZATION_NEEDED: WIN32_ERROR = WIN32_ERROR(1164u32);
8364 pub const ERROR_DEVICE_REQUIRES_CLEANING: WIN32_ERROR = WIN32_ERROR(1165u32);
8365 pub const ERROR_DEVICE_DOOR_OPEN: WIN32_ERROR = WIN32_ERROR(1166u32);
8366 pub const ERROR_DEVICE_NOT_CONNECTED: WIN32_ERROR = WIN32_ERROR(1167u32);
8367 pub const ERROR_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(1168u32);
8368 pub const ERROR_NO_MATCH: WIN32_ERROR = WIN32_ERROR(1169u32);
8369 pub const ERROR_SET_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(1170u32);
8370 pub const ERROR_POINT_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(1171u32);
8371 pub const ERROR_NO_TRACKING_SERVICE: WIN32_ERROR = WIN32_ERROR(1172u32);
8372 pub const ERROR_NO_VOLUME_ID: WIN32_ERROR = WIN32_ERROR(1173u32);
8373 pub const ERROR_UNABLE_TO_REMOVE_REPLACED: WIN32_ERROR = WIN32_ERROR(1175u32);
8374 pub const ERROR_UNABLE_TO_MOVE_REPLACEMENT: WIN32_ERROR = WIN32_ERROR(1176u32);
8375 pub const ERROR_UNABLE_TO_MOVE_REPLACEMENT_2: WIN32_ERROR = WIN32_ERROR(1177u32);
8376 pub const ERROR_JOURNAL_DELETE_IN_PROGRESS: WIN32_ERROR = WIN32_ERROR(1178u32);
8377 pub const ERROR_JOURNAL_NOT_ACTIVE: WIN32_ERROR = WIN32_ERROR(1179u32);
8378 pub const ERROR_POTENTIAL_FILE_FOUND: WIN32_ERROR = WIN32_ERROR(1180u32);
8379 pub const ERROR_JOURNAL_ENTRY_DELETED: WIN32_ERROR = WIN32_ERROR(1181u32);
8380 pub const ERROR_PARTITION_TERMINATING: WIN32_ERROR = WIN32_ERROR(1184u32);
8381 pub const ERROR_SHUTDOWN_IS_SCHEDULED: WIN32_ERROR = WIN32_ERROR(1190u32);
8382 pub const ERROR_SHUTDOWN_USERS_LOGGED_ON: WIN32_ERROR = WIN32_ERROR(1191u32);
8383 pub const ERROR_SHUTDOWN_DISKS_NOT_IN_MAINTENANCE_MODE: WIN32_ERROR = WIN32_ERROR(1192u32);
8384 pub const ERROR_BAD_DEVICE: WIN32_ERROR = WIN32_ERROR(1200u32);
8385 pub const ERROR_CONNECTION_UNAVAIL: WIN32_ERROR = WIN32_ERROR(1201u32);
8386 pub const ERROR_DEVICE_ALREADY_REMEMBERED: WIN32_ERROR = WIN32_ERROR(1202u32);
8387 pub const ERROR_NO_NET_OR_BAD_PATH: WIN32_ERROR = WIN32_ERROR(1203u32);
8388 pub const ERROR_BAD_PROVIDER: WIN32_ERROR = WIN32_ERROR(1204u32);
8389 pub const ERROR_CANNOT_OPEN_PROFILE: WIN32_ERROR = WIN32_ERROR(1205u32);
8390 pub const ERROR_BAD_PROFILE: WIN32_ERROR = WIN32_ERROR(1206u32);
8391 pub const ERROR_NOT_CONTAINER: WIN32_ERROR = WIN32_ERROR(1207u32);
8392 pub const ERROR_EXTENDED_ERROR: WIN32_ERROR = WIN32_ERROR(1208u32);
8393 pub const ERROR_INVALID_GROUPNAME: WIN32_ERROR = WIN32_ERROR(1209u32);
8394 pub const ERROR_INVALID_COMPUTERNAME: WIN32_ERROR = WIN32_ERROR(1210u32);
8395 pub const ERROR_INVALID_EVENTNAME: WIN32_ERROR = WIN32_ERROR(1211u32);
8396 pub const ERROR_INVALID_DOMAINNAME: WIN32_ERROR = WIN32_ERROR(1212u32);
8397 pub const ERROR_INVALID_SERVICENAME: WIN32_ERROR = WIN32_ERROR(1213u32);
8398 pub const ERROR_INVALID_NETNAME: WIN32_ERROR = WIN32_ERROR(1214u32);
8399 pub const ERROR_INVALID_SHARENAME: WIN32_ERROR = WIN32_ERROR(1215u32);
8400 pub const ERROR_INVALID_PASSWORDNAME: WIN32_ERROR = WIN32_ERROR(1216u32);
8401 pub const ERROR_INVALID_MESSAGENAME: WIN32_ERROR = WIN32_ERROR(1217u32);
8402 pub const ERROR_INVALID_MESSAGEDEST: WIN32_ERROR = WIN32_ERROR(1218u32);
8403 pub const ERROR_SESSION_CREDENTIAL_CONFLICT: WIN32_ERROR = WIN32_ERROR(1219u32);
8404 pub const ERROR_REMOTE_SESSION_LIMIT_EXCEEDED: WIN32_ERROR = WIN32_ERROR(1220u32);
8405 pub const ERROR_DUP_DOMAINNAME: WIN32_ERROR = WIN32_ERROR(1221u32);
8406 pub const ERROR_NO_NETWORK: WIN32_ERROR = WIN32_ERROR(1222u32);
8407 pub const ERROR_CANCELLED: WIN32_ERROR = WIN32_ERROR(1223u32);
8408 pub const ERROR_USER_MAPPED_FILE: WIN32_ERROR = WIN32_ERROR(1224u32);
8409 pub const ERROR_CONNECTION_REFUSED: WIN32_ERROR = WIN32_ERROR(1225u32);
8410 pub const ERROR_GRACEFUL_DISCONNECT: WIN32_ERROR = WIN32_ERROR(1226u32);
8411 pub const ERROR_ADDRESS_ALREADY_ASSOCIATED: WIN32_ERROR = WIN32_ERROR(1227u32);
8412 pub const ERROR_ADDRESS_NOT_ASSOCIATED: WIN32_ERROR = WIN32_ERROR(1228u32);
8413 pub const ERROR_CONNECTION_INVALID: WIN32_ERROR = WIN32_ERROR(1229u32);
8414 pub const ERROR_CONNECTION_ACTIVE: WIN32_ERROR = WIN32_ERROR(1230u32);
8415 pub const ERROR_NETWORK_UNREACHABLE: WIN32_ERROR = WIN32_ERROR(1231u32);
8416 pub const ERROR_HOST_UNREACHABLE: WIN32_ERROR = WIN32_ERROR(1232u32);
8417 pub const ERROR_PROTOCOL_UNREACHABLE: WIN32_ERROR = WIN32_ERROR(1233u32);
8418 pub const ERROR_PORT_UNREACHABLE: WIN32_ERROR = WIN32_ERROR(1234u32);
8419 pub const ERROR_REQUEST_ABORTED: WIN32_ERROR = WIN32_ERROR(1235u32);
8420 pub const ERROR_CONNECTION_ABORTED: WIN32_ERROR = WIN32_ERROR(1236u32);
8421 pub const ERROR_RETRY: WIN32_ERROR = WIN32_ERROR(1237u32);
8422 pub const ERROR_CONNECTION_COUNT_LIMIT: WIN32_ERROR = WIN32_ERROR(1238u32);
8423 pub const ERROR_LOGIN_TIME_RESTRICTION: WIN32_ERROR = WIN32_ERROR(1239u32);
8424 pub const ERROR_LOGIN_WKSTA_RESTRICTION: WIN32_ERROR = WIN32_ERROR(1240u32);
8425 pub const ERROR_INCORRECT_ADDRESS: WIN32_ERROR = WIN32_ERROR(1241u32);
8426 pub const ERROR_ALREADY_REGISTERED: WIN32_ERROR = WIN32_ERROR(1242u32);
8427 pub const ERROR_SERVICE_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(1243u32);
8428 pub const ERROR_NOT_AUTHENTICATED: WIN32_ERROR = WIN32_ERROR(1244u32);
8429 pub const ERROR_NOT_LOGGED_ON: WIN32_ERROR = WIN32_ERROR(1245u32);
8430 pub const ERROR_CONTINUE: WIN32_ERROR = WIN32_ERROR(1246u32);
8431 pub const ERROR_ALREADY_INITIALIZED: WIN32_ERROR = WIN32_ERROR(1247u32);
8432 pub const ERROR_NO_MORE_DEVICES: WIN32_ERROR = WIN32_ERROR(1248u32);
8433 pub const ERROR_NO_SUCH_SITE: WIN32_ERROR = WIN32_ERROR(1249u32);
8434 pub const ERROR_DOMAIN_CONTROLLER_EXISTS: WIN32_ERROR = WIN32_ERROR(1250u32);
8435 pub const ERROR_ONLY_IF_CONNECTED: WIN32_ERROR = WIN32_ERROR(1251u32);
8436 pub const ERROR_OVERRIDE_NOCHANGES: WIN32_ERROR = WIN32_ERROR(1252u32);
8437 pub const ERROR_BAD_USER_PROFILE: WIN32_ERROR = WIN32_ERROR(1253u32);
8438 pub const ERROR_NOT_SUPPORTED_ON_SBS: WIN32_ERROR = WIN32_ERROR(1254u32);
8439 pub const ERROR_SERVER_SHUTDOWN_IN_PROGRESS: WIN32_ERROR = WIN32_ERROR(1255u32);
8440 pub const ERROR_HOST_DOWN: WIN32_ERROR = WIN32_ERROR(1256u32);
8441 pub const ERROR_NON_ACCOUNT_SID: WIN32_ERROR = WIN32_ERROR(1257u32);
8442 pub const ERROR_NON_DOMAIN_SID: WIN32_ERROR = WIN32_ERROR(1258u32);
8443 pub const ERROR_APPHELP_BLOCK: WIN32_ERROR = WIN32_ERROR(1259u32);
8444 pub const ERROR_ACCESS_DISABLED_BY_POLICY: WIN32_ERROR = WIN32_ERROR(1260u32);
8445 pub const ERROR_REG_NAT_CONSUMPTION: WIN32_ERROR = WIN32_ERROR(1261u32);
8446 pub const ERROR_CSCSHARE_OFFLINE: WIN32_ERROR = WIN32_ERROR(1262u32);
8447 pub const ERROR_PKINIT_FAILURE: WIN32_ERROR = WIN32_ERROR(1263u32);
8448 pub const ERROR_SMARTCARD_SUBSYSTEM_FAILURE: WIN32_ERROR = WIN32_ERROR(1264u32);
8449 pub const ERROR_DOWNGRADE_DETECTED: WIN32_ERROR = WIN32_ERROR(1265u32);
8450 pub const ERROR_MACHINE_LOCKED: WIN32_ERROR = WIN32_ERROR(1271u32);
8451 pub const ERROR_SMB_GUEST_LOGON_BLOCKED: WIN32_ERROR = WIN32_ERROR(1272u32);
8452 pub const ERROR_CALLBACK_SUPPLIED_INVALID_DATA: WIN32_ERROR = WIN32_ERROR(1273u32);
8453 pub const ERROR_SYNC_FOREGROUND_REFRESH_REQUIRED: WIN32_ERROR = WIN32_ERROR(1274u32);
8454 pub const ERROR_DRIVER_BLOCKED: WIN32_ERROR = WIN32_ERROR(1275u32);
8455 pub const ERROR_INVALID_IMPORT_OF_NON_DLL: WIN32_ERROR = WIN32_ERROR(1276u32);
8456 pub const ERROR_ACCESS_DISABLED_WEBBLADE: WIN32_ERROR = WIN32_ERROR(1277u32);
8457 pub const ERROR_ACCESS_DISABLED_WEBBLADE_TAMPER: WIN32_ERROR = WIN32_ERROR(1278u32);
8458 pub const ERROR_RECOVERY_FAILURE: WIN32_ERROR = WIN32_ERROR(1279u32);
8459 pub const ERROR_ALREADY_FIBER: WIN32_ERROR = WIN32_ERROR(1280u32);
8460 pub const ERROR_ALREADY_THREAD: WIN32_ERROR = WIN32_ERROR(1281u32);
8461 pub const ERROR_STACK_BUFFER_OVERRUN: WIN32_ERROR = WIN32_ERROR(1282u32);
8462 pub const ERROR_PARAMETER_QUOTA_EXCEEDED: WIN32_ERROR = WIN32_ERROR(1283u32);
8463 pub const ERROR_DEBUGGER_INACTIVE: WIN32_ERROR = WIN32_ERROR(1284u32);
8464 pub const ERROR_DELAY_LOAD_FAILED: WIN32_ERROR = WIN32_ERROR(1285u32);
8465 pub const ERROR_VDM_DISALLOWED: WIN32_ERROR = WIN32_ERROR(1286u32);
8466 pub const ERROR_UNIDENTIFIED_ERROR: WIN32_ERROR = WIN32_ERROR(1287u32);
8467 pub const ERROR_INVALID_CRUNTIME_PARAMETER: WIN32_ERROR = WIN32_ERROR(1288u32);
8468 pub const ERROR_BEYOND_VDL: WIN32_ERROR = WIN32_ERROR(1289u32);
8469 pub const ERROR_INCOMPATIBLE_SERVICE_SID_TYPE: WIN32_ERROR = WIN32_ERROR(1290u32);
8470 pub const ERROR_DRIVER_PROCESS_TERMINATED: WIN32_ERROR = WIN32_ERROR(1291u32);
8471 pub const ERROR_IMPLEMENTATION_LIMIT: WIN32_ERROR = WIN32_ERROR(1292u32);
8472 pub const ERROR_PROCESS_IS_PROTECTED: WIN32_ERROR = WIN32_ERROR(1293u32);
8473 pub const ERROR_SERVICE_NOTIFY_CLIENT_LAGGING: WIN32_ERROR = WIN32_ERROR(1294u32);
8474 pub const ERROR_DISK_QUOTA_EXCEEDED: WIN32_ERROR = WIN32_ERROR(1295u32);
8475 pub const ERROR_CONTENT_BLOCKED: WIN32_ERROR = WIN32_ERROR(1296u32);
8476 pub const ERROR_INCOMPATIBLE_SERVICE_PRIVILEGE: WIN32_ERROR = WIN32_ERROR(1297u32);
8477 pub const ERROR_APP_HANG: WIN32_ERROR = WIN32_ERROR(1298u32);
8478 pub const ERROR_INVALID_LABEL: WIN32_ERROR = WIN32_ERROR(1299u32);
8479 pub const ERROR_NOT_ALL_ASSIGNED: WIN32_ERROR = WIN32_ERROR(1300u32);
8480 pub const ERROR_SOME_NOT_MAPPED: WIN32_ERROR = WIN32_ERROR(1301u32);
8481 pub const ERROR_NO_QUOTAS_FOR_ACCOUNT: WIN32_ERROR = WIN32_ERROR(1302u32);
8482 pub const ERROR_LOCAL_USER_SESSION_KEY: WIN32_ERROR = WIN32_ERROR(1303u32);
8483 pub const ERROR_NULL_LM_PASSWORD: WIN32_ERROR = WIN32_ERROR(1304u32);
8484 pub const ERROR_UNKNOWN_REVISION: WIN32_ERROR = WIN32_ERROR(1305u32);
8485 pub const ERROR_REVISION_MISMATCH: WIN32_ERROR = WIN32_ERROR(1306u32);
8486 pub const ERROR_INVALID_OWNER: WIN32_ERROR = WIN32_ERROR(1307u32);
8487 pub const ERROR_INVALID_PRIMARY_GROUP: WIN32_ERROR = WIN32_ERROR(1308u32);
8488 pub const ERROR_NO_IMPERSONATION_TOKEN: WIN32_ERROR = WIN32_ERROR(1309u32);
8489 pub const ERROR_CANT_DISABLE_MANDATORY: WIN32_ERROR = WIN32_ERROR(1310u32);
8490 pub const ERROR_NO_LOGON_SERVERS: WIN32_ERROR = WIN32_ERROR(1311u32);
8491 pub const ERROR_NO_SUCH_LOGON_SESSION: WIN32_ERROR = WIN32_ERROR(1312u32);
8492 pub const ERROR_NO_SUCH_PRIVILEGE: WIN32_ERROR = WIN32_ERROR(1313u32);
8493 pub const ERROR_PRIVILEGE_NOT_HELD: WIN32_ERROR = WIN32_ERROR(1314u32);
8494 pub const ERROR_INVALID_ACCOUNT_NAME: WIN32_ERROR = WIN32_ERROR(1315u32);
8495 pub const ERROR_USER_EXISTS: WIN32_ERROR = WIN32_ERROR(1316u32);
8496 pub const ERROR_NO_SUCH_USER: WIN32_ERROR = WIN32_ERROR(1317u32);
8497 pub const ERROR_GROUP_EXISTS: WIN32_ERROR = WIN32_ERROR(1318u32);
8498 pub const ERROR_NO_SUCH_GROUP: WIN32_ERROR = WIN32_ERROR(1319u32);
8499 pub const ERROR_MEMBER_IN_GROUP: WIN32_ERROR = WIN32_ERROR(1320u32);
8500 pub const ERROR_MEMBER_NOT_IN_GROUP: WIN32_ERROR = WIN32_ERROR(1321u32);
8501 pub const ERROR_LAST_ADMIN: WIN32_ERROR = WIN32_ERROR(1322u32);
8502 pub const ERROR_WRONG_PASSWORD: WIN32_ERROR = WIN32_ERROR(1323u32);
8503 pub const ERROR_ILL_FORMED_PASSWORD: WIN32_ERROR = WIN32_ERROR(1324u32);
8504 pub const ERROR_PASSWORD_RESTRICTION: WIN32_ERROR = WIN32_ERROR(1325u32);
8505 pub const ERROR_LOGON_FAILURE: WIN32_ERROR = WIN32_ERROR(1326u32);
8506 pub const ERROR_ACCOUNT_RESTRICTION: WIN32_ERROR = WIN32_ERROR(1327u32);
8507 pub const ERROR_INVALID_LOGON_HOURS: WIN32_ERROR = WIN32_ERROR(1328u32);
8508 pub const ERROR_INVALID_WORKSTATION: WIN32_ERROR = WIN32_ERROR(1329u32);
8509 pub const ERROR_PASSWORD_EXPIRED: WIN32_ERROR = WIN32_ERROR(1330u32);
8510 pub const ERROR_ACCOUNT_DISABLED: WIN32_ERROR = WIN32_ERROR(1331u32);
8511 pub const ERROR_NONE_MAPPED: WIN32_ERROR = WIN32_ERROR(1332u32);
8512 pub const ERROR_TOO_MANY_LUIDS_REQUESTED: WIN32_ERROR = WIN32_ERROR(1333u32);
8513 pub const ERROR_LUIDS_EXHAUSTED: WIN32_ERROR = WIN32_ERROR(1334u32);
8514 pub const ERROR_INVALID_SUB_AUTHORITY: WIN32_ERROR = WIN32_ERROR(1335u32);
8515 pub const ERROR_INVALID_ACL: WIN32_ERROR = WIN32_ERROR(1336u32);
8516 pub const ERROR_INVALID_SID: WIN32_ERROR = WIN32_ERROR(1337u32);
8517 pub const ERROR_INVALID_SECURITY_DESCR: WIN32_ERROR = WIN32_ERROR(1338u32);
8518 pub const ERROR_BAD_INHERITANCE_ACL: WIN32_ERROR = WIN32_ERROR(1340u32);
8519 pub const ERROR_SERVER_DISABLED: WIN32_ERROR = WIN32_ERROR(1341u32);
8520 pub const ERROR_SERVER_NOT_DISABLED: WIN32_ERROR = WIN32_ERROR(1342u32);
8521 pub const ERROR_INVALID_ID_AUTHORITY: WIN32_ERROR = WIN32_ERROR(1343u32);
8522 pub const ERROR_ALLOTTED_SPACE_EXCEEDED: WIN32_ERROR = WIN32_ERROR(1344u32);
8523 pub const ERROR_INVALID_GROUP_ATTRIBUTES: WIN32_ERROR = WIN32_ERROR(1345u32);
8524 pub const ERROR_BAD_IMPERSONATION_LEVEL: WIN32_ERROR = WIN32_ERROR(1346u32);
8525 pub const ERROR_CANT_OPEN_ANONYMOUS: WIN32_ERROR = WIN32_ERROR(1347u32);
8526 pub const ERROR_BAD_VALIDATION_CLASS: WIN32_ERROR = WIN32_ERROR(1348u32);
8527 pub const ERROR_BAD_TOKEN_TYPE: WIN32_ERROR = WIN32_ERROR(1349u32);
8528 pub const ERROR_NO_SECURITY_ON_OBJECT: WIN32_ERROR = WIN32_ERROR(1350u32);
8529 pub const ERROR_CANT_ACCESS_DOMAIN_INFO: WIN32_ERROR = WIN32_ERROR(1351u32);
8530 pub const ERROR_INVALID_SERVER_STATE: WIN32_ERROR = WIN32_ERROR(1352u32);
8531 pub const ERROR_INVALID_DOMAIN_STATE: WIN32_ERROR = WIN32_ERROR(1353u32);
8532 pub const ERROR_INVALID_DOMAIN_ROLE: WIN32_ERROR = WIN32_ERROR(1354u32);
8533 pub const ERROR_NO_SUCH_DOMAIN: WIN32_ERROR = WIN32_ERROR(1355u32);
8534 pub const ERROR_DOMAIN_EXISTS: WIN32_ERROR = WIN32_ERROR(1356u32);
8535 pub const ERROR_DOMAIN_LIMIT_EXCEEDED: WIN32_ERROR = WIN32_ERROR(1357u32);
8536 pub const ERROR_INTERNAL_DB_CORRUPTION: WIN32_ERROR = WIN32_ERROR(1358u32);
8537 pub const ERROR_INTERNAL_ERROR: WIN32_ERROR = WIN32_ERROR(1359u32);
8538 pub const ERROR_GENERIC_NOT_MAPPED: WIN32_ERROR = WIN32_ERROR(1360u32);
8539 pub const ERROR_BAD_DESCRIPTOR_FORMAT: WIN32_ERROR = WIN32_ERROR(1361u32);
8540 pub const ERROR_NOT_LOGON_PROCESS: WIN32_ERROR = WIN32_ERROR(1362u32);
8541 pub const ERROR_LOGON_SESSION_EXISTS: WIN32_ERROR = WIN32_ERROR(1363u32);
8542 pub const ERROR_NO_SUCH_PACKAGE: WIN32_ERROR = WIN32_ERROR(1364u32);
8543 pub const ERROR_BAD_LOGON_SESSION_STATE: WIN32_ERROR = WIN32_ERROR(1365u32);
8544 pub const ERROR_LOGON_SESSION_COLLISION: WIN32_ERROR = WIN32_ERROR(1366u32);
8545 pub const ERROR_INVALID_LOGON_TYPE: WIN32_ERROR = WIN32_ERROR(1367u32);
8546 pub const ERROR_CANNOT_IMPERSONATE: WIN32_ERROR = WIN32_ERROR(1368u32);
8547 pub const ERROR_RXACT_INVALID_STATE: WIN32_ERROR = WIN32_ERROR(1369u32);
8548 pub const ERROR_RXACT_COMMIT_FAILURE: WIN32_ERROR = WIN32_ERROR(1370u32);
8549 pub const ERROR_SPECIAL_ACCOUNT: WIN32_ERROR = WIN32_ERROR(1371u32);
8550 pub const ERROR_SPECIAL_GROUP: WIN32_ERROR = WIN32_ERROR(1372u32);
8551 pub const ERROR_SPECIAL_USER: WIN32_ERROR = WIN32_ERROR(1373u32);
8552 pub const ERROR_MEMBERS_PRIMARY_GROUP: WIN32_ERROR = WIN32_ERROR(1374u32);
8553 pub const ERROR_TOKEN_ALREADY_IN_USE: WIN32_ERROR = WIN32_ERROR(1375u32);
8554 pub const ERROR_NO_SUCH_ALIAS: WIN32_ERROR = WIN32_ERROR(1376u32);
8555 pub const ERROR_MEMBER_NOT_IN_ALIAS: WIN32_ERROR = WIN32_ERROR(1377u32);
8556 pub const ERROR_MEMBER_IN_ALIAS: WIN32_ERROR = WIN32_ERROR(1378u32);
8557 pub const ERROR_ALIAS_EXISTS: WIN32_ERROR = WIN32_ERROR(1379u32);
8558 pub const ERROR_LOGON_NOT_GRANTED: WIN32_ERROR = WIN32_ERROR(1380u32);
8559 pub const ERROR_TOO_MANY_SECRETS: WIN32_ERROR = WIN32_ERROR(1381u32);
8560 pub const ERROR_SECRET_TOO_LONG: WIN32_ERROR = WIN32_ERROR(1382u32);
8561 pub const ERROR_INTERNAL_DB_ERROR: WIN32_ERROR = WIN32_ERROR(1383u32);
8562 pub const ERROR_TOO_MANY_CONTEXT_IDS: WIN32_ERROR = WIN32_ERROR(1384u32);
8563 pub const ERROR_LOGON_TYPE_NOT_GRANTED: WIN32_ERROR = WIN32_ERROR(1385u32);
8564 pub const ERROR_NT_CROSS_ENCRYPTION_REQUIRED: WIN32_ERROR = WIN32_ERROR(1386u32);
8565 pub const ERROR_NO_SUCH_MEMBER: WIN32_ERROR = WIN32_ERROR(1387u32);
8566 pub const ERROR_INVALID_MEMBER: WIN32_ERROR = WIN32_ERROR(1388u32);
8567 pub const ERROR_TOO_MANY_SIDS: WIN32_ERROR = WIN32_ERROR(1389u32);
8568 pub const ERROR_LM_CROSS_ENCRYPTION_REQUIRED: WIN32_ERROR = WIN32_ERROR(1390u32);
8569 pub const ERROR_NO_INHERITANCE: WIN32_ERROR = WIN32_ERROR(1391u32);
8570 pub const ERROR_FILE_CORRUPT: WIN32_ERROR = WIN32_ERROR(1392u32);
8571 pub const ERROR_DISK_CORRUPT: WIN32_ERROR = WIN32_ERROR(1393u32);
8572 pub const ERROR_NO_USER_SESSION_KEY: WIN32_ERROR = WIN32_ERROR(1394u32);
8573 pub const ERROR_LICENSE_QUOTA_EXCEEDED: WIN32_ERROR = WIN32_ERROR(1395u32);
8574 pub const ERROR_WRONG_TARGET_NAME: WIN32_ERROR = WIN32_ERROR(1396u32);
8575 pub const ERROR_MUTUAL_AUTH_FAILED: WIN32_ERROR = WIN32_ERROR(1397u32);
8576 pub const ERROR_TIME_SKEW: WIN32_ERROR = WIN32_ERROR(1398u32);
8577 pub const ERROR_CURRENT_DOMAIN_NOT_ALLOWED: WIN32_ERROR = WIN32_ERROR(1399u32);
8578 pub const ERROR_INVALID_WINDOW_HANDLE: WIN32_ERROR = WIN32_ERROR(1400u32);
8579 pub const ERROR_INVALID_MENU_HANDLE: WIN32_ERROR = WIN32_ERROR(1401u32);
8580 pub const ERROR_INVALID_CURSOR_HANDLE: WIN32_ERROR = WIN32_ERROR(1402u32);
8581 pub const ERROR_INVALID_ACCEL_HANDLE: WIN32_ERROR = WIN32_ERROR(1403u32);
8582 pub const ERROR_INVALID_HOOK_HANDLE: WIN32_ERROR = WIN32_ERROR(1404u32);
8583 pub const ERROR_INVALID_DWP_HANDLE: WIN32_ERROR = WIN32_ERROR(1405u32);
8584 pub const ERROR_TLW_WITH_WSCHILD: WIN32_ERROR = WIN32_ERROR(1406u32);
8585 pub const ERROR_CANNOT_FIND_WND_CLASS: WIN32_ERROR = WIN32_ERROR(1407u32);
8586 pub const ERROR_WINDOW_OF_OTHER_THREAD: WIN32_ERROR = WIN32_ERROR(1408u32);
8587 pub const ERROR_HOTKEY_ALREADY_REGISTERED: WIN32_ERROR = WIN32_ERROR(1409u32);
8588 pub const ERROR_CLASS_ALREADY_EXISTS: WIN32_ERROR = WIN32_ERROR(1410u32);
8589 pub const ERROR_CLASS_DOES_NOT_EXIST: WIN32_ERROR = WIN32_ERROR(1411u32);
8590 pub const ERROR_CLASS_HAS_WINDOWS: WIN32_ERROR = WIN32_ERROR(1412u32);
8591 pub const ERROR_INVALID_INDEX: WIN32_ERROR = WIN32_ERROR(1413u32);
8592 pub const ERROR_INVALID_ICON_HANDLE: WIN32_ERROR = WIN32_ERROR(1414u32);
8593 pub const ERROR_PRIVATE_DIALOG_INDEX: WIN32_ERROR = WIN32_ERROR(1415u32);
8594 pub const ERROR_LISTBOX_ID_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(1416u32);
8595 pub const ERROR_NO_WILDCARD_CHARACTERS: WIN32_ERROR = WIN32_ERROR(1417u32);
8596 pub const ERROR_CLIPBOARD_NOT_OPEN: WIN32_ERROR = WIN32_ERROR(1418u32);
8597 pub const ERROR_HOTKEY_NOT_REGISTERED: WIN32_ERROR = WIN32_ERROR(1419u32);
8598 pub const ERROR_WINDOW_NOT_DIALOG: WIN32_ERROR = WIN32_ERROR(1420u32);
8599 pub const ERROR_CONTROL_ID_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(1421u32);
8600 pub const ERROR_INVALID_COMBOBOX_MESSAGE: WIN32_ERROR = WIN32_ERROR(1422u32);
8601 pub const ERROR_WINDOW_NOT_COMBOBOX: WIN32_ERROR = WIN32_ERROR(1423u32);
8602 pub const ERROR_INVALID_EDIT_HEIGHT: WIN32_ERROR = WIN32_ERROR(1424u32);
8603 pub const ERROR_DC_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(1425u32);
8604 pub const ERROR_INVALID_HOOK_FILTER: WIN32_ERROR = WIN32_ERROR(1426u32);
8605 pub const ERROR_INVALID_FILTER_PROC: WIN32_ERROR = WIN32_ERROR(1427u32);
8606 pub const ERROR_HOOK_NEEDS_HMOD: WIN32_ERROR = WIN32_ERROR(1428u32);
8607 pub const ERROR_GLOBAL_ONLY_HOOK: WIN32_ERROR = WIN32_ERROR(1429u32);
8608 pub const ERROR_JOURNAL_HOOK_SET: WIN32_ERROR = WIN32_ERROR(1430u32);
8609 pub const ERROR_HOOK_NOT_INSTALLED: WIN32_ERROR = WIN32_ERROR(1431u32);
8610 pub const ERROR_INVALID_LB_MESSAGE: WIN32_ERROR = WIN32_ERROR(1432u32);
8611 pub const ERROR_SETCOUNT_ON_BAD_LB: WIN32_ERROR = WIN32_ERROR(1433u32);
8612 pub const ERROR_LB_WITHOUT_TABSTOPS: WIN32_ERROR = WIN32_ERROR(1434u32);
8613 pub const ERROR_DESTROY_OBJECT_OF_OTHER_THREAD: WIN32_ERROR = WIN32_ERROR(1435u32);
8614 pub const ERROR_CHILD_WINDOW_MENU: WIN32_ERROR = WIN32_ERROR(1436u32);
8615 pub const ERROR_NO_SYSTEM_MENU: WIN32_ERROR = WIN32_ERROR(1437u32);
8616 pub const ERROR_INVALID_MSGBOX_STYLE: WIN32_ERROR = WIN32_ERROR(1438u32);
8617 pub const ERROR_INVALID_SPI_VALUE: WIN32_ERROR = WIN32_ERROR(1439u32);
8618 pub const ERROR_SCREEN_ALREADY_LOCKED: WIN32_ERROR = WIN32_ERROR(1440u32);
8619 pub const ERROR_HWNDS_HAVE_DIFF_PARENT: WIN32_ERROR = WIN32_ERROR(1441u32);
8620 pub const ERROR_NOT_CHILD_WINDOW: WIN32_ERROR = WIN32_ERROR(1442u32);
8621 pub const ERROR_INVALID_GW_COMMAND: WIN32_ERROR = WIN32_ERROR(1443u32);
8622 pub const ERROR_INVALID_THREAD_ID: WIN32_ERROR = WIN32_ERROR(1444u32);
8623 pub const ERROR_NON_MDICHILD_WINDOW: WIN32_ERROR = WIN32_ERROR(1445u32);
8624 pub const ERROR_POPUP_ALREADY_ACTIVE: WIN32_ERROR = WIN32_ERROR(1446u32);
8625 pub const ERROR_NO_SCROLLBARS: WIN32_ERROR = WIN32_ERROR(1447u32);
8626 pub const ERROR_INVALID_SCROLLBAR_RANGE: WIN32_ERROR = WIN32_ERROR(1448u32);
8627 pub const ERROR_INVALID_SHOWWIN_COMMAND: WIN32_ERROR = WIN32_ERROR(1449u32);
8628 pub const ERROR_NO_SYSTEM_RESOURCES: WIN32_ERROR = WIN32_ERROR(1450u32);
8629 pub const ERROR_NONPAGED_SYSTEM_RESOURCES: WIN32_ERROR = WIN32_ERROR(1451u32);
8630 pub const ERROR_PAGED_SYSTEM_RESOURCES: WIN32_ERROR = WIN32_ERROR(1452u32);
8631 pub const ERROR_WORKING_SET_QUOTA: WIN32_ERROR = WIN32_ERROR(1453u32);
8632 pub const ERROR_PAGEFILE_QUOTA: WIN32_ERROR = WIN32_ERROR(1454u32);
8633 pub const ERROR_COMMITMENT_LIMIT: WIN32_ERROR = WIN32_ERROR(1455u32);
8634 pub const ERROR_MENU_ITEM_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(1456u32);
8635 pub const ERROR_INVALID_KEYBOARD_HANDLE: WIN32_ERROR = WIN32_ERROR(1457u32);
8636 pub const ERROR_HOOK_TYPE_NOT_ALLOWED: WIN32_ERROR = WIN32_ERROR(1458u32);
8637 pub const ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION: WIN32_ERROR = WIN32_ERROR(1459u32);
8638 pub const ERROR_TIMEOUT: WIN32_ERROR = WIN32_ERROR(1460u32);
8639 pub const ERROR_INVALID_MONITOR_HANDLE: WIN32_ERROR = WIN32_ERROR(1461u32);
8640 pub const ERROR_INCORRECT_SIZE: WIN32_ERROR = WIN32_ERROR(1462u32);
8641 pub const ERROR_SYMLINK_CLASS_DISABLED: WIN32_ERROR = WIN32_ERROR(1463u32);
8642 pub const ERROR_SYMLINK_NOT_SUPPORTED: WIN32_ERROR = WIN32_ERROR(1464u32);
8643 pub const ERROR_XML_PARSE_ERROR: WIN32_ERROR = WIN32_ERROR(1465u32);
8644 pub const ERROR_XMLDSIG_ERROR: WIN32_ERROR = WIN32_ERROR(1466u32);
8645 pub const ERROR_RESTART_APPLICATION: WIN32_ERROR = WIN32_ERROR(1467u32);
8646 pub const ERROR_WRONG_COMPARTMENT: WIN32_ERROR = WIN32_ERROR(1468u32);
8647 pub const ERROR_AUTHIP_FAILURE: WIN32_ERROR = WIN32_ERROR(1469u32);
8648 pub const ERROR_NO_NVRAM_RESOURCES: WIN32_ERROR = WIN32_ERROR(1470u32);
8649 pub const ERROR_NOT_GUI_PROCESS: WIN32_ERROR = WIN32_ERROR(1471u32);
8650 pub const ERROR_EVENTLOG_FILE_CORRUPT: WIN32_ERROR = WIN32_ERROR(1500u32);
8651 pub const ERROR_EVENTLOG_CANT_START: WIN32_ERROR = WIN32_ERROR(1501u32);
8652 pub const ERROR_LOG_FILE_FULL: WIN32_ERROR = WIN32_ERROR(1502u32);
8653 pub const ERROR_EVENTLOG_FILE_CHANGED: WIN32_ERROR = WIN32_ERROR(1503u32);
8654 pub const ERROR_CONTAINER_ASSIGNED: WIN32_ERROR = WIN32_ERROR(1504u32);
8655 pub const ERROR_JOB_NO_CONTAINER: WIN32_ERROR = WIN32_ERROR(1505u32);
8656 pub const ERROR_INVALID_TASK_NAME: WIN32_ERROR = WIN32_ERROR(1550u32);
8657 pub const ERROR_INVALID_TASK_INDEX: WIN32_ERROR = WIN32_ERROR(1551u32);
8658 pub const ERROR_THREAD_ALREADY_IN_TASK: WIN32_ERROR = WIN32_ERROR(1552u32);
8659 pub const ERROR_INSTALL_SERVICE_FAILURE: WIN32_ERROR = WIN32_ERROR(1601u32);
8660 pub const ERROR_INSTALL_USEREXIT: WIN32_ERROR = WIN32_ERROR(1602u32);
8661 pub const ERROR_INSTALL_FAILURE: WIN32_ERROR = WIN32_ERROR(1603u32);
8662 pub const ERROR_INSTALL_SUSPEND: WIN32_ERROR = WIN32_ERROR(1604u32);
8663 pub const ERROR_UNKNOWN_PRODUCT: WIN32_ERROR = WIN32_ERROR(1605u32);
8664 pub const ERROR_UNKNOWN_FEATURE: WIN32_ERROR = WIN32_ERROR(1606u32);
8665 pub const ERROR_UNKNOWN_COMPONENT: WIN32_ERROR = WIN32_ERROR(1607u32);
8666 pub const ERROR_UNKNOWN_PROPERTY: WIN32_ERROR = WIN32_ERROR(1608u32);
8667 pub const ERROR_INVALID_HANDLE_STATE: WIN32_ERROR = WIN32_ERROR(1609u32);
8668 pub const ERROR_BAD_CONFIGURATION: WIN32_ERROR = WIN32_ERROR(1610u32);
8669 pub const ERROR_INDEX_ABSENT: WIN32_ERROR = WIN32_ERROR(1611u32);
8670 pub const ERROR_INSTALL_SOURCE_ABSENT: WIN32_ERROR = WIN32_ERROR(1612u32);
8671 pub const ERROR_INSTALL_PACKAGE_VERSION: WIN32_ERROR = WIN32_ERROR(1613u32);
8672 pub const ERROR_PRODUCT_UNINSTALLED: WIN32_ERROR = WIN32_ERROR(1614u32);
8673 pub const ERROR_BAD_QUERY_SYNTAX: WIN32_ERROR = WIN32_ERROR(1615u32);
8674 pub const ERROR_INVALID_FIELD: WIN32_ERROR = WIN32_ERROR(1616u32);
8675 pub const ERROR_DEVICE_REMOVED: WIN32_ERROR = WIN32_ERROR(1617u32);
8676 pub const ERROR_INSTALL_ALREADY_RUNNING: WIN32_ERROR = WIN32_ERROR(1618u32);
8677 pub const ERROR_INSTALL_PACKAGE_OPEN_FAILED: WIN32_ERROR = WIN32_ERROR(1619u32);
8678 pub const ERROR_INSTALL_PACKAGE_INVALID: WIN32_ERROR = WIN32_ERROR(1620u32);
8679 pub const ERROR_INSTALL_UI_FAILURE: WIN32_ERROR = WIN32_ERROR(1621u32);
8680 pub const ERROR_INSTALL_LOG_FAILURE: WIN32_ERROR = WIN32_ERROR(1622u32);
8681 pub const ERROR_INSTALL_LANGUAGE_UNSUPPORTED: WIN32_ERROR = WIN32_ERROR(1623u32);
8682 pub const ERROR_INSTALL_TRANSFORM_FAILURE: WIN32_ERROR = WIN32_ERROR(1624u32);
8683 pub const ERROR_INSTALL_PACKAGE_REJECTED: WIN32_ERROR = WIN32_ERROR(1625u32);
8684 pub const ERROR_FUNCTION_NOT_CALLED: WIN32_ERROR = WIN32_ERROR(1626u32);
8685 pub const ERROR_FUNCTION_FAILED: WIN32_ERROR = WIN32_ERROR(1627u32);
8686 pub const ERROR_INVALID_TABLE: WIN32_ERROR = WIN32_ERROR(1628u32);
8687 pub const ERROR_DATATYPE_MISMATCH: WIN32_ERROR = WIN32_ERROR(1629u32);
8688 pub const ERROR_UNSUPPORTED_TYPE: WIN32_ERROR = WIN32_ERROR(1630u32);
8689 pub const ERROR_CREATE_FAILED: WIN32_ERROR = WIN32_ERROR(1631u32);
8690 pub const ERROR_INSTALL_TEMP_UNWRITABLE: WIN32_ERROR = WIN32_ERROR(1632u32);
8691 pub const ERROR_INSTALL_PLATFORM_UNSUPPORTED: WIN32_ERROR = WIN32_ERROR(1633u32);
8692 pub const ERROR_INSTALL_NOTUSED: WIN32_ERROR = WIN32_ERROR(1634u32);
8693 pub const ERROR_PATCH_PACKAGE_OPEN_FAILED: WIN32_ERROR = WIN32_ERROR(1635u32);
8694 pub const ERROR_PATCH_PACKAGE_INVALID: WIN32_ERROR = WIN32_ERROR(1636u32);
8695 pub const ERROR_PATCH_PACKAGE_UNSUPPORTED: WIN32_ERROR = WIN32_ERROR(1637u32);
8696 pub const ERROR_PRODUCT_VERSION: WIN32_ERROR = WIN32_ERROR(1638u32);
8697 pub const ERROR_INVALID_COMMAND_LINE: WIN32_ERROR = WIN32_ERROR(1639u32);
8698 pub const ERROR_INSTALL_REMOTE_DISALLOWED: WIN32_ERROR = WIN32_ERROR(1640u32);
8699 pub const ERROR_SUCCESS_REBOOT_INITIATED: WIN32_ERROR = WIN32_ERROR(1641u32);
8700 pub const ERROR_PATCH_TARGET_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(1642u32);
8701 pub const ERROR_PATCH_PACKAGE_REJECTED: WIN32_ERROR = WIN32_ERROR(1643u32);
8702 pub const ERROR_INSTALL_TRANSFORM_REJECTED: WIN32_ERROR = WIN32_ERROR(1644u32);
8703 pub const ERROR_INSTALL_REMOTE_PROHIBITED: WIN32_ERROR = WIN32_ERROR(1645u32);
8704 pub const ERROR_PATCH_REMOVAL_UNSUPPORTED: WIN32_ERROR = WIN32_ERROR(1646u32);
8705 pub const ERROR_UNKNOWN_PATCH: WIN32_ERROR = WIN32_ERROR(1647u32);
8706 pub const ERROR_PATCH_NO_SEQUENCE: WIN32_ERROR = WIN32_ERROR(1648u32);
8707 pub const ERROR_PATCH_REMOVAL_DISALLOWED: WIN32_ERROR = WIN32_ERROR(1649u32);
8708 pub const ERROR_INVALID_PATCH_XML: WIN32_ERROR = WIN32_ERROR(1650u32);
8709 pub const ERROR_PATCH_MANAGED_ADVERTISED_PRODUCT: WIN32_ERROR = WIN32_ERROR(1651u32);
8710 pub const ERROR_INSTALL_SERVICE_SAFEBOOT: WIN32_ERROR = WIN32_ERROR(1652u32);
8711 pub const ERROR_FAIL_FAST_EXCEPTION: WIN32_ERROR = WIN32_ERROR(1653u32);
8712 pub const ERROR_INSTALL_REJECTED: WIN32_ERROR = WIN32_ERROR(1654u32);
8713 pub const ERROR_DYNAMIC_CODE_BLOCKED: WIN32_ERROR = WIN32_ERROR(1655u32);
8714 pub const ERROR_NOT_SAME_OBJECT: WIN32_ERROR = WIN32_ERROR(1656u32);
8715 pub const ERROR_STRICT_CFG_VIOLATION: WIN32_ERROR = WIN32_ERROR(1657u32);
8716 pub const ERROR_SET_CONTEXT_DENIED: WIN32_ERROR = WIN32_ERROR(1660u32);
8717 pub const ERROR_CROSS_PARTITION_VIOLATION: WIN32_ERROR = WIN32_ERROR(1661u32);
8718 pub const ERROR_RETURN_ADDRESS_HIJACK_ATTEMPT: WIN32_ERROR = WIN32_ERROR(1662u32);
8719 pub const ERROR_INVALID_USER_BUFFER: WIN32_ERROR = WIN32_ERROR(1784u32);
8720 pub const ERROR_UNRECOGNIZED_MEDIA: WIN32_ERROR = WIN32_ERROR(1785u32);
8721 pub const ERROR_NO_TRUST_LSA_SECRET: WIN32_ERROR = WIN32_ERROR(1786u32);
8722 pub const ERROR_NO_TRUST_SAM_ACCOUNT: WIN32_ERROR = WIN32_ERROR(1787u32);
8723 pub const ERROR_TRUSTED_DOMAIN_FAILURE: WIN32_ERROR = WIN32_ERROR(1788u32);
8724 pub const ERROR_TRUSTED_RELATIONSHIP_FAILURE: WIN32_ERROR = WIN32_ERROR(1789u32);
8725 pub const ERROR_TRUST_FAILURE: WIN32_ERROR = WIN32_ERROR(1790u32);
8726 pub const ERROR_NETLOGON_NOT_STARTED: WIN32_ERROR = WIN32_ERROR(1792u32);
8727 pub const ERROR_ACCOUNT_EXPIRED: WIN32_ERROR = WIN32_ERROR(1793u32);
8728 pub const ERROR_REDIRECTOR_HAS_OPEN_HANDLES: WIN32_ERROR = WIN32_ERROR(1794u32);
8729 pub const ERROR_PRINTER_DRIVER_ALREADY_INSTALLED: WIN32_ERROR = WIN32_ERROR(1795u32);
8730 pub const ERROR_UNKNOWN_PORT: WIN32_ERROR = WIN32_ERROR(1796u32);
8731 pub const ERROR_UNKNOWN_PRINTER_DRIVER: WIN32_ERROR = WIN32_ERROR(1797u32);
8732 pub const ERROR_UNKNOWN_PRINTPROCESSOR: WIN32_ERROR = WIN32_ERROR(1798u32);
8733 pub const ERROR_INVALID_SEPARATOR_FILE: WIN32_ERROR = WIN32_ERROR(1799u32);
8734 pub const ERROR_INVALID_PRIORITY: WIN32_ERROR = WIN32_ERROR(1800u32);
8735 pub const ERROR_INVALID_PRINTER_NAME: WIN32_ERROR = WIN32_ERROR(1801u32);
8736 pub const ERROR_PRINTER_ALREADY_EXISTS: WIN32_ERROR = WIN32_ERROR(1802u32);
8737 pub const ERROR_INVALID_PRINTER_COMMAND: WIN32_ERROR = WIN32_ERROR(1803u32);
8738 pub const ERROR_INVALID_DATATYPE: WIN32_ERROR = WIN32_ERROR(1804u32);
8739 pub const ERROR_INVALID_ENVIRONMENT: WIN32_ERROR = WIN32_ERROR(1805u32);
8740 pub const ERROR_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT: WIN32_ERROR = WIN32_ERROR(1807u32);
8741 pub const ERROR_NOLOGON_WORKSTATION_TRUST_ACCOUNT: WIN32_ERROR = WIN32_ERROR(1808u32);
8742 pub const ERROR_NOLOGON_SERVER_TRUST_ACCOUNT: WIN32_ERROR = WIN32_ERROR(1809u32);
8743 pub const ERROR_DOMAIN_TRUST_INCONSISTENT: WIN32_ERROR = WIN32_ERROR(1810u32);
8744 pub const ERROR_SERVER_HAS_OPEN_HANDLES: WIN32_ERROR = WIN32_ERROR(1811u32);
8745 pub const ERROR_RESOURCE_DATA_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(1812u32);
8746 pub const ERROR_RESOURCE_TYPE_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(1813u32);
8747 pub const ERROR_RESOURCE_NAME_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(1814u32);
8748 pub const ERROR_RESOURCE_LANG_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(1815u32);
8749 pub const ERROR_NOT_ENOUGH_QUOTA: WIN32_ERROR = WIN32_ERROR(1816u32);
8750 pub const ERROR_INVALID_TIME: WIN32_ERROR = WIN32_ERROR(1901u32);
8751 pub const ERROR_INVALID_FORM_NAME: WIN32_ERROR = WIN32_ERROR(1902u32);
8752 pub const ERROR_INVALID_FORM_SIZE: WIN32_ERROR = WIN32_ERROR(1903u32);
8753 pub const ERROR_ALREADY_WAITING: WIN32_ERROR = WIN32_ERROR(1904u32);
8754 pub const ERROR_PRINTER_DELETED: WIN32_ERROR = WIN32_ERROR(1905u32);
8755 pub const ERROR_INVALID_PRINTER_STATE: WIN32_ERROR = WIN32_ERROR(1906u32);
8756 pub const ERROR_PASSWORD_MUST_CHANGE: WIN32_ERROR = WIN32_ERROR(1907u32);
8757 pub const ERROR_DOMAIN_CONTROLLER_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(1908u32);
8758 pub const ERROR_ACCOUNT_LOCKED_OUT: WIN32_ERROR = WIN32_ERROR(1909u32);
8759 pub const ERROR_NO_SITENAME: WIN32_ERROR = WIN32_ERROR(1919u32);
8760 pub const ERROR_CANT_ACCESS_FILE: WIN32_ERROR = WIN32_ERROR(1920u32);
8761 pub const ERROR_CANT_RESOLVE_FILENAME: WIN32_ERROR = WIN32_ERROR(1921u32);
8762 pub const ERROR_KM_DRIVER_BLOCKED: WIN32_ERROR = WIN32_ERROR(1930u32);
8763 pub const ERROR_CONTEXT_EXPIRED: WIN32_ERROR = WIN32_ERROR(1931u32);
8764 pub const ERROR_PER_USER_TRUST_QUOTA_EXCEEDED: WIN32_ERROR = WIN32_ERROR(1932u32);
8765 pub const ERROR_ALL_USER_TRUST_QUOTA_EXCEEDED: WIN32_ERROR = WIN32_ERROR(1933u32);
8766 pub const ERROR_USER_DELETE_TRUST_QUOTA_EXCEEDED: WIN32_ERROR = WIN32_ERROR(1934u32);
8767 pub const ERROR_AUTHENTICATION_FIREWALL_FAILED: WIN32_ERROR = WIN32_ERROR(1935u32);
8768 pub const ERROR_REMOTE_PRINT_CONNECTIONS_BLOCKED: WIN32_ERROR = WIN32_ERROR(1936u32);
8769 pub const ERROR_NTLM_BLOCKED: WIN32_ERROR = WIN32_ERROR(1937u32);
8770 pub const ERROR_PASSWORD_CHANGE_REQUIRED: WIN32_ERROR = WIN32_ERROR(1938u32);
8771 pub const ERROR_LOST_MODE_LOGON_RESTRICTION: WIN32_ERROR = WIN32_ERROR(1939u32);
8772 pub const ERROR_INVALID_PIXEL_FORMAT: WIN32_ERROR = WIN32_ERROR(2000u32);
8773 pub const ERROR_BAD_DRIVER: WIN32_ERROR = WIN32_ERROR(2001u32);
8774 pub const ERROR_INVALID_WINDOW_STYLE: WIN32_ERROR = WIN32_ERROR(2002u32);
8775 pub const ERROR_METAFILE_NOT_SUPPORTED: WIN32_ERROR = WIN32_ERROR(2003u32);
8776 pub const ERROR_TRANSFORM_NOT_SUPPORTED: WIN32_ERROR = WIN32_ERROR(2004u32);
8777 pub const ERROR_CLIPPING_NOT_SUPPORTED: WIN32_ERROR = WIN32_ERROR(2005u32);
8778 pub const ERROR_INVALID_CMM: WIN32_ERROR = WIN32_ERROR(2010u32);
8779 pub const ERROR_INVALID_PROFILE: WIN32_ERROR = WIN32_ERROR(2011u32);
8780 pub const ERROR_TAG_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(2012u32);
8781 pub const ERROR_TAG_NOT_PRESENT: WIN32_ERROR = WIN32_ERROR(2013u32);
8782 pub const ERROR_DUPLICATE_TAG: WIN32_ERROR = WIN32_ERROR(2014u32);
8783 pub const ERROR_PROFILE_NOT_ASSOCIATED_WITH_DEVICE: WIN32_ERROR = WIN32_ERROR(2015u32);
8784 pub const ERROR_PROFILE_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(2016u32);
8785 pub const ERROR_INVALID_COLORSPACE: WIN32_ERROR = WIN32_ERROR(2017u32);
8786 pub const ERROR_ICM_NOT_ENABLED: WIN32_ERROR = WIN32_ERROR(2018u32);
8787 pub const ERROR_DELETING_ICM_XFORM: WIN32_ERROR = WIN32_ERROR(2019u32);
8788 pub const ERROR_INVALID_TRANSFORM: WIN32_ERROR = WIN32_ERROR(2020u32);
8789 pub const ERROR_COLORSPACE_MISMATCH: WIN32_ERROR = WIN32_ERROR(2021u32);
8790 pub const ERROR_INVALID_COLORINDEX: WIN32_ERROR = WIN32_ERROR(2022u32);
8791 pub const ERROR_PROFILE_DOES_NOT_MATCH_DEVICE: WIN32_ERROR = WIN32_ERROR(2023u32);
8792 pub const ERROR_CONNECTED_OTHER_PASSWORD: WIN32_ERROR = WIN32_ERROR(2108u32);
8793 pub const ERROR_CONNECTED_OTHER_PASSWORD_DEFAULT: WIN32_ERROR = WIN32_ERROR(2109u32);
8794 pub const ERROR_BAD_USERNAME: WIN32_ERROR = WIN32_ERROR(2202u32);
8795 pub const ERROR_NOT_CONNECTED: WIN32_ERROR = WIN32_ERROR(2250u32);
8796 pub const ERROR_OPEN_FILES: WIN32_ERROR = WIN32_ERROR(2401u32);
8797 pub const ERROR_ACTIVE_CONNECTIONS: WIN32_ERROR = WIN32_ERROR(2402u32);
8798 pub const ERROR_DEVICE_IN_USE: WIN32_ERROR = WIN32_ERROR(2404u32);
8799 pub const ERROR_UNKNOWN_PRINT_MONITOR: WIN32_ERROR = WIN32_ERROR(3000u32);
8800 pub const ERROR_PRINTER_DRIVER_IN_USE: WIN32_ERROR = WIN32_ERROR(3001u32);
8801 pub const ERROR_SPOOL_FILE_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(3002u32);
8802 pub const ERROR_SPL_NO_STARTDOC: WIN32_ERROR = WIN32_ERROR(3003u32);
8803 pub const ERROR_SPL_NO_ADDJOB: WIN32_ERROR = WIN32_ERROR(3004u32);
8804 pub const ERROR_PRINT_PROCESSOR_ALREADY_INSTALLED: WIN32_ERROR = WIN32_ERROR(3005u32);
8805 pub const ERROR_PRINT_MONITOR_ALREADY_INSTALLED: WIN32_ERROR = WIN32_ERROR(3006u32);
8806 pub const ERROR_INVALID_PRINT_MONITOR: WIN32_ERROR = WIN32_ERROR(3007u32);
8807 pub const ERROR_PRINT_MONITOR_IN_USE: WIN32_ERROR = WIN32_ERROR(3008u32);
8808 pub const ERROR_PRINTER_HAS_JOBS_QUEUED: WIN32_ERROR = WIN32_ERROR(3009u32);
8809 pub const ERROR_SUCCESS_REBOOT_REQUIRED: WIN32_ERROR = WIN32_ERROR(3010u32);
8810 pub const ERROR_SUCCESS_RESTART_REQUIRED: WIN32_ERROR = WIN32_ERROR(3011u32);
8811 pub const ERROR_PRINTER_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(3012u32);
8812 pub const ERROR_PRINTER_DRIVER_WARNED: WIN32_ERROR = WIN32_ERROR(3013u32);
8813 pub const ERROR_PRINTER_DRIVER_BLOCKED: WIN32_ERROR = WIN32_ERROR(3014u32);
8814 pub const ERROR_PRINTER_DRIVER_PACKAGE_IN_USE: WIN32_ERROR = WIN32_ERROR(3015u32);
8815 pub const ERROR_CORE_DRIVER_PACKAGE_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(3016u32);
8816 pub const ERROR_FAIL_REBOOT_REQUIRED: WIN32_ERROR = WIN32_ERROR(3017u32);
8817 pub const ERROR_FAIL_REBOOT_INITIATED: WIN32_ERROR = WIN32_ERROR(3018u32);
8818 pub const ERROR_PRINTER_DRIVER_DOWNLOAD_NEEDED: WIN32_ERROR = WIN32_ERROR(3019u32);
8819 pub const ERROR_PRINT_JOB_RESTART_REQUIRED: WIN32_ERROR = WIN32_ERROR(3020u32);
8820 pub const ERROR_INVALID_PRINTER_DRIVER_MANIFEST: WIN32_ERROR = WIN32_ERROR(3021u32);
8821 pub const ERROR_PRINTER_NOT_SHAREABLE: WIN32_ERROR = WIN32_ERROR(3022u32);
8822 pub const ERROR_REQUEST_PAUSED: WIN32_ERROR = WIN32_ERROR(3050u32);
8823 pub const ERROR_APPEXEC_CONDITION_NOT_SATISFIED: WIN32_ERROR = WIN32_ERROR(3060u32);
8824 pub const ERROR_APPEXEC_HANDLE_INVALIDATED: WIN32_ERROR = WIN32_ERROR(3061u32);
8825 pub const ERROR_APPEXEC_INVALID_HOST_GENERATION: WIN32_ERROR = WIN32_ERROR(3062u32);
8826 pub const ERROR_APPEXEC_UNEXPECTED_PROCESS_REGISTRATION: WIN32_ERROR = WIN32_ERROR(3063u32);
8827 pub const ERROR_APPEXEC_INVALID_HOST_STATE: WIN32_ERROR = WIN32_ERROR(3064u32);
8828 pub const ERROR_APPEXEC_NO_DONOR: WIN32_ERROR = WIN32_ERROR(3065u32);
8829 pub const ERROR_APPEXEC_HOST_ID_MISMATCH: WIN32_ERROR = WIN32_ERROR(3066u32);
8830 pub const ERROR_APPEXEC_UNKNOWN_USER: WIN32_ERROR = WIN32_ERROR(3067u32);
8831 pub const ERROR_APPEXEC_APP_COMPAT_BLOCK: WIN32_ERROR = WIN32_ERROR(3068u32);
8832 pub const ERROR_APPEXEC_CALLER_WAIT_TIMEOUT: WIN32_ERROR = WIN32_ERROR(3069u32);
8833 pub const ERROR_APPEXEC_CALLER_WAIT_TIMEOUT_TERMINATION: WIN32_ERROR = WIN32_ERROR(3070u32);
8834 pub const ERROR_APPEXEC_CALLER_WAIT_TIMEOUT_LICENSING: WIN32_ERROR = WIN32_ERROR(3071u32);
8835 pub const ERROR_APPEXEC_CALLER_WAIT_TIMEOUT_RESOURCES: WIN32_ERROR = WIN32_ERROR(3072u32);
8836 pub const ERROR_VRF_VOLATILE_CFG_AND_IO_ENABLED: WIN32_ERROR = WIN32_ERROR(3080u32);
8837 pub const ERROR_VRF_VOLATILE_NOT_STOPPABLE: WIN32_ERROR = WIN32_ERROR(3081u32);
8838 pub const ERROR_VRF_VOLATILE_SAFE_MODE: WIN32_ERROR = WIN32_ERROR(3082u32);
8839 pub const ERROR_VRF_VOLATILE_NOT_RUNNABLE_SYSTEM: WIN32_ERROR = WIN32_ERROR(3083u32);
8840 pub const ERROR_VRF_VOLATILE_NOT_SUPPORTED_RULECLASS: WIN32_ERROR = WIN32_ERROR(3084u32);
8841 pub const ERROR_VRF_VOLATILE_PROTECTED_DRIVER: WIN32_ERROR = WIN32_ERROR(3085u32);
8842 pub const ERROR_VRF_VOLATILE_NMI_REGISTERED: WIN32_ERROR = WIN32_ERROR(3086u32);
8843 pub const ERROR_VRF_VOLATILE_SETTINGS_CONFLICT: WIN32_ERROR = WIN32_ERROR(3087u32);
8844 pub const ERROR_DIF_IOCALLBACK_NOT_REPLACED: WIN32_ERROR = WIN32_ERROR(3190u32);
8845 pub const ERROR_DIF_LIVEDUMP_LIMIT_EXCEEDED: WIN32_ERROR = WIN32_ERROR(3191u32);
8846 pub const ERROR_DIF_VOLATILE_SECTION_NOT_LOCKED: WIN32_ERROR = WIN32_ERROR(3192u32);
8847 pub const ERROR_DIF_VOLATILE_DRIVER_HOTPATCHED: WIN32_ERROR = WIN32_ERROR(3193u32);
8848 pub const ERROR_DIF_VOLATILE_INVALID_INFO: WIN32_ERROR = WIN32_ERROR(3194u32);
8849 pub const ERROR_DIF_VOLATILE_DRIVER_IS_NOT_RUNNING: WIN32_ERROR = WIN32_ERROR(3195u32);
8850 pub const ERROR_DIF_VOLATILE_PLUGIN_IS_NOT_RUNNING: WIN32_ERROR = WIN32_ERROR(3196u32);
8851 pub const ERROR_DIF_VOLATILE_PLUGIN_CHANGE_NOT_ALLOWED: WIN32_ERROR = WIN32_ERROR(3197u32);
8852 pub const ERROR_DIF_VOLATILE_NOT_ALLOWED: WIN32_ERROR = WIN32_ERROR(3198u32);
8853 pub const ERROR_DIF_BINDING_API_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(3199u32);
8854 pub const ERROR_IO_REISSUE_AS_CACHED: WIN32_ERROR = WIN32_ERROR(3950u32);
8855 pub const ERROR_WINS_INTERNAL: WIN32_ERROR = WIN32_ERROR(4000u32);
8856 pub const ERROR_CAN_NOT_DEL_LOCAL_WINS: WIN32_ERROR = WIN32_ERROR(4001u32);
8857 pub const ERROR_STATIC_INIT: WIN32_ERROR = WIN32_ERROR(4002u32);
8858 pub const ERROR_INC_BACKUP: WIN32_ERROR = WIN32_ERROR(4003u32);
8859 pub const ERROR_FULL_BACKUP: WIN32_ERROR = WIN32_ERROR(4004u32);
8860 pub const ERROR_REC_NON_EXISTENT: WIN32_ERROR = WIN32_ERROR(4005u32);
8861 pub const ERROR_RPL_NOT_ALLOWED: WIN32_ERROR = WIN32_ERROR(4006u32);
8862 pub const ERROR_DHCP_ADDRESS_CONFLICT: WIN32_ERROR = WIN32_ERROR(4100u32);
8863 pub const ERROR_WMI_GUID_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(4200u32);
8864 pub const ERROR_WMI_INSTANCE_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(4201u32);
8865 pub const ERROR_WMI_ITEMID_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(4202u32);
8866 pub const ERROR_WMI_TRY_AGAIN: WIN32_ERROR = WIN32_ERROR(4203u32);
8867 pub const ERROR_WMI_DP_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(4204u32);
8868 pub const ERROR_WMI_UNRESOLVED_INSTANCE_REF: WIN32_ERROR = WIN32_ERROR(4205u32);
8869 pub const ERROR_WMI_ALREADY_ENABLED: WIN32_ERROR = WIN32_ERROR(4206u32);
8870 pub const ERROR_WMI_GUID_DISCONNECTED: WIN32_ERROR = WIN32_ERROR(4207u32);
8871 pub const ERROR_WMI_SERVER_UNAVAILABLE: WIN32_ERROR = WIN32_ERROR(4208u32);
8872 pub const ERROR_WMI_DP_FAILED: WIN32_ERROR = WIN32_ERROR(4209u32);
8873 pub const ERROR_WMI_INVALID_MOF: WIN32_ERROR = WIN32_ERROR(4210u32);
8874 pub const ERROR_WMI_INVALID_REGINFO: WIN32_ERROR = WIN32_ERROR(4211u32);
8875 pub const ERROR_WMI_ALREADY_DISABLED: WIN32_ERROR = WIN32_ERROR(4212u32);
8876 pub const ERROR_WMI_READ_ONLY: WIN32_ERROR = WIN32_ERROR(4213u32);
8877 pub const ERROR_WMI_SET_FAILURE: WIN32_ERROR = WIN32_ERROR(4214u32);
8878 pub const ERROR_NOT_APPCONTAINER: WIN32_ERROR = WIN32_ERROR(4250u32);
8879 pub const ERROR_APPCONTAINER_REQUIRED: WIN32_ERROR = WIN32_ERROR(4251u32);
8880 pub const ERROR_NOT_SUPPORTED_IN_APPCONTAINER: WIN32_ERROR = WIN32_ERROR(4252u32);
8881 pub const ERROR_INVALID_PACKAGE_SID_LENGTH: WIN32_ERROR = WIN32_ERROR(4253u32);
8882 pub const ERROR_INVALID_MEDIA: WIN32_ERROR = WIN32_ERROR(4300u32);
8883 pub const ERROR_INVALID_LIBRARY: WIN32_ERROR = WIN32_ERROR(4301u32);
8884 pub const ERROR_INVALID_MEDIA_POOL: WIN32_ERROR = WIN32_ERROR(4302u32);
8885 pub const ERROR_DRIVE_MEDIA_MISMATCH: WIN32_ERROR = WIN32_ERROR(4303u32);
8886 pub const ERROR_MEDIA_OFFLINE: WIN32_ERROR = WIN32_ERROR(4304u32);
8887 pub const ERROR_LIBRARY_OFFLINE: WIN32_ERROR = WIN32_ERROR(4305u32);
8888 pub const ERROR_EMPTY: WIN32_ERROR = WIN32_ERROR(4306u32);
8889 pub const ERROR_NOT_EMPTY: WIN32_ERROR = WIN32_ERROR(4307u32);
8890 pub const ERROR_MEDIA_UNAVAILABLE: WIN32_ERROR = WIN32_ERROR(4308u32);
8891 pub const ERROR_RESOURCE_DISABLED: WIN32_ERROR = WIN32_ERROR(4309u32);
8892 pub const ERROR_INVALID_CLEANER: WIN32_ERROR = WIN32_ERROR(4310u32);
8893 pub const ERROR_UNABLE_TO_CLEAN: WIN32_ERROR = WIN32_ERROR(4311u32);
8894 pub const ERROR_OBJECT_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(4312u32);
8895 pub const ERROR_DATABASE_FAILURE: WIN32_ERROR = WIN32_ERROR(4313u32);
8896 pub const ERROR_DATABASE_FULL: WIN32_ERROR = WIN32_ERROR(4314u32);
8897 pub const ERROR_MEDIA_INCOMPATIBLE: WIN32_ERROR = WIN32_ERROR(4315u32);
8898 pub const ERROR_RESOURCE_NOT_PRESENT: WIN32_ERROR = WIN32_ERROR(4316u32);
8899 pub const ERROR_INVALID_OPERATION: WIN32_ERROR = WIN32_ERROR(4317u32);
8900 pub const ERROR_MEDIA_NOT_AVAILABLE: WIN32_ERROR = WIN32_ERROR(4318u32);
8901 pub const ERROR_DEVICE_NOT_AVAILABLE: WIN32_ERROR = WIN32_ERROR(4319u32);
8902 pub const ERROR_REQUEST_REFUSED: WIN32_ERROR = WIN32_ERROR(4320u32);
8903 pub const ERROR_INVALID_DRIVE_OBJECT: WIN32_ERROR = WIN32_ERROR(4321u32);
8904 pub const ERROR_LIBRARY_FULL: WIN32_ERROR = WIN32_ERROR(4322u32);
8905 pub const ERROR_MEDIUM_NOT_ACCESSIBLE: WIN32_ERROR = WIN32_ERROR(4323u32);
8906 pub const ERROR_UNABLE_TO_LOAD_MEDIUM: WIN32_ERROR = WIN32_ERROR(4324u32);
8907 pub const ERROR_UNABLE_TO_INVENTORY_DRIVE: WIN32_ERROR = WIN32_ERROR(4325u32);
8908 pub const ERROR_UNABLE_TO_INVENTORY_SLOT: WIN32_ERROR = WIN32_ERROR(4326u32);
8909 pub const ERROR_UNABLE_TO_INVENTORY_TRANSPORT: WIN32_ERROR = WIN32_ERROR(4327u32);
8910 pub const ERROR_TRANSPORT_FULL: WIN32_ERROR = WIN32_ERROR(4328u32);
8911 pub const ERROR_CONTROLLING_IEPORT: WIN32_ERROR = WIN32_ERROR(4329u32);
8912 pub const ERROR_UNABLE_TO_EJECT_MOUNTED_MEDIA: WIN32_ERROR = WIN32_ERROR(4330u32);
8913 pub const ERROR_CLEANER_SLOT_SET: WIN32_ERROR = WIN32_ERROR(4331u32);
8914 pub const ERROR_CLEANER_SLOT_NOT_SET: WIN32_ERROR = WIN32_ERROR(4332u32);
8915 pub const ERROR_CLEANER_CARTRIDGE_SPENT: WIN32_ERROR = WIN32_ERROR(4333u32);
8916 pub const ERROR_UNEXPECTED_OMID: WIN32_ERROR = WIN32_ERROR(4334u32);
8917 pub const ERROR_CANT_DELETE_LAST_ITEM: WIN32_ERROR = WIN32_ERROR(4335u32);
8918 pub const ERROR_MESSAGE_EXCEEDS_MAX_SIZE: WIN32_ERROR = WIN32_ERROR(4336u32);
8919 pub const ERROR_VOLUME_CONTAINS_SYS_FILES: WIN32_ERROR = WIN32_ERROR(4337u32);
8920 pub const ERROR_INDIGENOUS_TYPE: WIN32_ERROR = WIN32_ERROR(4338u32);
8921 pub const ERROR_NO_SUPPORTING_DRIVES: WIN32_ERROR = WIN32_ERROR(4339u32);
8922 pub const ERROR_CLEANER_CARTRIDGE_INSTALLED: WIN32_ERROR = WIN32_ERROR(4340u32);
8923 pub const ERROR_IEPORT_FULL: WIN32_ERROR = WIN32_ERROR(4341u32);
8924 pub const ERROR_FILE_OFFLINE: WIN32_ERROR = WIN32_ERROR(4350u32);
8925 pub const ERROR_REMOTE_STORAGE_NOT_ACTIVE: WIN32_ERROR = WIN32_ERROR(4351u32);
8926 pub const ERROR_REMOTE_STORAGE_MEDIA_ERROR: WIN32_ERROR = WIN32_ERROR(4352u32);
8927 pub const ERROR_NOT_A_REPARSE_POINT: WIN32_ERROR = WIN32_ERROR(4390u32);
8928 pub const ERROR_REPARSE_ATTRIBUTE_CONFLICT: WIN32_ERROR = WIN32_ERROR(4391u32);
8929 pub const ERROR_INVALID_REPARSE_DATA: WIN32_ERROR = WIN32_ERROR(4392u32);
8930 pub const ERROR_REPARSE_TAG_INVALID: WIN32_ERROR = WIN32_ERROR(4393u32);
8931 pub const ERROR_REPARSE_TAG_MISMATCH: WIN32_ERROR = WIN32_ERROR(4394u32);
8932 pub const ERROR_REPARSE_POINT_ENCOUNTERED: WIN32_ERROR = WIN32_ERROR(4395u32);
8933 pub const ERROR_APP_DATA_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(4400u32);
8934 pub const ERROR_APP_DATA_EXPIRED: WIN32_ERROR = WIN32_ERROR(4401u32);
8935 pub const ERROR_APP_DATA_CORRUPT: WIN32_ERROR = WIN32_ERROR(4402u32);
8936 pub const ERROR_APP_DATA_LIMIT_EXCEEDED: WIN32_ERROR = WIN32_ERROR(4403u32);
8937 pub const ERROR_APP_DATA_REBOOT_REQUIRED: WIN32_ERROR = WIN32_ERROR(4404u32);
8938 pub const ERROR_SECUREBOOT_ROLLBACK_DETECTED: WIN32_ERROR = WIN32_ERROR(4420u32);
8939 pub const ERROR_SECUREBOOT_POLICY_VIOLATION: WIN32_ERROR = WIN32_ERROR(4421u32);
8940 pub const ERROR_SECUREBOOT_INVALID_POLICY: WIN32_ERROR = WIN32_ERROR(4422u32);
8941 pub const ERROR_SECUREBOOT_POLICY_PUBLISHER_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(4423u32);
8942 pub const ERROR_SECUREBOOT_POLICY_NOT_SIGNED: WIN32_ERROR = WIN32_ERROR(4424u32);
8943 pub const ERROR_SECUREBOOT_NOT_ENABLED: WIN32_ERROR = WIN32_ERROR(4425u32);
8944 pub const ERROR_SECUREBOOT_FILE_REPLACED: WIN32_ERROR = WIN32_ERROR(4426u32);
8945 pub const ERROR_SECUREBOOT_POLICY_NOT_AUTHORIZED: WIN32_ERROR = WIN32_ERROR(4427u32);
8946 pub const ERROR_SECUREBOOT_POLICY_UNKNOWN: WIN32_ERROR = WIN32_ERROR(4428u32);
8947 pub const ERROR_SECUREBOOT_POLICY_MISSING_ANTIROLLBACKVERSION: WIN32_ERROR = WIN32_ERROR(4429u32);
8948 pub const ERROR_SECUREBOOT_PLATFORM_ID_MISMATCH: WIN32_ERROR = WIN32_ERROR(4430u32);
8949 pub const ERROR_SECUREBOOT_POLICY_ROLLBACK_DETECTED: WIN32_ERROR = WIN32_ERROR(4431u32);
8950 pub const ERROR_SECUREBOOT_POLICY_UPGRADE_MISMATCH: WIN32_ERROR = WIN32_ERROR(4432u32);
8951 pub const ERROR_SECUREBOOT_REQUIRED_POLICY_FILE_MISSING: WIN32_ERROR = WIN32_ERROR(4433u32);
8952 pub const ERROR_SECUREBOOT_NOT_BASE_POLICY: WIN32_ERROR = WIN32_ERROR(4434u32);
8953 pub const ERROR_SECUREBOOT_NOT_SUPPLEMENTAL_POLICY: WIN32_ERROR = WIN32_ERROR(4435u32);
8954 pub const ERROR_OFFLOAD_READ_FLT_NOT_SUPPORTED: WIN32_ERROR = WIN32_ERROR(4440u32);
8955 pub const ERROR_OFFLOAD_WRITE_FLT_NOT_SUPPORTED: WIN32_ERROR = WIN32_ERROR(4441u32);
8956 pub const ERROR_OFFLOAD_READ_FILE_NOT_SUPPORTED: WIN32_ERROR = WIN32_ERROR(4442u32);
8957 pub const ERROR_OFFLOAD_WRITE_FILE_NOT_SUPPORTED: WIN32_ERROR = WIN32_ERROR(4443u32);
8958 pub const ERROR_ALREADY_HAS_STREAM_ID: WIN32_ERROR = WIN32_ERROR(4444u32);
8959 pub const ERROR_SMR_GARBAGE_COLLECTION_REQUIRED: WIN32_ERROR = WIN32_ERROR(4445u32);
8960 pub const ERROR_WOF_WIM_HEADER_CORRUPT: WIN32_ERROR = WIN32_ERROR(4446u32);
8961 pub const ERROR_WOF_WIM_RESOURCE_TABLE_CORRUPT: WIN32_ERROR = WIN32_ERROR(4447u32);
8962 pub const ERROR_WOF_FILE_RESOURCE_TABLE_CORRUPT: WIN32_ERROR = WIN32_ERROR(4448u32);
8963 pub const ERROR_OBJECT_IS_IMMUTABLE: WIN32_ERROR = WIN32_ERROR(4449u32);
8964 pub const ERROR_VOLUME_NOT_SIS_ENABLED: WIN32_ERROR = WIN32_ERROR(4500u32);
8965 pub const ERROR_SYSTEM_INTEGRITY_ROLLBACK_DETECTED: WIN32_ERROR = WIN32_ERROR(4550u32);
8966 pub const ERROR_SYSTEM_INTEGRITY_POLICY_VIOLATION: WIN32_ERROR = WIN32_ERROR(4551u32);
8967 pub const ERROR_SYSTEM_INTEGRITY_INVALID_POLICY: WIN32_ERROR = WIN32_ERROR(4552u32);
8968 pub const ERROR_SYSTEM_INTEGRITY_POLICY_NOT_SIGNED: WIN32_ERROR = WIN32_ERROR(4553u32);
8969 pub const ERROR_SYSTEM_INTEGRITY_TOO_MANY_POLICIES: WIN32_ERROR = WIN32_ERROR(4554u32);
8970 pub const ERROR_SYSTEM_INTEGRITY_SUPPLEMENTAL_POLICY_NOT_AUTHORIZED: WIN32_ERROR = WIN32_ERROR(4555u32);
8971 pub const ERROR_SYSTEM_INTEGRITY_REPUTATION_MALICIOUS: WIN32_ERROR = WIN32_ERROR(4556u32);
8972 pub const ERROR_SYSTEM_INTEGRITY_REPUTATION_PUA: WIN32_ERROR = WIN32_ERROR(4557u32);
8973 pub const ERROR_SYSTEM_INTEGRITY_REPUTATION_DANGEROUS_EXT: WIN32_ERROR = WIN32_ERROR(4558u32);
8974 pub const ERROR_SYSTEM_INTEGRITY_REPUTATION_OFFLINE: WIN32_ERROR = WIN32_ERROR(4559u32);
8975 pub const ERROR_VSM_NOT_INITIALIZED: WIN32_ERROR = WIN32_ERROR(4560u32);
8976 pub const ERROR_VSM_DMA_PROTECTION_NOT_IN_USE: WIN32_ERROR = WIN32_ERROR(4561u32);
8977 pub const ERROR_PLATFORM_MANIFEST_NOT_AUTHORIZED: WIN32_ERROR = WIN32_ERROR(4570u32);
8978 pub const ERROR_PLATFORM_MANIFEST_INVALID: WIN32_ERROR = WIN32_ERROR(4571u32);
8979 pub const ERROR_PLATFORM_MANIFEST_FILE_NOT_AUTHORIZED: WIN32_ERROR = WIN32_ERROR(4572u32);
8980 pub const ERROR_PLATFORM_MANIFEST_CATALOG_NOT_AUTHORIZED: WIN32_ERROR = WIN32_ERROR(4573u32);
8981 pub const ERROR_PLATFORM_MANIFEST_BINARY_ID_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(4574u32);
8982 pub const ERROR_PLATFORM_MANIFEST_NOT_ACTIVE: WIN32_ERROR = WIN32_ERROR(4575u32);
8983 pub const ERROR_PLATFORM_MANIFEST_NOT_SIGNED: WIN32_ERROR = WIN32_ERROR(4576u32);
8984 pub const ERROR_DEPENDENT_RESOURCE_EXISTS: WIN32_ERROR = WIN32_ERROR(5001u32);
8985 pub const ERROR_DEPENDENCY_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(5002u32);
8986 pub const ERROR_DEPENDENCY_ALREADY_EXISTS: WIN32_ERROR = WIN32_ERROR(5003u32);
8987 pub const ERROR_RESOURCE_NOT_ONLINE: WIN32_ERROR = WIN32_ERROR(5004u32);
8988 pub const ERROR_HOST_NODE_NOT_AVAILABLE: WIN32_ERROR = WIN32_ERROR(5005u32);
8989 pub const ERROR_RESOURCE_NOT_AVAILABLE: WIN32_ERROR = WIN32_ERROR(5006u32);
8990 pub const ERROR_RESOURCE_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(5007u32);
8991 pub const ERROR_SHUTDOWN_CLUSTER: WIN32_ERROR = WIN32_ERROR(5008u32);
8992 pub const ERROR_CANT_EVICT_ACTIVE_NODE: WIN32_ERROR = WIN32_ERROR(5009u32);
8993 pub const ERROR_OBJECT_ALREADY_EXISTS: WIN32_ERROR = WIN32_ERROR(5010u32);
8994 pub const ERROR_OBJECT_IN_LIST: WIN32_ERROR = WIN32_ERROR(5011u32);
8995 pub const ERROR_GROUP_NOT_AVAILABLE: WIN32_ERROR = WIN32_ERROR(5012u32);
8996 pub const ERROR_GROUP_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(5013u32);
8997 pub const ERROR_GROUP_NOT_ONLINE: WIN32_ERROR = WIN32_ERROR(5014u32);
8998 pub const ERROR_HOST_NODE_NOT_RESOURCE_OWNER: WIN32_ERROR = WIN32_ERROR(5015u32);
8999 pub const ERROR_HOST_NODE_NOT_GROUP_OWNER: WIN32_ERROR = WIN32_ERROR(5016u32);
9000 pub const ERROR_RESMON_CREATE_FAILED: WIN32_ERROR = WIN32_ERROR(5017u32);
9001 pub const ERROR_RESMON_ONLINE_FAILED: WIN32_ERROR = WIN32_ERROR(5018u32);
9002 pub const ERROR_RESOURCE_ONLINE: WIN32_ERROR = WIN32_ERROR(5019u32);
9003 pub const ERROR_QUORUM_RESOURCE: WIN32_ERROR = WIN32_ERROR(5020u32);
9004 pub const ERROR_NOT_QUORUM_CAPABLE: WIN32_ERROR = WIN32_ERROR(5021u32);
9005 pub const ERROR_CLUSTER_SHUTTING_DOWN: WIN32_ERROR = WIN32_ERROR(5022u32);
9006 pub const ERROR_INVALID_STATE: WIN32_ERROR = WIN32_ERROR(5023u32);
9007 pub const ERROR_RESOURCE_PROPERTIES_STORED: WIN32_ERROR = WIN32_ERROR(5024u32);
9008 pub const ERROR_NOT_QUORUM_CLASS: WIN32_ERROR = WIN32_ERROR(5025u32);
9009 pub const ERROR_CORE_RESOURCE: WIN32_ERROR = WIN32_ERROR(5026u32);
9010 pub const ERROR_QUORUM_RESOURCE_ONLINE_FAILED: WIN32_ERROR = WIN32_ERROR(5027u32);
9011 pub const ERROR_QUORUMLOG_OPEN_FAILED: WIN32_ERROR = WIN32_ERROR(5028u32);
9012 pub const ERROR_CLUSTERLOG_CORRUPT: WIN32_ERROR = WIN32_ERROR(5029u32);
9013 pub const ERROR_CLUSTERLOG_RECORD_EXCEEDS_MAXSIZE: WIN32_ERROR = WIN32_ERROR(5030u32);
9014 pub const ERROR_CLUSTERLOG_EXCEEDS_MAXSIZE: WIN32_ERROR = WIN32_ERROR(5031u32);
9015 pub const ERROR_CLUSTERLOG_CHKPOINT_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(5032u32);
9016 pub const ERROR_CLUSTERLOG_NOT_ENOUGH_SPACE: WIN32_ERROR = WIN32_ERROR(5033u32);
9017 pub const ERROR_QUORUM_OWNER_ALIVE: WIN32_ERROR = WIN32_ERROR(5034u32);
9018 pub const ERROR_NETWORK_NOT_AVAILABLE: WIN32_ERROR = WIN32_ERROR(5035u32);
9019 pub const ERROR_NODE_NOT_AVAILABLE: WIN32_ERROR = WIN32_ERROR(5036u32);
9020 pub const ERROR_ALL_NODES_NOT_AVAILABLE: WIN32_ERROR = WIN32_ERROR(5037u32);
9021 pub const ERROR_RESOURCE_FAILED: WIN32_ERROR = WIN32_ERROR(5038u32);
9022 pub const ERROR_CLUSTER_INVALID_NODE: WIN32_ERROR = WIN32_ERROR(5039u32);
9023 pub const ERROR_CLUSTER_NODE_EXISTS: WIN32_ERROR = WIN32_ERROR(5040u32);
9024 pub const ERROR_CLUSTER_JOIN_IN_PROGRESS: WIN32_ERROR = WIN32_ERROR(5041u32);
9025 pub const ERROR_CLUSTER_NODE_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(5042u32);
9026 pub const ERROR_CLUSTER_LOCAL_NODE_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(5043u32);
9027 pub const ERROR_CLUSTER_NETWORK_EXISTS: WIN32_ERROR = WIN32_ERROR(5044u32);
9028 pub const ERROR_CLUSTER_NETWORK_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(5045u32);
9029 pub const ERROR_CLUSTER_NETINTERFACE_EXISTS: WIN32_ERROR = WIN32_ERROR(5046u32);
9030 pub const ERROR_CLUSTER_NETINTERFACE_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(5047u32);
9031 pub const ERROR_CLUSTER_INVALID_REQUEST: WIN32_ERROR = WIN32_ERROR(5048u32);
9032 pub const ERROR_CLUSTER_INVALID_NETWORK_PROVIDER: WIN32_ERROR = WIN32_ERROR(5049u32);
9033 pub const ERROR_CLUSTER_NODE_DOWN: WIN32_ERROR = WIN32_ERROR(5050u32);
9034 pub const ERROR_CLUSTER_NODE_UNREACHABLE: WIN32_ERROR = WIN32_ERROR(5051u32);
9035 pub const ERROR_CLUSTER_NODE_NOT_MEMBER: WIN32_ERROR = WIN32_ERROR(5052u32);
9036 pub const ERROR_CLUSTER_JOIN_NOT_IN_PROGRESS: WIN32_ERROR = WIN32_ERROR(5053u32);
9037 pub const ERROR_CLUSTER_INVALID_NETWORK: WIN32_ERROR = WIN32_ERROR(5054u32);
9038 pub const ERROR_CLUSTER_NODE_UP: WIN32_ERROR = WIN32_ERROR(5056u32);
9039 pub const ERROR_CLUSTER_IPADDR_IN_USE: WIN32_ERROR = WIN32_ERROR(5057u32);
9040 pub const ERROR_CLUSTER_NODE_NOT_PAUSED: WIN32_ERROR = WIN32_ERROR(5058u32);
9041 pub const ERROR_CLUSTER_NO_SECURITY_CONTEXT: WIN32_ERROR = WIN32_ERROR(5059u32);
9042 pub const ERROR_CLUSTER_NETWORK_NOT_INTERNAL: WIN32_ERROR = WIN32_ERROR(5060u32);
9043 pub const ERROR_CLUSTER_NODE_ALREADY_UP: WIN32_ERROR = WIN32_ERROR(5061u32);
9044 pub const ERROR_CLUSTER_NODE_ALREADY_DOWN: WIN32_ERROR = WIN32_ERROR(5062u32);
9045 pub const ERROR_CLUSTER_NETWORK_ALREADY_ONLINE: WIN32_ERROR = WIN32_ERROR(5063u32);
9046 pub const ERROR_CLUSTER_NETWORK_ALREADY_OFFLINE: WIN32_ERROR = WIN32_ERROR(5064u32);
9047 pub const ERROR_CLUSTER_NODE_ALREADY_MEMBER: WIN32_ERROR = WIN32_ERROR(5065u32);
9048 pub const ERROR_CLUSTER_LAST_INTERNAL_NETWORK: WIN32_ERROR = WIN32_ERROR(5066u32);
9049 pub const ERROR_CLUSTER_NETWORK_HAS_DEPENDENTS: WIN32_ERROR = WIN32_ERROR(5067u32);
9050 pub const ERROR_INVALID_OPERATION_ON_QUORUM: WIN32_ERROR = WIN32_ERROR(5068u32);
9051 pub const ERROR_DEPENDENCY_NOT_ALLOWED: WIN32_ERROR = WIN32_ERROR(5069u32);
9052 pub const ERROR_CLUSTER_NODE_PAUSED: WIN32_ERROR = WIN32_ERROR(5070u32);
9053 pub const ERROR_NODE_CANT_HOST_RESOURCE: WIN32_ERROR = WIN32_ERROR(5071u32);
9054 pub const ERROR_CLUSTER_NODE_NOT_READY: WIN32_ERROR = WIN32_ERROR(5072u32);
9055 pub const ERROR_CLUSTER_NODE_SHUTTING_DOWN: WIN32_ERROR = WIN32_ERROR(5073u32);
9056 pub const ERROR_CLUSTER_JOIN_ABORTED: WIN32_ERROR = WIN32_ERROR(5074u32);
9057 pub const ERROR_CLUSTER_INCOMPATIBLE_VERSIONS: WIN32_ERROR = WIN32_ERROR(5075u32);
9058 pub const ERROR_CLUSTER_MAXNUM_OF_RESOURCES_EXCEEDED: WIN32_ERROR = WIN32_ERROR(5076u32);
9059 pub const ERROR_CLUSTER_SYSTEM_CONFIG_CHANGED: WIN32_ERROR = WIN32_ERROR(5077u32);
9060 pub const ERROR_CLUSTER_RESOURCE_TYPE_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(5078u32);
9061 pub const ERROR_CLUSTER_RESTYPE_NOT_SUPPORTED: WIN32_ERROR = WIN32_ERROR(5079u32);
9062 pub const ERROR_CLUSTER_RESNAME_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(5080u32);
9063 pub const ERROR_CLUSTER_NO_RPC_PACKAGES_REGISTERED: WIN32_ERROR = WIN32_ERROR(5081u32);
9064 pub const ERROR_CLUSTER_OWNER_NOT_IN_PREFLIST: WIN32_ERROR = WIN32_ERROR(5082u32);
9065 pub const ERROR_CLUSTER_DATABASE_SEQMISMATCH: WIN32_ERROR = WIN32_ERROR(5083u32);
9066 pub const ERROR_RESMON_INVALID_STATE: WIN32_ERROR = WIN32_ERROR(5084u32);
9067 pub const ERROR_CLUSTER_GUM_NOT_LOCKER: WIN32_ERROR = WIN32_ERROR(5085u32);
9068 pub const ERROR_QUORUM_DISK_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(5086u32);
9069 pub const ERROR_DATABASE_BACKUP_CORRUPT: WIN32_ERROR = WIN32_ERROR(5087u32);
9070 pub const ERROR_CLUSTER_NODE_ALREADY_HAS_DFS_ROOT: WIN32_ERROR = WIN32_ERROR(5088u32);
9071 pub const ERROR_RESOURCE_PROPERTY_UNCHANGEABLE: WIN32_ERROR = WIN32_ERROR(5089u32);
9072 pub const ERROR_NO_ADMIN_ACCESS_POINT: WIN32_ERROR = WIN32_ERROR(5090u32);
9073 pub const ERROR_CLUSTER_MEMBERSHIP_INVALID_STATE: WIN32_ERROR = WIN32_ERROR(5890u32);
9074 pub const ERROR_CLUSTER_QUORUMLOG_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(5891u32);
9075 pub const ERROR_CLUSTER_MEMBERSHIP_HALT: WIN32_ERROR = WIN32_ERROR(5892u32);
9076 pub const ERROR_CLUSTER_INSTANCE_ID_MISMATCH: WIN32_ERROR = WIN32_ERROR(5893u32);
9077 pub const ERROR_CLUSTER_NETWORK_NOT_FOUND_FOR_IP: WIN32_ERROR = WIN32_ERROR(5894u32);
9078 pub const ERROR_CLUSTER_PROPERTY_DATA_TYPE_MISMATCH: WIN32_ERROR = WIN32_ERROR(5895u32);
9079 pub const ERROR_CLUSTER_EVICT_WITHOUT_CLEANUP: WIN32_ERROR = WIN32_ERROR(5896u32);
9080 pub const ERROR_CLUSTER_PARAMETER_MISMATCH: WIN32_ERROR = WIN32_ERROR(5897u32);
9081 pub const ERROR_NODE_CANNOT_BE_CLUSTERED: WIN32_ERROR = WIN32_ERROR(5898u32);
9082 pub const ERROR_CLUSTER_WRONG_OS_VERSION: WIN32_ERROR = WIN32_ERROR(5899u32);
9083 pub const ERROR_CLUSTER_CANT_CREATE_DUP_CLUSTER_NAME: WIN32_ERROR = WIN32_ERROR(5900u32);
9084 pub const ERROR_CLUSCFG_ALREADY_COMMITTED: WIN32_ERROR = WIN32_ERROR(5901u32);
9085 pub const ERROR_CLUSCFG_ROLLBACK_FAILED: WIN32_ERROR = WIN32_ERROR(5902u32);
9086 pub const ERROR_CLUSCFG_SYSTEM_DISK_DRIVE_LETTER_CONFLICT: WIN32_ERROR = WIN32_ERROR(5903u32);
9087 pub const ERROR_CLUSTER_OLD_VERSION: WIN32_ERROR = WIN32_ERROR(5904u32);
9088 pub const ERROR_CLUSTER_MISMATCHED_COMPUTER_ACCT_NAME: WIN32_ERROR = WIN32_ERROR(5905u32);
9089 pub const ERROR_CLUSTER_NO_NET_ADAPTERS: WIN32_ERROR = WIN32_ERROR(5906u32);
9090 pub const ERROR_CLUSTER_POISONED: WIN32_ERROR = WIN32_ERROR(5907u32);
9091 pub const ERROR_CLUSTER_GROUP_MOVING: WIN32_ERROR = WIN32_ERROR(5908u32);
9092 pub const ERROR_CLUSTER_RESOURCE_TYPE_BUSY: WIN32_ERROR = WIN32_ERROR(5909u32);
9093 pub const ERROR_RESOURCE_CALL_TIMED_OUT: WIN32_ERROR = WIN32_ERROR(5910u32);
9094 pub const ERROR_INVALID_CLUSTER_IPV6_ADDRESS: WIN32_ERROR = WIN32_ERROR(5911u32);
9095 pub const ERROR_CLUSTER_INTERNAL_INVALID_FUNCTION: WIN32_ERROR = WIN32_ERROR(5912u32);
9096 pub const ERROR_CLUSTER_PARAMETER_OUT_OF_BOUNDS: WIN32_ERROR = WIN32_ERROR(5913u32);
9097 pub const ERROR_CLUSTER_PARTIAL_SEND: WIN32_ERROR = WIN32_ERROR(5914u32);
9098 pub const ERROR_CLUSTER_REGISTRY_INVALID_FUNCTION: WIN32_ERROR = WIN32_ERROR(5915u32);
9099 pub const ERROR_CLUSTER_INVALID_STRING_TERMINATION: WIN32_ERROR = WIN32_ERROR(5916u32);
9100 pub const ERROR_CLUSTER_INVALID_STRING_FORMAT: WIN32_ERROR = WIN32_ERROR(5917u32);
9101 pub const ERROR_CLUSTER_DATABASE_TRANSACTION_IN_PROGRESS: WIN32_ERROR = WIN32_ERROR(5918u32);
9102 pub const ERROR_CLUSTER_DATABASE_TRANSACTION_NOT_IN_PROGRESS: WIN32_ERROR = WIN32_ERROR(5919u32);
9103 pub const ERROR_CLUSTER_NULL_DATA: WIN32_ERROR = WIN32_ERROR(5920u32);
9104 pub const ERROR_CLUSTER_PARTIAL_READ: WIN32_ERROR = WIN32_ERROR(5921u32);
9105 pub const ERROR_CLUSTER_PARTIAL_WRITE: WIN32_ERROR = WIN32_ERROR(5922u32);
9106 pub const ERROR_CLUSTER_CANT_DESERIALIZE_DATA: WIN32_ERROR = WIN32_ERROR(5923u32);
9107 pub const ERROR_DEPENDENT_RESOURCE_PROPERTY_CONFLICT: WIN32_ERROR = WIN32_ERROR(5924u32);
9108 pub const ERROR_CLUSTER_NO_QUORUM: WIN32_ERROR = WIN32_ERROR(5925u32);
9109 pub const ERROR_CLUSTER_INVALID_IPV6_NETWORK: WIN32_ERROR = WIN32_ERROR(5926u32);
9110 pub const ERROR_CLUSTER_INVALID_IPV6_TUNNEL_NETWORK: WIN32_ERROR = WIN32_ERROR(5927u32);
9111 pub const ERROR_QUORUM_NOT_ALLOWED_IN_THIS_GROUP: WIN32_ERROR = WIN32_ERROR(5928u32);
9112 pub const ERROR_DEPENDENCY_TREE_TOO_COMPLEX: WIN32_ERROR = WIN32_ERROR(5929u32);
9113 pub const ERROR_EXCEPTION_IN_RESOURCE_CALL: WIN32_ERROR = WIN32_ERROR(5930u32);
9114 pub const ERROR_CLUSTER_RHS_FAILED_INITIALIZATION: WIN32_ERROR = WIN32_ERROR(5931u32);
9115 pub const ERROR_CLUSTER_NOT_INSTALLED: WIN32_ERROR = WIN32_ERROR(5932u32);
9116 pub const ERROR_CLUSTER_RESOURCES_MUST_BE_ONLINE_ON_THE_SAME_NODE: WIN32_ERROR = WIN32_ERROR(5933u32);
9117 pub const ERROR_CLUSTER_MAX_NODES_IN_CLUSTER: WIN32_ERROR = WIN32_ERROR(5934u32);
9118 pub const ERROR_CLUSTER_TOO_MANY_NODES: WIN32_ERROR = WIN32_ERROR(5935u32);
9119 pub const ERROR_CLUSTER_OBJECT_ALREADY_USED: WIN32_ERROR = WIN32_ERROR(5936u32);
9120 pub const ERROR_NONCORE_GROUPS_FOUND: WIN32_ERROR = WIN32_ERROR(5937u32);
9121 pub const ERROR_FILE_SHARE_RESOURCE_CONFLICT: WIN32_ERROR = WIN32_ERROR(5938u32);
9122 pub const ERROR_CLUSTER_EVICT_INVALID_REQUEST: WIN32_ERROR = WIN32_ERROR(5939u32);
9123 pub const ERROR_CLUSTER_SINGLETON_RESOURCE: WIN32_ERROR = WIN32_ERROR(5940u32);
9124 pub const ERROR_CLUSTER_GROUP_SINGLETON_RESOURCE: WIN32_ERROR = WIN32_ERROR(5941u32);
9125 pub const ERROR_CLUSTER_RESOURCE_PROVIDER_FAILED: WIN32_ERROR = WIN32_ERROR(5942u32);
9126 pub const ERROR_CLUSTER_RESOURCE_CONFIGURATION_ERROR: WIN32_ERROR = WIN32_ERROR(5943u32);
9127 pub const ERROR_CLUSTER_GROUP_BUSY: WIN32_ERROR = WIN32_ERROR(5944u32);
9128 pub const ERROR_CLUSTER_NOT_SHARED_VOLUME: WIN32_ERROR = WIN32_ERROR(5945u32);
9129 pub const ERROR_CLUSTER_INVALID_SECURITY_DESCRIPTOR: WIN32_ERROR = WIN32_ERROR(5946u32);
9130 pub const ERROR_CLUSTER_SHARED_VOLUMES_IN_USE: WIN32_ERROR = WIN32_ERROR(5947u32);
9131 pub const ERROR_CLUSTER_USE_SHARED_VOLUMES_API: WIN32_ERROR = WIN32_ERROR(5948u32);
9132 pub const ERROR_CLUSTER_BACKUP_IN_PROGRESS: WIN32_ERROR = WIN32_ERROR(5949u32);
9133 pub const ERROR_NON_CSV_PATH: WIN32_ERROR = WIN32_ERROR(5950u32);
9134 pub const ERROR_CSV_VOLUME_NOT_LOCAL: WIN32_ERROR = WIN32_ERROR(5951u32);
9135 pub const ERROR_CLUSTER_WATCHDOG_TERMINATING: WIN32_ERROR = WIN32_ERROR(5952u32);
9136 pub const ERROR_CLUSTER_RESOURCE_VETOED_MOVE_INCOMPATIBLE_NODES: WIN32_ERROR = WIN32_ERROR(5953u32);
9137 pub const ERROR_CLUSTER_INVALID_NODE_WEIGHT: WIN32_ERROR = WIN32_ERROR(5954u32);
9138 pub const ERROR_CLUSTER_RESOURCE_VETOED_CALL: WIN32_ERROR = WIN32_ERROR(5955u32);
9139 pub const ERROR_RESMON_SYSTEM_RESOURCES_LACKING: WIN32_ERROR = WIN32_ERROR(5956u32);
9140 pub const ERROR_CLUSTER_RESOURCE_VETOED_MOVE_NOT_ENOUGH_RESOURCES_ON_DESTINATION: WIN32_ERROR = WIN32_ERROR(5957u32);
9141 pub const ERROR_CLUSTER_RESOURCE_VETOED_MOVE_NOT_ENOUGH_RESOURCES_ON_SOURCE: WIN32_ERROR = WIN32_ERROR(5958u32);
9142 pub const ERROR_CLUSTER_GROUP_QUEUED: WIN32_ERROR = WIN32_ERROR(5959u32);
9143 pub const ERROR_CLUSTER_RESOURCE_LOCKED_STATUS: WIN32_ERROR = WIN32_ERROR(5960u32);
9144 pub const ERROR_CLUSTER_SHARED_VOLUME_FAILOVER_NOT_ALLOWED: WIN32_ERROR = WIN32_ERROR(5961u32);
9145 pub const ERROR_CLUSTER_NODE_DRAIN_IN_PROGRESS: WIN32_ERROR = WIN32_ERROR(5962u32);
9146 pub const ERROR_CLUSTER_DISK_NOT_CONNECTED: WIN32_ERROR = WIN32_ERROR(5963u32);
9147 pub const ERROR_DISK_NOT_CSV_CAPABLE: WIN32_ERROR = WIN32_ERROR(5964u32);
9148 pub const ERROR_RESOURCE_NOT_IN_AVAILABLE_STORAGE: WIN32_ERROR = WIN32_ERROR(5965u32);
9149 pub const ERROR_CLUSTER_SHARED_VOLUME_REDIRECTED: WIN32_ERROR = WIN32_ERROR(5966u32);
9150 pub const ERROR_CLUSTER_SHARED_VOLUME_NOT_REDIRECTED: WIN32_ERROR = WIN32_ERROR(5967u32);
9151 pub const ERROR_CLUSTER_CANNOT_RETURN_PROPERTIES: WIN32_ERROR = WIN32_ERROR(5968u32);
9152 pub const ERROR_CLUSTER_RESOURCE_CONTAINS_UNSUPPORTED_DIFF_AREA_FOR_SHARED_VOLUMES: WIN32_ERROR = WIN32_ERROR(5969u32);
9153 pub const ERROR_CLUSTER_RESOURCE_IS_IN_MAINTENANCE_MODE: WIN32_ERROR = WIN32_ERROR(5970u32);
9154 pub const ERROR_CLUSTER_AFFINITY_CONFLICT: WIN32_ERROR = WIN32_ERROR(5971u32);
9155 pub const ERROR_CLUSTER_RESOURCE_IS_REPLICA_VIRTUAL_MACHINE: WIN32_ERROR = WIN32_ERROR(5972u32);
9156 pub const ERROR_CLUSTER_UPGRADE_INCOMPATIBLE_VERSIONS: WIN32_ERROR = WIN32_ERROR(5973u32);
9157 pub const ERROR_CLUSTER_UPGRADE_FIX_QUORUM_NOT_SUPPORTED: WIN32_ERROR = WIN32_ERROR(5974u32);
9158 pub const ERROR_CLUSTER_UPGRADE_RESTART_REQUIRED: WIN32_ERROR = WIN32_ERROR(5975u32);
9159 pub const ERROR_CLUSTER_UPGRADE_IN_PROGRESS: WIN32_ERROR = WIN32_ERROR(5976u32);
9160 pub const ERROR_CLUSTER_UPGRADE_INCOMPLETE: WIN32_ERROR = WIN32_ERROR(5977u32);
9161 pub const ERROR_CLUSTER_NODE_IN_GRACE_PERIOD: WIN32_ERROR = WIN32_ERROR(5978u32);
9162 pub const ERROR_CLUSTER_CSV_IO_PAUSE_TIMEOUT: WIN32_ERROR = WIN32_ERROR(5979u32);
9163 pub const ERROR_NODE_NOT_ACTIVE_CLUSTER_MEMBER: WIN32_ERROR = WIN32_ERROR(5980u32);
9164 pub const ERROR_CLUSTER_RESOURCE_NOT_MONITORED: WIN32_ERROR = WIN32_ERROR(5981u32);
9165 pub const ERROR_CLUSTER_RESOURCE_DOES_NOT_SUPPORT_UNMONITORED: WIN32_ERROR = WIN32_ERROR(5982u32);
9166 pub const ERROR_CLUSTER_RESOURCE_IS_REPLICATED: WIN32_ERROR = WIN32_ERROR(5983u32);
9167 pub const ERROR_CLUSTER_NODE_ISOLATED: WIN32_ERROR = WIN32_ERROR(5984u32);
9168 pub const ERROR_CLUSTER_NODE_QUARANTINED: WIN32_ERROR = WIN32_ERROR(5985u32);
9169 pub const ERROR_CLUSTER_DATABASE_UPDATE_CONDITION_FAILED: WIN32_ERROR = WIN32_ERROR(5986u32);
9170 pub const ERROR_CLUSTER_SPACE_DEGRADED: WIN32_ERROR = WIN32_ERROR(5987u32);
9171 pub const ERROR_CLUSTER_TOKEN_DELEGATION_NOT_SUPPORTED: WIN32_ERROR = WIN32_ERROR(5988u32);
9172 pub const ERROR_CLUSTER_CSV_INVALID_HANDLE: WIN32_ERROR = WIN32_ERROR(5989u32);
9173 pub const ERROR_CLUSTER_CSV_SUPPORTED_ONLY_ON_COORDINATOR: WIN32_ERROR = WIN32_ERROR(5990u32);
9174 pub const ERROR_GROUPSET_NOT_AVAILABLE: WIN32_ERROR = WIN32_ERROR(5991u32);
9175 pub const ERROR_GROUPSET_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(5992u32);
9176 pub const ERROR_GROUPSET_CANT_PROVIDE: WIN32_ERROR = WIN32_ERROR(5993u32);
9177 pub const ERROR_CLUSTER_FAULT_DOMAIN_PARENT_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(5994u32);
9178 pub const ERROR_CLUSTER_FAULT_DOMAIN_INVALID_HIERARCHY: WIN32_ERROR = WIN32_ERROR(5995u32);
9179 pub const ERROR_CLUSTER_FAULT_DOMAIN_FAILED_S2D_VALIDATION: WIN32_ERROR = WIN32_ERROR(5996u32);
9180 pub const ERROR_CLUSTER_FAULT_DOMAIN_S2D_CONNECTIVITY_LOSS: WIN32_ERROR = WIN32_ERROR(5997u32);
9181 pub const ERROR_CLUSTER_INVALID_INFRASTRUCTURE_FILESERVER_NAME: WIN32_ERROR = WIN32_ERROR(5998u32);
9182 pub const ERROR_CLUSTERSET_MANAGEMENT_CLUSTER_UNREACHABLE: WIN32_ERROR = WIN32_ERROR(5999u32);
9183 pub const ERROR_ENCRYPTION_FAILED: WIN32_ERROR = WIN32_ERROR(6000u32);
9184 pub const ERROR_DECRYPTION_FAILED: WIN32_ERROR = WIN32_ERROR(6001u32);
9185 pub const ERROR_FILE_ENCRYPTED: WIN32_ERROR = WIN32_ERROR(6002u32);
9186 pub const ERROR_NO_RECOVERY_POLICY: WIN32_ERROR = WIN32_ERROR(6003u32);
9187 pub const ERROR_NO_EFS: WIN32_ERROR = WIN32_ERROR(6004u32);
9188 pub const ERROR_WRONG_EFS: WIN32_ERROR = WIN32_ERROR(6005u32);
9189 pub const ERROR_NO_USER_KEYS: WIN32_ERROR = WIN32_ERROR(6006u32);
9190 pub const ERROR_FILE_NOT_ENCRYPTED: WIN32_ERROR = WIN32_ERROR(6007u32);
9191 pub const ERROR_NOT_EXPORT_FORMAT: WIN32_ERROR = WIN32_ERROR(6008u32);
9192 pub const ERROR_FILE_READ_ONLY: WIN32_ERROR = WIN32_ERROR(6009u32);
9193 pub const ERROR_DIR_EFS_DISALLOWED: WIN32_ERROR = WIN32_ERROR(6010u32);
9194 pub const ERROR_EFS_SERVER_NOT_TRUSTED: WIN32_ERROR = WIN32_ERROR(6011u32);
9195 pub const ERROR_BAD_RECOVERY_POLICY: WIN32_ERROR = WIN32_ERROR(6012u32);
9196 pub const ERROR_EFS_ALG_BLOB_TOO_BIG: WIN32_ERROR = WIN32_ERROR(6013u32);
9197 pub const ERROR_VOLUME_NOT_SUPPORT_EFS: WIN32_ERROR = WIN32_ERROR(6014u32);
9198 pub const ERROR_EFS_DISABLED: WIN32_ERROR = WIN32_ERROR(6015u32);
9199 pub const ERROR_EFS_VERSION_NOT_SUPPORT: WIN32_ERROR = WIN32_ERROR(6016u32);
9200 pub const ERROR_CS_ENCRYPTION_INVALID_SERVER_RESPONSE: WIN32_ERROR = WIN32_ERROR(6017u32);
9201 pub const ERROR_CS_ENCRYPTION_UNSUPPORTED_SERVER: WIN32_ERROR = WIN32_ERROR(6018u32);
9202 pub const ERROR_CS_ENCRYPTION_EXISTING_ENCRYPTED_FILE: WIN32_ERROR = WIN32_ERROR(6019u32);
9203 pub const ERROR_CS_ENCRYPTION_NEW_ENCRYPTED_FILE: WIN32_ERROR = WIN32_ERROR(6020u32);
9204 pub const ERROR_CS_ENCRYPTION_FILE_NOT_CSE: WIN32_ERROR = WIN32_ERROR(6021u32);
9205 pub const ERROR_ENCRYPTION_POLICY_DENIES_OPERATION: WIN32_ERROR = WIN32_ERROR(6022u32);
9206 pub const ERROR_WIP_ENCRYPTION_FAILED: WIN32_ERROR = WIN32_ERROR(6023u32);
9207 pub const ERROR_NO_BROWSER_SERVERS_FOUND: WIN32_ERROR = WIN32_ERROR(6118u32);
9208 pub const ERROR_CLUSTER_OBJECT_IS_CLUSTER_SET_VM: WIN32_ERROR = WIN32_ERROR(6250u32);
9209 pub const ERROR_LOG_SECTOR_INVALID: WIN32_ERROR = WIN32_ERROR(6600u32);
9210 pub const ERROR_LOG_SECTOR_PARITY_INVALID: WIN32_ERROR = WIN32_ERROR(6601u32);
9211 pub const ERROR_LOG_SECTOR_REMAPPED: WIN32_ERROR = WIN32_ERROR(6602u32);
9212 pub const ERROR_LOG_BLOCK_INCOMPLETE: WIN32_ERROR = WIN32_ERROR(6603u32);
9213 pub const ERROR_LOG_INVALID_RANGE: WIN32_ERROR = WIN32_ERROR(6604u32);
9214 pub const ERROR_LOG_BLOCKS_EXHAUSTED: WIN32_ERROR = WIN32_ERROR(6605u32);
9215 pub const ERROR_LOG_READ_CONTEXT_INVALID: WIN32_ERROR = WIN32_ERROR(6606u32);
9216 pub const ERROR_LOG_RESTART_INVALID: WIN32_ERROR = WIN32_ERROR(6607u32);
9217 pub const ERROR_LOG_BLOCK_VERSION: WIN32_ERROR = WIN32_ERROR(6608u32);
9218 pub const ERROR_LOG_BLOCK_INVALID: WIN32_ERROR = WIN32_ERROR(6609u32);
9219 pub const ERROR_LOG_READ_MODE_INVALID: WIN32_ERROR = WIN32_ERROR(6610u32);
9220 pub const ERROR_LOG_NO_RESTART: WIN32_ERROR = WIN32_ERROR(6611u32);
9221 pub const ERROR_LOG_METADATA_CORRUPT: WIN32_ERROR = WIN32_ERROR(6612u32);
9222 pub const ERROR_LOG_METADATA_INVALID: WIN32_ERROR = WIN32_ERROR(6613u32);
9223 pub const ERROR_LOG_METADATA_INCONSISTENT: WIN32_ERROR = WIN32_ERROR(6614u32);
9224 pub const ERROR_LOG_RESERVATION_INVALID: WIN32_ERROR = WIN32_ERROR(6615u32);
9225 pub const ERROR_LOG_CANT_DELETE: WIN32_ERROR = WIN32_ERROR(6616u32);
9226 pub const ERROR_LOG_CONTAINER_LIMIT_EXCEEDED: WIN32_ERROR = WIN32_ERROR(6617u32);
9227 pub const ERROR_LOG_START_OF_LOG: WIN32_ERROR = WIN32_ERROR(6618u32);
9228 pub const ERROR_LOG_POLICY_ALREADY_INSTALLED: WIN32_ERROR = WIN32_ERROR(6619u32);
9229 pub const ERROR_LOG_POLICY_NOT_INSTALLED: WIN32_ERROR = WIN32_ERROR(6620u32);
9230 pub const ERROR_LOG_POLICY_INVALID: WIN32_ERROR = WIN32_ERROR(6621u32);
9231 pub const ERROR_LOG_POLICY_CONFLICT: WIN32_ERROR = WIN32_ERROR(6622u32);
9232 pub const ERROR_LOG_PINNED_ARCHIVE_TAIL: WIN32_ERROR = WIN32_ERROR(6623u32);
9233 pub const ERROR_LOG_RECORD_NONEXISTENT: WIN32_ERROR = WIN32_ERROR(6624u32);
9234 pub const ERROR_LOG_RECORDS_RESERVED_INVALID: WIN32_ERROR = WIN32_ERROR(6625u32);
9235 pub const ERROR_LOG_SPACE_RESERVED_INVALID: WIN32_ERROR = WIN32_ERROR(6626u32);
9236 pub const ERROR_LOG_TAIL_INVALID: WIN32_ERROR = WIN32_ERROR(6627u32);
9237 pub const ERROR_LOG_FULL: WIN32_ERROR = WIN32_ERROR(6628u32);
9238 pub const ERROR_COULD_NOT_RESIZE_LOG: WIN32_ERROR = WIN32_ERROR(6629u32);
9239 pub const ERROR_LOG_MULTIPLEXED: WIN32_ERROR = WIN32_ERROR(6630u32);
9240 pub const ERROR_LOG_DEDICATED: WIN32_ERROR = WIN32_ERROR(6631u32);
9241 pub const ERROR_LOG_ARCHIVE_NOT_IN_PROGRESS: WIN32_ERROR = WIN32_ERROR(6632u32);
9242 pub const ERROR_LOG_ARCHIVE_IN_PROGRESS: WIN32_ERROR = WIN32_ERROR(6633u32);
9243 pub const ERROR_LOG_EPHEMERAL: WIN32_ERROR = WIN32_ERROR(6634u32);
9244 pub const ERROR_LOG_NOT_ENOUGH_CONTAINERS: WIN32_ERROR = WIN32_ERROR(6635u32);
9245 pub const ERROR_LOG_CLIENT_ALREADY_REGISTERED: WIN32_ERROR = WIN32_ERROR(6636u32);
9246 pub const ERROR_LOG_CLIENT_NOT_REGISTERED: WIN32_ERROR = WIN32_ERROR(6637u32);
9247 pub const ERROR_LOG_FULL_HANDLER_IN_PROGRESS: WIN32_ERROR = WIN32_ERROR(6638u32);
9248 pub const ERROR_LOG_CONTAINER_READ_FAILED: WIN32_ERROR = WIN32_ERROR(6639u32);
9249 pub const ERROR_LOG_CONTAINER_WRITE_FAILED: WIN32_ERROR = WIN32_ERROR(6640u32);
9250 pub const ERROR_LOG_CONTAINER_OPEN_FAILED: WIN32_ERROR = WIN32_ERROR(6641u32);
9251 pub const ERROR_LOG_CONTAINER_STATE_INVALID: WIN32_ERROR = WIN32_ERROR(6642u32);
9252 pub const ERROR_LOG_STATE_INVALID: WIN32_ERROR = WIN32_ERROR(6643u32);
9253 pub const ERROR_LOG_PINNED: WIN32_ERROR = WIN32_ERROR(6644u32);
9254 pub const ERROR_LOG_METADATA_FLUSH_FAILED: WIN32_ERROR = WIN32_ERROR(6645u32);
9255 pub const ERROR_LOG_INCONSISTENT_SECURITY: WIN32_ERROR = WIN32_ERROR(6646u32);
9256 pub const ERROR_LOG_APPENDED_FLUSH_FAILED: WIN32_ERROR = WIN32_ERROR(6647u32);
9257 pub const ERROR_LOG_PINNED_RESERVATION: WIN32_ERROR = WIN32_ERROR(6648u32);
9258 pub const ERROR_INVALID_TRANSACTION: WIN32_ERROR = WIN32_ERROR(6700u32);
9259 pub const ERROR_TRANSACTION_NOT_ACTIVE: WIN32_ERROR = WIN32_ERROR(6701u32);
9260 pub const ERROR_TRANSACTION_REQUEST_NOT_VALID: WIN32_ERROR = WIN32_ERROR(6702u32);
9261 pub const ERROR_TRANSACTION_NOT_REQUESTED: WIN32_ERROR = WIN32_ERROR(6703u32);
9262 pub const ERROR_TRANSACTION_ALREADY_ABORTED: WIN32_ERROR = WIN32_ERROR(6704u32);
9263 pub const ERROR_TRANSACTION_ALREADY_COMMITTED: WIN32_ERROR = WIN32_ERROR(6705u32);
9264 pub const ERROR_TM_INITIALIZATION_FAILED: WIN32_ERROR = WIN32_ERROR(6706u32);
9265 pub const ERROR_RESOURCEMANAGER_READ_ONLY: WIN32_ERROR = WIN32_ERROR(6707u32);
9266 pub const ERROR_TRANSACTION_NOT_JOINED: WIN32_ERROR = WIN32_ERROR(6708u32);
9267 pub const ERROR_TRANSACTION_SUPERIOR_EXISTS: WIN32_ERROR = WIN32_ERROR(6709u32);
9268 pub const ERROR_CRM_PROTOCOL_ALREADY_EXISTS: WIN32_ERROR = WIN32_ERROR(6710u32);
9269 pub const ERROR_TRANSACTION_PROPAGATION_FAILED: WIN32_ERROR = WIN32_ERROR(6711u32);
9270 pub const ERROR_CRM_PROTOCOL_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(6712u32);
9271 pub const ERROR_TRANSACTION_INVALID_MARSHALL_BUFFER: WIN32_ERROR = WIN32_ERROR(6713u32);
9272 pub const ERROR_CURRENT_TRANSACTION_NOT_VALID: WIN32_ERROR = WIN32_ERROR(6714u32);
9273 pub const ERROR_TRANSACTION_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(6715u32);
9274 pub const ERROR_RESOURCEMANAGER_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(6716u32);
9275 pub const ERROR_ENLISTMENT_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(6717u32);
9276 pub const ERROR_TRANSACTIONMANAGER_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(6718u32);
9277 pub const ERROR_TRANSACTIONMANAGER_NOT_ONLINE: WIN32_ERROR = WIN32_ERROR(6719u32);
9278 pub const ERROR_TRANSACTIONMANAGER_RECOVERY_NAME_COLLISION: WIN32_ERROR = WIN32_ERROR(6720u32);
9279 pub const ERROR_TRANSACTION_NOT_ROOT: WIN32_ERROR = WIN32_ERROR(6721u32);
9280 pub const ERROR_TRANSACTION_OBJECT_EXPIRED: WIN32_ERROR = WIN32_ERROR(6722u32);
9281 pub const ERROR_TRANSACTION_RESPONSE_NOT_ENLISTED: WIN32_ERROR = WIN32_ERROR(6723u32);
9282 pub const ERROR_TRANSACTION_RECORD_TOO_LONG: WIN32_ERROR = WIN32_ERROR(6724u32);
9283 pub const ERROR_IMPLICIT_TRANSACTION_NOT_SUPPORTED: WIN32_ERROR = WIN32_ERROR(6725u32);
9284 pub const ERROR_TRANSACTION_INTEGRITY_VIOLATED: WIN32_ERROR = WIN32_ERROR(6726u32);
9285 pub const ERROR_TRANSACTIONMANAGER_IDENTITY_MISMATCH: WIN32_ERROR = WIN32_ERROR(6727u32);
9286 pub const ERROR_RM_CANNOT_BE_FROZEN_FOR_SNAPSHOT: WIN32_ERROR = WIN32_ERROR(6728u32);
9287 pub const ERROR_TRANSACTION_MUST_WRITETHROUGH: WIN32_ERROR = WIN32_ERROR(6729u32);
9288 pub const ERROR_TRANSACTION_NO_SUPERIOR: WIN32_ERROR = WIN32_ERROR(6730u32);
9289 pub const ERROR_HEURISTIC_DAMAGE_POSSIBLE: WIN32_ERROR = WIN32_ERROR(6731u32);
9290 pub const ERROR_TRANSACTIONAL_CONFLICT: WIN32_ERROR = WIN32_ERROR(6800u32);
9291 pub const ERROR_RM_NOT_ACTIVE: WIN32_ERROR = WIN32_ERROR(6801u32);
9292 pub const ERROR_RM_METADATA_CORRUPT: WIN32_ERROR = WIN32_ERROR(6802u32);
9293 pub const ERROR_DIRECTORY_NOT_RM: WIN32_ERROR = WIN32_ERROR(6803u32);
9294 pub const ERROR_TRANSACTIONS_UNSUPPORTED_REMOTE: WIN32_ERROR = WIN32_ERROR(6805u32);
9295 pub const ERROR_LOG_RESIZE_INVALID_SIZE: WIN32_ERROR = WIN32_ERROR(6806u32);
9296 pub const ERROR_OBJECT_NO_LONGER_EXISTS: WIN32_ERROR = WIN32_ERROR(6807u32);
9297 pub const ERROR_STREAM_MINIVERSION_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(6808u32);
9298 pub const ERROR_STREAM_MINIVERSION_NOT_VALID: WIN32_ERROR = WIN32_ERROR(6809u32);
9299 pub const ERROR_MINIVERSION_INACCESSIBLE_FROM_SPECIFIED_TRANSACTION: WIN32_ERROR = WIN32_ERROR(6810u32);
9300 pub const ERROR_CANT_OPEN_MINIVERSION_WITH_MODIFY_INTENT: WIN32_ERROR = WIN32_ERROR(6811u32);
9301 pub const ERROR_CANT_CREATE_MORE_STREAM_MINIVERSIONS: WIN32_ERROR = WIN32_ERROR(6812u32);
9302 pub const ERROR_REMOTE_FILE_VERSION_MISMATCH: WIN32_ERROR = WIN32_ERROR(6814u32);
9303 pub const ERROR_HANDLE_NO_LONGER_VALID: WIN32_ERROR = WIN32_ERROR(6815u32);
9304 pub const ERROR_NO_TXF_METADATA: WIN32_ERROR = WIN32_ERROR(6816u32);
9305 pub const ERROR_LOG_CORRUPTION_DETECTED: WIN32_ERROR = WIN32_ERROR(6817u32);
9306 pub const ERROR_CANT_RECOVER_WITH_HANDLE_OPEN: WIN32_ERROR = WIN32_ERROR(6818u32);
9307 pub const ERROR_RM_DISCONNECTED: WIN32_ERROR = WIN32_ERROR(6819u32);
9308 pub const ERROR_ENLISTMENT_NOT_SUPERIOR: WIN32_ERROR = WIN32_ERROR(6820u32);
9309 pub const ERROR_RECOVERY_NOT_NEEDED: WIN32_ERROR = WIN32_ERROR(6821u32);
9310 pub const ERROR_RM_ALREADY_STARTED: WIN32_ERROR = WIN32_ERROR(6822u32);
9311 pub const ERROR_FILE_IDENTITY_NOT_PERSISTENT: WIN32_ERROR = WIN32_ERROR(6823u32);
9312 pub const ERROR_CANT_BREAK_TRANSACTIONAL_DEPENDENCY: WIN32_ERROR = WIN32_ERROR(6824u32);
9313 pub const ERROR_CANT_CROSS_RM_BOUNDARY: WIN32_ERROR = WIN32_ERROR(6825u32);
9314 pub const ERROR_TXF_DIR_NOT_EMPTY: WIN32_ERROR = WIN32_ERROR(6826u32);
9315 pub const ERROR_INDOUBT_TRANSACTIONS_EXIST: WIN32_ERROR = WIN32_ERROR(6827u32);
9316 pub const ERROR_TM_VOLATILE: WIN32_ERROR = WIN32_ERROR(6828u32);
9317 pub const ERROR_ROLLBACK_TIMER_EXPIRED: WIN32_ERROR = WIN32_ERROR(6829u32);
9318 pub const ERROR_TXF_ATTRIBUTE_CORRUPT: WIN32_ERROR = WIN32_ERROR(6830u32);
9319 pub const ERROR_EFS_NOT_ALLOWED_IN_TRANSACTION: WIN32_ERROR = WIN32_ERROR(6831u32);
9320 pub const ERROR_TRANSACTIONAL_OPEN_NOT_ALLOWED: WIN32_ERROR = WIN32_ERROR(6832u32);
9321 pub const ERROR_LOG_GROWTH_FAILED: WIN32_ERROR = WIN32_ERROR(6833u32);
9322 pub const ERROR_TRANSACTED_MAPPING_UNSUPPORTED_REMOTE: WIN32_ERROR = WIN32_ERROR(6834u32);
9323 pub const ERROR_TXF_METADATA_ALREADY_PRESENT: WIN32_ERROR = WIN32_ERROR(6835u32);
9324 pub const ERROR_TRANSACTION_SCOPE_CALLBACKS_NOT_SET: WIN32_ERROR = WIN32_ERROR(6836u32);
9325 pub const ERROR_TRANSACTION_REQUIRED_PROMOTION: WIN32_ERROR = WIN32_ERROR(6837u32);
9326 pub const ERROR_CANNOT_EXECUTE_FILE_IN_TRANSACTION: WIN32_ERROR = WIN32_ERROR(6838u32);
9327 pub const ERROR_TRANSACTIONS_NOT_FROZEN: WIN32_ERROR = WIN32_ERROR(6839u32);
9328 pub const ERROR_TRANSACTION_FREEZE_IN_PROGRESS: WIN32_ERROR = WIN32_ERROR(6840u32);
9329 pub const ERROR_NOT_SNAPSHOT_VOLUME: WIN32_ERROR = WIN32_ERROR(6841u32);
9330 pub const ERROR_NO_SAVEPOINT_WITH_OPEN_FILES: WIN32_ERROR = WIN32_ERROR(6842u32);
9331 pub const ERROR_DATA_LOST_REPAIR: WIN32_ERROR = WIN32_ERROR(6843u32);
9332 pub const ERROR_SPARSE_NOT_ALLOWED_IN_TRANSACTION: WIN32_ERROR = WIN32_ERROR(6844u32);
9333 pub const ERROR_TM_IDENTITY_MISMATCH: WIN32_ERROR = WIN32_ERROR(6845u32);
9334 pub const ERROR_FLOATED_SECTION: WIN32_ERROR = WIN32_ERROR(6846u32);
9335 pub const ERROR_CANNOT_ACCEPT_TRANSACTED_WORK: WIN32_ERROR = WIN32_ERROR(6847u32);
9336 pub const ERROR_CANNOT_ABORT_TRANSACTIONS: WIN32_ERROR = WIN32_ERROR(6848u32);
9337 pub const ERROR_BAD_CLUSTERS: WIN32_ERROR = WIN32_ERROR(6849u32);
9338 pub const ERROR_COMPRESSION_NOT_ALLOWED_IN_TRANSACTION: WIN32_ERROR = WIN32_ERROR(6850u32);
9339 pub const ERROR_VOLUME_DIRTY: WIN32_ERROR = WIN32_ERROR(6851u32);
9340 pub const ERROR_NO_LINK_TRACKING_IN_TRANSACTION: WIN32_ERROR = WIN32_ERROR(6852u32);
9341 pub const ERROR_OPERATION_NOT_SUPPORTED_IN_TRANSACTION: WIN32_ERROR = WIN32_ERROR(6853u32);
9342 pub const ERROR_EXPIRED_HANDLE: WIN32_ERROR = WIN32_ERROR(6854u32);
9343 pub const ERROR_TRANSACTION_NOT_ENLISTED: WIN32_ERROR = WIN32_ERROR(6855u32);
9344 pub const ERROR_CTX_WINSTATION_NAME_INVALID: WIN32_ERROR = WIN32_ERROR(7001u32);
9345 pub const ERROR_CTX_INVALID_PD: WIN32_ERROR = WIN32_ERROR(7002u32);
9346 pub const ERROR_CTX_PD_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(7003u32);
9347 pub const ERROR_CTX_WD_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(7004u32);
9348 pub const ERROR_CTX_CANNOT_MAKE_EVENTLOG_ENTRY: WIN32_ERROR = WIN32_ERROR(7005u32);
9349 pub const ERROR_CTX_SERVICE_NAME_COLLISION: WIN32_ERROR = WIN32_ERROR(7006u32);
9350 pub const ERROR_CTX_CLOSE_PENDING: WIN32_ERROR = WIN32_ERROR(7007u32);
9351 pub const ERROR_CTX_NO_OUTBUF: WIN32_ERROR = WIN32_ERROR(7008u32);
9352 pub const ERROR_CTX_MODEM_INF_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(7009u32);
9353 pub const ERROR_CTX_INVALID_MODEMNAME: WIN32_ERROR = WIN32_ERROR(7010u32);
9354 pub const ERROR_CTX_MODEM_RESPONSE_ERROR: WIN32_ERROR = WIN32_ERROR(7011u32);
9355 pub const ERROR_CTX_MODEM_RESPONSE_TIMEOUT: WIN32_ERROR = WIN32_ERROR(7012u32);
9356 pub const ERROR_CTX_MODEM_RESPONSE_NO_CARRIER: WIN32_ERROR = WIN32_ERROR(7013u32);
9357 pub const ERROR_CTX_MODEM_RESPONSE_NO_DIALTONE: WIN32_ERROR = WIN32_ERROR(7014u32);
9358 pub const ERROR_CTX_MODEM_RESPONSE_BUSY: WIN32_ERROR = WIN32_ERROR(7015u32);
9359 pub const ERROR_CTX_MODEM_RESPONSE_VOICE: WIN32_ERROR = WIN32_ERROR(7016u32);
9360 pub const ERROR_CTX_TD_ERROR: WIN32_ERROR = WIN32_ERROR(7017u32);
9361 pub const ERROR_CTX_WINSTATION_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(7022u32);
9362 pub const ERROR_CTX_WINSTATION_ALREADY_EXISTS: WIN32_ERROR = WIN32_ERROR(7023u32);
9363 pub const ERROR_CTX_WINSTATION_BUSY: WIN32_ERROR = WIN32_ERROR(7024u32);
9364 pub const ERROR_CTX_BAD_VIDEO_MODE: WIN32_ERROR = WIN32_ERROR(7025u32);
9365 pub const ERROR_CTX_GRAPHICS_INVALID: WIN32_ERROR = WIN32_ERROR(7035u32);
9366 pub const ERROR_CTX_LOGON_DISABLED: WIN32_ERROR = WIN32_ERROR(7037u32);
9367 pub const ERROR_CTX_NOT_CONSOLE: WIN32_ERROR = WIN32_ERROR(7038u32);
9368 pub const ERROR_CTX_CLIENT_QUERY_TIMEOUT: WIN32_ERROR = WIN32_ERROR(7040u32);
9369 pub const ERROR_CTX_CONSOLE_DISCONNECT: WIN32_ERROR = WIN32_ERROR(7041u32);
9370 pub const ERROR_CTX_CONSOLE_CONNECT: WIN32_ERROR = WIN32_ERROR(7042u32);
9371 pub const ERROR_CTX_SHADOW_DENIED: WIN32_ERROR = WIN32_ERROR(7044u32);
9372 pub const ERROR_CTX_WINSTATION_ACCESS_DENIED: WIN32_ERROR = WIN32_ERROR(7045u32);
9373 pub const ERROR_CTX_INVALID_WD: WIN32_ERROR = WIN32_ERROR(7049u32);
9374 pub const ERROR_CTX_SHADOW_INVALID: WIN32_ERROR = WIN32_ERROR(7050u32);
9375 pub const ERROR_CTX_SHADOW_DISABLED: WIN32_ERROR = WIN32_ERROR(7051u32);
9376 pub const ERROR_CTX_CLIENT_LICENSE_IN_USE: WIN32_ERROR = WIN32_ERROR(7052u32);
9377 pub const ERROR_CTX_CLIENT_LICENSE_NOT_SET: WIN32_ERROR = WIN32_ERROR(7053u32);
9378 pub const ERROR_CTX_LICENSE_NOT_AVAILABLE: WIN32_ERROR = WIN32_ERROR(7054u32);
9379 pub const ERROR_CTX_LICENSE_CLIENT_INVALID: WIN32_ERROR = WIN32_ERROR(7055u32);
9380 pub const ERROR_CTX_LICENSE_EXPIRED: WIN32_ERROR = WIN32_ERROR(7056u32);
9381 pub const ERROR_CTX_SHADOW_NOT_RUNNING: WIN32_ERROR = WIN32_ERROR(7057u32);
9382 pub const ERROR_CTX_SHADOW_ENDED_BY_MODE_CHANGE: WIN32_ERROR = WIN32_ERROR(7058u32);
9383 pub const ERROR_ACTIVATION_COUNT_EXCEEDED: WIN32_ERROR = WIN32_ERROR(7059u32);
9384 pub const ERROR_CTX_WINSTATIONS_DISABLED: WIN32_ERROR = WIN32_ERROR(7060u32);
9385 pub const ERROR_CTX_ENCRYPTION_LEVEL_REQUIRED: WIN32_ERROR = WIN32_ERROR(7061u32);
9386 pub const ERROR_CTX_SESSION_IN_USE: WIN32_ERROR = WIN32_ERROR(7062u32);
9387 pub const ERROR_CTX_NO_FORCE_LOGOFF: WIN32_ERROR = WIN32_ERROR(7063u32);
9388 pub const ERROR_CTX_ACCOUNT_RESTRICTION: WIN32_ERROR = WIN32_ERROR(7064u32);
9389 pub const ERROR_RDP_PROTOCOL_ERROR: WIN32_ERROR = WIN32_ERROR(7065u32);
9390 pub const ERROR_CTX_CDM_CONNECT: WIN32_ERROR = WIN32_ERROR(7066u32);
9391 pub const ERROR_CTX_CDM_DISCONNECT: WIN32_ERROR = WIN32_ERROR(7067u32);
9392 pub const ERROR_CTX_SECURITY_LAYER_ERROR: WIN32_ERROR = WIN32_ERROR(7068u32);
9393 pub const ERROR_TS_INCOMPATIBLE_SESSIONS: WIN32_ERROR = WIN32_ERROR(7069u32);
9394 pub const ERROR_TS_VIDEO_SUBSYSTEM_ERROR: WIN32_ERROR = WIN32_ERROR(7070u32);
9395 pub const ERROR_DS_NOT_INSTALLED: WIN32_ERROR = WIN32_ERROR(8200u32);
9396 pub const ERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY: WIN32_ERROR = WIN32_ERROR(8201u32);
9397 pub const ERROR_DS_NO_ATTRIBUTE_OR_VALUE: WIN32_ERROR = WIN32_ERROR(8202u32);
9398 pub const ERROR_DS_INVALID_ATTRIBUTE_SYNTAX: WIN32_ERROR = WIN32_ERROR(8203u32);
9399 pub const ERROR_DS_ATTRIBUTE_TYPE_UNDEFINED: WIN32_ERROR = WIN32_ERROR(8204u32);
9400 pub const ERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS: WIN32_ERROR = WIN32_ERROR(8205u32);
9401 pub const ERROR_DS_BUSY: WIN32_ERROR = WIN32_ERROR(8206u32);
9402 pub const ERROR_DS_UNAVAILABLE: WIN32_ERROR = WIN32_ERROR(8207u32);
9403 pub const ERROR_DS_NO_RIDS_ALLOCATED: WIN32_ERROR = WIN32_ERROR(8208u32);
9404 pub const ERROR_DS_NO_MORE_RIDS: WIN32_ERROR = WIN32_ERROR(8209u32);
9405 pub const ERROR_DS_INCORRECT_ROLE_OWNER: WIN32_ERROR = WIN32_ERROR(8210u32);
9406 pub const ERROR_DS_RIDMGR_INIT_ERROR: WIN32_ERROR = WIN32_ERROR(8211u32);
9407 pub const ERROR_DS_OBJ_CLASS_VIOLATION: WIN32_ERROR = WIN32_ERROR(8212u32);
9408 pub const ERROR_DS_CANT_ON_NON_LEAF: WIN32_ERROR = WIN32_ERROR(8213u32);
9409 pub const ERROR_DS_CANT_ON_RDN: WIN32_ERROR = WIN32_ERROR(8214u32);
9410 pub const ERROR_DS_CANT_MOD_OBJ_CLASS: WIN32_ERROR = WIN32_ERROR(8215u32);
9411 pub const ERROR_DS_CROSS_DOM_MOVE_ERROR: WIN32_ERROR = WIN32_ERROR(8216u32);
9412 pub const ERROR_DS_GC_NOT_AVAILABLE: WIN32_ERROR = WIN32_ERROR(8217u32);
9413 pub const ERROR_SHARED_POLICY: WIN32_ERROR = WIN32_ERROR(8218u32);
9414 pub const ERROR_POLICY_OBJECT_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(8219u32);
9415 pub const ERROR_POLICY_ONLY_IN_DS: WIN32_ERROR = WIN32_ERROR(8220u32);
9416 pub const ERROR_PROMOTION_ACTIVE: WIN32_ERROR = WIN32_ERROR(8221u32);
9417 pub const ERROR_NO_PROMOTION_ACTIVE: WIN32_ERROR = WIN32_ERROR(8222u32);
9418 pub const ERROR_DS_OPERATIONS_ERROR: WIN32_ERROR = WIN32_ERROR(8224u32);
9419 pub const ERROR_DS_PROTOCOL_ERROR: WIN32_ERROR = WIN32_ERROR(8225u32);
9420 pub const ERROR_DS_TIMELIMIT_EXCEEDED: WIN32_ERROR = WIN32_ERROR(8226u32);
9421 pub const ERROR_DS_SIZELIMIT_EXCEEDED: WIN32_ERROR = WIN32_ERROR(8227u32);
9422 pub const ERROR_DS_ADMIN_LIMIT_EXCEEDED: WIN32_ERROR = WIN32_ERROR(8228u32);
9423 pub const ERROR_DS_COMPARE_FALSE: WIN32_ERROR = WIN32_ERROR(8229u32);
9424 pub const ERROR_DS_COMPARE_TRUE: WIN32_ERROR = WIN32_ERROR(8230u32);
9425 pub const ERROR_DS_AUTH_METHOD_NOT_SUPPORTED: WIN32_ERROR = WIN32_ERROR(8231u32);
9426 pub const ERROR_DS_STRONG_AUTH_REQUIRED: WIN32_ERROR = WIN32_ERROR(8232u32);
9427 pub const ERROR_DS_INAPPROPRIATE_AUTH: WIN32_ERROR = WIN32_ERROR(8233u32);
9428 pub const ERROR_DS_AUTH_UNKNOWN: WIN32_ERROR = WIN32_ERROR(8234u32);
9429 pub const ERROR_DS_REFERRAL: WIN32_ERROR = WIN32_ERROR(8235u32);
9430 pub const ERROR_DS_UNAVAILABLE_CRIT_EXTENSION: WIN32_ERROR = WIN32_ERROR(8236u32);
9431 pub const ERROR_DS_CONFIDENTIALITY_REQUIRED: WIN32_ERROR = WIN32_ERROR(8237u32);
9432 pub const ERROR_DS_INAPPROPRIATE_MATCHING: WIN32_ERROR = WIN32_ERROR(8238u32);
9433 pub const ERROR_DS_CONSTRAINT_VIOLATION: WIN32_ERROR = WIN32_ERROR(8239u32);
9434 pub const ERROR_DS_NO_SUCH_OBJECT: WIN32_ERROR = WIN32_ERROR(8240u32);
9435 pub const ERROR_DS_ALIAS_PROBLEM: WIN32_ERROR = WIN32_ERROR(8241u32);
9436 pub const ERROR_DS_INVALID_DN_SYNTAX: WIN32_ERROR = WIN32_ERROR(8242u32);
9437 pub const ERROR_DS_IS_LEAF: WIN32_ERROR = WIN32_ERROR(8243u32);
9438 pub const ERROR_DS_ALIAS_DEREF_PROBLEM: WIN32_ERROR = WIN32_ERROR(8244u32);
9439 pub const ERROR_DS_UNWILLING_TO_PERFORM: WIN32_ERROR = WIN32_ERROR(8245u32);
9440 pub const ERROR_DS_LOOP_DETECT: WIN32_ERROR = WIN32_ERROR(8246u32);
9441 pub const ERROR_DS_NAMING_VIOLATION: WIN32_ERROR = WIN32_ERROR(8247u32);
9442 pub const ERROR_DS_OBJECT_RESULTS_TOO_LARGE: WIN32_ERROR = WIN32_ERROR(8248u32);
9443 pub const ERROR_DS_AFFECTS_MULTIPLE_DSAS: WIN32_ERROR = WIN32_ERROR(8249u32);
9444 pub const ERROR_DS_SERVER_DOWN: WIN32_ERROR = WIN32_ERROR(8250u32);
9445 pub const ERROR_DS_LOCAL_ERROR: WIN32_ERROR = WIN32_ERROR(8251u32);
9446 pub const ERROR_DS_ENCODING_ERROR: WIN32_ERROR = WIN32_ERROR(8252u32);
9447 pub const ERROR_DS_DECODING_ERROR: WIN32_ERROR = WIN32_ERROR(8253u32);
9448 pub const ERROR_DS_FILTER_UNKNOWN: WIN32_ERROR = WIN32_ERROR(8254u32);
9449 pub const ERROR_DS_PARAM_ERROR: WIN32_ERROR = WIN32_ERROR(8255u32);
9450 pub const ERROR_DS_NOT_SUPPORTED: WIN32_ERROR = WIN32_ERROR(8256u32);
9451 pub const ERROR_DS_NO_RESULTS_RETURNED: WIN32_ERROR = WIN32_ERROR(8257u32);
9452 pub const ERROR_DS_CONTROL_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(8258u32);
9453 pub const ERROR_DS_CLIENT_LOOP: WIN32_ERROR = WIN32_ERROR(8259u32);
9454 pub const ERROR_DS_REFERRAL_LIMIT_EXCEEDED: WIN32_ERROR = WIN32_ERROR(8260u32);
9455 pub const ERROR_DS_SORT_CONTROL_MISSING: WIN32_ERROR = WIN32_ERROR(8261u32);
9456 pub const ERROR_DS_OFFSET_RANGE_ERROR: WIN32_ERROR = WIN32_ERROR(8262u32);
9457 pub const ERROR_DS_RIDMGR_DISABLED: WIN32_ERROR = WIN32_ERROR(8263u32);
9458 pub const ERROR_DS_ROOT_MUST_BE_NC: WIN32_ERROR = WIN32_ERROR(8301u32);
9459 pub const ERROR_DS_ADD_REPLICA_INHIBITED: WIN32_ERROR = WIN32_ERROR(8302u32);
9460 pub const ERROR_DS_ATT_NOT_DEF_IN_SCHEMA: WIN32_ERROR = WIN32_ERROR(8303u32);
9461 pub const ERROR_DS_MAX_OBJ_SIZE_EXCEEDED: WIN32_ERROR = WIN32_ERROR(8304u32);
9462 pub const ERROR_DS_OBJ_STRING_NAME_EXISTS: WIN32_ERROR = WIN32_ERROR(8305u32);
9463 pub const ERROR_DS_NO_RDN_DEFINED_IN_SCHEMA: WIN32_ERROR = WIN32_ERROR(8306u32);
9464 pub const ERROR_DS_RDN_DOESNT_MATCH_SCHEMA: WIN32_ERROR = WIN32_ERROR(8307u32);
9465 pub const ERROR_DS_NO_REQUESTED_ATTS_FOUND: WIN32_ERROR = WIN32_ERROR(8308u32);
9466 pub const ERROR_DS_USER_BUFFER_TO_SMALL: WIN32_ERROR = WIN32_ERROR(8309u32);
9467 pub const ERROR_DS_ATT_IS_NOT_ON_OBJ: WIN32_ERROR = WIN32_ERROR(8310u32);
9468 pub const ERROR_DS_ILLEGAL_MOD_OPERATION: WIN32_ERROR = WIN32_ERROR(8311u32);
9469 pub const ERROR_DS_OBJ_TOO_LARGE: WIN32_ERROR = WIN32_ERROR(8312u32);
9470 pub const ERROR_DS_BAD_INSTANCE_TYPE: WIN32_ERROR = WIN32_ERROR(8313u32);
9471 pub const ERROR_DS_MASTERDSA_REQUIRED: WIN32_ERROR = WIN32_ERROR(8314u32);
9472 pub const ERROR_DS_OBJECT_CLASS_REQUIRED: WIN32_ERROR = WIN32_ERROR(8315u32);
9473 pub const ERROR_DS_MISSING_REQUIRED_ATT: WIN32_ERROR = WIN32_ERROR(8316u32);
9474 pub const ERROR_DS_ATT_NOT_DEF_FOR_CLASS: WIN32_ERROR = WIN32_ERROR(8317u32);
9475 pub const ERROR_DS_ATT_ALREADY_EXISTS: WIN32_ERROR = WIN32_ERROR(8318u32);
9476 pub const ERROR_DS_CANT_ADD_ATT_VALUES: WIN32_ERROR = WIN32_ERROR(8320u32);
9477 pub const ERROR_DS_SINGLE_VALUE_CONSTRAINT: WIN32_ERROR = WIN32_ERROR(8321u32);
9478 pub const ERROR_DS_RANGE_CONSTRAINT: WIN32_ERROR = WIN32_ERROR(8322u32);
9479 pub const ERROR_DS_ATT_VAL_ALREADY_EXISTS: WIN32_ERROR = WIN32_ERROR(8323u32);
9480 pub const ERROR_DS_CANT_REM_MISSING_ATT: WIN32_ERROR = WIN32_ERROR(8324u32);
9481 pub const ERROR_DS_CANT_REM_MISSING_ATT_VAL: WIN32_ERROR = WIN32_ERROR(8325u32);
9482 pub const ERROR_DS_ROOT_CANT_BE_SUBREF: WIN32_ERROR = WIN32_ERROR(8326u32);
9483 pub const ERROR_DS_NO_CHAINING: WIN32_ERROR = WIN32_ERROR(8327u32);
9484 pub const ERROR_DS_NO_CHAINED_EVAL: WIN32_ERROR = WIN32_ERROR(8328u32);
9485 pub const ERROR_DS_NO_PARENT_OBJECT: WIN32_ERROR = WIN32_ERROR(8329u32);
9486 pub const ERROR_DS_PARENT_IS_AN_ALIAS: WIN32_ERROR = WIN32_ERROR(8330u32);
9487 pub const ERROR_DS_CANT_MIX_MASTER_AND_REPS: WIN32_ERROR = WIN32_ERROR(8331u32);
9488 pub const ERROR_DS_CHILDREN_EXIST: WIN32_ERROR = WIN32_ERROR(8332u32);
9489 pub const ERROR_DS_OBJ_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(8333u32);
9490 pub const ERROR_DS_ALIASED_OBJ_MISSING: WIN32_ERROR = WIN32_ERROR(8334u32);
9491 pub const ERROR_DS_BAD_NAME_SYNTAX: WIN32_ERROR = WIN32_ERROR(8335u32);
9492 pub const ERROR_DS_ALIAS_POINTS_TO_ALIAS: WIN32_ERROR = WIN32_ERROR(8336u32);
9493 pub const ERROR_DS_CANT_DEREF_ALIAS: WIN32_ERROR = WIN32_ERROR(8337u32);
9494 pub const ERROR_DS_OUT_OF_SCOPE: WIN32_ERROR = WIN32_ERROR(8338u32);
9495 pub const ERROR_DS_OBJECT_BEING_REMOVED: WIN32_ERROR = WIN32_ERROR(8339u32);
9496 pub const ERROR_DS_CANT_DELETE_DSA_OBJ: WIN32_ERROR = WIN32_ERROR(8340u32);
9497 pub const ERROR_DS_GENERIC_ERROR: WIN32_ERROR = WIN32_ERROR(8341u32);
9498 pub const ERROR_DS_DSA_MUST_BE_INT_MASTER: WIN32_ERROR = WIN32_ERROR(8342u32);
9499 pub const ERROR_DS_CLASS_NOT_DSA: WIN32_ERROR = WIN32_ERROR(8343u32);
9500 pub const ERROR_DS_INSUFF_ACCESS_RIGHTS: WIN32_ERROR = WIN32_ERROR(8344u32);
9501 pub const ERROR_DS_ILLEGAL_SUPERIOR: WIN32_ERROR = WIN32_ERROR(8345u32);
9502 pub const ERROR_DS_ATTRIBUTE_OWNED_BY_SAM: WIN32_ERROR = WIN32_ERROR(8346u32);
9503 pub const ERROR_DS_NAME_TOO_MANY_PARTS: WIN32_ERROR = WIN32_ERROR(8347u32);
9504 pub const ERROR_DS_NAME_TOO_LONG: WIN32_ERROR = WIN32_ERROR(8348u32);
9505 pub const ERROR_DS_NAME_VALUE_TOO_LONG: WIN32_ERROR = WIN32_ERROR(8349u32);
9506 pub const ERROR_DS_NAME_UNPARSEABLE: WIN32_ERROR = WIN32_ERROR(8350u32);
9507 pub const ERROR_DS_NAME_TYPE_UNKNOWN: WIN32_ERROR = WIN32_ERROR(8351u32);
9508 pub const ERROR_DS_NOT_AN_OBJECT: WIN32_ERROR = WIN32_ERROR(8352u32);
9509 pub const ERROR_DS_SEC_DESC_TOO_SHORT: WIN32_ERROR = WIN32_ERROR(8353u32);
9510 pub const ERROR_DS_SEC_DESC_INVALID: WIN32_ERROR = WIN32_ERROR(8354u32);
9511 pub const ERROR_DS_NO_DELETED_NAME: WIN32_ERROR = WIN32_ERROR(8355u32);
9512 pub const ERROR_DS_SUBREF_MUST_HAVE_PARENT: WIN32_ERROR = WIN32_ERROR(8356u32);
9513 pub const ERROR_DS_NCNAME_MUST_BE_NC: WIN32_ERROR = WIN32_ERROR(8357u32);
9514 pub const ERROR_DS_CANT_ADD_SYSTEM_ONLY: WIN32_ERROR = WIN32_ERROR(8358u32);
9515 pub const ERROR_DS_CLASS_MUST_BE_CONCRETE: WIN32_ERROR = WIN32_ERROR(8359u32);
9516 pub const ERROR_DS_INVALID_DMD: WIN32_ERROR = WIN32_ERROR(8360u32);
9517 pub const ERROR_DS_OBJ_GUID_EXISTS: WIN32_ERROR = WIN32_ERROR(8361u32);
9518 pub const ERROR_DS_NOT_ON_BACKLINK: WIN32_ERROR = WIN32_ERROR(8362u32);
9519 pub const ERROR_DS_NO_CROSSREF_FOR_NC: WIN32_ERROR = WIN32_ERROR(8363u32);
9520 pub const ERROR_DS_SHUTTING_DOWN: WIN32_ERROR = WIN32_ERROR(8364u32);
9521 pub const ERROR_DS_UNKNOWN_OPERATION: WIN32_ERROR = WIN32_ERROR(8365u32);
9522 pub const ERROR_DS_INVALID_ROLE_OWNER: WIN32_ERROR = WIN32_ERROR(8366u32);
9523 pub const ERROR_DS_COULDNT_CONTACT_FSMO: WIN32_ERROR = WIN32_ERROR(8367u32);
9524 pub const ERROR_DS_CROSS_NC_DN_RENAME: WIN32_ERROR = WIN32_ERROR(8368u32);
9525 pub const ERROR_DS_CANT_MOD_SYSTEM_ONLY: WIN32_ERROR = WIN32_ERROR(8369u32);
9526 pub const ERROR_DS_REPLICATOR_ONLY: WIN32_ERROR = WIN32_ERROR(8370u32);
9527 pub const ERROR_DS_OBJ_CLASS_NOT_DEFINED: WIN32_ERROR = WIN32_ERROR(8371u32);
9528 pub const ERROR_DS_OBJ_CLASS_NOT_SUBCLASS: WIN32_ERROR = WIN32_ERROR(8372u32);
9529 pub const ERROR_DS_NAME_REFERENCE_INVALID: WIN32_ERROR = WIN32_ERROR(8373u32);
9530 pub const ERROR_DS_CROSS_REF_EXISTS: WIN32_ERROR = WIN32_ERROR(8374u32);
9531 pub const ERROR_DS_CANT_DEL_MASTER_CROSSREF: WIN32_ERROR = WIN32_ERROR(8375u32);
9532 pub const ERROR_DS_SUBTREE_NOTIFY_NOT_NC_HEAD: WIN32_ERROR = WIN32_ERROR(8376u32);
9533 pub const ERROR_DS_NOTIFY_FILTER_TOO_COMPLEX: WIN32_ERROR = WIN32_ERROR(8377u32);
9534 pub const ERROR_DS_DUP_RDN: WIN32_ERROR = WIN32_ERROR(8378u32);
9535 pub const ERROR_DS_DUP_OID: WIN32_ERROR = WIN32_ERROR(8379u32);
9536 pub const ERROR_DS_DUP_MAPI_ID: WIN32_ERROR = WIN32_ERROR(8380u32);
9537 pub const ERROR_DS_DUP_SCHEMA_ID_GUID: WIN32_ERROR = WIN32_ERROR(8381u32);
9538 pub const ERROR_DS_DUP_LDAP_DISPLAY_NAME: WIN32_ERROR = WIN32_ERROR(8382u32);
9539 pub const ERROR_DS_SEMANTIC_ATT_TEST: WIN32_ERROR = WIN32_ERROR(8383u32);
9540 pub const ERROR_DS_SYNTAX_MISMATCH: WIN32_ERROR = WIN32_ERROR(8384u32);
9541 pub const ERROR_DS_EXISTS_IN_MUST_HAVE: WIN32_ERROR = WIN32_ERROR(8385u32);
9542 pub const ERROR_DS_EXISTS_IN_MAY_HAVE: WIN32_ERROR = WIN32_ERROR(8386u32);
9543 pub const ERROR_DS_NONEXISTENT_MAY_HAVE: WIN32_ERROR = WIN32_ERROR(8387u32);
9544 pub const ERROR_DS_NONEXISTENT_MUST_HAVE: WIN32_ERROR = WIN32_ERROR(8388u32);
9545 pub const ERROR_DS_AUX_CLS_TEST_FAIL: WIN32_ERROR = WIN32_ERROR(8389u32);
9546 pub const ERROR_DS_NONEXISTENT_POSS_SUP: WIN32_ERROR = WIN32_ERROR(8390u32);
9547 pub const ERROR_DS_SUB_CLS_TEST_FAIL: WIN32_ERROR = WIN32_ERROR(8391u32);
9548 pub const ERROR_DS_BAD_RDN_ATT_ID_SYNTAX: WIN32_ERROR = WIN32_ERROR(8392u32);
9549 pub const ERROR_DS_EXISTS_IN_AUX_CLS: WIN32_ERROR = WIN32_ERROR(8393u32);
9550 pub const ERROR_DS_EXISTS_IN_SUB_CLS: WIN32_ERROR = WIN32_ERROR(8394u32);
9551 pub const ERROR_DS_EXISTS_IN_POSS_SUP: WIN32_ERROR = WIN32_ERROR(8395u32);
9552 pub const ERROR_DS_RECALCSCHEMA_FAILED: WIN32_ERROR = WIN32_ERROR(8396u32);
9553 pub const ERROR_DS_TREE_DELETE_NOT_FINISHED: WIN32_ERROR = WIN32_ERROR(8397u32);
9554 pub const ERROR_DS_CANT_DELETE: WIN32_ERROR = WIN32_ERROR(8398u32);
9555 pub const ERROR_DS_ATT_SCHEMA_REQ_ID: WIN32_ERROR = WIN32_ERROR(8399u32);
9556 pub const ERROR_DS_BAD_ATT_SCHEMA_SYNTAX: WIN32_ERROR = WIN32_ERROR(8400u32);
9557 pub const ERROR_DS_CANT_CACHE_ATT: WIN32_ERROR = WIN32_ERROR(8401u32);
9558 pub const ERROR_DS_CANT_CACHE_CLASS: WIN32_ERROR = WIN32_ERROR(8402u32);
9559 pub const ERROR_DS_CANT_REMOVE_ATT_CACHE: WIN32_ERROR = WIN32_ERROR(8403u32);
9560 pub const ERROR_DS_CANT_REMOVE_CLASS_CACHE: WIN32_ERROR = WIN32_ERROR(8404u32);
9561 pub const ERROR_DS_CANT_RETRIEVE_DN: WIN32_ERROR = WIN32_ERROR(8405u32);
9562 pub const ERROR_DS_MISSING_SUPREF: WIN32_ERROR = WIN32_ERROR(8406u32);
9563 pub const ERROR_DS_CANT_RETRIEVE_INSTANCE: WIN32_ERROR = WIN32_ERROR(8407u32);
9564 pub const ERROR_DS_CODE_INCONSISTENCY: WIN32_ERROR = WIN32_ERROR(8408u32);
9565 pub const ERROR_DS_DATABASE_ERROR: WIN32_ERROR = WIN32_ERROR(8409u32);
9566 pub const ERROR_DS_GOVERNSID_MISSING: WIN32_ERROR = WIN32_ERROR(8410u32);
9567 pub const ERROR_DS_MISSING_EXPECTED_ATT: WIN32_ERROR = WIN32_ERROR(8411u32);
9568 pub const ERROR_DS_NCNAME_MISSING_CR_REF: WIN32_ERROR = WIN32_ERROR(8412u32);
9569 pub const ERROR_DS_SECURITY_CHECKING_ERROR: WIN32_ERROR = WIN32_ERROR(8413u32);
9570 pub const ERROR_DS_SCHEMA_NOT_LOADED: WIN32_ERROR = WIN32_ERROR(8414u32);
9571 pub const ERROR_DS_SCHEMA_ALLOC_FAILED: WIN32_ERROR = WIN32_ERROR(8415u32);
9572 pub const ERROR_DS_ATT_SCHEMA_REQ_SYNTAX: WIN32_ERROR = WIN32_ERROR(8416u32);
9573 pub const ERROR_DS_GCVERIFY_ERROR: WIN32_ERROR = WIN32_ERROR(8417u32);
9574 pub const ERROR_DS_DRA_SCHEMA_MISMATCH: WIN32_ERROR = WIN32_ERROR(8418u32);
9575 pub const ERROR_DS_CANT_FIND_DSA_OBJ: WIN32_ERROR = WIN32_ERROR(8419u32);
9576 pub const ERROR_DS_CANT_FIND_EXPECTED_NC: WIN32_ERROR = WIN32_ERROR(8420u32);
9577 pub const ERROR_DS_CANT_FIND_NC_IN_CACHE: WIN32_ERROR = WIN32_ERROR(8421u32);
9578 pub const ERROR_DS_CANT_RETRIEVE_CHILD: WIN32_ERROR = WIN32_ERROR(8422u32);
9579 pub const ERROR_DS_SECURITY_ILLEGAL_MODIFY: WIN32_ERROR = WIN32_ERROR(8423u32);
9580 pub const ERROR_DS_CANT_REPLACE_HIDDEN_REC: WIN32_ERROR = WIN32_ERROR(8424u32);
9581 pub const ERROR_DS_BAD_HIERARCHY_FILE: WIN32_ERROR = WIN32_ERROR(8425u32);
9582 pub const ERROR_DS_BUILD_HIERARCHY_TABLE_FAILED: WIN32_ERROR = WIN32_ERROR(8426u32);
9583 pub const ERROR_DS_CONFIG_PARAM_MISSING: WIN32_ERROR = WIN32_ERROR(8427u32);
9584 pub const ERROR_DS_COUNTING_AB_INDICES_FAILED: WIN32_ERROR = WIN32_ERROR(8428u32);
9585 pub const ERROR_DS_HIERARCHY_TABLE_MALLOC_FAILED: WIN32_ERROR = WIN32_ERROR(8429u32);
9586 pub const ERROR_DS_INTERNAL_FAILURE: WIN32_ERROR = WIN32_ERROR(8430u32);
9587 pub const ERROR_DS_UNKNOWN_ERROR: WIN32_ERROR = WIN32_ERROR(8431u32);
9588 pub const ERROR_DS_ROOT_REQUIRES_CLASS_TOP: WIN32_ERROR = WIN32_ERROR(8432u32);
9589 pub const ERROR_DS_REFUSING_FSMO_ROLES: WIN32_ERROR = WIN32_ERROR(8433u32);
9590 pub const ERROR_DS_MISSING_FSMO_SETTINGS: WIN32_ERROR = WIN32_ERROR(8434u32);
9591 pub const ERROR_DS_UNABLE_TO_SURRENDER_ROLES: WIN32_ERROR = WIN32_ERROR(8435u32);
9592 pub const ERROR_DS_DRA_GENERIC: WIN32_ERROR = WIN32_ERROR(8436u32);
9593 pub const ERROR_DS_DRA_INVALID_PARAMETER: WIN32_ERROR = WIN32_ERROR(8437u32);
9594 pub const ERROR_DS_DRA_BUSY: WIN32_ERROR = WIN32_ERROR(8438u32);
9595 pub const ERROR_DS_DRA_BAD_DN: WIN32_ERROR = WIN32_ERROR(8439u32);
9596 pub const ERROR_DS_DRA_BAD_NC: WIN32_ERROR = WIN32_ERROR(8440u32);
9597 pub const ERROR_DS_DRA_DN_EXISTS: WIN32_ERROR = WIN32_ERROR(8441u32);
9598 pub const ERROR_DS_DRA_INTERNAL_ERROR: WIN32_ERROR = WIN32_ERROR(8442u32);
9599 pub const ERROR_DS_DRA_INCONSISTENT_DIT: WIN32_ERROR = WIN32_ERROR(8443u32);
9600 pub const ERROR_DS_DRA_CONNECTION_FAILED: WIN32_ERROR = WIN32_ERROR(8444u32);
9601 pub const ERROR_DS_DRA_BAD_INSTANCE_TYPE: WIN32_ERROR = WIN32_ERROR(8445u32);
9602 pub const ERROR_DS_DRA_OUT_OF_MEM: WIN32_ERROR = WIN32_ERROR(8446u32);
9603 pub const ERROR_DS_DRA_MAIL_PROBLEM: WIN32_ERROR = WIN32_ERROR(8447u32);
9604 pub const ERROR_DS_DRA_REF_ALREADY_EXISTS: WIN32_ERROR = WIN32_ERROR(8448u32);
9605 pub const ERROR_DS_DRA_REF_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(8449u32);
9606 pub const ERROR_DS_DRA_OBJ_IS_REP_SOURCE: WIN32_ERROR = WIN32_ERROR(8450u32);
9607 pub const ERROR_DS_DRA_DB_ERROR: WIN32_ERROR = WIN32_ERROR(8451u32);
9608 pub const ERROR_DS_DRA_NO_REPLICA: WIN32_ERROR = WIN32_ERROR(8452u32);
9609 pub const ERROR_DS_DRA_ACCESS_DENIED: WIN32_ERROR = WIN32_ERROR(8453u32);
9610 pub const ERROR_DS_DRA_NOT_SUPPORTED: WIN32_ERROR = WIN32_ERROR(8454u32);
9611 pub const ERROR_DS_DRA_RPC_CANCELLED: WIN32_ERROR = WIN32_ERROR(8455u32);
9612 pub const ERROR_DS_DRA_SOURCE_DISABLED: WIN32_ERROR = WIN32_ERROR(8456u32);
9613 pub const ERROR_DS_DRA_SINK_DISABLED: WIN32_ERROR = WIN32_ERROR(8457u32);
9614 pub const ERROR_DS_DRA_NAME_COLLISION: WIN32_ERROR = WIN32_ERROR(8458u32);
9615 pub const ERROR_DS_DRA_SOURCE_REINSTALLED: WIN32_ERROR = WIN32_ERROR(8459u32);
9616 pub const ERROR_DS_DRA_MISSING_PARENT: WIN32_ERROR = WIN32_ERROR(8460u32);
9617 pub const ERROR_DS_DRA_PREEMPTED: WIN32_ERROR = WIN32_ERROR(8461u32);
9618 pub const ERROR_DS_DRA_ABANDON_SYNC: WIN32_ERROR = WIN32_ERROR(8462u32);
9619 pub const ERROR_DS_DRA_SHUTDOWN: WIN32_ERROR = WIN32_ERROR(8463u32);
9620 pub const ERROR_DS_DRA_INCOMPATIBLE_PARTIAL_SET: WIN32_ERROR = WIN32_ERROR(8464u32);
9621 pub const ERROR_DS_DRA_SOURCE_IS_PARTIAL_REPLICA: WIN32_ERROR = WIN32_ERROR(8465u32);
9622 pub const ERROR_DS_DRA_EXTN_CONNECTION_FAILED: WIN32_ERROR = WIN32_ERROR(8466u32);
9623 pub const ERROR_DS_INSTALL_SCHEMA_MISMATCH: WIN32_ERROR = WIN32_ERROR(8467u32);
9624 pub const ERROR_DS_DUP_LINK_ID: WIN32_ERROR = WIN32_ERROR(8468u32);
9625 pub const ERROR_DS_NAME_ERROR_RESOLVING: WIN32_ERROR = WIN32_ERROR(8469u32);
9626 pub const ERROR_DS_NAME_ERROR_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(8470u32);
9627 pub const ERROR_DS_NAME_ERROR_NOT_UNIQUE: WIN32_ERROR = WIN32_ERROR(8471u32);
9628 pub const ERROR_DS_NAME_ERROR_NO_MAPPING: WIN32_ERROR = WIN32_ERROR(8472u32);
9629 pub const ERROR_DS_NAME_ERROR_DOMAIN_ONLY: WIN32_ERROR = WIN32_ERROR(8473u32);
9630 pub const ERROR_DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING: WIN32_ERROR = WIN32_ERROR(8474u32);
9631 pub const ERROR_DS_CONSTRUCTED_ATT_MOD: WIN32_ERROR = WIN32_ERROR(8475u32);
9632 pub const ERROR_DS_WRONG_OM_OBJ_CLASS: WIN32_ERROR = WIN32_ERROR(8476u32);
9633 pub const ERROR_DS_DRA_REPL_PENDING: WIN32_ERROR = WIN32_ERROR(8477u32);
9634 pub const ERROR_DS_DS_REQUIRED: WIN32_ERROR = WIN32_ERROR(8478u32);
9635 pub const ERROR_DS_INVALID_LDAP_DISPLAY_NAME: WIN32_ERROR = WIN32_ERROR(8479u32);
9636 pub const ERROR_DS_NON_BASE_SEARCH: WIN32_ERROR = WIN32_ERROR(8480u32);
9637 pub const ERROR_DS_CANT_RETRIEVE_ATTS: WIN32_ERROR = WIN32_ERROR(8481u32);
9638 pub const ERROR_DS_BACKLINK_WITHOUT_LINK: WIN32_ERROR = WIN32_ERROR(8482u32);
9639 pub const ERROR_DS_EPOCH_MISMATCH: WIN32_ERROR = WIN32_ERROR(8483u32);
9640 pub const ERROR_DS_SRC_NAME_MISMATCH: WIN32_ERROR = WIN32_ERROR(8484u32);
9641 pub const ERROR_DS_SRC_AND_DST_NC_IDENTICAL: WIN32_ERROR = WIN32_ERROR(8485u32);
9642 pub const ERROR_DS_DST_NC_MISMATCH: WIN32_ERROR = WIN32_ERROR(8486u32);
9643 pub const ERROR_DS_NOT_AUTHORITIVE_FOR_DST_NC: WIN32_ERROR = WIN32_ERROR(8487u32);
9644 pub const ERROR_DS_SRC_GUID_MISMATCH: WIN32_ERROR = WIN32_ERROR(8488u32);
9645 pub const ERROR_DS_CANT_MOVE_DELETED_OBJECT: WIN32_ERROR = WIN32_ERROR(8489u32);
9646 pub const ERROR_DS_PDC_OPERATION_IN_PROGRESS: WIN32_ERROR = WIN32_ERROR(8490u32);
9647 pub const ERROR_DS_CROSS_DOMAIN_CLEANUP_REQD: WIN32_ERROR = WIN32_ERROR(8491u32);
9648 pub const ERROR_DS_ILLEGAL_XDOM_MOVE_OPERATION: WIN32_ERROR = WIN32_ERROR(8492u32);
9649 pub const ERROR_DS_CANT_WITH_ACCT_GROUP_MEMBERSHPS: WIN32_ERROR = WIN32_ERROR(8493u32);
9650 pub const ERROR_DS_NC_MUST_HAVE_NC_PARENT: WIN32_ERROR = WIN32_ERROR(8494u32);
9651 pub const ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE: WIN32_ERROR = WIN32_ERROR(8495u32);
9652 pub const ERROR_DS_DST_DOMAIN_NOT_NATIVE: WIN32_ERROR = WIN32_ERROR(8496u32);
9653 pub const ERROR_DS_MISSING_INFRASTRUCTURE_CONTAINER: WIN32_ERROR = WIN32_ERROR(8497u32);
9654 pub const ERROR_DS_CANT_MOVE_ACCOUNT_GROUP: WIN32_ERROR = WIN32_ERROR(8498u32);
9655 pub const ERROR_DS_CANT_MOVE_RESOURCE_GROUP: WIN32_ERROR = WIN32_ERROR(8499u32);
9656 pub const ERROR_DS_INVALID_SEARCH_FLAG: WIN32_ERROR = WIN32_ERROR(8500u32);
9657 pub const ERROR_DS_NO_TREE_DELETE_ABOVE_NC: WIN32_ERROR = WIN32_ERROR(8501u32);
9658 pub const ERROR_DS_COULDNT_LOCK_TREE_FOR_DELETE: WIN32_ERROR = WIN32_ERROR(8502u32);
9659 pub const ERROR_DS_COULDNT_IDENTIFY_OBJECTS_FOR_TREE_DELETE: WIN32_ERROR = WIN32_ERROR(8503u32);
9660 pub const ERROR_DS_SAM_INIT_FAILURE: WIN32_ERROR = WIN32_ERROR(8504u32);
9661 pub const ERROR_DS_SENSITIVE_GROUP_VIOLATION: WIN32_ERROR = WIN32_ERROR(8505u32);
9662 pub const ERROR_DS_CANT_MOD_PRIMARYGROUPID: WIN32_ERROR = WIN32_ERROR(8506u32);
9663 pub const ERROR_DS_ILLEGAL_BASE_SCHEMA_MOD: WIN32_ERROR = WIN32_ERROR(8507u32);
9664 pub const ERROR_DS_NONSAFE_SCHEMA_CHANGE: WIN32_ERROR = WIN32_ERROR(8508u32);
9665 pub const ERROR_DS_SCHEMA_UPDATE_DISALLOWED: WIN32_ERROR = WIN32_ERROR(8509u32);
9666 pub const ERROR_DS_CANT_CREATE_UNDER_SCHEMA: WIN32_ERROR = WIN32_ERROR(8510u32);
9667 pub const ERROR_DS_INSTALL_NO_SRC_SCH_VERSION: WIN32_ERROR = WIN32_ERROR(8511u32);
9668 pub const ERROR_DS_INSTALL_NO_SCH_VERSION_IN_INIFILE: WIN32_ERROR = WIN32_ERROR(8512u32);
9669 pub const ERROR_DS_INVALID_GROUP_TYPE: WIN32_ERROR = WIN32_ERROR(8513u32);
9670 pub const ERROR_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN: WIN32_ERROR = WIN32_ERROR(8514u32);
9671 pub const ERROR_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN: WIN32_ERROR = WIN32_ERROR(8515u32);
9672 pub const ERROR_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER: WIN32_ERROR = WIN32_ERROR(8516u32);
9673 pub const ERROR_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER: WIN32_ERROR = WIN32_ERROR(8517u32);
9674 pub const ERROR_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER: WIN32_ERROR = WIN32_ERROR(8518u32);
9675 pub const ERROR_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER: WIN32_ERROR = WIN32_ERROR(8519u32);
9676 pub const ERROR_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER: WIN32_ERROR = WIN32_ERROR(8520u32);
9677 pub const ERROR_DS_HAVE_PRIMARY_MEMBERS: WIN32_ERROR = WIN32_ERROR(8521u32);
9678 pub const ERROR_DS_STRING_SD_CONVERSION_FAILED: WIN32_ERROR = WIN32_ERROR(8522u32);
9679 pub const ERROR_DS_NAMING_MASTER_GC: WIN32_ERROR = WIN32_ERROR(8523u32);
9680 pub const ERROR_DS_DNS_LOOKUP_FAILURE: WIN32_ERROR = WIN32_ERROR(8524u32);
9681 pub const ERROR_DS_COULDNT_UPDATE_SPNS: WIN32_ERROR = WIN32_ERROR(8525u32);
9682 pub const ERROR_DS_CANT_RETRIEVE_SD: WIN32_ERROR = WIN32_ERROR(8526u32);
9683 pub const ERROR_DS_KEY_NOT_UNIQUE: WIN32_ERROR = WIN32_ERROR(8527u32);
9684 pub const ERROR_DS_WRONG_LINKED_ATT_SYNTAX: WIN32_ERROR = WIN32_ERROR(8528u32);
9685 pub const ERROR_DS_SAM_NEED_BOOTKEY_PASSWORD: WIN32_ERROR = WIN32_ERROR(8529u32);
9686 pub const ERROR_DS_SAM_NEED_BOOTKEY_FLOPPY: WIN32_ERROR = WIN32_ERROR(8530u32);
9687 pub const ERROR_DS_CANT_START: WIN32_ERROR = WIN32_ERROR(8531u32);
9688 pub const ERROR_DS_INIT_FAILURE: WIN32_ERROR = WIN32_ERROR(8532u32);
9689 pub const ERROR_DS_NO_PKT_PRIVACY_ON_CONNECTION: WIN32_ERROR = WIN32_ERROR(8533u32);
9690 pub const ERROR_DS_SOURCE_DOMAIN_IN_FOREST: WIN32_ERROR = WIN32_ERROR(8534u32);
9691 pub const ERROR_DS_DESTINATION_DOMAIN_NOT_IN_FOREST: WIN32_ERROR = WIN32_ERROR(8535u32);
9692 pub const ERROR_DS_DESTINATION_AUDITING_NOT_ENABLED: WIN32_ERROR = WIN32_ERROR(8536u32);
9693 pub const ERROR_DS_CANT_FIND_DC_FOR_SRC_DOMAIN: WIN32_ERROR = WIN32_ERROR(8537u32);
9694 pub const ERROR_DS_SRC_OBJ_NOT_GROUP_OR_USER: WIN32_ERROR = WIN32_ERROR(8538u32);
9695 pub const ERROR_DS_SRC_SID_EXISTS_IN_FOREST: WIN32_ERROR = WIN32_ERROR(8539u32);
9696 pub const ERROR_DS_SRC_AND_DST_OBJECT_CLASS_MISMATCH: WIN32_ERROR = WIN32_ERROR(8540u32);
9697 pub const ERROR_SAM_INIT_FAILURE: WIN32_ERROR = WIN32_ERROR(8541u32);
9698 pub const ERROR_DS_DRA_SCHEMA_INFO_SHIP: WIN32_ERROR = WIN32_ERROR(8542u32);
9699 pub const ERROR_DS_DRA_SCHEMA_CONFLICT: WIN32_ERROR = WIN32_ERROR(8543u32);
9700 pub const ERROR_DS_DRA_EARLIER_SCHEMA_CONFLICT: WIN32_ERROR = WIN32_ERROR(8544u32);
9701 pub const ERROR_DS_DRA_OBJ_NC_MISMATCH: WIN32_ERROR = WIN32_ERROR(8545u32);
9702 pub const ERROR_DS_NC_STILL_HAS_DSAS: WIN32_ERROR = WIN32_ERROR(8546u32);
9703 pub const ERROR_DS_GC_REQUIRED: WIN32_ERROR = WIN32_ERROR(8547u32);
9704 pub const ERROR_DS_LOCAL_MEMBER_OF_LOCAL_ONLY: WIN32_ERROR = WIN32_ERROR(8548u32);
9705 pub const ERROR_DS_NO_FPO_IN_UNIVERSAL_GROUPS: WIN32_ERROR = WIN32_ERROR(8549u32);
9706 pub const ERROR_DS_CANT_ADD_TO_GC: WIN32_ERROR = WIN32_ERROR(8550u32);
9707 pub const ERROR_DS_NO_CHECKPOINT_WITH_PDC: WIN32_ERROR = WIN32_ERROR(8551u32);
9708 pub const ERROR_DS_SOURCE_AUDITING_NOT_ENABLED: WIN32_ERROR = WIN32_ERROR(8552u32);
9709 pub const ERROR_DS_CANT_CREATE_IN_NONDOMAIN_NC: WIN32_ERROR = WIN32_ERROR(8553u32);
9710 pub const ERROR_DS_INVALID_NAME_FOR_SPN: WIN32_ERROR = WIN32_ERROR(8554u32);
9711 pub const ERROR_DS_FILTER_USES_CONTRUCTED_ATTRS: WIN32_ERROR = WIN32_ERROR(8555u32);
9712 pub const ERROR_DS_UNICODEPWD_NOT_IN_QUOTES: WIN32_ERROR = WIN32_ERROR(8556u32);
9713 pub const ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED: WIN32_ERROR = WIN32_ERROR(8557u32);
9714 pub const ERROR_DS_MUST_BE_RUN_ON_DST_DC: WIN32_ERROR = WIN32_ERROR(8558u32);
9715 pub const ERROR_DS_SRC_DC_MUST_BE_SP4_OR_GREATER: WIN32_ERROR = WIN32_ERROR(8559u32);
9716 pub const ERROR_DS_CANT_TREE_DELETE_CRITICAL_OBJ: WIN32_ERROR = WIN32_ERROR(8560u32);
9717 pub const ERROR_DS_INIT_FAILURE_CONSOLE: WIN32_ERROR = WIN32_ERROR(8561u32);
9718 pub const ERROR_DS_SAM_INIT_FAILURE_CONSOLE: WIN32_ERROR = WIN32_ERROR(8562u32);
9719 pub const ERROR_DS_FOREST_VERSION_TOO_HIGH: WIN32_ERROR = WIN32_ERROR(8563u32);
9720 pub const ERROR_DS_DOMAIN_VERSION_TOO_HIGH: WIN32_ERROR = WIN32_ERROR(8564u32);
9721 pub const ERROR_DS_FOREST_VERSION_TOO_LOW: WIN32_ERROR = WIN32_ERROR(8565u32);
9722 pub const ERROR_DS_DOMAIN_VERSION_TOO_LOW: WIN32_ERROR = WIN32_ERROR(8566u32);
9723 pub const ERROR_DS_INCOMPATIBLE_VERSION: WIN32_ERROR = WIN32_ERROR(8567u32);
9724 pub const ERROR_DS_LOW_DSA_VERSION: WIN32_ERROR = WIN32_ERROR(8568u32);
9725 pub const ERROR_DS_NO_BEHAVIOR_VERSION_IN_MIXEDDOMAIN: WIN32_ERROR = WIN32_ERROR(8569u32);
9726 pub const ERROR_DS_NOT_SUPPORTED_SORT_ORDER: WIN32_ERROR = WIN32_ERROR(8570u32);
9727 pub const ERROR_DS_NAME_NOT_UNIQUE: WIN32_ERROR = WIN32_ERROR(8571u32);
9728 pub const ERROR_DS_MACHINE_ACCOUNT_CREATED_PRENT4: WIN32_ERROR = WIN32_ERROR(8572u32);
9729 pub const ERROR_DS_OUT_OF_VERSION_STORE: WIN32_ERROR = WIN32_ERROR(8573u32);
9730 pub const ERROR_DS_INCOMPATIBLE_CONTROLS_USED: WIN32_ERROR = WIN32_ERROR(8574u32);
9731 pub const ERROR_DS_NO_REF_DOMAIN: WIN32_ERROR = WIN32_ERROR(8575u32);
9732 pub const ERROR_DS_RESERVED_LINK_ID: WIN32_ERROR = WIN32_ERROR(8576u32);
9733 pub const ERROR_DS_LINK_ID_NOT_AVAILABLE: WIN32_ERROR = WIN32_ERROR(8577u32);
9734 pub const ERROR_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER: WIN32_ERROR = WIN32_ERROR(8578u32);
9735 pub const ERROR_DS_MODIFYDN_DISALLOWED_BY_INSTANCE_TYPE: WIN32_ERROR = WIN32_ERROR(8579u32);
9736 pub const ERROR_DS_NO_OBJECT_MOVE_IN_SCHEMA_NC: WIN32_ERROR = WIN32_ERROR(8580u32);
9737 pub const ERROR_DS_MODIFYDN_DISALLOWED_BY_FLAG: WIN32_ERROR = WIN32_ERROR(8581u32);
9738 pub const ERROR_DS_MODIFYDN_WRONG_GRANDPARENT: WIN32_ERROR = WIN32_ERROR(8582u32);
9739 pub const ERROR_DS_NAME_ERROR_TRUST_REFERRAL: WIN32_ERROR = WIN32_ERROR(8583u32);
9740 pub const ERROR_NOT_SUPPORTED_ON_STANDARD_SERVER: WIN32_ERROR = WIN32_ERROR(8584u32);
9741 pub const ERROR_DS_CANT_ACCESS_REMOTE_PART_OF_AD: WIN32_ERROR = WIN32_ERROR(8585u32);
9742 pub const ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE_V2: WIN32_ERROR = WIN32_ERROR(8586u32);
9743 pub const ERROR_DS_THREAD_LIMIT_EXCEEDED: WIN32_ERROR = WIN32_ERROR(8587u32);
9744 pub const ERROR_DS_NOT_CLOSEST: WIN32_ERROR = WIN32_ERROR(8588u32);
9745 pub const ERROR_DS_CANT_DERIVE_SPN_WITHOUT_SERVER_REF: WIN32_ERROR = WIN32_ERROR(8589u32);
9746 pub const ERROR_DS_SINGLE_USER_MODE_FAILED: WIN32_ERROR = WIN32_ERROR(8590u32);
9747 pub const ERROR_DS_NTDSCRIPT_SYNTAX_ERROR: WIN32_ERROR = WIN32_ERROR(8591u32);
9748 pub const ERROR_DS_NTDSCRIPT_PROCESS_ERROR: WIN32_ERROR = WIN32_ERROR(8592u32);
9749 pub const ERROR_DS_DIFFERENT_REPL_EPOCHS: WIN32_ERROR = WIN32_ERROR(8593u32);
9750 pub const ERROR_DS_DRS_EXTENSIONS_CHANGED: WIN32_ERROR = WIN32_ERROR(8594u32);
9751 pub const ERROR_DS_REPLICA_SET_CHANGE_NOT_ALLOWED_ON_DISABLED_CR: WIN32_ERROR = WIN32_ERROR(8595u32);
9752 pub const ERROR_DS_NO_MSDS_INTID: WIN32_ERROR = WIN32_ERROR(8596u32);
9753 pub const ERROR_DS_DUP_MSDS_INTID: WIN32_ERROR = WIN32_ERROR(8597u32);
9754 pub const ERROR_DS_EXISTS_IN_RDNATTID: WIN32_ERROR = WIN32_ERROR(8598u32);
9755 pub const ERROR_DS_AUTHORIZATION_FAILED: WIN32_ERROR = WIN32_ERROR(8599u32);
9756 pub const ERROR_DS_INVALID_SCRIPT: WIN32_ERROR = WIN32_ERROR(8600u32);
9757 pub const ERROR_DS_REMOTE_CROSSREF_OP_FAILED: WIN32_ERROR = WIN32_ERROR(8601u32);
9758 pub const ERROR_DS_CROSS_REF_BUSY: WIN32_ERROR = WIN32_ERROR(8602u32);
9759 pub const ERROR_DS_CANT_DERIVE_SPN_FOR_DELETED_DOMAIN: WIN32_ERROR = WIN32_ERROR(8603u32);
9760 pub const ERROR_DS_CANT_DEMOTE_WITH_WRITEABLE_NC: WIN32_ERROR = WIN32_ERROR(8604u32);
9761 pub const ERROR_DS_DUPLICATE_ID_FOUND: WIN32_ERROR = WIN32_ERROR(8605u32);
9762 pub const ERROR_DS_INSUFFICIENT_ATTR_TO_CREATE_OBJECT: WIN32_ERROR = WIN32_ERROR(8606u32);
9763 pub const ERROR_DS_GROUP_CONVERSION_ERROR: WIN32_ERROR = WIN32_ERROR(8607u32);
9764 pub const ERROR_DS_CANT_MOVE_APP_BASIC_GROUP: WIN32_ERROR = WIN32_ERROR(8608u32);
9765 pub const ERROR_DS_CANT_MOVE_APP_QUERY_GROUP: WIN32_ERROR = WIN32_ERROR(8609u32);
9766 pub const ERROR_DS_ROLE_NOT_VERIFIED: WIN32_ERROR = WIN32_ERROR(8610u32);
9767 pub const ERROR_DS_WKO_CONTAINER_CANNOT_BE_SPECIAL: WIN32_ERROR = WIN32_ERROR(8611u32);
9768 pub const ERROR_DS_DOMAIN_RENAME_IN_PROGRESS: WIN32_ERROR = WIN32_ERROR(8612u32);
9769 pub const ERROR_DS_EXISTING_AD_CHILD_NC: WIN32_ERROR = WIN32_ERROR(8613u32);
9770 pub const ERROR_DS_REPL_LIFETIME_EXCEEDED: WIN32_ERROR = WIN32_ERROR(8614u32);
9771 pub const ERROR_DS_DISALLOWED_IN_SYSTEM_CONTAINER: WIN32_ERROR = WIN32_ERROR(8615u32);
9772 pub const ERROR_DS_LDAP_SEND_QUEUE_FULL: WIN32_ERROR = WIN32_ERROR(8616u32);
9773 pub const ERROR_DS_DRA_OUT_SCHEDULE_WINDOW: WIN32_ERROR = WIN32_ERROR(8617u32);
9774 pub const ERROR_DS_POLICY_NOT_KNOWN: WIN32_ERROR = WIN32_ERROR(8618u32);
9775 pub const ERROR_NO_SITE_SETTINGS_OBJECT: WIN32_ERROR = WIN32_ERROR(8619u32);
9776 pub const ERROR_NO_SECRETS: WIN32_ERROR = WIN32_ERROR(8620u32);
9777 pub const ERROR_NO_WRITABLE_DC_FOUND: WIN32_ERROR = WIN32_ERROR(8621u32);
9778 pub const ERROR_DS_NO_SERVER_OBJECT: WIN32_ERROR = WIN32_ERROR(8622u32);
9779 pub const ERROR_DS_NO_NTDSA_OBJECT: WIN32_ERROR = WIN32_ERROR(8623u32);
9780 pub const ERROR_DS_NON_ASQ_SEARCH: WIN32_ERROR = WIN32_ERROR(8624u32);
9781 pub const ERROR_DS_AUDIT_FAILURE: WIN32_ERROR = WIN32_ERROR(8625u32);
9782 pub const ERROR_DS_INVALID_SEARCH_FLAG_SUBTREE: WIN32_ERROR = WIN32_ERROR(8626u32);
9783 pub const ERROR_DS_INVALID_SEARCH_FLAG_TUPLE: WIN32_ERROR = WIN32_ERROR(8627u32);
9784 pub const ERROR_DS_HIERARCHY_TABLE_TOO_DEEP: WIN32_ERROR = WIN32_ERROR(8628u32);
9785 pub const ERROR_DS_DRA_CORRUPT_UTD_VECTOR: WIN32_ERROR = WIN32_ERROR(8629u32);
9786 pub const ERROR_DS_DRA_SECRETS_DENIED: WIN32_ERROR = WIN32_ERROR(8630u32);
9787 pub const ERROR_DS_RESERVED_MAPI_ID: WIN32_ERROR = WIN32_ERROR(8631u32);
9788 pub const ERROR_DS_MAPI_ID_NOT_AVAILABLE: WIN32_ERROR = WIN32_ERROR(8632u32);
9789 pub const ERROR_DS_DRA_MISSING_KRBTGT_SECRET: WIN32_ERROR = WIN32_ERROR(8633u32);
9790 pub const ERROR_DS_DOMAIN_NAME_EXISTS_IN_FOREST: WIN32_ERROR = WIN32_ERROR(8634u32);
9791 pub const ERROR_DS_FLAT_NAME_EXISTS_IN_FOREST: WIN32_ERROR = WIN32_ERROR(8635u32);
9792 pub const ERROR_INVALID_USER_PRINCIPAL_NAME: WIN32_ERROR = WIN32_ERROR(8636u32);
9793 pub const ERROR_DS_OID_MAPPED_GROUP_CANT_HAVE_MEMBERS: WIN32_ERROR = WIN32_ERROR(8637u32);
9794 pub const ERROR_DS_OID_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(8638u32);
9795 pub const ERROR_DS_DRA_RECYCLED_TARGET: WIN32_ERROR = WIN32_ERROR(8639u32);
9796 pub const ERROR_DS_DISALLOWED_NC_REDIRECT: WIN32_ERROR = WIN32_ERROR(8640u32);
9797 pub const ERROR_DS_HIGH_ADLDS_FFL: WIN32_ERROR = WIN32_ERROR(8641u32);
9798 pub const ERROR_DS_HIGH_DSA_VERSION: WIN32_ERROR = WIN32_ERROR(8642u32);
9799 pub const ERROR_DS_LOW_ADLDS_FFL: WIN32_ERROR = WIN32_ERROR(8643u32);
9800 pub const ERROR_DOMAIN_SID_SAME_AS_LOCAL_WORKSTATION: WIN32_ERROR = WIN32_ERROR(8644u32);
9801 pub const ERROR_DS_UNDELETE_SAM_VALIDATION_FAILED: WIN32_ERROR = WIN32_ERROR(8645u32);
9802 pub const ERROR_INCORRECT_ACCOUNT_TYPE: WIN32_ERROR = WIN32_ERROR(8646u32);
9803 pub const ERROR_DS_SPN_VALUE_NOT_UNIQUE_IN_FOREST: WIN32_ERROR = WIN32_ERROR(8647u32);
9804 pub const ERROR_DS_UPN_VALUE_NOT_UNIQUE_IN_FOREST: WIN32_ERROR = WIN32_ERROR(8648u32);
9805 pub const ERROR_DS_MISSING_FOREST_TRUST: WIN32_ERROR = WIN32_ERROR(8649u32);
9806 pub const ERROR_DS_VALUE_KEY_NOT_UNIQUE: WIN32_ERROR = WIN32_ERROR(8650u32);
9807 pub const ERROR_WEAK_WHFBKEY_BLOCKED: WIN32_ERROR = WIN32_ERROR(8651u32);
9808 pub const DNS_ERROR_RESPONSE_CODES_BASE: WIN32_ERROR = WIN32_ERROR(9000u32);
9809 pub const DNS_ERROR_RCODE_NO_ERROR: WIN32_ERROR = WIN32_ERROR(0u32);
9810 pub const DNS_ERROR_MASK: WIN32_ERROR = WIN32_ERROR(9000u32);
9811 pub const DNS_ERROR_RCODE_FORMAT_ERROR: WIN32_ERROR = WIN32_ERROR(9001u32);
9812 pub const DNS_ERROR_RCODE_SERVER_FAILURE: WIN32_ERROR = WIN32_ERROR(9002u32);
9813 pub const DNS_ERROR_RCODE_NAME_ERROR: WIN32_ERROR = WIN32_ERROR(9003u32);
9814 pub const DNS_ERROR_RCODE_NOT_IMPLEMENTED: WIN32_ERROR = WIN32_ERROR(9004u32);
9815 pub const DNS_ERROR_RCODE_REFUSED: WIN32_ERROR = WIN32_ERROR(9005u32);
9816 pub const DNS_ERROR_RCODE_YXDOMAIN: WIN32_ERROR = WIN32_ERROR(9006u32);
9817 pub const DNS_ERROR_RCODE_YXRRSET: WIN32_ERROR = WIN32_ERROR(9007u32);
9818 pub const DNS_ERROR_RCODE_NXRRSET: WIN32_ERROR = WIN32_ERROR(9008u32);
9819 pub const DNS_ERROR_RCODE_NOTAUTH: WIN32_ERROR = WIN32_ERROR(9009u32);
9820 pub const DNS_ERROR_RCODE_NOTZONE: WIN32_ERROR = WIN32_ERROR(9010u32);
9821 pub const DNS_ERROR_RCODE_BADSIG: WIN32_ERROR = WIN32_ERROR(9016u32);
9822 pub const DNS_ERROR_RCODE_BADKEY: WIN32_ERROR = WIN32_ERROR(9017u32);
9823 pub const DNS_ERROR_RCODE_BADTIME: WIN32_ERROR = WIN32_ERROR(9018u32);
9824 pub const DNS_ERROR_RCODE_LAST: WIN32_ERROR = WIN32_ERROR(9018u32);
9825 pub const DNS_ERROR_DNSSEC_BASE: WIN32_ERROR = WIN32_ERROR(9100u32);
9826 pub const DNS_ERROR_KEYMASTER_REQUIRED: WIN32_ERROR = WIN32_ERROR(9101u32);
9827 pub const DNS_ERROR_NOT_ALLOWED_ON_SIGNED_ZONE: WIN32_ERROR = WIN32_ERROR(9102u32);
9828 pub const DNS_ERROR_NSEC3_INCOMPATIBLE_WITH_RSA_SHA1: WIN32_ERROR = WIN32_ERROR(9103u32);
9829 pub const DNS_ERROR_NOT_ENOUGH_SIGNING_KEY_DESCRIPTORS: WIN32_ERROR = WIN32_ERROR(9104u32);
9830 pub const DNS_ERROR_UNSUPPORTED_ALGORITHM: WIN32_ERROR = WIN32_ERROR(9105u32);
9831 pub const DNS_ERROR_INVALID_KEY_SIZE: WIN32_ERROR = WIN32_ERROR(9106u32);
9832 pub const DNS_ERROR_SIGNING_KEY_NOT_ACCESSIBLE: WIN32_ERROR = WIN32_ERROR(9107u32);
9833 pub const DNS_ERROR_KSP_DOES_NOT_SUPPORT_PROTECTION: WIN32_ERROR = WIN32_ERROR(9108u32);
9834 pub const DNS_ERROR_UNEXPECTED_DATA_PROTECTION_ERROR: WIN32_ERROR = WIN32_ERROR(9109u32);
9835 pub const DNS_ERROR_UNEXPECTED_CNG_ERROR: WIN32_ERROR = WIN32_ERROR(9110u32);
9836 pub const DNS_ERROR_UNKNOWN_SIGNING_PARAMETER_VERSION: WIN32_ERROR = WIN32_ERROR(9111u32);
9837 pub const DNS_ERROR_KSP_NOT_ACCESSIBLE: WIN32_ERROR = WIN32_ERROR(9112u32);
9838 pub const DNS_ERROR_TOO_MANY_SKDS: WIN32_ERROR = WIN32_ERROR(9113u32);
9839 pub const DNS_ERROR_INVALID_ROLLOVER_PERIOD: WIN32_ERROR = WIN32_ERROR(9114u32);
9840 pub const DNS_ERROR_INVALID_INITIAL_ROLLOVER_OFFSET: WIN32_ERROR = WIN32_ERROR(9115u32);
9841 pub const DNS_ERROR_ROLLOVER_IN_PROGRESS: WIN32_ERROR = WIN32_ERROR(9116u32);
9842 pub const DNS_ERROR_STANDBY_KEY_NOT_PRESENT: WIN32_ERROR = WIN32_ERROR(9117u32);
9843 pub const DNS_ERROR_NOT_ALLOWED_ON_ZSK: WIN32_ERROR = WIN32_ERROR(9118u32);
9844 pub const DNS_ERROR_NOT_ALLOWED_ON_ACTIVE_SKD: WIN32_ERROR = WIN32_ERROR(9119u32);
9845 pub const DNS_ERROR_ROLLOVER_ALREADY_QUEUED: WIN32_ERROR = WIN32_ERROR(9120u32);
9846 pub const DNS_ERROR_NOT_ALLOWED_ON_UNSIGNED_ZONE: WIN32_ERROR = WIN32_ERROR(9121u32);
9847 pub const DNS_ERROR_BAD_KEYMASTER: WIN32_ERROR = WIN32_ERROR(9122u32);
9848 pub const DNS_ERROR_INVALID_SIGNATURE_VALIDITY_PERIOD: WIN32_ERROR = WIN32_ERROR(9123u32);
9849 pub const DNS_ERROR_INVALID_NSEC3_ITERATION_COUNT: WIN32_ERROR = WIN32_ERROR(9124u32);
9850 pub const DNS_ERROR_DNSSEC_IS_DISABLED: WIN32_ERROR = WIN32_ERROR(9125u32);
9851 pub const DNS_ERROR_INVALID_XML: WIN32_ERROR = WIN32_ERROR(9126u32);
9852 pub const DNS_ERROR_NO_VALID_TRUST_ANCHORS: WIN32_ERROR = WIN32_ERROR(9127u32);
9853 pub const DNS_ERROR_ROLLOVER_NOT_POKEABLE: WIN32_ERROR = WIN32_ERROR(9128u32);
9854 pub const DNS_ERROR_NSEC3_NAME_COLLISION: WIN32_ERROR = WIN32_ERROR(9129u32);
9855 pub const DNS_ERROR_NSEC_INCOMPATIBLE_WITH_NSEC3_RSA_SHA1: WIN32_ERROR = WIN32_ERROR(9130u32);
9856 pub const DNS_ERROR_PACKET_FMT_BASE: WIN32_ERROR = WIN32_ERROR(9500u32);
9857 pub const DNS_ERROR_BAD_PACKET: WIN32_ERROR = WIN32_ERROR(9502u32);
9858 pub const DNS_ERROR_NO_PACKET: WIN32_ERROR = WIN32_ERROR(9503u32);
9859 pub const DNS_ERROR_RCODE: WIN32_ERROR = WIN32_ERROR(9504u32);
9860 pub const DNS_ERROR_UNSECURE_PACKET: WIN32_ERROR = WIN32_ERROR(9505u32);
9861 pub const DNS_ERROR_NO_MEMORY: WIN32_ERROR = WIN32_ERROR(14u32);
9862 pub const DNS_ERROR_INVALID_NAME: WIN32_ERROR = WIN32_ERROR(123u32);
9863 pub const DNS_ERROR_INVALID_DATA: WIN32_ERROR = WIN32_ERROR(13u32);
9864 pub const DNS_ERROR_GENERAL_API_BASE: WIN32_ERROR = WIN32_ERROR(9550u32);
9865 pub const DNS_ERROR_INVALID_TYPE: WIN32_ERROR = WIN32_ERROR(9551u32);
9866 pub const DNS_ERROR_INVALID_IP_ADDRESS: WIN32_ERROR = WIN32_ERROR(9552u32);
9867 pub const DNS_ERROR_INVALID_PROPERTY: WIN32_ERROR = WIN32_ERROR(9553u32);
9868 pub const DNS_ERROR_TRY_AGAIN_LATER: WIN32_ERROR = WIN32_ERROR(9554u32);
9869 pub const DNS_ERROR_NOT_UNIQUE: WIN32_ERROR = WIN32_ERROR(9555u32);
9870 pub const DNS_ERROR_NON_RFC_NAME: WIN32_ERROR = WIN32_ERROR(9556u32);
9871 pub const DNS_ERROR_INVALID_NAME_CHAR: WIN32_ERROR = WIN32_ERROR(9560u32);
9872 pub const DNS_ERROR_NUMERIC_NAME: WIN32_ERROR = WIN32_ERROR(9561u32);
9873 pub const DNS_ERROR_NOT_ALLOWED_ON_ROOT_SERVER: WIN32_ERROR = WIN32_ERROR(9562u32);
9874 pub const DNS_ERROR_NOT_ALLOWED_UNDER_DELEGATION: WIN32_ERROR = WIN32_ERROR(9563u32);
9875 pub const DNS_ERROR_CANNOT_FIND_ROOT_HINTS: WIN32_ERROR = WIN32_ERROR(9564u32);
9876 pub const DNS_ERROR_INCONSISTENT_ROOT_HINTS: WIN32_ERROR = WIN32_ERROR(9565u32);
9877 pub const DNS_ERROR_DWORD_VALUE_TOO_SMALL: WIN32_ERROR = WIN32_ERROR(9566u32);
9878 pub const DNS_ERROR_DWORD_VALUE_TOO_LARGE: WIN32_ERROR = WIN32_ERROR(9567u32);
9879 pub const DNS_ERROR_BACKGROUND_LOADING: WIN32_ERROR = WIN32_ERROR(9568u32);
9880 pub const DNS_ERROR_NOT_ALLOWED_ON_RODC: WIN32_ERROR = WIN32_ERROR(9569u32);
9881 pub const DNS_ERROR_NOT_ALLOWED_UNDER_DNAME: WIN32_ERROR = WIN32_ERROR(9570u32);
9882 pub const DNS_ERROR_DELEGATION_REQUIRED: WIN32_ERROR = WIN32_ERROR(9571u32);
9883 pub const DNS_ERROR_INVALID_POLICY_TABLE: WIN32_ERROR = WIN32_ERROR(9572u32);
9884 pub const DNS_ERROR_ADDRESS_REQUIRED: WIN32_ERROR = WIN32_ERROR(9573u32);
9885 pub const DNS_ERROR_ZONE_BASE: WIN32_ERROR = WIN32_ERROR(9600u32);
9886 pub const DNS_ERROR_ZONE_DOES_NOT_EXIST: WIN32_ERROR = WIN32_ERROR(9601u32);
9887 pub const DNS_ERROR_NO_ZONE_INFO: WIN32_ERROR = WIN32_ERROR(9602u32);
9888 pub const DNS_ERROR_INVALID_ZONE_OPERATION: WIN32_ERROR = WIN32_ERROR(9603u32);
9889 pub const DNS_ERROR_ZONE_CONFIGURATION_ERROR: WIN32_ERROR = WIN32_ERROR(9604u32);
9890 pub const DNS_ERROR_ZONE_HAS_NO_SOA_RECORD: WIN32_ERROR = WIN32_ERROR(9605u32);
9891 pub const DNS_ERROR_ZONE_HAS_NO_NS_RECORDS: WIN32_ERROR = WIN32_ERROR(9606u32);
9892 pub const DNS_ERROR_ZONE_LOCKED: WIN32_ERROR = WIN32_ERROR(9607u32);
9893 pub const DNS_ERROR_ZONE_CREATION_FAILED: WIN32_ERROR = WIN32_ERROR(9608u32);
9894 pub const DNS_ERROR_ZONE_ALREADY_EXISTS: WIN32_ERROR = WIN32_ERROR(9609u32);
9895 pub const DNS_ERROR_AUTOZONE_ALREADY_EXISTS: WIN32_ERROR = WIN32_ERROR(9610u32);
9896 pub const DNS_ERROR_INVALID_ZONE_TYPE: WIN32_ERROR = WIN32_ERROR(9611u32);
9897 pub const DNS_ERROR_SECONDARY_REQUIRES_MASTER_IP: WIN32_ERROR = WIN32_ERROR(9612u32);
9898 pub const DNS_ERROR_ZONE_NOT_SECONDARY: WIN32_ERROR = WIN32_ERROR(9613u32);
9899 pub const DNS_ERROR_NEED_SECONDARY_ADDRESSES: WIN32_ERROR = WIN32_ERROR(9614u32);
9900 pub const DNS_ERROR_WINS_INIT_FAILED: WIN32_ERROR = WIN32_ERROR(9615u32);
9901 pub const DNS_ERROR_NEED_WINS_SERVERS: WIN32_ERROR = WIN32_ERROR(9616u32);
9902 pub const DNS_ERROR_NBSTAT_INIT_FAILED: WIN32_ERROR = WIN32_ERROR(9617u32);
9903 pub const DNS_ERROR_SOA_DELETE_INVALID: WIN32_ERROR = WIN32_ERROR(9618u32);
9904 pub const DNS_ERROR_FORWARDER_ALREADY_EXISTS: WIN32_ERROR = WIN32_ERROR(9619u32);
9905 pub const DNS_ERROR_ZONE_REQUIRES_MASTER_IP: WIN32_ERROR = WIN32_ERROR(9620u32);
9906 pub const DNS_ERROR_ZONE_IS_SHUTDOWN: WIN32_ERROR = WIN32_ERROR(9621u32);
9907 pub const DNS_ERROR_ZONE_LOCKED_FOR_SIGNING: WIN32_ERROR = WIN32_ERROR(9622u32);
9908 pub const DNS_ERROR_DATAFILE_BASE: WIN32_ERROR = WIN32_ERROR(9650u32);
9909 pub const DNS_ERROR_PRIMARY_REQUIRES_DATAFILE: WIN32_ERROR = WIN32_ERROR(9651u32);
9910 pub const DNS_ERROR_INVALID_DATAFILE_NAME: WIN32_ERROR = WIN32_ERROR(9652u32);
9911 pub const DNS_ERROR_DATAFILE_OPEN_FAILURE: WIN32_ERROR = WIN32_ERROR(9653u32);
9912 pub const DNS_ERROR_FILE_WRITEBACK_FAILED: WIN32_ERROR = WIN32_ERROR(9654u32);
9913 pub const DNS_ERROR_DATAFILE_PARSING: WIN32_ERROR = WIN32_ERROR(9655u32);
9914 pub const DNS_ERROR_DATABASE_BASE: WIN32_ERROR = WIN32_ERROR(9700u32);
9915 pub const DNS_ERROR_RECORD_DOES_NOT_EXIST: WIN32_ERROR = WIN32_ERROR(9701u32);
9916 pub const DNS_ERROR_RECORD_FORMAT: WIN32_ERROR = WIN32_ERROR(9702u32);
9917 pub const DNS_ERROR_NODE_CREATION_FAILED: WIN32_ERROR = WIN32_ERROR(9703u32);
9918 pub const DNS_ERROR_UNKNOWN_RECORD_TYPE: WIN32_ERROR = WIN32_ERROR(9704u32);
9919 pub const DNS_ERROR_RECORD_TIMED_OUT: WIN32_ERROR = WIN32_ERROR(9705u32);
9920 pub const DNS_ERROR_NAME_NOT_IN_ZONE: WIN32_ERROR = WIN32_ERROR(9706u32);
9921 pub const DNS_ERROR_CNAME_LOOP: WIN32_ERROR = WIN32_ERROR(9707u32);
9922 pub const DNS_ERROR_NODE_IS_CNAME: WIN32_ERROR = WIN32_ERROR(9708u32);
9923 pub const DNS_ERROR_CNAME_COLLISION: WIN32_ERROR = WIN32_ERROR(9709u32);
9924 pub const DNS_ERROR_RECORD_ONLY_AT_ZONE_ROOT: WIN32_ERROR = WIN32_ERROR(9710u32);
9925 pub const DNS_ERROR_RECORD_ALREADY_EXISTS: WIN32_ERROR = WIN32_ERROR(9711u32);
9926 pub const DNS_ERROR_SECONDARY_DATA: WIN32_ERROR = WIN32_ERROR(9712u32);
9927 pub const DNS_ERROR_NO_CREATE_CACHE_DATA: WIN32_ERROR = WIN32_ERROR(9713u32);
9928 pub const DNS_ERROR_NAME_DOES_NOT_EXIST: WIN32_ERROR = WIN32_ERROR(9714u32);
9929 pub const DNS_ERROR_DS_UNAVAILABLE: WIN32_ERROR = WIN32_ERROR(9717u32);
9930 pub const DNS_ERROR_DS_ZONE_ALREADY_EXISTS: WIN32_ERROR = WIN32_ERROR(9718u32);
9931 pub const DNS_ERROR_NO_BOOTFILE_IF_DS_ZONE: WIN32_ERROR = WIN32_ERROR(9719u32);
9932 pub const DNS_ERROR_NODE_IS_DNAME: WIN32_ERROR = WIN32_ERROR(9720u32);
9933 pub const DNS_ERROR_DNAME_COLLISION: WIN32_ERROR = WIN32_ERROR(9721u32);
9934 pub const DNS_ERROR_ALIAS_LOOP: WIN32_ERROR = WIN32_ERROR(9722u32);
9935 pub const DNS_ERROR_OPERATION_BASE: WIN32_ERROR = WIN32_ERROR(9750u32);
9936 pub const DNS_ERROR_AXFR: WIN32_ERROR = WIN32_ERROR(9752u32);
9937 pub const DNS_ERROR_SECURE_BASE: WIN32_ERROR = WIN32_ERROR(9800u32);
9938 pub const DNS_ERROR_SETUP_BASE: WIN32_ERROR = WIN32_ERROR(9850u32);
9939 pub const DNS_ERROR_NO_TCPIP: WIN32_ERROR = WIN32_ERROR(9851u32);
9940 pub const DNS_ERROR_NO_DNS_SERVERS: WIN32_ERROR = WIN32_ERROR(9852u32);
9941 pub const DNS_ERROR_DP_BASE: WIN32_ERROR = WIN32_ERROR(9900u32);
9942 pub const DNS_ERROR_DP_DOES_NOT_EXIST: WIN32_ERROR = WIN32_ERROR(9901u32);
9943 pub const DNS_ERROR_DP_ALREADY_EXISTS: WIN32_ERROR = WIN32_ERROR(9902u32);
9944 pub const DNS_ERROR_DP_NOT_ENLISTED: WIN32_ERROR = WIN32_ERROR(9903u32);
9945 pub const DNS_ERROR_DP_ALREADY_ENLISTED: WIN32_ERROR = WIN32_ERROR(9904u32);
9946 pub const DNS_ERROR_DP_NOT_AVAILABLE: WIN32_ERROR = WIN32_ERROR(9905u32);
9947 pub const DNS_ERROR_DP_FSMO_ERROR: WIN32_ERROR = WIN32_ERROR(9906u32);
9948 pub const DNS_ERROR_RRL_NOT_ENABLED: WIN32_ERROR = WIN32_ERROR(9911u32);
9949 pub const DNS_ERROR_RRL_INVALID_WINDOW_SIZE: WIN32_ERROR = WIN32_ERROR(9912u32);
9950 pub const DNS_ERROR_RRL_INVALID_IPV4_PREFIX: WIN32_ERROR = WIN32_ERROR(9913u32);
9951 pub const DNS_ERROR_RRL_INVALID_IPV6_PREFIX: WIN32_ERROR = WIN32_ERROR(9914u32);
9952 pub const DNS_ERROR_RRL_INVALID_TC_RATE: WIN32_ERROR = WIN32_ERROR(9915u32);
9953 pub const DNS_ERROR_RRL_INVALID_LEAK_RATE: WIN32_ERROR = WIN32_ERROR(9916u32);
9954 pub const DNS_ERROR_RRL_LEAK_RATE_LESSTHAN_TC_RATE: WIN32_ERROR = WIN32_ERROR(9917u32);
9955 pub const DNS_ERROR_VIRTUALIZATION_INSTANCE_ALREADY_EXISTS: WIN32_ERROR = WIN32_ERROR(9921u32);
9956 pub const DNS_ERROR_VIRTUALIZATION_INSTANCE_DOES_NOT_EXIST: WIN32_ERROR = WIN32_ERROR(9922u32);
9957 pub const DNS_ERROR_VIRTUALIZATION_TREE_LOCKED: WIN32_ERROR = WIN32_ERROR(9923u32);
9958 pub const DNS_ERROR_INVAILD_VIRTUALIZATION_INSTANCE_NAME: WIN32_ERROR = WIN32_ERROR(9924u32);
9959 pub const DNS_ERROR_DEFAULT_VIRTUALIZATION_INSTANCE: WIN32_ERROR = WIN32_ERROR(9925u32);
9960 pub const DNS_ERROR_ZONESCOPE_ALREADY_EXISTS: WIN32_ERROR = WIN32_ERROR(9951u32);
9961 pub const DNS_ERROR_ZONESCOPE_DOES_NOT_EXIST: WIN32_ERROR = WIN32_ERROR(9952u32);
9962 pub const DNS_ERROR_DEFAULT_ZONESCOPE: WIN32_ERROR = WIN32_ERROR(9953u32);
9963 pub const DNS_ERROR_INVALID_ZONESCOPE_NAME: WIN32_ERROR = WIN32_ERROR(9954u32);
9964 pub const DNS_ERROR_NOT_ALLOWED_WITH_ZONESCOPES: WIN32_ERROR = WIN32_ERROR(9955u32);
9965 pub const DNS_ERROR_LOAD_ZONESCOPE_FAILED: WIN32_ERROR = WIN32_ERROR(9956u32);
9966 pub const DNS_ERROR_ZONESCOPE_FILE_WRITEBACK_FAILED: WIN32_ERROR = WIN32_ERROR(9957u32);
9967 pub const DNS_ERROR_INVALID_SCOPE_NAME: WIN32_ERROR = WIN32_ERROR(9958u32);
9968 pub const DNS_ERROR_SCOPE_DOES_NOT_EXIST: WIN32_ERROR = WIN32_ERROR(9959u32);
9969 pub const DNS_ERROR_DEFAULT_SCOPE: WIN32_ERROR = WIN32_ERROR(9960u32);
9970 pub const DNS_ERROR_INVALID_SCOPE_OPERATION: WIN32_ERROR = WIN32_ERROR(9961u32);
9971 pub const DNS_ERROR_SCOPE_LOCKED: WIN32_ERROR = WIN32_ERROR(9962u32);
9972 pub const DNS_ERROR_SCOPE_ALREADY_EXISTS: WIN32_ERROR = WIN32_ERROR(9963u32);
9973 pub const DNS_ERROR_POLICY_ALREADY_EXISTS: WIN32_ERROR = WIN32_ERROR(9971u32);
9974 pub const DNS_ERROR_POLICY_DOES_NOT_EXIST: WIN32_ERROR = WIN32_ERROR(9972u32);
9975 pub const DNS_ERROR_POLICY_INVALID_CRITERIA: WIN32_ERROR = WIN32_ERROR(9973u32);
9976 pub const DNS_ERROR_POLICY_INVALID_SETTINGS: WIN32_ERROR = WIN32_ERROR(9974u32);
9977 pub const DNS_ERROR_CLIENT_SUBNET_IS_ACCESSED: WIN32_ERROR = WIN32_ERROR(9975u32);
9978 pub const DNS_ERROR_CLIENT_SUBNET_DOES_NOT_EXIST: WIN32_ERROR = WIN32_ERROR(9976u32);
9979 pub const DNS_ERROR_CLIENT_SUBNET_ALREADY_EXISTS: WIN32_ERROR = WIN32_ERROR(9977u32);
9980 pub const DNS_ERROR_SUBNET_DOES_NOT_EXIST: WIN32_ERROR = WIN32_ERROR(9978u32);
9981 pub const DNS_ERROR_SUBNET_ALREADY_EXISTS: WIN32_ERROR = WIN32_ERROR(9979u32);
9982 pub const DNS_ERROR_POLICY_LOCKED: WIN32_ERROR = WIN32_ERROR(9980u32);
9983 pub const DNS_ERROR_POLICY_INVALID_WEIGHT: WIN32_ERROR = WIN32_ERROR(9981u32);
9984 pub const DNS_ERROR_POLICY_INVALID_NAME: WIN32_ERROR = WIN32_ERROR(9982u32);
9985 pub const DNS_ERROR_POLICY_MISSING_CRITERIA: WIN32_ERROR = WIN32_ERROR(9983u32);
9986 pub const DNS_ERROR_INVALID_CLIENT_SUBNET_NAME: WIN32_ERROR = WIN32_ERROR(9984u32);
9987 pub const DNS_ERROR_POLICY_PROCESSING_ORDER_INVALID: WIN32_ERROR = WIN32_ERROR(9985u32);
9988 pub const DNS_ERROR_POLICY_SCOPE_MISSING: WIN32_ERROR = WIN32_ERROR(9986u32);
9989 pub const DNS_ERROR_POLICY_SCOPE_NOT_ALLOWED: WIN32_ERROR = WIN32_ERROR(9987u32);
9990 pub const DNS_ERROR_SERVERSCOPE_IS_REFERENCED: WIN32_ERROR = WIN32_ERROR(9988u32);
9991 pub const DNS_ERROR_ZONESCOPE_IS_REFERENCED: WIN32_ERROR = WIN32_ERROR(9989u32);
9992 pub const DNS_ERROR_POLICY_INVALID_CRITERIA_CLIENT_SUBNET: WIN32_ERROR = WIN32_ERROR(9990u32);
9993 pub const DNS_ERROR_POLICY_INVALID_CRITERIA_TRANSPORT_PROTOCOL: WIN32_ERROR = WIN32_ERROR(9991u32);
9994 pub const DNS_ERROR_POLICY_INVALID_CRITERIA_NETWORK_PROTOCOL: WIN32_ERROR = WIN32_ERROR(9992u32);
9995 pub const DNS_ERROR_POLICY_INVALID_CRITERIA_INTERFACE: WIN32_ERROR = WIN32_ERROR(9993u32);
9996 pub const DNS_ERROR_POLICY_INVALID_CRITERIA_FQDN: WIN32_ERROR = WIN32_ERROR(9994u32);
9997 pub const DNS_ERROR_POLICY_INVALID_CRITERIA_QUERY_TYPE: WIN32_ERROR = WIN32_ERROR(9995u32);
9998 pub const DNS_ERROR_POLICY_INVALID_CRITERIA_TIME_OF_DAY: WIN32_ERROR = WIN32_ERROR(9996u32);
9999 pub const ERROR_IPSEC_QM_POLICY_EXISTS: WIN32_ERROR = WIN32_ERROR(13000u32);
10000 pub const ERROR_IPSEC_QM_POLICY_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(13001u32);
10001 pub const ERROR_IPSEC_QM_POLICY_IN_USE: WIN32_ERROR = WIN32_ERROR(13002u32);
10002 pub const ERROR_IPSEC_MM_POLICY_EXISTS: WIN32_ERROR = WIN32_ERROR(13003u32);
10003 pub const ERROR_IPSEC_MM_POLICY_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(13004u32);
10004 pub const ERROR_IPSEC_MM_POLICY_IN_USE: WIN32_ERROR = WIN32_ERROR(13005u32);
10005 pub const ERROR_IPSEC_MM_FILTER_EXISTS: WIN32_ERROR = WIN32_ERROR(13006u32);
10006 pub const ERROR_IPSEC_MM_FILTER_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(13007u32);
10007 pub const ERROR_IPSEC_TRANSPORT_FILTER_EXISTS: WIN32_ERROR = WIN32_ERROR(13008u32);
10008 pub const ERROR_IPSEC_TRANSPORT_FILTER_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(13009u32);
10009 pub const ERROR_IPSEC_MM_AUTH_EXISTS: WIN32_ERROR = WIN32_ERROR(13010u32);
10010 pub const ERROR_IPSEC_MM_AUTH_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(13011u32);
10011 pub const ERROR_IPSEC_MM_AUTH_IN_USE: WIN32_ERROR = WIN32_ERROR(13012u32);
10012 pub const ERROR_IPSEC_DEFAULT_MM_POLICY_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(13013u32);
10013 pub const ERROR_IPSEC_DEFAULT_MM_AUTH_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(13014u32);
10014 pub const ERROR_IPSEC_DEFAULT_QM_POLICY_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(13015u32);
10015 pub const ERROR_IPSEC_TUNNEL_FILTER_EXISTS: WIN32_ERROR = WIN32_ERROR(13016u32);
10016 pub const ERROR_IPSEC_TUNNEL_FILTER_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(13017u32);
10017 pub const ERROR_IPSEC_MM_FILTER_PENDING_DELETION: WIN32_ERROR = WIN32_ERROR(13018u32);
10018 pub const ERROR_IPSEC_TRANSPORT_FILTER_PENDING_DELETION: WIN32_ERROR = WIN32_ERROR(13019u32);
10019 pub const ERROR_IPSEC_TUNNEL_FILTER_PENDING_DELETION: WIN32_ERROR = WIN32_ERROR(13020u32);
10020 pub const ERROR_IPSEC_MM_POLICY_PENDING_DELETION: WIN32_ERROR = WIN32_ERROR(13021u32);
10021 pub const ERROR_IPSEC_MM_AUTH_PENDING_DELETION: WIN32_ERROR = WIN32_ERROR(13022u32);
10022 pub const ERROR_IPSEC_QM_POLICY_PENDING_DELETION: WIN32_ERROR = WIN32_ERROR(13023u32);
10023 pub const ERROR_IPSEC_IKE_NEG_STATUS_BEGIN: WIN32_ERROR = WIN32_ERROR(13800u32);
10024 pub const ERROR_IPSEC_IKE_AUTH_FAIL: WIN32_ERROR = WIN32_ERROR(13801u32);
10025 pub const ERROR_IPSEC_IKE_ATTRIB_FAIL: WIN32_ERROR = WIN32_ERROR(13802u32);
10026 pub const ERROR_IPSEC_IKE_NEGOTIATION_PENDING: WIN32_ERROR = WIN32_ERROR(13803u32);
10027 pub const ERROR_IPSEC_IKE_GENERAL_PROCESSING_ERROR: WIN32_ERROR = WIN32_ERROR(13804u32);
10028 pub const ERROR_IPSEC_IKE_TIMED_OUT: WIN32_ERROR = WIN32_ERROR(13805u32);
10029 pub const ERROR_IPSEC_IKE_NO_CERT: WIN32_ERROR = WIN32_ERROR(13806u32);
10030 pub const ERROR_IPSEC_IKE_SA_DELETED: WIN32_ERROR = WIN32_ERROR(13807u32);
10031 pub const ERROR_IPSEC_IKE_SA_REAPED: WIN32_ERROR = WIN32_ERROR(13808u32);
10032 pub const ERROR_IPSEC_IKE_MM_ACQUIRE_DROP: WIN32_ERROR = WIN32_ERROR(13809u32);
10033 pub const ERROR_IPSEC_IKE_QM_ACQUIRE_DROP: WIN32_ERROR = WIN32_ERROR(13810u32);
10034 pub const ERROR_IPSEC_IKE_QUEUE_DROP_MM: WIN32_ERROR = WIN32_ERROR(13811u32);
10035 pub const ERROR_IPSEC_IKE_QUEUE_DROP_NO_MM: WIN32_ERROR = WIN32_ERROR(13812u32);
10036 pub const ERROR_IPSEC_IKE_DROP_NO_RESPONSE: WIN32_ERROR = WIN32_ERROR(13813u32);
10037 pub const ERROR_IPSEC_IKE_MM_DELAY_DROP: WIN32_ERROR = WIN32_ERROR(13814u32);
10038 pub const ERROR_IPSEC_IKE_QM_DELAY_DROP: WIN32_ERROR = WIN32_ERROR(13815u32);
10039 pub const ERROR_IPSEC_IKE_ERROR: WIN32_ERROR = WIN32_ERROR(13816u32);
10040 pub const ERROR_IPSEC_IKE_CRL_FAILED: WIN32_ERROR = WIN32_ERROR(13817u32);
10041 pub const ERROR_IPSEC_IKE_INVALID_KEY_USAGE: WIN32_ERROR = WIN32_ERROR(13818u32);
10042 pub const ERROR_IPSEC_IKE_INVALID_CERT_TYPE: WIN32_ERROR = WIN32_ERROR(13819u32);
10043 pub const ERROR_IPSEC_IKE_NO_PRIVATE_KEY: WIN32_ERROR = WIN32_ERROR(13820u32);
10044 pub const ERROR_IPSEC_IKE_SIMULTANEOUS_REKEY: WIN32_ERROR = WIN32_ERROR(13821u32);
10045 pub const ERROR_IPSEC_IKE_DH_FAIL: WIN32_ERROR = WIN32_ERROR(13822u32);
10046 pub const ERROR_IPSEC_IKE_CRITICAL_PAYLOAD_NOT_RECOGNIZED: WIN32_ERROR = WIN32_ERROR(13823u32);
10047 pub const ERROR_IPSEC_IKE_INVALID_HEADER: WIN32_ERROR = WIN32_ERROR(13824u32);
10048 pub const ERROR_IPSEC_IKE_NO_POLICY: WIN32_ERROR = WIN32_ERROR(13825u32);
10049 pub const ERROR_IPSEC_IKE_INVALID_SIGNATURE: WIN32_ERROR = WIN32_ERROR(13826u32);
10050 pub const ERROR_IPSEC_IKE_KERBEROS_ERROR: WIN32_ERROR = WIN32_ERROR(13827u32);
10051 pub const ERROR_IPSEC_IKE_NO_PUBLIC_KEY: WIN32_ERROR = WIN32_ERROR(13828u32);
10052 pub const ERROR_IPSEC_IKE_PROCESS_ERR: WIN32_ERROR = WIN32_ERROR(13829u32);
10053 pub const ERROR_IPSEC_IKE_PROCESS_ERR_SA: WIN32_ERROR = WIN32_ERROR(13830u32);
10054 pub const ERROR_IPSEC_IKE_PROCESS_ERR_PROP: WIN32_ERROR = WIN32_ERROR(13831u32);
10055 pub const ERROR_IPSEC_IKE_PROCESS_ERR_TRANS: WIN32_ERROR = WIN32_ERROR(13832u32);
10056 pub const ERROR_IPSEC_IKE_PROCESS_ERR_KE: WIN32_ERROR = WIN32_ERROR(13833u32);
10057 pub const ERROR_IPSEC_IKE_PROCESS_ERR_ID: WIN32_ERROR = WIN32_ERROR(13834u32);
10058 pub const ERROR_IPSEC_IKE_PROCESS_ERR_CERT: WIN32_ERROR = WIN32_ERROR(13835u32);
10059 pub const ERROR_IPSEC_IKE_PROCESS_ERR_CERT_REQ: WIN32_ERROR = WIN32_ERROR(13836u32);
10060 pub const ERROR_IPSEC_IKE_PROCESS_ERR_HASH: WIN32_ERROR = WIN32_ERROR(13837u32);
10061 pub const ERROR_IPSEC_IKE_PROCESS_ERR_SIG: WIN32_ERROR = WIN32_ERROR(13838u32);
10062 pub const ERROR_IPSEC_IKE_PROCESS_ERR_NONCE: WIN32_ERROR = WIN32_ERROR(13839u32);
10063 pub const ERROR_IPSEC_IKE_PROCESS_ERR_NOTIFY: WIN32_ERROR = WIN32_ERROR(13840u32);
10064 pub const ERROR_IPSEC_IKE_PROCESS_ERR_DELETE: WIN32_ERROR = WIN32_ERROR(13841u32);
10065 pub const ERROR_IPSEC_IKE_PROCESS_ERR_VENDOR: WIN32_ERROR = WIN32_ERROR(13842u32);
10066 pub const ERROR_IPSEC_IKE_INVALID_PAYLOAD: WIN32_ERROR = WIN32_ERROR(13843u32);
10067 pub const ERROR_IPSEC_IKE_LOAD_SOFT_SA: WIN32_ERROR = WIN32_ERROR(13844u32);
10068 pub const ERROR_IPSEC_IKE_SOFT_SA_TORN_DOWN: WIN32_ERROR = WIN32_ERROR(13845u32);
10069 pub const ERROR_IPSEC_IKE_INVALID_COOKIE: WIN32_ERROR = WIN32_ERROR(13846u32);
10070 pub const ERROR_IPSEC_IKE_NO_PEER_CERT: WIN32_ERROR = WIN32_ERROR(13847u32);
10071 pub const ERROR_IPSEC_IKE_PEER_CRL_FAILED: WIN32_ERROR = WIN32_ERROR(13848u32);
10072 pub const ERROR_IPSEC_IKE_POLICY_CHANGE: WIN32_ERROR = WIN32_ERROR(13849u32);
10073 pub const ERROR_IPSEC_IKE_NO_MM_POLICY: WIN32_ERROR = WIN32_ERROR(13850u32);
10074 pub const ERROR_IPSEC_IKE_NOTCBPRIV: WIN32_ERROR = WIN32_ERROR(13851u32);
10075 pub const ERROR_IPSEC_IKE_SECLOADFAIL: WIN32_ERROR = WIN32_ERROR(13852u32);
10076 pub const ERROR_IPSEC_IKE_FAILSSPINIT: WIN32_ERROR = WIN32_ERROR(13853u32);
10077 pub const ERROR_IPSEC_IKE_FAILQUERYSSP: WIN32_ERROR = WIN32_ERROR(13854u32);
10078 pub const ERROR_IPSEC_IKE_SRVACQFAIL: WIN32_ERROR = WIN32_ERROR(13855u32);
10079 pub const ERROR_IPSEC_IKE_SRVQUERYCRED: WIN32_ERROR = WIN32_ERROR(13856u32);
10080 pub const ERROR_IPSEC_IKE_GETSPIFAIL: WIN32_ERROR = WIN32_ERROR(13857u32);
10081 pub const ERROR_IPSEC_IKE_INVALID_FILTER: WIN32_ERROR = WIN32_ERROR(13858u32);
10082 pub const ERROR_IPSEC_IKE_OUT_OF_MEMORY: WIN32_ERROR = WIN32_ERROR(13859u32);
10083 pub const ERROR_IPSEC_IKE_ADD_UPDATE_KEY_FAILED: WIN32_ERROR = WIN32_ERROR(13860u32);
10084 pub const ERROR_IPSEC_IKE_INVALID_POLICY: WIN32_ERROR = WIN32_ERROR(13861u32);
10085 pub const ERROR_IPSEC_IKE_UNKNOWN_DOI: WIN32_ERROR = WIN32_ERROR(13862u32);
10086 pub const ERROR_IPSEC_IKE_INVALID_SITUATION: WIN32_ERROR = WIN32_ERROR(13863u32);
10087 pub const ERROR_IPSEC_IKE_DH_FAILURE: WIN32_ERROR = WIN32_ERROR(13864u32);
10088 pub const ERROR_IPSEC_IKE_INVALID_GROUP: WIN32_ERROR = WIN32_ERROR(13865u32);
10089 pub const ERROR_IPSEC_IKE_ENCRYPT: WIN32_ERROR = WIN32_ERROR(13866u32);
10090 pub const ERROR_IPSEC_IKE_DECRYPT: WIN32_ERROR = WIN32_ERROR(13867u32);
10091 pub const ERROR_IPSEC_IKE_POLICY_MATCH: WIN32_ERROR = WIN32_ERROR(13868u32);
10092 pub const ERROR_IPSEC_IKE_UNSUPPORTED_ID: WIN32_ERROR = WIN32_ERROR(13869u32);
10093 pub const ERROR_IPSEC_IKE_INVALID_HASH: WIN32_ERROR = WIN32_ERROR(13870u32);
10094 pub const ERROR_IPSEC_IKE_INVALID_HASH_ALG: WIN32_ERROR = WIN32_ERROR(13871u32);
10095 pub const ERROR_IPSEC_IKE_INVALID_HASH_SIZE: WIN32_ERROR = WIN32_ERROR(13872u32);
10096 pub const ERROR_IPSEC_IKE_INVALID_ENCRYPT_ALG: WIN32_ERROR = WIN32_ERROR(13873u32);
10097 pub const ERROR_IPSEC_IKE_INVALID_AUTH_ALG: WIN32_ERROR = WIN32_ERROR(13874u32);
10098 pub const ERROR_IPSEC_IKE_INVALID_SIG: WIN32_ERROR = WIN32_ERROR(13875u32);
10099 pub const ERROR_IPSEC_IKE_LOAD_FAILED: WIN32_ERROR = WIN32_ERROR(13876u32);
10100 pub const ERROR_IPSEC_IKE_RPC_DELETE: WIN32_ERROR = WIN32_ERROR(13877u32);
10101 pub const ERROR_IPSEC_IKE_BENIGN_REINIT: WIN32_ERROR = WIN32_ERROR(13878u32);
10102 pub const ERROR_IPSEC_IKE_INVALID_RESPONDER_LIFETIME_NOTIFY: WIN32_ERROR = WIN32_ERROR(13879u32);
10103 pub const ERROR_IPSEC_IKE_INVALID_MAJOR_VERSION: WIN32_ERROR = WIN32_ERROR(13880u32);
10104 pub const ERROR_IPSEC_IKE_INVALID_CERT_KEYLEN: WIN32_ERROR = WIN32_ERROR(13881u32);
10105 pub const ERROR_IPSEC_IKE_MM_LIMIT: WIN32_ERROR = WIN32_ERROR(13882u32);
10106 pub const ERROR_IPSEC_IKE_NEGOTIATION_DISABLED: WIN32_ERROR = WIN32_ERROR(13883u32);
10107 pub const ERROR_IPSEC_IKE_QM_LIMIT: WIN32_ERROR = WIN32_ERROR(13884u32);
10108 pub const ERROR_IPSEC_IKE_MM_EXPIRED: WIN32_ERROR = WIN32_ERROR(13885u32);
10109 pub const ERROR_IPSEC_IKE_PEER_MM_ASSUMED_INVALID: WIN32_ERROR = WIN32_ERROR(13886u32);
10110 pub const ERROR_IPSEC_IKE_CERT_CHAIN_POLICY_MISMATCH: WIN32_ERROR = WIN32_ERROR(13887u32);
10111 pub const ERROR_IPSEC_IKE_UNEXPECTED_MESSAGE_ID: WIN32_ERROR = WIN32_ERROR(13888u32);
10112 pub const ERROR_IPSEC_IKE_INVALID_AUTH_PAYLOAD: WIN32_ERROR = WIN32_ERROR(13889u32);
10113 pub const ERROR_IPSEC_IKE_DOS_COOKIE_SENT: WIN32_ERROR = WIN32_ERROR(13890u32);
10114 pub const ERROR_IPSEC_IKE_SHUTTING_DOWN: WIN32_ERROR = WIN32_ERROR(13891u32);
10115 pub const ERROR_IPSEC_IKE_CGA_AUTH_FAILED: WIN32_ERROR = WIN32_ERROR(13892u32);
10116 pub const ERROR_IPSEC_IKE_PROCESS_ERR_NATOA: WIN32_ERROR = WIN32_ERROR(13893u32);
10117 pub const ERROR_IPSEC_IKE_INVALID_MM_FOR_QM: WIN32_ERROR = WIN32_ERROR(13894u32);
10118 pub const ERROR_IPSEC_IKE_QM_EXPIRED: WIN32_ERROR = WIN32_ERROR(13895u32);
10119 pub const ERROR_IPSEC_IKE_TOO_MANY_FILTERS: WIN32_ERROR = WIN32_ERROR(13896u32);
10120 pub const ERROR_IPSEC_IKE_NEG_STATUS_END: WIN32_ERROR = WIN32_ERROR(13897u32);
10121 pub const ERROR_IPSEC_IKE_KILL_DUMMY_NAP_TUNNEL: WIN32_ERROR = WIN32_ERROR(13898u32);
10122 pub const ERROR_IPSEC_IKE_INNER_IP_ASSIGNMENT_FAILURE: WIN32_ERROR = WIN32_ERROR(13899u32);
10123 pub const ERROR_IPSEC_IKE_REQUIRE_CP_PAYLOAD_MISSING: WIN32_ERROR = WIN32_ERROR(13900u32);
10124 pub const ERROR_IPSEC_KEY_MODULE_IMPERSONATION_NEGOTIATION_PENDING: WIN32_ERROR = WIN32_ERROR(13901u32);
10125 pub const ERROR_IPSEC_IKE_COEXISTENCE_SUPPRESS: WIN32_ERROR = WIN32_ERROR(13902u32);
10126 pub const ERROR_IPSEC_IKE_RATELIMIT_DROP: WIN32_ERROR = WIN32_ERROR(13903u32);
10127 pub const ERROR_IPSEC_IKE_PEER_DOESNT_SUPPORT_MOBIKE: WIN32_ERROR = WIN32_ERROR(13904u32);
10128 pub const ERROR_IPSEC_IKE_AUTHORIZATION_FAILURE: WIN32_ERROR = WIN32_ERROR(13905u32);
10129 pub const ERROR_IPSEC_IKE_STRONG_CRED_AUTHORIZATION_FAILURE: WIN32_ERROR = WIN32_ERROR(13906u32);
10130 pub const ERROR_IPSEC_IKE_AUTHORIZATION_FAILURE_WITH_OPTIONAL_RETRY: WIN32_ERROR = WIN32_ERROR(13907u32);
10131 pub const ERROR_IPSEC_IKE_STRONG_CRED_AUTHORIZATION_AND_CERTMAP_FAILURE: WIN32_ERROR = WIN32_ERROR(13908u32);
10132 pub const ERROR_IPSEC_IKE_NEG_STATUS_EXTENDED_END: WIN32_ERROR = WIN32_ERROR(13909u32);
10133 pub const ERROR_IPSEC_BAD_SPI: WIN32_ERROR = WIN32_ERROR(13910u32);
10134 pub const ERROR_IPSEC_SA_LIFETIME_EXPIRED: WIN32_ERROR = WIN32_ERROR(13911u32);
10135 pub const ERROR_IPSEC_WRONG_SA: WIN32_ERROR = WIN32_ERROR(13912u32);
10136 pub const ERROR_IPSEC_REPLAY_CHECK_FAILED: WIN32_ERROR = WIN32_ERROR(13913u32);
10137 pub const ERROR_IPSEC_INVALID_PACKET: WIN32_ERROR = WIN32_ERROR(13914u32);
10138 pub const ERROR_IPSEC_INTEGRITY_CHECK_FAILED: WIN32_ERROR = WIN32_ERROR(13915u32);
10139 pub const ERROR_IPSEC_CLEAR_TEXT_DROP: WIN32_ERROR = WIN32_ERROR(13916u32);
10140 pub const ERROR_IPSEC_AUTH_FIREWALL_DROP: WIN32_ERROR = WIN32_ERROR(13917u32);
10141 pub const ERROR_IPSEC_THROTTLE_DROP: WIN32_ERROR = WIN32_ERROR(13918u32);
10142 pub const ERROR_IPSEC_DOSP_BLOCK: WIN32_ERROR = WIN32_ERROR(13925u32);
10143 pub const ERROR_IPSEC_DOSP_RECEIVED_MULTICAST: WIN32_ERROR = WIN32_ERROR(13926u32);
10144 pub const ERROR_IPSEC_DOSP_INVALID_PACKET: WIN32_ERROR = WIN32_ERROR(13927u32);
10145 pub const ERROR_IPSEC_DOSP_STATE_LOOKUP_FAILED: WIN32_ERROR = WIN32_ERROR(13928u32);
10146 pub const ERROR_IPSEC_DOSP_MAX_ENTRIES: WIN32_ERROR = WIN32_ERROR(13929u32);
10147 pub const ERROR_IPSEC_DOSP_KEYMOD_NOT_ALLOWED: WIN32_ERROR = WIN32_ERROR(13930u32);
10148 pub const ERROR_IPSEC_DOSP_NOT_INSTALLED: WIN32_ERROR = WIN32_ERROR(13931u32);
10149 pub const ERROR_IPSEC_DOSP_MAX_PER_IP_RATELIMIT_QUEUES: WIN32_ERROR = WIN32_ERROR(13932u32);
10150 pub const ERROR_SXS_SECTION_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(14000u32);
10151 pub const ERROR_SXS_CANT_GEN_ACTCTX: WIN32_ERROR = WIN32_ERROR(14001u32);
10152 pub const ERROR_SXS_INVALID_ACTCTXDATA_FORMAT: WIN32_ERROR = WIN32_ERROR(14002u32);
10153 pub const ERROR_SXS_ASSEMBLY_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(14003u32);
10154 pub const ERROR_SXS_MANIFEST_FORMAT_ERROR: WIN32_ERROR = WIN32_ERROR(14004u32);
10155 pub const ERROR_SXS_MANIFEST_PARSE_ERROR: WIN32_ERROR = WIN32_ERROR(14005u32);
10156 pub const ERROR_SXS_ACTIVATION_CONTEXT_DISABLED: WIN32_ERROR = WIN32_ERROR(14006u32);
10157 pub const ERROR_SXS_KEY_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(14007u32);
10158 pub const ERROR_SXS_VERSION_CONFLICT: WIN32_ERROR = WIN32_ERROR(14008u32);
10159 pub const ERROR_SXS_WRONG_SECTION_TYPE: WIN32_ERROR = WIN32_ERROR(14009u32);
10160 pub const ERROR_SXS_THREAD_QUERIES_DISABLED: WIN32_ERROR = WIN32_ERROR(14010u32);
10161 pub const ERROR_SXS_PROCESS_DEFAULT_ALREADY_SET: WIN32_ERROR = WIN32_ERROR(14011u32);
10162 pub const ERROR_SXS_UNKNOWN_ENCODING_GROUP: WIN32_ERROR = WIN32_ERROR(14012u32);
10163 pub const ERROR_SXS_UNKNOWN_ENCODING: WIN32_ERROR = WIN32_ERROR(14013u32);
10164 pub const ERROR_SXS_INVALID_XML_NAMESPACE_URI: WIN32_ERROR = WIN32_ERROR(14014u32);
10165 pub const ERROR_SXS_ROOT_MANIFEST_DEPENDENCY_NOT_INSTALLED: WIN32_ERROR = WIN32_ERROR(14015u32);
10166 pub const ERROR_SXS_LEAF_MANIFEST_DEPENDENCY_NOT_INSTALLED: WIN32_ERROR = WIN32_ERROR(14016u32);
10167 pub const ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE: WIN32_ERROR = WIN32_ERROR(14017u32);
10168 pub const ERROR_SXS_MANIFEST_MISSING_REQUIRED_DEFAULT_NAMESPACE: WIN32_ERROR = WIN32_ERROR(14018u32);
10169 pub const ERROR_SXS_MANIFEST_INVALID_REQUIRED_DEFAULT_NAMESPACE: WIN32_ERROR = WIN32_ERROR(14019u32);
10170 pub const ERROR_SXS_PRIVATE_MANIFEST_CROSS_PATH_WITH_REPARSE_POINT: WIN32_ERROR = WIN32_ERROR(14020u32);
10171 pub const ERROR_SXS_DUPLICATE_DLL_NAME: WIN32_ERROR = WIN32_ERROR(14021u32);
10172 pub const ERROR_SXS_DUPLICATE_WINDOWCLASS_NAME: WIN32_ERROR = WIN32_ERROR(14022u32);
10173 pub const ERROR_SXS_DUPLICATE_CLSID: WIN32_ERROR = WIN32_ERROR(14023u32);
10174 pub const ERROR_SXS_DUPLICATE_IID: WIN32_ERROR = WIN32_ERROR(14024u32);
10175 pub const ERROR_SXS_DUPLICATE_TLBID: WIN32_ERROR = WIN32_ERROR(14025u32);
10176 pub const ERROR_SXS_DUPLICATE_PROGID: WIN32_ERROR = WIN32_ERROR(14026u32);
10177 pub const ERROR_SXS_DUPLICATE_ASSEMBLY_NAME: WIN32_ERROR = WIN32_ERROR(14027u32);
10178 pub const ERROR_SXS_FILE_HASH_MISMATCH: WIN32_ERROR = WIN32_ERROR(14028u32);
10179 pub const ERROR_SXS_POLICY_PARSE_ERROR: WIN32_ERROR = WIN32_ERROR(14029u32);
10180 pub const ERROR_SXS_XML_E_MISSINGQUOTE: WIN32_ERROR = WIN32_ERROR(14030u32);
10181 pub const ERROR_SXS_XML_E_COMMENTSYNTAX: WIN32_ERROR = WIN32_ERROR(14031u32);
10182 pub const ERROR_SXS_XML_E_BADSTARTNAMECHAR: WIN32_ERROR = WIN32_ERROR(14032u32);
10183 pub const ERROR_SXS_XML_E_BADNAMECHAR: WIN32_ERROR = WIN32_ERROR(14033u32);
10184 pub const ERROR_SXS_XML_E_BADCHARINSTRING: WIN32_ERROR = WIN32_ERROR(14034u32);
10185 pub const ERROR_SXS_XML_E_XMLDECLSYNTAX: WIN32_ERROR = WIN32_ERROR(14035u32);
10186 pub const ERROR_SXS_XML_E_BADCHARDATA: WIN32_ERROR = WIN32_ERROR(14036u32);
10187 pub const ERROR_SXS_XML_E_MISSINGWHITESPACE: WIN32_ERROR = WIN32_ERROR(14037u32);
10188 pub const ERROR_SXS_XML_E_EXPECTINGTAGEND: WIN32_ERROR = WIN32_ERROR(14038u32);
10189 pub const ERROR_SXS_XML_E_MISSINGSEMICOLON: WIN32_ERROR = WIN32_ERROR(14039u32);
10190 pub const ERROR_SXS_XML_E_UNBALANCEDPAREN: WIN32_ERROR = WIN32_ERROR(14040u32);
10191 pub const ERROR_SXS_XML_E_INTERNALERROR: WIN32_ERROR = WIN32_ERROR(14041u32);
10192 pub const ERROR_SXS_XML_E_UNEXPECTED_WHITESPACE: WIN32_ERROR = WIN32_ERROR(14042u32);
10193 pub const ERROR_SXS_XML_E_INCOMPLETE_ENCODING: WIN32_ERROR = WIN32_ERROR(14043u32);
10194 pub const ERROR_SXS_XML_E_MISSING_PAREN: WIN32_ERROR = WIN32_ERROR(14044u32);
10195 pub const ERROR_SXS_XML_E_EXPECTINGCLOSEQUOTE: WIN32_ERROR = WIN32_ERROR(14045u32);
10196 pub const ERROR_SXS_XML_E_MULTIPLE_COLONS: WIN32_ERROR = WIN32_ERROR(14046u32);
10197 pub const ERROR_SXS_XML_E_INVALID_DECIMAL: WIN32_ERROR = WIN32_ERROR(14047u32);
10198 pub const ERROR_SXS_XML_E_INVALID_HEXIDECIMAL: WIN32_ERROR = WIN32_ERROR(14048u32);
10199 pub const ERROR_SXS_XML_E_INVALID_UNICODE: WIN32_ERROR = WIN32_ERROR(14049u32);
10200 pub const ERROR_SXS_XML_E_WHITESPACEORQUESTIONMARK: WIN32_ERROR = WIN32_ERROR(14050u32);
10201 pub const ERROR_SXS_XML_E_UNEXPECTEDENDTAG: WIN32_ERROR = WIN32_ERROR(14051u32);
10202 pub const ERROR_SXS_XML_E_UNCLOSEDTAG: WIN32_ERROR = WIN32_ERROR(14052u32);
10203 pub const ERROR_SXS_XML_E_DUPLICATEATTRIBUTE: WIN32_ERROR = WIN32_ERROR(14053u32);
10204 pub const ERROR_SXS_XML_E_MULTIPLEROOTS: WIN32_ERROR = WIN32_ERROR(14054u32);
10205 pub const ERROR_SXS_XML_E_INVALIDATROOTLEVEL: WIN32_ERROR = WIN32_ERROR(14055u32);
10206 pub const ERROR_SXS_XML_E_BADXMLDECL: WIN32_ERROR = WIN32_ERROR(14056u32);
10207 pub const ERROR_SXS_XML_E_MISSINGROOT: WIN32_ERROR = WIN32_ERROR(14057u32);
10208 pub const ERROR_SXS_XML_E_UNEXPECTEDEOF: WIN32_ERROR = WIN32_ERROR(14058u32);
10209 pub const ERROR_SXS_XML_E_BADPEREFINSUBSET: WIN32_ERROR = WIN32_ERROR(14059u32);
10210 pub const ERROR_SXS_XML_E_UNCLOSEDSTARTTAG: WIN32_ERROR = WIN32_ERROR(14060u32);
10211 pub const ERROR_SXS_XML_E_UNCLOSEDENDTAG: WIN32_ERROR = WIN32_ERROR(14061u32);
10212 pub const ERROR_SXS_XML_E_UNCLOSEDSTRING: WIN32_ERROR = WIN32_ERROR(14062u32);
10213 pub const ERROR_SXS_XML_E_UNCLOSEDCOMMENT: WIN32_ERROR = WIN32_ERROR(14063u32);
10214 pub const ERROR_SXS_XML_E_UNCLOSEDDECL: WIN32_ERROR = WIN32_ERROR(14064u32);
10215 pub const ERROR_SXS_XML_E_UNCLOSEDCDATA: WIN32_ERROR = WIN32_ERROR(14065u32);
10216 pub const ERROR_SXS_XML_E_RESERVEDNAMESPACE: WIN32_ERROR = WIN32_ERROR(14066u32);
10217 pub const ERROR_SXS_XML_E_INVALIDENCODING: WIN32_ERROR = WIN32_ERROR(14067u32);
10218 pub const ERROR_SXS_XML_E_INVALIDSWITCH: WIN32_ERROR = WIN32_ERROR(14068u32);
10219 pub const ERROR_SXS_XML_E_BADXMLCASE: WIN32_ERROR = WIN32_ERROR(14069u32);
10220 pub const ERROR_SXS_XML_E_INVALID_STANDALONE: WIN32_ERROR = WIN32_ERROR(14070u32);
10221 pub const ERROR_SXS_XML_E_UNEXPECTED_STANDALONE: WIN32_ERROR = WIN32_ERROR(14071u32);
10222 pub const ERROR_SXS_XML_E_INVALID_VERSION: WIN32_ERROR = WIN32_ERROR(14072u32);
10223 pub const ERROR_SXS_XML_E_MISSINGEQUALS: WIN32_ERROR = WIN32_ERROR(14073u32);
10224 pub const ERROR_SXS_PROTECTION_RECOVERY_FAILED: WIN32_ERROR = WIN32_ERROR(14074u32);
10225 pub const ERROR_SXS_PROTECTION_PUBLIC_KEY_TOO_SHORT: WIN32_ERROR = WIN32_ERROR(14075u32);
10226 pub const ERROR_SXS_PROTECTION_CATALOG_NOT_VALID: WIN32_ERROR = WIN32_ERROR(14076u32);
10227 pub const ERROR_SXS_UNTRANSLATABLE_HRESULT: WIN32_ERROR = WIN32_ERROR(14077u32);
10228 pub const ERROR_SXS_PROTECTION_CATALOG_FILE_MISSING: WIN32_ERROR = WIN32_ERROR(14078u32);
10229 pub const ERROR_SXS_MISSING_ASSEMBLY_IDENTITY_ATTRIBUTE: WIN32_ERROR = WIN32_ERROR(14079u32);
10230 pub const ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE_NAME: WIN32_ERROR = WIN32_ERROR(14080u32);
10231 pub const ERROR_SXS_ASSEMBLY_MISSING: WIN32_ERROR = WIN32_ERROR(14081u32);
10232 pub const ERROR_SXS_CORRUPT_ACTIVATION_STACK: WIN32_ERROR = WIN32_ERROR(14082u32);
10233 pub const ERROR_SXS_CORRUPTION: WIN32_ERROR = WIN32_ERROR(14083u32);
10234 pub const ERROR_SXS_EARLY_DEACTIVATION: WIN32_ERROR = WIN32_ERROR(14084u32);
10235 pub const ERROR_SXS_INVALID_DEACTIVATION: WIN32_ERROR = WIN32_ERROR(14085u32);
10236 pub const ERROR_SXS_MULTIPLE_DEACTIVATION: WIN32_ERROR = WIN32_ERROR(14086u32);
10237 pub const ERROR_SXS_PROCESS_TERMINATION_REQUESTED: WIN32_ERROR = WIN32_ERROR(14087u32);
10238 pub const ERROR_SXS_RELEASE_ACTIVATION_CONTEXT: WIN32_ERROR = WIN32_ERROR(14088u32);
10239 pub const ERROR_SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY: WIN32_ERROR = WIN32_ERROR(14089u32);
10240 pub const ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_VALUE: WIN32_ERROR = WIN32_ERROR(14090u32);
10241 pub const ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_NAME: WIN32_ERROR = WIN32_ERROR(14091u32);
10242 pub const ERROR_SXS_IDENTITY_DUPLICATE_ATTRIBUTE: WIN32_ERROR = WIN32_ERROR(14092u32);
10243 pub const ERROR_SXS_IDENTITY_PARSE_ERROR: WIN32_ERROR = WIN32_ERROR(14093u32);
10244 pub const ERROR_MALFORMED_SUBSTITUTION_STRING: WIN32_ERROR = WIN32_ERROR(14094u32);
10245 pub const ERROR_SXS_INCORRECT_PUBLIC_KEY_TOKEN: WIN32_ERROR = WIN32_ERROR(14095u32);
10246 pub const ERROR_UNMAPPED_SUBSTITUTION_STRING: WIN32_ERROR = WIN32_ERROR(14096u32);
10247 pub const ERROR_SXS_ASSEMBLY_NOT_LOCKED: WIN32_ERROR = WIN32_ERROR(14097u32);
10248 pub const ERROR_SXS_COMPONENT_STORE_CORRUPT: WIN32_ERROR = WIN32_ERROR(14098u32);
10249 pub const ERROR_ADVANCED_INSTALLER_FAILED: WIN32_ERROR = WIN32_ERROR(14099u32);
10250 pub const ERROR_XML_ENCODING_MISMATCH: WIN32_ERROR = WIN32_ERROR(14100u32);
10251 pub const ERROR_SXS_MANIFEST_IDENTITY_SAME_BUT_CONTENTS_DIFFERENT: WIN32_ERROR = WIN32_ERROR(14101u32);
10252 pub const ERROR_SXS_IDENTITIES_DIFFERENT: WIN32_ERROR = WIN32_ERROR(14102u32);
10253 pub const ERROR_SXS_ASSEMBLY_IS_NOT_A_DEPLOYMENT: WIN32_ERROR = WIN32_ERROR(14103u32);
10254 pub const ERROR_SXS_FILE_NOT_PART_OF_ASSEMBLY: WIN32_ERROR = WIN32_ERROR(14104u32);
10255 pub const ERROR_SXS_MANIFEST_TOO_BIG: WIN32_ERROR = WIN32_ERROR(14105u32);
10256 pub const ERROR_SXS_SETTING_NOT_REGISTERED: WIN32_ERROR = WIN32_ERROR(14106u32);
10257 pub const ERROR_SXS_TRANSACTION_CLOSURE_INCOMPLETE: WIN32_ERROR = WIN32_ERROR(14107u32);
10258 pub const ERROR_SMI_PRIMITIVE_INSTALLER_FAILED: WIN32_ERROR = WIN32_ERROR(14108u32);
10259 pub const ERROR_GENERIC_COMMAND_FAILED: WIN32_ERROR = WIN32_ERROR(14109u32);
10260 pub const ERROR_SXS_FILE_HASH_MISSING: WIN32_ERROR = WIN32_ERROR(14110u32);
10261 pub const ERROR_SXS_DUPLICATE_ACTIVATABLE_CLASS: WIN32_ERROR = WIN32_ERROR(14111u32);
10262 pub const ERROR_EVT_INVALID_CHANNEL_PATH: WIN32_ERROR = WIN32_ERROR(15000u32);
10263 pub const ERROR_EVT_INVALID_QUERY: WIN32_ERROR = WIN32_ERROR(15001u32);
10264 pub const ERROR_EVT_PUBLISHER_METADATA_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(15002u32);
10265 pub const ERROR_EVT_EVENT_TEMPLATE_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(15003u32);
10266 pub const ERROR_EVT_INVALID_PUBLISHER_NAME: WIN32_ERROR = WIN32_ERROR(15004u32);
10267 pub const ERROR_EVT_INVALID_EVENT_DATA: WIN32_ERROR = WIN32_ERROR(15005u32);
10268 pub const ERROR_EVT_CHANNEL_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(15007u32);
10269 pub const ERROR_EVT_MALFORMED_XML_TEXT: WIN32_ERROR = WIN32_ERROR(15008u32);
10270 pub const ERROR_EVT_SUBSCRIPTION_TO_DIRECT_CHANNEL: WIN32_ERROR = WIN32_ERROR(15009u32);
10271 pub const ERROR_EVT_CONFIGURATION_ERROR: WIN32_ERROR = WIN32_ERROR(15010u32);
10272 pub const ERROR_EVT_QUERY_RESULT_STALE: WIN32_ERROR = WIN32_ERROR(15011u32);
10273 pub const ERROR_EVT_QUERY_RESULT_INVALID_POSITION: WIN32_ERROR = WIN32_ERROR(15012u32);
10274 pub const ERROR_EVT_NON_VALIDATING_MSXML: WIN32_ERROR = WIN32_ERROR(15013u32);
10275 pub const ERROR_EVT_FILTER_ALREADYSCOPED: WIN32_ERROR = WIN32_ERROR(15014u32);
10276 pub const ERROR_EVT_FILTER_NOTELTSET: WIN32_ERROR = WIN32_ERROR(15015u32);
10277 pub const ERROR_EVT_FILTER_INVARG: WIN32_ERROR = WIN32_ERROR(15016u32);
10278 pub const ERROR_EVT_FILTER_INVTEST: WIN32_ERROR = WIN32_ERROR(15017u32);
10279 pub const ERROR_EVT_FILTER_INVTYPE: WIN32_ERROR = WIN32_ERROR(15018u32);
10280 pub const ERROR_EVT_FILTER_PARSEERR: WIN32_ERROR = WIN32_ERROR(15019u32);
10281 pub const ERROR_EVT_FILTER_UNSUPPORTEDOP: WIN32_ERROR = WIN32_ERROR(15020u32);
10282 pub const ERROR_EVT_FILTER_UNEXPECTEDTOKEN: WIN32_ERROR = WIN32_ERROR(15021u32);
10283 pub const ERROR_EVT_INVALID_OPERATION_OVER_ENABLED_DIRECT_CHANNEL: WIN32_ERROR = WIN32_ERROR(15022u32);
10284 pub const ERROR_EVT_INVALID_CHANNEL_PROPERTY_VALUE: WIN32_ERROR = WIN32_ERROR(15023u32);
10285 pub const ERROR_EVT_INVALID_PUBLISHER_PROPERTY_VALUE: WIN32_ERROR = WIN32_ERROR(15024u32);
10286 pub const ERROR_EVT_CHANNEL_CANNOT_ACTIVATE: WIN32_ERROR = WIN32_ERROR(15025u32);
10287 pub const ERROR_EVT_FILTER_TOO_COMPLEX: WIN32_ERROR = WIN32_ERROR(15026u32);
10288 pub const ERROR_EVT_MESSAGE_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(15027u32);
10289 pub const ERROR_EVT_MESSAGE_ID_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(15028u32);
10290 pub const ERROR_EVT_UNRESOLVED_VALUE_INSERT: WIN32_ERROR = WIN32_ERROR(15029u32);
10291 pub const ERROR_EVT_UNRESOLVED_PARAMETER_INSERT: WIN32_ERROR = WIN32_ERROR(15030u32);
10292 pub const ERROR_EVT_MAX_INSERTS_REACHED: WIN32_ERROR = WIN32_ERROR(15031u32);
10293 pub const ERROR_EVT_EVENT_DEFINITION_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(15032u32);
10294 pub const ERROR_EVT_MESSAGE_LOCALE_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(15033u32);
10295 pub const ERROR_EVT_VERSION_TOO_OLD: WIN32_ERROR = WIN32_ERROR(15034u32);
10296 pub const ERROR_EVT_VERSION_TOO_NEW: WIN32_ERROR = WIN32_ERROR(15035u32);
10297 pub const ERROR_EVT_CANNOT_OPEN_CHANNEL_OF_QUERY: WIN32_ERROR = WIN32_ERROR(15036u32);
10298 pub const ERROR_EVT_PUBLISHER_DISABLED: WIN32_ERROR = WIN32_ERROR(15037u32);
10299 pub const ERROR_EVT_FILTER_OUT_OF_RANGE: WIN32_ERROR = WIN32_ERROR(15038u32);
10300 pub const ERROR_EC_SUBSCRIPTION_CANNOT_ACTIVATE: WIN32_ERROR = WIN32_ERROR(15080u32);
10301 pub const ERROR_EC_LOG_DISABLED: WIN32_ERROR = WIN32_ERROR(15081u32);
10302 pub const ERROR_EC_CIRCULAR_FORWARDING: WIN32_ERROR = WIN32_ERROR(15082u32);
10303 pub const ERROR_EC_CREDSTORE_FULL: WIN32_ERROR = WIN32_ERROR(15083u32);
10304 pub const ERROR_EC_CRED_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(15084u32);
10305 pub const ERROR_EC_NO_ACTIVE_CHANNEL: WIN32_ERROR = WIN32_ERROR(15085u32);
10306 pub const ERROR_MUI_FILE_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(15100u32);
10307 pub const ERROR_MUI_INVALID_FILE: WIN32_ERROR = WIN32_ERROR(15101u32);
10308 pub const ERROR_MUI_INVALID_RC_CONFIG: WIN32_ERROR = WIN32_ERROR(15102u32);
10309 pub const ERROR_MUI_INVALID_LOCALE_NAME: WIN32_ERROR = WIN32_ERROR(15103u32);
10310 pub const ERROR_MUI_INVALID_ULTIMATEFALLBACK_NAME: WIN32_ERROR = WIN32_ERROR(15104u32);
10311 pub const ERROR_MUI_FILE_NOT_LOADED: WIN32_ERROR = WIN32_ERROR(15105u32);
10312 pub const ERROR_RESOURCE_ENUM_USER_STOP: WIN32_ERROR = WIN32_ERROR(15106u32);
10313 pub const ERROR_MUI_INTLSETTINGS_UILANG_NOT_INSTALLED: WIN32_ERROR = WIN32_ERROR(15107u32);
10314 pub const ERROR_MUI_INTLSETTINGS_INVALID_LOCALE_NAME: WIN32_ERROR = WIN32_ERROR(15108u32);
10315 pub const ERROR_MRM_RUNTIME_NO_DEFAULT_OR_NEUTRAL_RESOURCE: WIN32_ERROR = WIN32_ERROR(15110u32);
10316 pub const ERROR_MRM_INVALID_PRICONFIG: WIN32_ERROR = WIN32_ERROR(15111u32);
10317 pub const ERROR_MRM_INVALID_FILE_TYPE: WIN32_ERROR = WIN32_ERROR(15112u32);
10318 pub const ERROR_MRM_UNKNOWN_QUALIFIER: WIN32_ERROR = WIN32_ERROR(15113u32);
10319 pub const ERROR_MRM_INVALID_QUALIFIER_VALUE: WIN32_ERROR = WIN32_ERROR(15114u32);
10320 pub const ERROR_MRM_NO_CANDIDATE: WIN32_ERROR = WIN32_ERROR(15115u32);
10321 pub const ERROR_MRM_NO_MATCH_OR_DEFAULT_CANDIDATE: WIN32_ERROR = WIN32_ERROR(15116u32);
10322 pub const ERROR_MRM_RESOURCE_TYPE_MISMATCH: WIN32_ERROR = WIN32_ERROR(15117u32);
10323 pub const ERROR_MRM_DUPLICATE_MAP_NAME: WIN32_ERROR = WIN32_ERROR(15118u32);
10324 pub const ERROR_MRM_DUPLICATE_ENTRY: WIN32_ERROR = WIN32_ERROR(15119u32);
10325 pub const ERROR_MRM_INVALID_RESOURCE_IDENTIFIER: WIN32_ERROR = WIN32_ERROR(15120u32);
10326 pub const ERROR_MRM_FILEPATH_TOO_LONG: WIN32_ERROR = WIN32_ERROR(15121u32);
10327 pub const ERROR_MRM_UNSUPPORTED_DIRECTORY_TYPE: WIN32_ERROR = WIN32_ERROR(15122u32);
10328 pub const ERROR_MRM_INVALID_PRI_FILE: WIN32_ERROR = WIN32_ERROR(15126u32);
10329 pub const ERROR_MRM_NAMED_RESOURCE_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(15127u32);
10330 pub const ERROR_MRM_MAP_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(15135u32);
10331 pub const ERROR_MRM_UNSUPPORTED_PROFILE_TYPE: WIN32_ERROR = WIN32_ERROR(15136u32);
10332 pub const ERROR_MRM_INVALID_QUALIFIER_OPERATOR: WIN32_ERROR = WIN32_ERROR(15137u32);
10333 pub const ERROR_MRM_INDETERMINATE_QUALIFIER_VALUE: WIN32_ERROR = WIN32_ERROR(15138u32);
10334 pub const ERROR_MRM_AUTOMERGE_ENABLED: WIN32_ERROR = WIN32_ERROR(15139u32);
10335 pub const ERROR_MRM_TOO_MANY_RESOURCES: WIN32_ERROR = WIN32_ERROR(15140u32);
10336 pub const ERROR_MRM_UNSUPPORTED_FILE_TYPE_FOR_MERGE: WIN32_ERROR = WIN32_ERROR(15141u32);
10337 pub const ERROR_MRM_UNSUPPORTED_FILE_TYPE_FOR_LOAD_UNLOAD_PRI_FILE: WIN32_ERROR = WIN32_ERROR(15142u32);
10338 pub const ERROR_MRM_NO_CURRENT_VIEW_ON_THREAD: WIN32_ERROR = WIN32_ERROR(15143u32);
10339 pub const ERROR_DIFFERENT_PROFILE_RESOURCE_MANAGER_EXIST: WIN32_ERROR = WIN32_ERROR(15144u32);
10340 pub const ERROR_OPERATION_NOT_ALLOWED_FROM_SYSTEM_COMPONENT: WIN32_ERROR = WIN32_ERROR(15145u32);
10341 pub const ERROR_MRM_DIRECT_REF_TO_NON_DEFAULT_RESOURCE: WIN32_ERROR = WIN32_ERROR(15146u32);
10342 pub const ERROR_MRM_GENERATION_COUNT_MISMATCH: WIN32_ERROR = WIN32_ERROR(15147u32);
10343 pub const ERROR_PRI_MERGE_VERSION_MISMATCH: WIN32_ERROR = WIN32_ERROR(15148u32);
10344 pub const ERROR_PRI_MERGE_MISSING_SCHEMA: WIN32_ERROR = WIN32_ERROR(15149u32);
10345 pub const ERROR_PRI_MERGE_LOAD_FILE_FAILED: WIN32_ERROR = WIN32_ERROR(15150u32);
10346 pub const ERROR_PRI_MERGE_ADD_FILE_FAILED: WIN32_ERROR = WIN32_ERROR(15151u32);
10347 pub const ERROR_PRI_MERGE_WRITE_FILE_FAILED: WIN32_ERROR = WIN32_ERROR(15152u32);
10348 pub const ERROR_PRI_MERGE_MULTIPLE_PACKAGE_FAMILIES_NOT_ALLOWED: WIN32_ERROR = WIN32_ERROR(15153u32);
10349 pub const ERROR_PRI_MERGE_MULTIPLE_MAIN_PACKAGES_NOT_ALLOWED: WIN32_ERROR = WIN32_ERROR(15154u32);
10350 pub const ERROR_PRI_MERGE_BUNDLE_PACKAGES_NOT_ALLOWED: WIN32_ERROR = WIN32_ERROR(15155u32);
10351 pub const ERROR_PRI_MERGE_MAIN_PACKAGE_REQUIRED: WIN32_ERROR = WIN32_ERROR(15156u32);
10352 pub const ERROR_PRI_MERGE_RESOURCE_PACKAGE_REQUIRED: WIN32_ERROR = WIN32_ERROR(15157u32);
10353 pub const ERROR_PRI_MERGE_INVALID_FILE_NAME: WIN32_ERROR = WIN32_ERROR(15158u32);
10354 pub const ERROR_MRM_PACKAGE_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(15159u32);
10355 pub const ERROR_MRM_MISSING_DEFAULT_LANGUAGE: WIN32_ERROR = WIN32_ERROR(15160u32);
10356 pub const ERROR_MCA_INVALID_CAPABILITIES_STRING: WIN32_ERROR = WIN32_ERROR(15200u32);
10357 pub const ERROR_MCA_INVALID_VCP_VERSION: WIN32_ERROR = WIN32_ERROR(15201u32);
10358 pub const ERROR_MCA_MONITOR_VIOLATES_MCCS_SPECIFICATION: WIN32_ERROR = WIN32_ERROR(15202u32);
10359 pub const ERROR_MCA_MCCS_VERSION_MISMATCH: WIN32_ERROR = WIN32_ERROR(15203u32);
10360 pub const ERROR_MCA_UNSUPPORTED_MCCS_VERSION: WIN32_ERROR = WIN32_ERROR(15204u32);
10361 pub const ERROR_MCA_INTERNAL_ERROR: WIN32_ERROR = WIN32_ERROR(15205u32);
10362 pub const ERROR_MCA_INVALID_TECHNOLOGY_TYPE_RETURNED: WIN32_ERROR = WIN32_ERROR(15206u32);
10363 pub const ERROR_MCA_UNSUPPORTED_COLOR_TEMPERATURE: WIN32_ERROR = WIN32_ERROR(15207u32);
10364 pub const ERROR_AMBIGUOUS_SYSTEM_DEVICE: WIN32_ERROR = WIN32_ERROR(15250u32);
10365 pub const ERROR_SYSTEM_DEVICE_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(15299u32);
10366 pub const ERROR_HASH_NOT_SUPPORTED: WIN32_ERROR = WIN32_ERROR(15300u32);
10367 pub const ERROR_HASH_NOT_PRESENT: WIN32_ERROR = WIN32_ERROR(15301u32);
10368 pub const ERROR_SECONDARY_IC_PROVIDER_NOT_REGISTERED: WIN32_ERROR = WIN32_ERROR(15321u32);
10369 pub const ERROR_GPIO_CLIENT_INFORMATION_INVALID: WIN32_ERROR = WIN32_ERROR(15322u32);
10370 pub const ERROR_GPIO_VERSION_NOT_SUPPORTED: WIN32_ERROR = WIN32_ERROR(15323u32);
10371 pub const ERROR_GPIO_INVALID_REGISTRATION_PACKET: WIN32_ERROR = WIN32_ERROR(15324u32);
10372 pub const ERROR_GPIO_OPERATION_DENIED: WIN32_ERROR = WIN32_ERROR(15325u32);
10373 pub const ERROR_GPIO_INCOMPATIBLE_CONNECT_MODE: WIN32_ERROR = WIN32_ERROR(15326u32);
10374 pub const ERROR_GPIO_INTERRUPT_ALREADY_UNMASKED: WIN32_ERROR = WIN32_ERROR(15327u32);
10375 pub const ERROR_CANNOT_SWITCH_RUNLEVEL: WIN32_ERROR = WIN32_ERROR(15400u32);
10376 pub const ERROR_INVALID_RUNLEVEL_SETTING: WIN32_ERROR = WIN32_ERROR(15401u32);
10377 pub const ERROR_RUNLEVEL_SWITCH_TIMEOUT: WIN32_ERROR = WIN32_ERROR(15402u32);
10378 pub const ERROR_RUNLEVEL_SWITCH_AGENT_TIMEOUT: WIN32_ERROR = WIN32_ERROR(15403u32);
10379 pub const ERROR_RUNLEVEL_SWITCH_IN_PROGRESS: WIN32_ERROR = WIN32_ERROR(15404u32);
10380 pub const ERROR_SERVICES_FAILED_AUTOSTART: WIN32_ERROR = WIN32_ERROR(15405u32);
10381 pub const ERROR_COM_TASK_STOP_PENDING: WIN32_ERROR = WIN32_ERROR(15501u32);
10382 pub const ERROR_INSTALL_OPEN_PACKAGE_FAILED: WIN32_ERROR = WIN32_ERROR(15600u32);
10383 pub const ERROR_INSTALL_PACKAGE_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(15601u32);
10384 pub const ERROR_INSTALL_INVALID_PACKAGE: WIN32_ERROR = WIN32_ERROR(15602u32);
10385 pub const ERROR_INSTALL_RESOLVE_DEPENDENCY_FAILED: WIN32_ERROR = WIN32_ERROR(15603u32);
10386 pub const ERROR_INSTALL_OUT_OF_DISK_SPACE: WIN32_ERROR = WIN32_ERROR(15604u32);
10387 pub const ERROR_INSTALL_NETWORK_FAILURE: WIN32_ERROR = WIN32_ERROR(15605u32);
10388 pub const ERROR_INSTALL_REGISTRATION_FAILURE: WIN32_ERROR = WIN32_ERROR(15606u32);
10389 pub const ERROR_INSTALL_DEREGISTRATION_FAILURE: WIN32_ERROR = WIN32_ERROR(15607u32);
10390 pub const ERROR_INSTALL_CANCEL: WIN32_ERROR = WIN32_ERROR(15608u32);
10391 pub const ERROR_INSTALL_FAILED: WIN32_ERROR = WIN32_ERROR(15609u32);
10392 pub const ERROR_REMOVE_FAILED: WIN32_ERROR = WIN32_ERROR(15610u32);
10393 pub const ERROR_PACKAGE_ALREADY_EXISTS: WIN32_ERROR = WIN32_ERROR(15611u32);
10394 pub const ERROR_NEEDS_REMEDIATION: WIN32_ERROR = WIN32_ERROR(15612u32);
10395 pub const ERROR_INSTALL_PREREQUISITE_FAILED: WIN32_ERROR = WIN32_ERROR(15613u32);
10396 pub const ERROR_PACKAGE_REPOSITORY_CORRUPTED: WIN32_ERROR = WIN32_ERROR(15614u32);
10397 pub const ERROR_INSTALL_POLICY_FAILURE: WIN32_ERROR = WIN32_ERROR(15615u32);
10398 pub const ERROR_PACKAGE_UPDATING: WIN32_ERROR = WIN32_ERROR(15616u32);
10399 pub const ERROR_DEPLOYMENT_BLOCKED_BY_POLICY: WIN32_ERROR = WIN32_ERROR(15617u32);
10400 pub const ERROR_PACKAGES_IN_USE: WIN32_ERROR = WIN32_ERROR(15618u32);
10401 pub const ERROR_RECOVERY_FILE_CORRUPT: WIN32_ERROR = WIN32_ERROR(15619u32);
10402 pub const ERROR_INVALID_STAGED_SIGNATURE: WIN32_ERROR = WIN32_ERROR(15620u32);
10403 pub const ERROR_DELETING_EXISTING_APPLICATIONDATA_STORE_FAILED: WIN32_ERROR = WIN32_ERROR(15621u32);
10404 pub const ERROR_INSTALL_PACKAGE_DOWNGRADE: WIN32_ERROR = WIN32_ERROR(15622u32);
10405 pub const ERROR_SYSTEM_NEEDS_REMEDIATION: WIN32_ERROR = WIN32_ERROR(15623u32);
10406 pub const ERROR_APPX_INTEGRITY_FAILURE_CLR_NGEN: WIN32_ERROR = WIN32_ERROR(15624u32);
10407 pub const ERROR_RESILIENCY_FILE_CORRUPT: WIN32_ERROR = WIN32_ERROR(15625u32);
10408 pub const ERROR_INSTALL_FIREWALL_SERVICE_NOT_RUNNING: WIN32_ERROR = WIN32_ERROR(15626u32);
10409 pub const ERROR_PACKAGE_MOVE_FAILED: WIN32_ERROR = WIN32_ERROR(15627u32);
10410 pub const ERROR_INSTALL_VOLUME_NOT_EMPTY: WIN32_ERROR = WIN32_ERROR(15628u32);
10411 pub const ERROR_INSTALL_VOLUME_OFFLINE: WIN32_ERROR = WIN32_ERROR(15629u32);
10412 pub const ERROR_INSTALL_VOLUME_CORRUPT: WIN32_ERROR = WIN32_ERROR(15630u32);
10413 pub const ERROR_NEEDS_REGISTRATION: WIN32_ERROR = WIN32_ERROR(15631u32);
10414 pub const ERROR_INSTALL_WRONG_PROCESSOR_ARCHITECTURE: WIN32_ERROR = WIN32_ERROR(15632u32);
10415 pub const ERROR_DEV_SIDELOAD_LIMIT_EXCEEDED: WIN32_ERROR = WIN32_ERROR(15633u32);
10416 pub const ERROR_INSTALL_OPTIONAL_PACKAGE_REQUIRES_MAIN_PACKAGE: WIN32_ERROR = WIN32_ERROR(15634u32);
10417 pub const ERROR_PACKAGE_NOT_SUPPORTED_ON_FILESYSTEM: WIN32_ERROR = WIN32_ERROR(15635u32);
10418 pub const ERROR_PACKAGE_MOVE_BLOCKED_BY_STREAMING: WIN32_ERROR = WIN32_ERROR(15636u32);
10419 pub const ERROR_INSTALL_OPTIONAL_PACKAGE_APPLICATIONID_NOT_UNIQUE: WIN32_ERROR = WIN32_ERROR(15637u32);
10420 pub const ERROR_PACKAGE_STAGING_ONHOLD: WIN32_ERROR = WIN32_ERROR(15638u32);
10421 pub const ERROR_INSTALL_INVALID_RELATED_SET_UPDATE: WIN32_ERROR = WIN32_ERROR(15639u32);
10422 pub const ERROR_INSTALL_OPTIONAL_PACKAGE_REQUIRES_MAIN_PACKAGE_FULLTRUST_CAPABILITY: WIN32_ERROR = WIN32_ERROR(15640u32);
10423 pub const ERROR_DEPLOYMENT_BLOCKED_BY_USER_LOG_OFF: WIN32_ERROR = WIN32_ERROR(15641u32);
10424 pub const ERROR_PROVISION_OPTIONAL_PACKAGE_REQUIRES_MAIN_PACKAGE_PROVISIONED: WIN32_ERROR = WIN32_ERROR(15642u32);
10425 pub const ERROR_PACKAGES_REPUTATION_CHECK_FAILED: WIN32_ERROR = WIN32_ERROR(15643u32);
10426 pub const ERROR_PACKAGES_REPUTATION_CHECK_TIMEDOUT: WIN32_ERROR = WIN32_ERROR(15644u32);
10427 pub const ERROR_DEPLOYMENT_OPTION_NOT_SUPPORTED: WIN32_ERROR = WIN32_ERROR(15645u32);
10428 pub const ERROR_APPINSTALLER_ACTIVATION_BLOCKED: WIN32_ERROR = WIN32_ERROR(15646u32);
10429 pub const ERROR_REGISTRATION_FROM_REMOTE_DRIVE_NOT_SUPPORTED: WIN32_ERROR = WIN32_ERROR(15647u32);
10430 pub const ERROR_APPX_RAW_DATA_WRITE_FAILED: WIN32_ERROR = WIN32_ERROR(15648u32);
10431 pub const ERROR_DEPLOYMENT_BLOCKED_BY_VOLUME_POLICY_PACKAGE: WIN32_ERROR = WIN32_ERROR(15649u32);
10432 pub const ERROR_DEPLOYMENT_BLOCKED_BY_VOLUME_POLICY_MACHINE: WIN32_ERROR = WIN32_ERROR(15650u32);
10433 pub const ERROR_DEPLOYMENT_BLOCKED_BY_PROFILE_POLICY: WIN32_ERROR = WIN32_ERROR(15651u32);
10434 pub const ERROR_DEPLOYMENT_FAILED_CONFLICTING_MUTABLE_PACKAGE_DIRECTORY: WIN32_ERROR = WIN32_ERROR(15652u32);
10435 pub const ERROR_SINGLETON_RESOURCE_INSTALLED_IN_ACTIVE_USER: WIN32_ERROR = WIN32_ERROR(15653u32);
10436 pub const ERROR_DIFFERENT_VERSION_OF_PACKAGED_SERVICE_INSTALLED: WIN32_ERROR = WIN32_ERROR(15654u32);
10437 pub const ERROR_SERVICE_EXISTS_AS_NON_PACKAGED_SERVICE: WIN32_ERROR = WIN32_ERROR(15655u32);
10438 pub const ERROR_PACKAGED_SERVICE_REQUIRES_ADMIN_PRIVILEGES: WIN32_ERROR = WIN32_ERROR(15656u32);
10439 pub const ERROR_REDIRECTION_TO_DEFAULT_ACCOUNT_NOT_ALLOWED: WIN32_ERROR = WIN32_ERROR(15657u32);
10440 pub const ERROR_PACKAGE_LACKS_CAPABILITY_TO_DEPLOY_ON_HOST: WIN32_ERROR = WIN32_ERROR(15658u32);
10441 pub const ERROR_UNSIGNED_PACKAGE_INVALID_CONTENT: WIN32_ERROR = WIN32_ERROR(15659u32);
10442 pub const ERROR_UNSIGNED_PACKAGE_INVALID_PUBLISHER_NAMESPACE: WIN32_ERROR = WIN32_ERROR(15660u32);
10443 pub const ERROR_SIGNED_PACKAGE_INVALID_PUBLISHER_NAMESPACE: WIN32_ERROR = WIN32_ERROR(15661u32);
10444 pub const ERROR_PACKAGE_EXTERNAL_LOCATION_NOT_ALLOWED: WIN32_ERROR = WIN32_ERROR(15662u32);
10445 pub const ERROR_INSTALL_FULLTRUST_HOSTRUNTIME_REQUIRES_MAIN_PACKAGE_FULLTRUST_CAPABILITY: WIN32_ERROR = WIN32_ERROR(15663u32);
10446 pub const ERROR_PACKAGE_LACKS_CAPABILITY_FOR_MANDATORY_STARTUPTASKS: WIN32_ERROR = WIN32_ERROR(15664u32);
10447 pub const ERROR_INSTALL_RESOLVE_HOSTRUNTIME_DEPENDENCY_FAILED: WIN32_ERROR = WIN32_ERROR(15665u32);
10448 pub const ERROR_MACHINE_SCOPE_NOT_ALLOWED: WIN32_ERROR = WIN32_ERROR(15666u32);
10449 pub const ERROR_CLASSIC_COMPAT_MODE_NOT_ALLOWED: WIN32_ERROR = WIN32_ERROR(15667u32);
10450 pub const ERROR_STAGEFROMUPDATEAGENT_PACKAGE_NOT_APPLICABLE: WIN32_ERROR = WIN32_ERROR(15668u32);
10451 pub const ERROR_PACKAGE_NOT_REGISTERED_FOR_USER: WIN32_ERROR = WIN32_ERROR(15669u32);
10452 pub const ERROR_STATE_LOAD_STORE_FAILED: WIN32_ERROR = WIN32_ERROR(15800u32);
10453 pub const ERROR_STATE_GET_VERSION_FAILED: WIN32_ERROR = WIN32_ERROR(15801u32);
10454 pub const ERROR_STATE_SET_VERSION_FAILED: WIN32_ERROR = WIN32_ERROR(15802u32);
10455 pub const ERROR_STATE_STRUCTURED_RESET_FAILED: WIN32_ERROR = WIN32_ERROR(15803u32);
10456 pub const ERROR_STATE_OPEN_CONTAINER_FAILED: WIN32_ERROR = WIN32_ERROR(15804u32);
10457 pub const ERROR_STATE_CREATE_CONTAINER_FAILED: WIN32_ERROR = WIN32_ERROR(15805u32);
10458 pub const ERROR_STATE_DELETE_CONTAINER_FAILED: WIN32_ERROR = WIN32_ERROR(15806u32);
10459 pub const ERROR_STATE_READ_SETTING_FAILED: WIN32_ERROR = WIN32_ERROR(15807u32);
10460 pub const ERROR_STATE_WRITE_SETTING_FAILED: WIN32_ERROR = WIN32_ERROR(15808u32);
10461 pub const ERROR_STATE_DELETE_SETTING_FAILED: WIN32_ERROR = WIN32_ERROR(15809u32);
10462 pub const ERROR_STATE_QUERY_SETTING_FAILED: WIN32_ERROR = WIN32_ERROR(15810u32);
10463 pub const ERROR_STATE_READ_COMPOSITE_SETTING_FAILED: WIN32_ERROR = WIN32_ERROR(15811u32);
10464 pub const ERROR_STATE_WRITE_COMPOSITE_SETTING_FAILED: WIN32_ERROR = WIN32_ERROR(15812u32);
10465 pub const ERROR_STATE_ENUMERATE_CONTAINER_FAILED: WIN32_ERROR = WIN32_ERROR(15813u32);
10466 pub const ERROR_STATE_ENUMERATE_SETTINGS_FAILED: WIN32_ERROR = WIN32_ERROR(15814u32);
10467 pub const ERROR_STATE_COMPOSITE_SETTING_VALUE_SIZE_LIMIT_EXCEEDED: WIN32_ERROR = WIN32_ERROR(15815u32);
10468 pub const ERROR_STATE_SETTING_VALUE_SIZE_LIMIT_EXCEEDED: WIN32_ERROR = WIN32_ERROR(15816u32);
10469 pub const ERROR_STATE_SETTING_NAME_SIZE_LIMIT_EXCEEDED: WIN32_ERROR = WIN32_ERROR(15817u32);
10470 pub const ERROR_STATE_CONTAINER_NAME_SIZE_LIMIT_EXCEEDED: WIN32_ERROR = WIN32_ERROR(15818u32);
10471 pub const ERROR_API_UNAVAILABLE: WIN32_ERROR = WIN32_ERROR(15841u32);
10472 pub const ERROR_NDIS_INTERFACE_CLOSING: WIN32_ERROR = WIN32_ERROR(2150891522u32);
10473 pub const ERROR_NDIS_BAD_VERSION: WIN32_ERROR = WIN32_ERROR(2150891524u32);
10474 pub const ERROR_NDIS_BAD_CHARACTERISTICS: WIN32_ERROR = WIN32_ERROR(2150891525u32);
10475 pub const ERROR_NDIS_ADAPTER_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(2150891526u32);
10476 pub const ERROR_NDIS_OPEN_FAILED: WIN32_ERROR = WIN32_ERROR(2150891527u32);
10477 pub const ERROR_NDIS_DEVICE_FAILED: WIN32_ERROR = WIN32_ERROR(2150891528u32);
10478 pub const ERROR_NDIS_MULTICAST_FULL: WIN32_ERROR = WIN32_ERROR(2150891529u32);
10479 pub const ERROR_NDIS_MULTICAST_EXISTS: WIN32_ERROR = WIN32_ERROR(2150891530u32);
10480 pub const ERROR_NDIS_MULTICAST_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(2150891531u32);
10481 pub const ERROR_NDIS_REQUEST_ABORTED: WIN32_ERROR = WIN32_ERROR(2150891532u32);
10482 pub const ERROR_NDIS_RESET_IN_PROGRESS: WIN32_ERROR = WIN32_ERROR(2150891533u32);
10483 pub const ERROR_NDIS_NOT_SUPPORTED: WIN32_ERROR = WIN32_ERROR(2150891707u32);
10484 pub const ERROR_NDIS_INVALID_PACKET: WIN32_ERROR = WIN32_ERROR(2150891535u32);
10485 pub const ERROR_NDIS_ADAPTER_NOT_READY: WIN32_ERROR = WIN32_ERROR(2150891537u32);
10486 pub const ERROR_NDIS_INVALID_LENGTH: WIN32_ERROR = WIN32_ERROR(2150891540u32);
10487 pub const ERROR_NDIS_INVALID_DATA: WIN32_ERROR = WIN32_ERROR(2150891541u32);
10488 pub const ERROR_NDIS_BUFFER_TOO_SHORT: WIN32_ERROR = WIN32_ERROR(2150891542u32);
10489 pub const ERROR_NDIS_INVALID_OID: WIN32_ERROR = WIN32_ERROR(2150891543u32);
10490 pub const ERROR_NDIS_ADAPTER_REMOVED: WIN32_ERROR = WIN32_ERROR(2150891544u32);
10491 pub const ERROR_NDIS_UNSUPPORTED_MEDIA: WIN32_ERROR = WIN32_ERROR(2150891545u32);
10492 pub const ERROR_NDIS_GROUP_ADDRESS_IN_USE: WIN32_ERROR = WIN32_ERROR(2150891546u32);
10493 pub const ERROR_NDIS_FILE_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(2150891547u32);
10494 pub const ERROR_NDIS_ERROR_READING_FILE: WIN32_ERROR = WIN32_ERROR(2150891548u32);
10495 pub const ERROR_NDIS_ALREADY_MAPPED: WIN32_ERROR = WIN32_ERROR(2150891549u32);
10496 pub const ERROR_NDIS_RESOURCE_CONFLICT: WIN32_ERROR = WIN32_ERROR(2150891550u32);
10497 pub const ERROR_NDIS_MEDIA_DISCONNECTED: WIN32_ERROR = WIN32_ERROR(2150891551u32);
10498 pub const ERROR_NDIS_INVALID_ADDRESS: WIN32_ERROR = WIN32_ERROR(2150891554u32);
10499 pub const ERROR_NDIS_INVALID_DEVICE_REQUEST: WIN32_ERROR = WIN32_ERROR(2150891536u32);
10500 pub const ERROR_NDIS_PAUSED: WIN32_ERROR = WIN32_ERROR(2150891562u32);
10501 pub const ERROR_NDIS_INTERFACE_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(2150891563u32);
10502 pub const ERROR_NDIS_UNSUPPORTED_REVISION: WIN32_ERROR = WIN32_ERROR(2150891564u32);
10503 pub const ERROR_NDIS_INVALID_PORT: WIN32_ERROR = WIN32_ERROR(2150891565u32);
10504 pub const ERROR_NDIS_INVALID_PORT_STATE: WIN32_ERROR = WIN32_ERROR(2150891566u32);
10505 pub const ERROR_NDIS_LOW_POWER_STATE: WIN32_ERROR = WIN32_ERROR(2150891567u32);
10506 pub const ERROR_NDIS_REINIT_REQUIRED: WIN32_ERROR = WIN32_ERROR(2150891568u32);
10507 pub const ERROR_NDIS_NO_QUEUES: WIN32_ERROR = WIN32_ERROR(2150891569u32);
10508 pub const ERROR_NDIS_DOT11_AUTO_CONFIG_ENABLED: WIN32_ERROR = WIN32_ERROR(2150899712u32);
10509 pub const ERROR_NDIS_DOT11_MEDIA_IN_USE: WIN32_ERROR = WIN32_ERROR(2150899713u32);
10510 pub const ERROR_NDIS_DOT11_POWER_STATE_INVALID: WIN32_ERROR = WIN32_ERROR(2150899714u32);
10511 pub const ERROR_NDIS_PM_WOL_PATTERN_LIST_FULL: WIN32_ERROR = WIN32_ERROR(2150899715u32);
10512 pub const ERROR_NDIS_PM_PROTOCOL_OFFLOAD_LIST_FULL: WIN32_ERROR = WIN32_ERROR(2150899716u32);
10513 pub const ERROR_NDIS_DOT11_AP_CHANNEL_CURRENTLY_NOT_AVAILABLE: WIN32_ERROR = WIN32_ERROR(2150899717u32);
10514 pub const ERROR_NDIS_DOT11_AP_BAND_CURRENTLY_NOT_AVAILABLE: WIN32_ERROR = WIN32_ERROR(2150899718u32);
10515 pub const ERROR_NDIS_DOT11_AP_CHANNEL_NOT_ALLOWED: WIN32_ERROR = WIN32_ERROR(2150899719u32);
10516 pub const ERROR_NDIS_DOT11_AP_BAND_NOT_ALLOWED: WIN32_ERROR = WIN32_ERROR(2150899720u32);
10517 pub const ERROR_NDIS_INDICATION_REQUIRED: WIN32_ERROR = WIN32_ERROR(3407873u32);
10518 pub const ERROR_NDIS_OFFLOAD_POLICY: WIN32_ERROR = WIN32_ERROR(3224637455u32);
10519 pub const ERROR_NDIS_OFFLOAD_CONNECTION_REJECTED: WIN32_ERROR = WIN32_ERROR(3224637458u32);
10520 pub const ERROR_NDIS_OFFLOAD_PATH_REJECTED: WIN32_ERROR = WIN32_ERROR(3224637459u32);
10521 pub const ERROR_HV_INVALID_HYPERCALL_CODE: WIN32_ERROR = WIN32_ERROR(3224698882u32);
10522 pub const ERROR_HV_INVALID_HYPERCALL_INPUT: WIN32_ERROR = WIN32_ERROR(3224698883u32);
10523 pub const ERROR_HV_INVALID_ALIGNMENT: WIN32_ERROR = WIN32_ERROR(3224698884u32);
10524 pub const ERROR_HV_INVALID_PARAMETER: WIN32_ERROR = WIN32_ERROR(3224698885u32);
10525 pub const ERROR_HV_ACCESS_DENIED: WIN32_ERROR = WIN32_ERROR(3224698886u32);
10526 pub const ERROR_HV_INVALID_PARTITION_STATE: WIN32_ERROR = WIN32_ERROR(3224698887u32);
10527 pub const ERROR_HV_OPERATION_DENIED: WIN32_ERROR = WIN32_ERROR(3224698888u32);
10528 pub const ERROR_HV_UNKNOWN_PROPERTY: WIN32_ERROR = WIN32_ERROR(3224698889u32);
10529 pub const ERROR_HV_PROPERTY_VALUE_OUT_OF_RANGE: WIN32_ERROR = WIN32_ERROR(3224698890u32);
10530 pub const ERROR_HV_INSUFFICIENT_MEMORY: WIN32_ERROR = WIN32_ERROR(3224698891u32);
10531 pub const ERROR_HV_PARTITION_TOO_DEEP: WIN32_ERROR = WIN32_ERROR(3224698892u32);
10532 pub const ERROR_HV_INVALID_PARTITION_ID: WIN32_ERROR = WIN32_ERROR(3224698893u32);
10533 pub const ERROR_HV_INVALID_VP_INDEX: WIN32_ERROR = WIN32_ERROR(3224698894u32);
10534 pub const ERROR_HV_INVALID_PORT_ID: WIN32_ERROR = WIN32_ERROR(3224698897u32);
10535 pub const ERROR_HV_INVALID_CONNECTION_ID: WIN32_ERROR = WIN32_ERROR(3224698898u32);
10536 pub const ERROR_HV_INSUFFICIENT_BUFFERS: WIN32_ERROR = WIN32_ERROR(3224698899u32);
10537 pub const ERROR_HV_NOT_ACKNOWLEDGED: WIN32_ERROR = WIN32_ERROR(3224698900u32);
10538 pub const ERROR_HV_INVALID_VP_STATE: WIN32_ERROR = WIN32_ERROR(3224698901u32);
10539 pub const ERROR_HV_ACKNOWLEDGED: WIN32_ERROR = WIN32_ERROR(3224698902u32);
10540 pub const ERROR_HV_INVALID_SAVE_RESTORE_STATE: WIN32_ERROR = WIN32_ERROR(3224698903u32);
10541 pub const ERROR_HV_INVALID_SYNIC_STATE: WIN32_ERROR = WIN32_ERROR(3224698904u32);
10542 pub const ERROR_HV_OBJECT_IN_USE: WIN32_ERROR = WIN32_ERROR(3224698905u32);
10543 pub const ERROR_HV_INVALID_PROXIMITY_DOMAIN_INFO: WIN32_ERROR = WIN32_ERROR(3224698906u32);
10544 pub const ERROR_HV_NO_DATA: WIN32_ERROR = WIN32_ERROR(3224698907u32);
10545 pub const ERROR_HV_INACTIVE: WIN32_ERROR = WIN32_ERROR(3224698908u32);
10546 pub const ERROR_HV_NO_RESOURCES: WIN32_ERROR = WIN32_ERROR(3224698909u32);
10547 pub const ERROR_HV_FEATURE_UNAVAILABLE: WIN32_ERROR = WIN32_ERROR(3224698910u32);
10548 pub const ERROR_HV_INSUFFICIENT_BUFFER: WIN32_ERROR = WIN32_ERROR(3224698931u32);
10549 pub const ERROR_HV_INSUFFICIENT_DEVICE_DOMAINS: WIN32_ERROR = WIN32_ERROR(3224698936u32);
10550 pub const ERROR_HV_CPUID_FEATURE_VALIDATION: WIN32_ERROR = WIN32_ERROR(3224698940u32);
10551 pub const ERROR_HV_CPUID_XSAVE_FEATURE_VALIDATION: WIN32_ERROR = WIN32_ERROR(3224698941u32);
10552 pub const ERROR_HV_PROCESSOR_STARTUP_TIMEOUT: WIN32_ERROR = WIN32_ERROR(3224698942u32);
10553 pub const ERROR_HV_SMX_ENABLED: WIN32_ERROR = WIN32_ERROR(3224698943u32);
10554 pub const ERROR_HV_INVALID_LP_INDEX: WIN32_ERROR = WIN32_ERROR(3224698945u32);
10555 pub const ERROR_HV_INVALID_REGISTER_VALUE: WIN32_ERROR = WIN32_ERROR(3224698960u32);
10556 pub const ERROR_HV_INVALID_VTL_STATE: WIN32_ERROR = WIN32_ERROR(3224698961u32);
10557 pub const ERROR_HV_NX_NOT_DETECTED: WIN32_ERROR = WIN32_ERROR(3224698965u32);
10558 pub const ERROR_HV_INVALID_DEVICE_ID: WIN32_ERROR = WIN32_ERROR(3224698967u32);
10559 pub const ERROR_HV_INVALID_DEVICE_STATE: WIN32_ERROR = WIN32_ERROR(3224698968u32);
10560 pub const ERROR_HV_PENDING_PAGE_REQUESTS: WIN32_ERROR = WIN32_ERROR(3473497u32);
10561 pub const ERROR_HV_PAGE_REQUEST_INVALID: WIN32_ERROR = WIN32_ERROR(3224698976u32);
10562 pub const ERROR_HV_INVALID_CPU_GROUP_ID: WIN32_ERROR = WIN32_ERROR(3224698991u32);
10563 pub const ERROR_HV_INVALID_CPU_GROUP_STATE: WIN32_ERROR = WIN32_ERROR(3224698992u32);
10564 pub const ERROR_HV_OPERATION_FAILED: WIN32_ERROR = WIN32_ERROR(3224698993u32);
10565 pub const ERROR_HV_NOT_ALLOWED_WITH_NESTED_VIRT_ACTIVE: WIN32_ERROR = WIN32_ERROR(3224698994u32);
10566 pub const ERROR_HV_INSUFFICIENT_ROOT_MEMORY: WIN32_ERROR = WIN32_ERROR(3224698995u32);
10567 pub const ERROR_HV_EVENT_BUFFER_ALREADY_FREED: WIN32_ERROR = WIN32_ERROR(3224698996u32);
10568 pub const ERROR_HV_INSUFFICIENT_CONTIGUOUS_MEMORY: WIN32_ERROR = WIN32_ERROR(3224698997u32);
10569 pub const ERROR_HV_DEVICE_NOT_IN_DOMAIN: WIN32_ERROR = WIN32_ERROR(3224698998u32);
10570 pub const ERROR_HV_NESTED_VM_EXIT: WIN32_ERROR = WIN32_ERROR(3224698999u32);
10571 pub const ERROR_HV_MSR_ACCESS_FAILED: WIN32_ERROR = WIN32_ERROR(3224699008u32);
10572 pub const ERROR_HV_NOT_PRESENT: WIN32_ERROR = WIN32_ERROR(3224702976u32);
10573 pub const ERROR_VID_DUPLICATE_HANDLER: WIN32_ERROR = WIN32_ERROR(3224829953u32);
10574 pub const ERROR_VID_TOO_MANY_HANDLERS: WIN32_ERROR = WIN32_ERROR(3224829954u32);
10575 pub const ERROR_VID_QUEUE_FULL: WIN32_ERROR = WIN32_ERROR(3224829955u32);
10576 pub const ERROR_VID_HANDLER_NOT_PRESENT: WIN32_ERROR = WIN32_ERROR(3224829956u32);
10577 pub const ERROR_VID_INVALID_OBJECT_NAME: WIN32_ERROR = WIN32_ERROR(3224829957u32);
10578 pub const ERROR_VID_PARTITION_NAME_TOO_LONG: WIN32_ERROR = WIN32_ERROR(3224829958u32);
10579 pub const ERROR_VID_MESSAGE_QUEUE_NAME_TOO_LONG: WIN32_ERROR = WIN32_ERROR(3224829959u32);
10580 pub const ERROR_VID_PARTITION_ALREADY_EXISTS: WIN32_ERROR = WIN32_ERROR(3224829960u32);
10581 pub const ERROR_VID_PARTITION_DOES_NOT_EXIST: WIN32_ERROR = WIN32_ERROR(3224829961u32);
10582 pub const ERROR_VID_PARTITION_NAME_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(3224829962u32);
10583 pub const ERROR_VID_MESSAGE_QUEUE_ALREADY_EXISTS: WIN32_ERROR = WIN32_ERROR(3224829963u32);
10584 pub const ERROR_VID_EXCEEDED_MBP_ENTRY_MAP_LIMIT: WIN32_ERROR = WIN32_ERROR(3224829964u32);
10585 pub const ERROR_VID_MB_STILL_REFERENCED: WIN32_ERROR = WIN32_ERROR(3224829965u32);
10586 pub const ERROR_VID_CHILD_GPA_PAGE_SET_CORRUPTED: WIN32_ERROR = WIN32_ERROR(3224829966u32);
10587 pub const ERROR_VID_INVALID_NUMA_SETTINGS: WIN32_ERROR = WIN32_ERROR(3224829967u32);
10588 pub const ERROR_VID_INVALID_NUMA_NODE_INDEX: WIN32_ERROR = WIN32_ERROR(3224829968u32);
10589 pub const ERROR_VID_NOTIFICATION_QUEUE_ALREADY_ASSOCIATED: WIN32_ERROR = WIN32_ERROR(3224829969u32);
10590 pub const ERROR_VID_INVALID_MEMORY_BLOCK_HANDLE: WIN32_ERROR = WIN32_ERROR(3224829970u32);
10591 pub const ERROR_VID_PAGE_RANGE_OVERFLOW: WIN32_ERROR = WIN32_ERROR(3224829971u32);
10592 pub const ERROR_VID_INVALID_MESSAGE_QUEUE_HANDLE: WIN32_ERROR = WIN32_ERROR(3224829972u32);
10593 pub const ERROR_VID_INVALID_GPA_RANGE_HANDLE: WIN32_ERROR = WIN32_ERROR(3224829973u32);
10594 pub const ERROR_VID_NO_MEMORY_BLOCK_NOTIFICATION_QUEUE: WIN32_ERROR = WIN32_ERROR(3224829974u32);
10595 pub const ERROR_VID_MEMORY_BLOCK_LOCK_COUNT_EXCEEDED: WIN32_ERROR = WIN32_ERROR(3224829975u32);
10596 pub const ERROR_VID_INVALID_PPM_HANDLE: WIN32_ERROR = WIN32_ERROR(3224829976u32);
10597 pub const ERROR_VID_MBPS_ARE_LOCKED: WIN32_ERROR = WIN32_ERROR(3224829977u32);
10598 pub const ERROR_VID_MESSAGE_QUEUE_CLOSED: WIN32_ERROR = WIN32_ERROR(3224829978u32);
10599 pub const ERROR_VID_VIRTUAL_PROCESSOR_LIMIT_EXCEEDED: WIN32_ERROR = WIN32_ERROR(3224829979u32);
10600 pub const ERROR_VID_STOP_PENDING: WIN32_ERROR = WIN32_ERROR(3224829980u32);
10601 pub const ERROR_VID_INVALID_PROCESSOR_STATE: WIN32_ERROR = WIN32_ERROR(3224829981u32);
10602 pub const ERROR_VID_EXCEEDED_KM_CONTEXT_COUNT_LIMIT: WIN32_ERROR = WIN32_ERROR(3224829982u32);
10603 pub const ERROR_VID_KM_INTERFACE_ALREADY_INITIALIZED: WIN32_ERROR = WIN32_ERROR(3224829983u32);
10604 pub const ERROR_VID_MB_PROPERTY_ALREADY_SET_RESET: WIN32_ERROR = WIN32_ERROR(3224829984u32);
10605 pub const ERROR_VID_MMIO_RANGE_DESTROYED: WIN32_ERROR = WIN32_ERROR(3224829985u32);
10606 pub const ERROR_VID_INVALID_CHILD_GPA_PAGE_SET: WIN32_ERROR = WIN32_ERROR(3224829986u32);
10607 pub const ERROR_VID_RESERVE_PAGE_SET_IS_BEING_USED: WIN32_ERROR = WIN32_ERROR(3224829987u32);
10608 pub const ERROR_VID_RESERVE_PAGE_SET_TOO_SMALL: WIN32_ERROR = WIN32_ERROR(3224829988u32);
10609 pub const ERROR_VID_MBP_ALREADY_LOCKED_USING_RESERVED_PAGE: WIN32_ERROR = WIN32_ERROR(3224829989u32);
10610 pub const ERROR_VID_MBP_COUNT_EXCEEDED_LIMIT: WIN32_ERROR = WIN32_ERROR(3224829990u32);
10611 pub const ERROR_VID_SAVED_STATE_CORRUPT: WIN32_ERROR = WIN32_ERROR(3224829991u32);
10612 pub const ERROR_VID_SAVED_STATE_UNRECOGNIZED_ITEM: WIN32_ERROR = WIN32_ERROR(3224829992u32);
10613 pub const ERROR_VID_SAVED_STATE_INCOMPATIBLE: WIN32_ERROR = WIN32_ERROR(3224829993u32);
10614 pub const ERROR_VID_VTL_ACCESS_DENIED: WIN32_ERROR = WIN32_ERROR(3224829994u32);
10615 pub const ERROR_VMCOMPUTE_TERMINATED_DURING_START: WIN32_ERROR = WIN32_ERROR(3224830208u32);
10616 pub const ERROR_VMCOMPUTE_IMAGE_MISMATCH: WIN32_ERROR = WIN32_ERROR(3224830209u32);
10617 pub const ERROR_VMCOMPUTE_HYPERV_NOT_INSTALLED: WIN32_ERROR = WIN32_ERROR(3224830210u32);
10618 pub const ERROR_VMCOMPUTE_OPERATION_PENDING: WIN32_ERROR = WIN32_ERROR(3224830211u32);
10619 pub const ERROR_VMCOMPUTE_TOO_MANY_NOTIFICATIONS: WIN32_ERROR = WIN32_ERROR(3224830212u32);
10620 pub const ERROR_VMCOMPUTE_INVALID_STATE: WIN32_ERROR = WIN32_ERROR(3224830213u32);
10621 pub const ERROR_VMCOMPUTE_UNEXPECTED_EXIT: WIN32_ERROR = WIN32_ERROR(3224830214u32);
10622 pub const ERROR_VMCOMPUTE_TERMINATED: WIN32_ERROR = WIN32_ERROR(3224830215u32);
10623 pub const ERROR_VMCOMPUTE_CONNECT_FAILED: WIN32_ERROR = WIN32_ERROR(3224830216u32);
10624 pub const ERROR_VMCOMPUTE_TIMEOUT: WIN32_ERROR = WIN32_ERROR(3224830217u32);
10625 pub const ERROR_VMCOMPUTE_CONNECTION_CLOSED: WIN32_ERROR = WIN32_ERROR(3224830218u32);
10626 pub const ERROR_VMCOMPUTE_UNKNOWN_MESSAGE: WIN32_ERROR = WIN32_ERROR(3224830219u32);
10627 pub const ERROR_VMCOMPUTE_UNSUPPORTED_PROTOCOL_VERSION: WIN32_ERROR = WIN32_ERROR(3224830220u32);
10628 pub const ERROR_VMCOMPUTE_INVALID_JSON: WIN32_ERROR = WIN32_ERROR(3224830221u32);
10629 pub const ERROR_VMCOMPUTE_SYSTEM_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(3224830222u32);
10630 pub const ERROR_VMCOMPUTE_SYSTEM_ALREADY_EXISTS: WIN32_ERROR = WIN32_ERROR(3224830223u32);
10631 pub const ERROR_VMCOMPUTE_SYSTEM_ALREADY_STOPPED: WIN32_ERROR = WIN32_ERROR(3224830224u32);
10632 pub const ERROR_VMCOMPUTE_PROTOCOL_ERROR: WIN32_ERROR = WIN32_ERROR(3224830225u32);
10633 pub const ERROR_VMCOMPUTE_INVALID_LAYER: WIN32_ERROR = WIN32_ERROR(3224830226u32);
10634 pub const ERROR_VMCOMPUTE_WINDOWS_INSIDER_REQUIRED: WIN32_ERROR = WIN32_ERROR(3224830227u32);
10635 pub const ERROR_VNET_VIRTUAL_SWITCH_NAME_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(3224830464u32);
10636 pub const ERROR_VID_REMOTE_NODE_PARENT_GPA_PAGES_USED: WIN32_ERROR = WIN32_ERROR(2151088129u32);
10637 pub const ERROR_VSMB_SAVED_STATE_FILE_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(3224830976u32);
10638 pub const ERROR_VSMB_SAVED_STATE_CORRUPT: WIN32_ERROR = WIN32_ERROR(3224830977u32);
10639 pub const ERROR_VOLMGR_INCOMPLETE_REGENERATION: WIN32_ERROR = WIN32_ERROR(2151153665u32);
10640 pub const ERROR_VOLMGR_INCOMPLETE_DISK_MIGRATION: WIN32_ERROR = WIN32_ERROR(2151153666u32);
10641 pub const ERROR_VOLMGR_DATABASE_FULL: WIN32_ERROR = WIN32_ERROR(3224895489u32);
10642 pub const ERROR_VOLMGR_DISK_CONFIGURATION_CORRUPTED: WIN32_ERROR = WIN32_ERROR(3224895490u32);
10643 pub const ERROR_VOLMGR_DISK_CONFIGURATION_NOT_IN_SYNC: WIN32_ERROR = WIN32_ERROR(3224895491u32);
10644 pub const ERROR_VOLMGR_PACK_CONFIG_UPDATE_FAILED: WIN32_ERROR = WIN32_ERROR(3224895492u32);
10645 pub const ERROR_VOLMGR_DISK_CONTAINS_NON_SIMPLE_VOLUME: WIN32_ERROR = WIN32_ERROR(3224895493u32);
10646 pub const ERROR_VOLMGR_DISK_DUPLICATE: WIN32_ERROR = WIN32_ERROR(3224895494u32);
10647 pub const ERROR_VOLMGR_DISK_DYNAMIC: WIN32_ERROR = WIN32_ERROR(3224895495u32);
10648 pub const ERROR_VOLMGR_DISK_ID_INVALID: WIN32_ERROR = WIN32_ERROR(3224895496u32);
10649 pub const ERROR_VOLMGR_DISK_INVALID: WIN32_ERROR = WIN32_ERROR(3224895497u32);
10650 pub const ERROR_VOLMGR_DISK_LAST_VOTER: WIN32_ERROR = WIN32_ERROR(3224895498u32);
10651 pub const ERROR_VOLMGR_DISK_LAYOUT_INVALID: WIN32_ERROR = WIN32_ERROR(3224895499u32);
10652 pub const ERROR_VOLMGR_DISK_LAYOUT_NON_BASIC_BETWEEN_BASIC_PARTITIONS: WIN32_ERROR = WIN32_ERROR(3224895500u32);
10653 pub const ERROR_VOLMGR_DISK_LAYOUT_NOT_CYLINDER_ALIGNED: WIN32_ERROR = WIN32_ERROR(3224895501u32);
10654 pub const ERROR_VOLMGR_DISK_LAYOUT_PARTITIONS_TOO_SMALL: WIN32_ERROR = WIN32_ERROR(3224895502u32);
10655 pub const ERROR_VOLMGR_DISK_LAYOUT_PRIMARY_BETWEEN_LOGICAL_PARTITIONS: WIN32_ERROR = WIN32_ERROR(3224895503u32);
10656 pub const ERROR_VOLMGR_DISK_LAYOUT_TOO_MANY_PARTITIONS: WIN32_ERROR = WIN32_ERROR(3224895504u32);
10657 pub const ERROR_VOLMGR_DISK_MISSING: WIN32_ERROR = WIN32_ERROR(3224895505u32);
10658 pub const ERROR_VOLMGR_DISK_NOT_EMPTY: WIN32_ERROR = WIN32_ERROR(3224895506u32);
10659 pub const ERROR_VOLMGR_DISK_NOT_ENOUGH_SPACE: WIN32_ERROR = WIN32_ERROR(3224895507u32);
10660 pub const ERROR_VOLMGR_DISK_REVECTORING_FAILED: WIN32_ERROR = WIN32_ERROR(3224895508u32);
10661 pub const ERROR_VOLMGR_DISK_SECTOR_SIZE_INVALID: WIN32_ERROR = WIN32_ERROR(3224895509u32);
10662 pub const ERROR_VOLMGR_DISK_SET_NOT_CONTAINED: WIN32_ERROR = WIN32_ERROR(3224895510u32);
10663 pub const ERROR_VOLMGR_DISK_USED_BY_MULTIPLE_MEMBERS: WIN32_ERROR = WIN32_ERROR(3224895511u32);
10664 pub const ERROR_VOLMGR_DISK_USED_BY_MULTIPLE_PLEXES: WIN32_ERROR = WIN32_ERROR(3224895512u32);
10665 pub const ERROR_VOLMGR_DYNAMIC_DISK_NOT_SUPPORTED: WIN32_ERROR = WIN32_ERROR(3224895513u32);
10666 pub const ERROR_VOLMGR_EXTENT_ALREADY_USED: WIN32_ERROR = WIN32_ERROR(3224895514u32);
10667 pub const ERROR_VOLMGR_EXTENT_NOT_CONTIGUOUS: WIN32_ERROR = WIN32_ERROR(3224895515u32);
10668 pub const ERROR_VOLMGR_EXTENT_NOT_IN_PUBLIC_REGION: WIN32_ERROR = WIN32_ERROR(3224895516u32);
10669 pub const ERROR_VOLMGR_EXTENT_NOT_SECTOR_ALIGNED: WIN32_ERROR = WIN32_ERROR(3224895517u32);
10670 pub const ERROR_VOLMGR_EXTENT_OVERLAPS_EBR_PARTITION: WIN32_ERROR = WIN32_ERROR(3224895518u32);
10671 pub const ERROR_VOLMGR_EXTENT_VOLUME_LENGTHS_DO_NOT_MATCH: WIN32_ERROR = WIN32_ERROR(3224895519u32);
10672 pub const ERROR_VOLMGR_FAULT_TOLERANT_NOT_SUPPORTED: WIN32_ERROR = WIN32_ERROR(3224895520u32);
10673 pub const ERROR_VOLMGR_INTERLEAVE_LENGTH_INVALID: WIN32_ERROR = WIN32_ERROR(3224895521u32);
10674 pub const ERROR_VOLMGR_MAXIMUM_REGISTERED_USERS: WIN32_ERROR = WIN32_ERROR(3224895522u32);
10675 pub const ERROR_VOLMGR_MEMBER_IN_SYNC: WIN32_ERROR = WIN32_ERROR(3224895523u32);
10676 pub const ERROR_VOLMGR_MEMBER_INDEX_DUPLICATE: WIN32_ERROR = WIN32_ERROR(3224895524u32);
10677 pub const ERROR_VOLMGR_MEMBER_INDEX_INVALID: WIN32_ERROR = WIN32_ERROR(3224895525u32);
10678 pub const ERROR_VOLMGR_MEMBER_MISSING: WIN32_ERROR = WIN32_ERROR(3224895526u32);
10679 pub const ERROR_VOLMGR_MEMBER_NOT_DETACHED: WIN32_ERROR = WIN32_ERROR(3224895527u32);
10680 pub const ERROR_VOLMGR_MEMBER_REGENERATING: WIN32_ERROR = WIN32_ERROR(3224895528u32);
10681 pub const ERROR_VOLMGR_ALL_DISKS_FAILED: WIN32_ERROR = WIN32_ERROR(3224895529u32);
10682 pub const ERROR_VOLMGR_NO_REGISTERED_USERS: WIN32_ERROR = WIN32_ERROR(3224895530u32);
10683 pub const ERROR_VOLMGR_NO_SUCH_USER: WIN32_ERROR = WIN32_ERROR(3224895531u32);
10684 pub const ERROR_VOLMGR_NOTIFICATION_RESET: WIN32_ERROR = WIN32_ERROR(3224895532u32);
10685 pub const ERROR_VOLMGR_NUMBER_OF_MEMBERS_INVALID: WIN32_ERROR = WIN32_ERROR(3224895533u32);
10686 pub const ERROR_VOLMGR_NUMBER_OF_PLEXES_INVALID: WIN32_ERROR = WIN32_ERROR(3224895534u32);
10687 pub const ERROR_VOLMGR_PACK_DUPLICATE: WIN32_ERROR = WIN32_ERROR(3224895535u32);
10688 pub const ERROR_VOLMGR_PACK_ID_INVALID: WIN32_ERROR = WIN32_ERROR(3224895536u32);
10689 pub const ERROR_VOLMGR_PACK_INVALID: WIN32_ERROR = WIN32_ERROR(3224895537u32);
10690 pub const ERROR_VOLMGR_PACK_NAME_INVALID: WIN32_ERROR = WIN32_ERROR(3224895538u32);
10691 pub const ERROR_VOLMGR_PACK_OFFLINE: WIN32_ERROR = WIN32_ERROR(3224895539u32);
10692 pub const ERROR_VOLMGR_PACK_HAS_QUORUM: WIN32_ERROR = WIN32_ERROR(3224895540u32);
10693 pub const ERROR_VOLMGR_PACK_WITHOUT_QUORUM: WIN32_ERROR = WIN32_ERROR(3224895541u32);
10694 pub const ERROR_VOLMGR_PARTITION_STYLE_INVALID: WIN32_ERROR = WIN32_ERROR(3224895542u32);
10695 pub const ERROR_VOLMGR_PARTITION_UPDATE_FAILED: WIN32_ERROR = WIN32_ERROR(3224895543u32);
10696 pub const ERROR_VOLMGR_PLEX_IN_SYNC: WIN32_ERROR = WIN32_ERROR(3224895544u32);
10697 pub const ERROR_VOLMGR_PLEX_INDEX_DUPLICATE: WIN32_ERROR = WIN32_ERROR(3224895545u32);
10698 pub const ERROR_VOLMGR_PLEX_INDEX_INVALID: WIN32_ERROR = WIN32_ERROR(3224895546u32);
10699 pub const ERROR_VOLMGR_PLEX_LAST_ACTIVE: WIN32_ERROR = WIN32_ERROR(3224895547u32);
10700 pub const ERROR_VOLMGR_PLEX_MISSING: WIN32_ERROR = WIN32_ERROR(3224895548u32);
10701 pub const ERROR_VOLMGR_PLEX_REGENERATING: WIN32_ERROR = WIN32_ERROR(3224895549u32);
10702 pub const ERROR_VOLMGR_PLEX_TYPE_INVALID: WIN32_ERROR = WIN32_ERROR(3224895550u32);
10703 pub const ERROR_VOLMGR_PLEX_NOT_RAID5: WIN32_ERROR = WIN32_ERROR(3224895551u32);
10704 pub const ERROR_VOLMGR_PLEX_NOT_SIMPLE: WIN32_ERROR = WIN32_ERROR(3224895552u32);
10705 pub const ERROR_VOLMGR_STRUCTURE_SIZE_INVALID: WIN32_ERROR = WIN32_ERROR(3224895553u32);
10706 pub const ERROR_VOLMGR_TOO_MANY_NOTIFICATION_REQUESTS: WIN32_ERROR = WIN32_ERROR(3224895554u32);
10707 pub const ERROR_VOLMGR_TRANSACTION_IN_PROGRESS: WIN32_ERROR = WIN32_ERROR(3224895555u32);
10708 pub const ERROR_VOLMGR_UNEXPECTED_DISK_LAYOUT_CHANGE: WIN32_ERROR = WIN32_ERROR(3224895556u32);
10709 pub const ERROR_VOLMGR_VOLUME_CONTAINS_MISSING_DISK: WIN32_ERROR = WIN32_ERROR(3224895557u32);
10710 pub const ERROR_VOLMGR_VOLUME_ID_INVALID: WIN32_ERROR = WIN32_ERROR(3224895558u32);
10711 pub const ERROR_VOLMGR_VOLUME_LENGTH_INVALID: WIN32_ERROR = WIN32_ERROR(3224895559u32);
10712 pub const ERROR_VOLMGR_VOLUME_LENGTH_NOT_SECTOR_SIZE_MULTIPLE: WIN32_ERROR = WIN32_ERROR(3224895560u32);
10713 pub const ERROR_VOLMGR_VOLUME_NOT_MIRRORED: WIN32_ERROR = WIN32_ERROR(3224895561u32);
10714 pub const ERROR_VOLMGR_VOLUME_NOT_RETAINED: WIN32_ERROR = WIN32_ERROR(3224895562u32);
10715 pub const ERROR_VOLMGR_VOLUME_OFFLINE: WIN32_ERROR = WIN32_ERROR(3224895563u32);
10716 pub const ERROR_VOLMGR_VOLUME_RETAINED: WIN32_ERROR = WIN32_ERROR(3224895564u32);
10717 pub const ERROR_VOLMGR_NUMBER_OF_EXTENTS_INVALID: WIN32_ERROR = WIN32_ERROR(3224895565u32);
10718 pub const ERROR_VOLMGR_DIFFERENT_SECTOR_SIZE: WIN32_ERROR = WIN32_ERROR(3224895566u32);
10719 pub const ERROR_VOLMGR_BAD_BOOT_DISK: WIN32_ERROR = WIN32_ERROR(3224895567u32);
10720 pub const ERROR_VOLMGR_PACK_CONFIG_OFFLINE: WIN32_ERROR = WIN32_ERROR(3224895568u32);
10721 pub const ERROR_VOLMGR_PACK_CONFIG_ONLINE: WIN32_ERROR = WIN32_ERROR(3224895569u32);
10722 pub const ERROR_VOLMGR_NOT_PRIMARY_PACK: WIN32_ERROR = WIN32_ERROR(3224895570u32);
10723 pub const ERROR_VOLMGR_PACK_LOG_UPDATE_FAILED: WIN32_ERROR = WIN32_ERROR(3224895571u32);
10724 pub const ERROR_VOLMGR_NUMBER_OF_DISKS_IN_PLEX_INVALID: WIN32_ERROR = WIN32_ERROR(3224895572u32);
10725 pub const ERROR_VOLMGR_NUMBER_OF_DISKS_IN_MEMBER_INVALID: WIN32_ERROR = WIN32_ERROR(3224895573u32);
10726 pub const ERROR_VOLMGR_VOLUME_MIRRORED: WIN32_ERROR = WIN32_ERROR(3224895574u32);
10727 pub const ERROR_VOLMGR_PLEX_NOT_SIMPLE_SPANNED: WIN32_ERROR = WIN32_ERROR(3224895575u32);
10728 pub const ERROR_VOLMGR_NO_VALID_LOG_COPIES: WIN32_ERROR = WIN32_ERROR(3224895576u32);
10729 pub const ERROR_VOLMGR_PRIMARY_PACK_PRESENT: WIN32_ERROR = WIN32_ERROR(3224895577u32);
10730 pub const ERROR_VOLMGR_NUMBER_OF_DISKS_INVALID: WIN32_ERROR = WIN32_ERROR(3224895578u32);
10731 pub const ERROR_VOLMGR_MIRROR_NOT_SUPPORTED: WIN32_ERROR = WIN32_ERROR(3224895579u32);
10732 pub const ERROR_VOLMGR_RAID5_NOT_SUPPORTED: WIN32_ERROR = WIN32_ERROR(3224895580u32);
10733 pub const ERROR_BCD_NOT_ALL_ENTRIES_IMPORTED: WIN32_ERROR = WIN32_ERROR(2151219201u32);
10734 pub const ERROR_BCD_TOO_MANY_ELEMENTS: WIN32_ERROR = WIN32_ERROR(3224961026u32);
10735 pub const ERROR_BCD_NOT_ALL_ENTRIES_SYNCHRONIZED: WIN32_ERROR = WIN32_ERROR(2151219203u32);
10736 pub const ERROR_VHD_DRIVE_FOOTER_MISSING: WIN32_ERROR = WIN32_ERROR(3225026561u32);
10737 pub const ERROR_VHD_DRIVE_FOOTER_CHECKSUM_MISMATCH: WIN32_ERROR = WIN32_ERROR(3225026562u32);
10738 pub const ERROR_VHD_DRIVE_FOOTER_CORRUPT: WIN32_ERROR = WIN32_ERROR(3225026563u32);
10739 pub const ERROR_VHD_FORMAT_UNKNOWN: WIN32_ERROR = WIN32_ERROR(3225026564u32);
10740 pub const ERROR_VHD_FORMAT_UNSUPPORTED_VERSION: WIN32_ERROR = WIN32_ERROR(3225026565u32);
10741 pub const ERROR_VHD_SPARSE_HEADER_CHECKSUM_MISMATCH: WIN32_ERROR = WIN32_ERROR(3225026566u32);
10742 pub const ERROR_VHD_SPARSE_HEADER_UNSUPPORTED_VERSION: WIN32_ERROR = WIN32_ERROR(3225026567u32);
10743 pub const ERROR_VHD_SPARSE_HEADER_CORRUPT: WIN32_ERROR = WIN32_ERROR(3225026568u32);
10744 pub const ERROR_VHD_BLOCK_ALLOCATION_FAILURE: WIN32_ERROR = WIN32_ERROR(3225026569u32);
10745 pub const ERROR_VHD_BLOCK_ALLOCATION_TABLE_CORRUPT: WIN32_ERROR = WIN32_ERROR(3225026570u32);
10746 pub const ERROR_VHD_INVALID_BLOCK_SIZE: WIN32_ERROR = WIN32_ERROR(3225026571u32);
10747 pub const ERROR_VHD_BITMAP_MISMATCH: WIN32_ERROR = WIN32_ERROR(3225026572u32);
10748 pub const ERROR_VHD_PARENT_VHD_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(3225026573u32);
10749 pub const ERROR_VHD_CHILD_PARENT_ID_MISMATCH: WIN32_ERROR = WIN32_ERROR(3225026574u32);
10750 pub const ERROR_VHD_CHILD_PARENT_TIMESTAMP_MISMATCH: WIN32_ERROR = WIN32_ERROR(3225026575u32);
10751 pub const ERROR_VHD_METADATA_READ_FAILURE: WIN32_ERROR = WIN32_ERROR(3225026576u32);
10752 pub const ERROR_VHD_METADATA_WRITE_FAILURE: WIN32_ERROR = WIN32_ERROR(3225026577u32);
10753 pub const ERROR_VHD_INVALID_SIZE: WIN32_ERROR = WIN32_ERROR(3225026578u32);
10754 pub const ERROR_VHD_INVALID_FILE_SIZE: WIN32_ERROR = WIN32_ERROR(3225026579u32);
10755 pub const ERROR_VIRTDISK_PROVIDER_NOT_FOUND: WIN32_ERROR = WIN32_ERROR(3225026580u32);
10756 pub const ERROR_VIRTDISK_NOT_VIRTUAL_DISK: WIN32_ERROR = WIN32_ERROR(3225026581u32);
10757 pub const ERROR_VHD_PARENT_VHD_ACCESS_DENIED: WIN32_ERROR = WIN32_ERROR(3225026582u32);
10758 pub const ERROR_VHD_CHILD_PARENT_SIZE_MISMATCH: WIN32_ERROR = WIN32_ERROR(3225026583u32);
10759 pub const ERROR_VHD_DIFFERENCING_CHAIN_CYCLE_DETECTED: WIN32_ERROR = WIN32_ERROR(3225026584u32);
10760 pub const ERROR_VHD_DIFFERENCING_CHAIN_ERROR_IN_PARENT: WIN32_ERROR = WIN32_ERROR(3225026585u32);
10761 pub const ERROR_VIRTUAL_DISK_LIMITATION: WIN32_ERROR = WIN32_ERROR(3225026586u32);
10762 pub const ERROR_VHD_INVALID_TYPE: WIN32_ERROR = WIN32_ERROR(3225026587u32);
10763 pub const ERROR_VHD_INVALID_STATE: WIN32_ERROR = WIN32_ERROR(3225026588u32);
10764 pub const ERROR_VIRTDISK_UNSUPPORTED_DISK_SECTOR_SIZE: WIN32_ERROR = WIN32_ERROR(3225026589u32);
10765 pub const ERROR_VIRTDISK_DISK_ALREADY_OWNED: WIN32_ERROR = WIN32_ERROR(3225026590u32);
10766 pub const ERROR_VIRTDISK_DISK_ONLINE_AND_WRITABLE: WIN32_ERROR = WIN32_ERROR(3225026591u32);
10767 pub const ERROR_CTLOG_TRACKING_NOT_INITIALIZED: WIN32_ERROR = WIN32_ERROR(3225026592u32);
10768 pub const ERROR_CTLOG_LOGFILE_SIZE_EXCEEDED_MAXSIZE: WIN32_ERROR = WIN32_ERROR(3225026593u32);
10769 pub const ERROR_CTLOG_VHD_CHANGED_OFFLINE: WIN32_ERROR = WIN32_ERROR(3225026594u32);
10770 pub const ERROR_CTLOG_INVALID_TRACKING_STATE: WIN32_ERROR = WIN32_ERROR(3225026595u32);
10771 pub const ERROR_CTLOG_INCONSISTENT_TRACKING_FILE: WIN32_ERROR = WIN32_ERROR(3225026596u32);
10772 pub const ERROR_VHD_RESIZE_WOULD_TRUNCATE_DATA: WIN32_ERROR = WIN32_ERROR(3225026597u32);
10773 pub const ERROR_VHD_COULD_NOT_COMPUTE_MINIMUM_VIRTUAL_SIZE: WIN32_ERROR = WIN32_ERROR(3225026598u32);
10774 pub const ERROR_VHD_ALREADY_AT_OR_BELOW_MINIMUM_VIRTUAL_SIZE: WIN32_ERROR = WIN32_ERROR(3225026599u32);
10775 pub const ERROR_VHD_METADATA_FULL: WIN32_ERROR = WIN32_ERROR(3225026600u32);
10776 pub const ERROR_VHD_INVALID_CHANGE_TRACKING_ID: WIN32_ERROR = WIN32_ERROR(3225026601u32);
10777 pub const ERROR_VHD_CHANGE_TRACKING_DISABLED: WIN32_ERROR = WIN32_ERROR(3225026602u32);
10778 pub const ERROR_VHD_MISSING_CHANGE_TRACKING_INFORMATION: WIN32_ERROR = WIN32_ERROR(3225026608u32);
10779 pub const ERROR_QUERY_STORAGE_ERROR: WIN32_ERROR = WIN32_ERROR(2151284737u32);
10780 impl ::std::convert::From<u32> for WIN32_ERROR {
from(value: u32) -> Self10781     fn from(value: u32) -> Self {
10782         Self(value)
10783     }
10784 }
10785 unsafe impl ::windows::runtime::Abi for WIN32_ERROR {
10786     type Abi = Self;
10787     type DefaultType = Self;
10788 }
10789 impl ::std::ops::BitOr for WIN32_ERROR {
10790     type Output = Self;
bitor(self, rhs: Self) -> Self10791     fn bitor(self, rhs: Self) -> Self {
10792         Self(self.0 | rhs.0)
10793     }
10794 }
10795 impl ::std::ops::BitAnd for WIN32_ERROR {
10796     type Output = Self;
bitand(self, rhs: Self) -> Self10797     fn bitand(self, rhs: Self) -> Self {
10798         Self(self.0 & rhs.0)
10799     }
10800 }
10801 impl ::std::ops::BitOrAssign for WIN32_ERROR {
bitor_assign(&mut self, rhs: Self)10802     fn bitor_assign(&mut self, rhs: Self) {
10803         self.0.bitor_assign(rhs.0)
10804     }
10805 }
10806 impl ::std::ops::BitAndAssign for WIN32_ERROR {
bitand_assign(&mut self, rhs: Self)10807     fn bitand_assign(&mut self, rhs: Self) {
10808         self.0.bitand_assign(rhs.0)
10809     }
10810 }
10811 impl ::std::ops::Not for WIN32_ERROR {
10812     type Output = Self;
not(self) -> Self10813     fn not(self) -> Self {
10814         Self(self.0.not())
10815     }
10816 }
10817 impl ::std::convert::From<WIN32_ERROR> for ::windows::runtime::HRESULT {
from(value: WIN32_ERROR) -> Self10818     fn from(value: WIN32_ERROR) -> Self {
10819         Self(if value.0 as i32 <= 0 { value.0 } else { (value.0 & 0x0000_FFFF) | (7 << 16) | 0x8000_0000 })
10820     }
10821 }
10822 pub const WINCODEC_ERR_ALREADYLOCKED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003292403i32 as _);
10823 pub const WINCODEC_ERR_BADHEADER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003292319i32 as _);
10824 pub const WINCODEC_ERR_BADIMAGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003292320i32 as _);
10825 pub const WINCODEC_ERR_BADMETADATAHEADER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003292317i32 as _);
10826 pub const WINCODEC_ERR_BADSTREAMDATA: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003292304i32 as _);
10827 pub const WINCODEC_ERR_CODECNOTHUMBNAIL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003292348i32 as _);
10828 pub const WINCODEC_ERR_CODECPRESENT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003292349i32 as _);
10829 pub const WINCODEC_ERR_CODECTOOMANYSCANLINES: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003292346i32 as _);
10830 pub const WINCODEC_ERR_COMPONENTINITIALIZEFAILURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003292277i32 as _);
10831 pub const WINCODEC_ERR_COMPONENTNOTFOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003292336i32 as _);
10832 pub const WINCODEC_ERR_DUPLICATEMETADATAPRESENT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003292275i32 as _);
10833 pub const WINCODEC_ERR_FRAMEMISSING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003292318i32 as _);
10834 pub const WINCODEC_ERR_IMAGESIZEOUTOFRANGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003292335i32 as _);
10835 pub const WINCODEC_ERR_INSUFFICIENTBUFFER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003292276i32 as _);
10836 pub const WINCODEC_ERR_INTERNALERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003292344i32 as _);
10837 pub const WINCODEC_ERR_INVALIDJPEGSCANINDEX: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003292266i32 as _);
10838 pub const WINCODEC_ERR_INVALIDPROGRESSIVELEVEL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003292267i32 as _);
10839 pub const WINCODEC_ERR_INVALIDQUERYCHARACTER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003292269i32 as _);
10840 pub const WINCODEC_ERR_INVALIDQUERYREQUEST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003292272i32 as _);
10841 pub const WINCODEC_ERR_INVALIDREGISTRATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003292278i32 as _);
10842 pub const WINCODEC_ERR_NOTINITIALIZED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003292404i32 as _);
10843 pub const WINCODEC_ERR_PALETTEUNAVAILABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003292347i32 as _);
10844 pub const WINCODEC_ERR_PROPERTYNOTFOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003292352i32 as _);
10845 pub const WINCODEC_ERR_PROPERTYNOTSUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003292351i32 as _);
10846 pub const WINCODEC_ERR_PROPERTYSIZE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003292350i32 as _);
10847 pub const WINCODEC_ERR_PROPERTYUNEXPECTEDTYPE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003292274i32 as _);
10848 pub const WINCODEC_ERR_REQUESTONLYVALIDATMETADATAROOT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003292270i32 as _);
10849 pub const WINCODEC_ERR_SOURCERECTDOESNOTMATCHDIMENSIONS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003292343i32 as _);
10850 pub const WINCODEC_ERR_STREAMNOTAVAILABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003292301i32 as _);
10851 pub const WINCODEC_ERR_STREAMREAD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003292302i32 as _);
10852 pub const WINCODEC_ERR_STREAMWRITE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003292303i32 as _);
10853 pub const WINCODEC_ERR_TOOMUCHMETADATA: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003292334i32 as _);
10854 pub const WINCODEC_ERR_UNEXPECTEDMETADATATYPE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003292271i32 as _);
10855 pub const WINCODEC_ERR_UNEXPECTEDSIZE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003292273i32 as _);
10856 pub const WINCODEC_ERR_UNKNOWNIMAGEFORMAT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003292409i32 as _);
10857 pub const WINCODEC_ERR_UNSUPPORTEDOPERATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003292287i32 as _);
10858 pub const WINCODEC_ERR_UNSUPPORTEDPIXELFORMAT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003292288i32 as _);
10859 pub const WINCODEC_ERR_UNSUPPORTEDVERSION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003292405i32 as _);
10860 pub const WINCODEC_ERR_VALUEOUTOFRANGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003292411i32 as _);
10861 pub const WINCODEC_ERR_WIN32ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003292268i32 as _);
10862 pub const WINCODEC_ERR_WRONGSTATE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003292412i32 as _);
10863 pub const WININET_E_ASYNC_THREAD_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012849i32 as _);
10864 pub const WININET_E_BAD_AUTO_PROXY_SCRIPT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012730i32 as _);
10865 pub const WININET_E_BAD_OPTION_LENGTH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012886i32 as _);
10866 pub const WININET_E_BAD_REGISTRY_PARAMETER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012874i32 as _);
10867 pub const WININET_E_CANNOT_CONNECT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012867i32 as _);
10868 pub const WININET_E_CHG_POST_IS_NON_SECURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012854i32 as _);
10869 pub const WININET_E_CLIENT_AUTH_CERT_NEEDED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012852i32 as _);
10870 pub const WININET_E_CLIENT_AUTH_NOT_SETUP: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012850i32 as _);
10871 pub const WININET_E_CONNECTION_ABORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012866i32 as _);
10872 pub const WININET_E_CONNECTION_RESET: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012865i32 as _);
10873 pub const WININET_E_COOKIE_DECLINED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012734i32 as _);
10874 pub const WININET_E_COOKIE_NEEDS_CONFIRMATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012735i32 as _);
10875 pub const WININET_E_DECODING_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012721i32 as _);
10876 pub const WININET_E_DIALOG_PENDING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012847i32 as _);
10877 pub const WININET_E_DISCONNECTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012733i32 as _);
10878 pub const WININET_E_DOWNLEVEL_SERVER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012745i32 as _);
10879 pub const WININET_E_EXTENDED_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012893i32 as _);
10880 pub const WININET_E_FAILED_DUETOSECURITYCHECK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012725i32 as _);
10881 pub const WININET_E_FORCE_RETRY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012864i32 as _);
10882 pub const WININET_E_HANDLE_EXISTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012860i32 as _);
10883 pub const WININET_E_HEADER_ALREADY_EXISTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012741i32 as _);
10884 pub const WININET_E_HEADER_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012746i32 as _);
10885 pub const WININET_E_HTTPS_HTTP_SUBMIT_REDIR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012844i32 as _);
10886 pub const WININET_E_HTTPS_TO_HTTP_ON_REDIR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012856i32 as _);
10887 pub const WININET_E_HTTP_TO_HTTPS_ON_REDIR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012857i32 as _);
10888 pub const WININET_E_INCORRECT_FORMAT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012869i32 as _);
10889 pub const WININET_E_INCORRECT_HANDLE_STATE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012877i32 as _);
10890 pub const WININET_E_INCORRECT_HANDLE_TYPE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012878i32 as _);
10891 pub const WININET_E_INCORRECT_PASSWORD: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012882i32 as _);
10892 pub const WININET_E_INCORRECT_USER_NAME: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012883i32 as _);
10893 pub const WININET_E_INTERNAL_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012892i32 as _);
10894 pub const WININET_E_INVALID_CA: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012851i32 as _);
10895 pub const WININET_E_INVALID_HEADER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012743i32 as _);
10896 pub const WININET_E_INVALID_OPERATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012880i32 as _);
10897 pub const WININET_E_INVALID_OPTION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012887i32 as _);
10898 pub const WININET_E_INVALID_PROXY_REQUEST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012863i32 as _);
10899 pub const WININET_E_INVALID_QUERY_REQUEST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012742i32 as _);
10900 pub const WININET_E_INVALID_SERVER_RESPONSE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012744i32 as _);
10901 pub const WININET_E_INVALID_URL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012891i32 as _);
10902 pub const WININET_E_ITEM_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012868i32 as _);
10903 pub const WININET_E_LOGIN_FAILURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012881i32 as _);
10904 pub const WININET_E_LOGIN_FAILURE_DISPLAY_ENTITY_BODY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012722i32 as _);
10905 pub const WININET_E_MIXED_SECURITY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012855i32 as _);
10906 pub const WININET_E_NAME_NOT_RESOLVED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012889i32 as _);
10907 pub const WININET_E_NEED_UI: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012862i32 as _);
10908 pub const WININET_E_NOT_INITIALIZED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012724i32 as _);
10909 pub const WININET_E_NOT_PROXY_REQUEST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012876i32 as _);
10910 pub const WININET_E_NOT_REDIRECTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012736i32 as _);
10911 pub const WININET_E_NO_CALLBACK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012871i32 as _);
10912 pub const WININET_E_NO_CONTEXT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012872i32 as _);
10913 pub const WININET_E_NO_DIRECT_ACCESS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012873i32 as _);
10914 pub const WININET_E_NO_NEW_CONTAINERS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012845i32 as _);
10915 pub const WININET_E_OPERATION_CANCELLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012879i32 as _);
10916 pub const WININET_E_OPTION_NOT_SETTABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012885i32 as _);
10917 pub const WININET_E_OUT_OF_HANDLES: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012895i32 as _);
10918 pub const WININET_E_POST_IS_NON_SECURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012853i32 as _);
10919 pub const WININET_E_PROTOCOL_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012888i32 as _);
10920 pub const WININET_E_PROXY_SERVER_UNREACHABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012731i32 as _);
10921 pub const WININET_E_REDIRECT_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012740i32 as _);
10922 pub const WININET_E_REDIRECT_NEEDS_CONFIRMATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012728i32 as _);
10923 pub const WININET_E_REDIRECT_SCHEME_CHANGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012848i32 as _);
10924 pub const WININET_E_REGISTRY_VALUE_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012875i32 as _);
10925 pub const WININET_E_REQUEST_PENDING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012870i32 as _);
10926 pub const WININET_E_RETRY_DIALOG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012846i32 as _);
10927 pub const WININET_E_SECURITY_CHANNEL_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012739i32 as _);
10928 pub const WININET_E_SEC_CERT_CN_INVALID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012858i32 as _);
10929 pub const WININET_E_SEC_CERT_DATE_INVALID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012859i32 as _);
10930 pub const WININET_E_SEC_CERT_ERRORS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012841i32 as _);
10931 pub const WININET_E_SEC_CERT_REVOKED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012726i32 as _);
10932 pub const WININET_E_SEC_CERT_REV_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012839i32 as _);
10933 pub const WININET_E_SEC_INVALID_CERT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012727i32 as _);
10934 pub const WININET_E_SERVER_UNREACHABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012732i32 as _);
10935 pub const WININET_E_SHUTDOWN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012884i32 as _);
10936 pub const WININET_E_TCPIP_NOT_INSTALLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012737i32 as _);
10937 pub const WININET_E_TIMEOUT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012894i32 as _);
10938 pub const WININET_E_UNABLE_TO_CACHE_FILE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012738i32 as _);
10939 pub const WININET_E_UNABLE_TO_DOWNLOAD_SCRIPT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012729i32 as _);
10940 pub const WININET_E_UNRECOGNIZED_SCHEME: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147012890i32 as _);
10941 pub const WINML_ERR_INVALID_BINDING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003828734i32 as _);
10942 pub const WINML_ERR_INVALID_DEVICE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003828735i32 as _);
10943 pub const WINML_ERR_SIZE_MISMATCH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003828732i32 as _);
10944 pub const WINML_ERR_VALUE_NOTFOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2003828733i32 as _);
10945 pub const WINVER: u32 = 1280u32;
10946 pub const WINVER_MAXVER: u32 = 2560u32;
10947 #[derive(:: std :: clone :: Clone, :: std :: marker :: Copy, :: std :: fmt :: Debug, :: std :: cmp :: PartialEq, :: std :: cmp :: Eq)]
10948 #[repr(transparent)]
10949 pub struct WPARAM(pub usize);
10950 impl ::std::default::Default for WPARAM {
default() -> Self10951     fn default() -> Self {
10952         unsafe { ::std::mem::zeroed() }
10953     }
10954 }
10955 unsafe impl ::windows::runtime::Handle for WPARAM {}
10956 unsafe impl ::windows::runtime::Abi for WPARAM {
10957     type Abi = Self;
10958     type DefaultType = Self;
10959 }
10960 pub const WPN_E_ACCESS_DENIED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143420137i32 as _);
10961 pub const WPN_E_ALL_URL_NOT_COMPLETED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143419901i32 as _);
10962 pub const WPN_E_CALLBACK_ALREADY_REGISTERED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143419898i32 as _);
10963 pub const WPN_E_CHANNEL_CLOSED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143420160i32 as _);
10964 pub const WPN_E_CHANNEL_REQUEST_NOT_COMPLETE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143420159i32 as _);
10965 pub const WPN_E_CLOUD_AUTH_UNAVAILABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143420134i32 as _);
10966 pub const WPN_E_CLOUD_DISABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143420151i32 as _);
10967 pub const WPN_E_CLOUD_DISABLED_FOR_APP: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143419893i32 as _);
10968 pub const WPN_E_CLOUD_INCAPABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143420144i32 as _);
10969 pub const WPN_E_CLOUD_SERVICE_UNAVAILABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143420133i32 as _);
10970 pub const WPN_E_DEV_ID_SIZE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143420128i32 as _);
10971 pub const WPN_E_DUPLICATE_CHANNEL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143420156i32 as _);
10972 pub const WPN_E_DUPLICATE_REGISTRATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143420136i32 as _);
10973 pub const WPN_E_FAILED_LOCK_SCREEN_UPDATE_INTIALIZATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143420132i32 as _);
10974 pub const WPN_E_GROUP_ALPHANUMERIC: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143419894i32 as _);
10975 pub const WPN_E_GROUP_SIZE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143419895i32 as _);
10976 pub const WPN_E_IMAGE_NOT_FOUND_IN_CACHE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143419902i32 as _);
10977 pub const WPN_E_INTERNET_INCAPABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143420141i32 as _);
10978 pub const WPN_E_INVALID_APP: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143420158i32 as _);
10979 pub const WPN_E_INVALID_CLOUD_IMAGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143419900i32 as _);
10980 pub const WPN_E_INVALID_HTTP_STATUS_CODE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143420117i32 as _);
10981 pub const WPN_E_NOTIFICATION_DISABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143420143i32 as _);
10982 pub const WPN_E_NOTIFICATION_HIDDEN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143420153i32 as _);
10983 pub const WPN_E_NOTIFICATION_ID_MATCHED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143419899i32 as _);
10984 pub const WPN_E_NOTIFICATION_INCAPABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143420142i32 as _);
10985 pub const WPN_E_NOTIFICATION_NOT_POSTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143420152i32 as _);
10986 pub const WPN_E_NOTIFICATION_POSTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143420154i32 as _);
10987 pub const WPN_E_NOTIFICATION_SIZE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143420139i32 as _);
10988 pub const WPN_E_NOTIFICATION_TYPE_DISABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143420140i32 as _);
10989 pub const WPN_E_OUTSTANDING_CHANNEL_REQUEST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143420157i32 as _);
10990 pub const WPN_E_OUT_OF_SESSION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143419904i32 as _);
10991 pub const WPN_E_PLATFORM_UNAVAILABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143420155i32 as _);
10992 pub const WPN_E_POWER_SAVE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143419903i32 as _);
10993 pub const WPN_E_PUSH_NOTIFICATION_INCAPABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143420135i32 as _);
10994 pub const WPN_E_STORAGE_LOCKED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143419896i32 as _);
10995 pub const WPN_E_TAG_ALPHANUMERIC: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143420118i32 as _);
10996 pub const WPN_E_TAG_SIZE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143420138i32 as _);
10997 pub const WPN_E_TOAST_NOTIFICATION_DROPPED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143419897i32 as _);
10998 pub const WS_E_ADDRESS_IN_USE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143485941i32 as _);
10999 pub const WS_E_ADDRESS_NOT_AVAILABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143485940i32 as _);
11000 pub const WS_E_ENDPOINT_ACCESS_DENIED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143485947i32 as _);
11001 pub const WS_E_ENDPOINT_ACTION_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143485935i32 as _);
11002 pub const WS_E_ENDPOINT_DISCONNECTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143485932i32 as _);
11003 pub const WS_E_ENDPOINT_FAILURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143485937i32 as _);
11004 pub const WS_E_ENDPOINT_FAULT_RECEIVED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143485933i32 as _);
11005 pub const WS_E_ENDPOINT_NOT_AVAILABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143485938i32 as _);
11006 pub const WS_E_ENDPOINT_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143485939i32 as _);
11007 pub const WS_E_ENDPOINT_TOO_BUSY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143485934i32 as _);
11008 pub const WS_E_ENDPOINT_UNREACHABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143485936i32 as _);
11009 pub const WS_E_INVALID_ENDPOINT_URL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143485920i32 as _);
11010 pub const WS_E_INVALID_FORMAT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143485952i32 as _);
11011 pub const WS_E_INVALID_OPERATION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143485949i32 as _);
11012 pub const WS_E_NOT_SUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143485929i32 as _);
11013 pub const WS_E_NO_TRANSLATION_AVAILABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143485943i32 as _);
11014 pub const WS_E_NUMERIC_OVERFLOW: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143485950i32 as _);
11015 pub const WS_E_OBJECT_FAULTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143485951i32 as _);
11016 pub const WS_E_OPERATION_ABANDONED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143485945i32 as _);
11017 pub const WS_E_OPERATION_ABORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143485948i32 as _);
11018 pub const WS_E_OPERATION_TIMED_OUT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143485946i32 as _);
11019 pub const WS_E_OTHER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143485919i32 as _);
11020 pub const WS_E_PROXY_ACCESS_DENIED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143485930i32 as _);
11021 pub const WS_E_PROXY_FAILURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143485931i32 as _);
11022 pub const WS_E_PROXY_REQUIRES_BASIC_AUTH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143485928i32 as _);
11023 pub const WS_E_PROXY_REQUIRES_DIGEST_AUTH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143485927i32 as _);
11024 pub const WS_E_PROXY_REQUIRES_NEGOTIATE_AUTH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143485925i32 as _);
11025 pub const WS_E_PROXY_REQUIRES_NTLM_AUTH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143485926i32 as _);
11026 pub const WS_E_QUOTA_EXCEEDED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143485944i32 as _);
11027 pub const WS_E_SECURITY_SYSTEM_FAILURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143485917i32 as _);
11028 pub const WS_E_SECURITY_TOKEN_EXPIRED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143485918i32 as _);
11029 pub const WS_E_SECURITY_VERIFICATION_FAILURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143485942i32 as _);
11030 pub const WS_E_SERVER_REQUIRES_BASIC_AUTH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143485924i32 as _);
11031 pub const WS_E_SERVER_REQUIRES_DIGEST_AUTH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143485923i32 as _);
11032 pub const WS_E_SERVER_REQUIRES_NEGOTIATE_AUTH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143485921i32 as _);
11033 pub const WS_E_SERVER_REQUIRES_NTLM_AUTH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2143485922i32 as _);
11034 pub const WS_S_ASYNC: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(3997696i32 as _);
11035 pub const WS_S_END: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(3997697i32 as _);
11036 pub const XACT_E_ABORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168231i32 as _);
11037 pub const XACT_E_ABORTING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168215i32 as _);
11038 pub const XACT_E_ALREADYINPROGRESS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168232i32 as _);
11039 pub const XACT_E_ALREADYOTHERSINGLEPHASE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168256i32 as _);
11040 pub const XACT_E_CANTRETAIN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168255i32 as _);
11041 pub const XACT_E_CLERKEXISTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168127i32 as _);
11042 pub const XACT_E_CLERKNOTFOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168128i32 as _);
11043 pub const XACT_E_COMMITFAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168254i32 as _);
11044 pub const XACT_E_COMMITPREVENTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168253i32 as _);
11045 pub const XACT_E_CONNECTION_DENIED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168227i32 as _);
11046 pub const XACT_E_CONNECTION_DOWN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168228i32 as _);
11047 pub const XACT_E_DEST_TMNOTAVAILABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168222i32 as _);
11048 pub const XACT_E_FIRST: u32 = 2147799040u32;
11049 pub const XACT_E_HEURISTICABORT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168252i32 as _);
11050 pub const XACT_E_HEURISTICCOMMIT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168251i32 as _);
11051 pub const XACT_E_HEURISTICDAMAGE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168250i32 as _);
11052 pub const XACT_E_HEURISTICDANGER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168249i32 as _);
11053 pub const XACT_E_INDOUBT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168234i32 as _);
11054 pub const XACT_E_INVALIDCOOKIE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168235i32 as _);
11055 pub const XACT_E_INVALIDLSN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168124i32 as _);
11056 pub const XACT_E_ISOLATIONLEVEL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168248i32 as _);
11057 pub const XACT_E_LAST: u32 = 2147799083u32;
11058 pub const XACT_E_LOGFULL: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168230i32 as _);
11059 pub const XACT_E_LU_TX_DISABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168212i32 as _);
11060 pub const XACT_E_NETWORK_TX_DISABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168220i32 as _);
11061 pub const XACT_E_NOASYNC: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168247i32 as _);
11062 pub const XACT_E_NOENLIST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168246i32 as _);
11063 pub const XACT_E_NOIMPORTOBJECT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168236i32 as _);
11064 pub const XACT_E_NOISORETAIN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168245i32 as _);
11065 pub const XACT_E_NORESOURCE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168244i32 as _);
11066 pub const XACT_E_NOTCURRENT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168243i32 as _);
11067 pub const XACT_E_NOTIMEOUT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168233i32 as _);
11068 pub const XACT_E_NOTRANSACTION: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168242i32 as _);
11069 pub const XACT_E_NOTSUPPORTED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168241i32 as _);
11070 pub const XACT_E_PARTNER_NETWORK_TX_DISABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168219i32 as _);
11071 pub const XACT_E_PULL_COMM_FAILURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168213i32 as _);
11072 pub const XACT_E_PUSH_COMM_FAILURE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168214i32 as _);
11073 pub const XACT_E_RECOVERYINPROGRESS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168126i32 as _);
11074 pub const XACT_E_REENLISTTIMEOUT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168226i32 as _);
11075 pub const XACT_E_REPLAYREQUEST: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168123i32 as _);
11076 pub const XACT_E_TIP_CONNECT_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168225i32 as _);
11077 pub const XACT_E_TIP_DISABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168221i32 as _);
11078 pub const XACT_E_TIP_PROTOCOL_ERROR: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168224i32 as _);
11079 pub const XACT_E_TIP_PULL_FAILED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168223i32 as _);
11080 pub const XACT_E_TMNOTAVAILABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168229i32 as _);
11081 pub const XACT_E_TRANSACTIONCLOSED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168125i32 as _);
11082 pub const XACT_E_UNABLE_TO_LOAD_DTC_PROXY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168216i32 as _);
11083 pub const XACT_E_UNABLE_TO_READ_DTC_CONFIG: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168217i32 as _);
11084 pub const XACT_E_UNKNOWNRMGRID: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168240i32 as _);
11085 pub const XACT_E_WRONGSTATE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168239i32 as _);
11086 pub const XACT_E_WRONGUOW: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168238i32 as _);
11087 pub const XACT_E_XA_TX_DISABLED: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168218i32 as _);
11088 pub const XACT_E_XTIONEXISTS: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2147168237i32 as _);
11089 pub const XACT_S_ABORTING: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(315400i32 as _);
11090 pub const XACT_S_ALLNORETAIN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(315399i32 as _);
11091 pub const XACT_S_ASYNC: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(315392i32 as _);
11092 pub const XACT_S_DEFECT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(315393i32 as _);
11093 pub const XACT_S_FIRST: u32 = 315392u32;
11094 pub const XACT_S_LAST: u32 = 315408u32;
11095 pub const XACT_S_LASTRESOURCEMANAGER: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(315408i32 as _);
11096 pub const XACT_S_LOCALLY_OK: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(315402i32 as _);
11097 pub const XACT_S_MADECHANGESCONTENT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(315397i32 as _);
11098 pub const XACT_S_MADECHANGESINFORM: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(315398i32 as _);
11099 pub const XACT_S_OKINFORM: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(315396i32 as _);
11100 pub const XACT_S_READONLY: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(315394i32 as _);
11101 pub const XACT_S_SINGLEPHASE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(315401i32 as _);
11102 pub const XACT_S_SOMENORETAIN: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(315395i32 as _);
11103 pub const XENROLL_E_CANNOT_ADD_ROOT_CERT: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146873343i32 as _);
11104 pub const XENROLL_E_KEYSPEC_SMIME_MISMATCH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146873339i32 as _);
11105 pub const XENROLL_E_KEY_NOT_EXPORTABLE: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146873344i32 as _);
11106 pub const XENROLL_E_RESPONSE_KA_HASH_MISMATCH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146873340i32 as _);
11107 pub const XENROLL_E_RESPONSE_KA_HASH_NOT_FOUND: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146873342i32 as _);
11108 pub const XENROLL_E_RESPONSE_UNEXPECTED_KA_HASH: ::windows::runtime::HRESULT = ::windows::runtime::HRESULT(-2146873341i32 as _);
11109 pub const _WIN32_IE_MAXVER: u32 = 2560u32;
11110 pub const _WIN32_MAXVER: u32 = 2560u32;
11111 pub const _WIN32_WINDOWS_MAXVER: u32 = 2560u32;
11112 pub const _WIN32_WINNT_MAXVER: u32 = 2560u32;
11113