finestre_sys/error_codes.rs
1#![allow(non_upper_case_globals)]
2
3use crate::typedefs::*;
4
5///The operation completed successfully.
6pub const ERROR_SUCCESS: DWORD = 0x00000000;
7///The operation completed successfully.
8pub const NERR_Success: DWORD = 0x00000000;
9///Incorrect function.
10pub const ERROR_INVALID_FUNCTION: DWORD = 0x00000001;
11///The system cannot find the file specified.
12pub const ERROR_FILE_NOT_FOUND: DWORD = 0x00000002;
13///The system cannot find the path specified.
14pub const ERROR_PATH_NOT_FOUND: DWORD = 0x00000003;
15///The system cannot open the file.
16pub const ERROR_TOO_MANY_OPEN_FILES: DWORD = 0x00000004;
17///Access is denied.
18pub const ERROR_ACCESS_DENIED: DWORD = 0x00000005;
19///The handle is invalid.
20pub const ERROR_INVALID_HANDLE: DWORD = 0x00000006;
21///The storage control blocks were destroyed.
22pub const ERROR_ARENA_TRASHED: DWORD = 0x00000007;
23///Not enough storage is available to process this command.
24pub const ERROR_NOT_ENOUGH_MEMORY: DWORD = 0x00000008;
25///The storage control block address is invalid.
26pub const ERROR_INVALID_BLOCK: DWORD = 0x00000009;
27///The environment is incorrect.
28pub const ERROR_BAD_ENVIRONMENT: DWORD = 0x0000000A;
29///An attempt was made to load a program with an incorrect format.
30pub const ERROR_BAD_FORMAT: DWORD = 0x0000000B;
31///The access code is invalid.
32pub const ERROR_INVALID_ACCESS: DWORD = 0x0000000C;
33///The data is invalid.
34pub const ERROR_INVALID_DATA: DWORD = 0x0000000D;
35///Not enough storage is available to complete this operation.
36pub const ERROR_OUTOFMEMORY: DWORD = 0x0000000E;
37///The system cannot find the drive specified.
38pub const ERROR_INVALID_DRIVE: DWORD = 0x0000000F;
39///The directory cannot be removed.
40pub const ERROR_CURRENT_DIRECTORY: DWORD = 0x00000010;
41///The system cannot move the file to a different disk drive.
42pub const ERROR_NOT_SAME_DEVICE: DWORD = 0x00000011;
43///There are no more files.
44pub const ERROR_NO_MORE_FILES: DWORD = 0x00000012;
45///The media is write-protected.
46pub const ERROR_WRITE_PROTECT: DWORD = 0x00000013;
47///The system cannot find the device specified.
48pub const ERROR_BAD_UNIT: DWORD = 0x00000014;
49///The device is not ready.
50pub const ERROR_NOT_READY: DWORD = 0x00000015;
51///The device does not recognize the command.
52pub const ERROR_BAD_COMMAND: DWORD = 0x00000016;
53///Data error (cyclic redundancy check).
54pub const ERROR_CRC: DWORD = 0x00000017;
55///The program issued a command but the command length is incorrect.
56pub const ERROR_BAD_LENGTH: DWORD = 0x00000018;
57///The drive cannot locate a specific area or track on the disk.
58pub const ERROR_SEEK: DWORD = 0x00000019;
59///The specified disk cannot be accessed.
60pub const ERROR_NOT_DOS_DISK: DWORD = 0x0000001A;
61///The drive cannot find the sector requested.
62pub const ERROR_SECTOR_NOT_FOUND: DWORD = 0x0000001B;
63///The printer is out of paper.
64pub const ERROR_OUT_OF_PAPER: DWORD = 0x0000001C;
65///The system cannot write to the specified device.
66pub const ERROR_WRITE_FAULT: DWORD = 0x0000001D;
67///The system cannot read from the specified device.
68pub const ERROR_READ_FAULT: DWORD = 0x0000001E;
69///A device attached to the system is not functioning.
70pub const ERROR_GEN_FAILURE: DWORD = 0x0000001F;
71///The process cannot access the file because it is being used by another process.
72pub const ERROR_SHARING_VIOLATION: DWORD = 0x00000020;
73///The process cannot access the file because another process has locked a portion of the file.
74pub const ERROR_LOCK_VIOLATION: DWORD = 0x00000021;
75///The wrong disk is in the drive. Insert %2 (Volume Serial Number: %3) into drive %1.
76pub const ERROR_WRONG_DISK: DWORD = 0x00000022;
77///Too many files opened for sharing.
78pub const ERROR_SHARING_BUFFER_EXCEEDED: DWORD = 0x00000024;
79///Reached the end of the file.
80pub const ERROR_HANDLE_EOF: DWORD = 0x00000026;
81///The disk is full.
82pub const ERROR_HANDLE_DISK_FULL: DWORD = 0x00000027;
83///The request is not supported.
84pub const ERROR_NOT_SUPPORTED: DWORD = 0x00000032;
85///Windows cannot find the network path. Verify that the network path is correct and the destination computer is not busy or turned off. If Windows still cannot find the network path, contact your network administrator.
86pub const ERROR_REM_NOT_LIST: DWORD = 0x00000033;
87///You were not connected because a duplicate name exists on the network. Go to System in Control Panel to change the computer name, and then try again.
88pub const ERROR_DUP_NAME: DWORD = 0x00000034;
89///The network path was not found.
90pub const ERROR_BAD_NETPATH: DWORD = 0x00000035;
91///The network is busy.
92pub const ERROR_NETWORK_BUSY: DWORD = 0x00000036;
93///The specified network resource or device is no longer available.
94pub const ERROR_DEV_NOT_EXIST: DWORD = 0x00000037;
95///The network BIOS command limit has been reached.
96pub const ERROR_TOO_MANY_CMDS: DWORD = 0x00000038;
97///A network adapter hardware error occurred.
98pub const ERROR_ADAP_HDW_ERR: DWORD = 0x00000039;
99///The specified server cannot perform the requested operation.
100pub const ERROR_BAD_NET_RESP: DWORD = 0x0000003A;
101///An unexpected network error occurred.
102pub const ERROR_UNEXP_NET_ERR: DWORD = 0x0000003B;
103///The remote adapter is not compatible.
104pub const ERROR_BAD_REM_ADAP: DWORD = 0x0000003C;
105///The print queue is full.
106pub const ERROR_PRINTQ_FULL: DWORD = 0x0000003D;
107///Space to store the file waiting to be printed is not available on the server.
108pub const ERROR_NO_SPOOL_SPACE: DWORD = 0x0000003E;
109///Your file waiting to be printed was deleted.
110pub const ERROR_PRINT_CANCELLED: DWORD = 0x0000003F;
111///The specified network name is no longer available.
112pub const ERROR_NETNAME_DELETED: DWORD = 0x00000040;
113///Network access is denied.
114pub const ERROR_NETWORK_ACCESS_DENIED: DWORD = 0x00000041;
115///The network resource type is not correct.
116pub const ERROR_BAD_DEV_TYPE: DWORD = 0x00000042;
117///The network name cannot be found.
118pub const ERROR_BAD_NET_NAME: DWORD = 0x00000043;
119///The name limit for the local computer network adapter card was exceeded.
120pub const ERROR_TOO_MANY_NAMES: DWORD = 0x00000044;
121///The network BIOS session limit was exceeded.
122pub const ERROR_TOO_MANY_SESS: DWORD = 0x00000045;
123///The remote server has been paused or is in the process of being started.
124pub const ERROR_SHARING_PAUSED: DWORD = 0x00000046;
125///No more connections can be made to this remote computer at this time because the computer has accepted the maximum number of connections.
126pub const ERROR_REQ_NOT_ACCEP: DWORD = 0x00000047;
127///The specified printer or disk device has been paused.
128pub const ERROR_REDIR_PAUSED: DWORD = 0x00000048;
129///The file exists.
130pub const ERROR_FILE_EXISTS: DWORD = 0x00000050;
131///The directory or file cannot be created.
132pub const ERROR_CANNOT_MAKE: DWORD = 0x00000052;
133///Fail on INT 24.
134pub const ERROR_FAIL_I24: DWORD = 0x00000053;
135///Storage to process this request is not available.
136pub const ERROR_OUT_OF_STRUCTURES: DWORD = 0x00000054;
137///The local device name is already in use.
138pub const ERROR_ALREADY_ASSIGNED: DWORD = 0x00000055;
139///The specified network password is not correct.
140pub const ERROR_INVALID_PASSWORD: DWORD = 0x00000056;
141///The parameter is incorrect.
142pub const ERROR_INVALID_PARAMETER: DWORD = 0x00000057;
143///A write fault occurred on the network.
144pub const ERROR_NET_WRITE_FAULT: DWORD = 0x00000058;
145///The system cannot start another process at this time.
146pub const ERROR_NO_PROC_SLOTS: DWORD = 0x00000059;
147///Cannot create another system semaphore.
148pub const ERROR_TOO_MANY_SEMAPHORES: DWORD = 0x00000064;
149///The exclusive semaphore is owned by another process.
150pub const ERROR_EXCL_SEM_ALREADY_OWNED: DWORD = 0x00000065;
151///The semaphore is set and cannot be closed.
152pub const ERROR_SEM_IS_SET: DWORD = 0x00000066;
153///The semaphore cannot be set again.
154pub const ERROR_TOO_MANY_SEM_REQUESTS: DWORD = 0x00000067;
155///Cannot request exclusive semaphores at interrupt time.
156pub const ERROR_INVALID_AT_INTERRUPT_TIME: DWORD = 0x00000068;
157///The previous ownership of this semaphore has ended.
158pub const ERROR_SEM_OWNER_DIED: DWORD = 0x00000069;
159///Insert the disk for drive %1.
160pub const ERROR_SEM_USER_LIMIT: DWORD = 0x0000006A;
161///The program stopped because an alternate disk was not inserted.
162pub const ERROR_DISK_CHANGE: DWORD = 0x0000006B;
163///The disk is in use or locked by another process.
164pub const ERROR_DRIVE_LOCKED: DWORD = 0x0000006C;
165///The pipe has been ended.
166pub const ERROR_BROKEN_PIPE: DWORD = 0x0000006D;
167///The system cannot open the device or file specified.
168pub const ERROR_OPEN_FAILED: DWORD = 0x0000006E;
169///The file name is too long.
170pub const ERROR_BUFFER_OVERFLOW: DWORD = 0x0000006F;
171///There is not enough space on the disk.
172pub const ERROR_DISK_FULL: DWORD = 0x00000070;
173///No more internal file identifiers are available.
174pub const ERROR_NO_MORE_SEARCH_HANDLES: DWORD = 0x00000071;
175///The target internal file identifier is incorrect.
176pub const ERROR_INVALID_TARGET_HANDLE: DWORD = 0x00000072;
177///The Input Output Control (IOCTL) call made by the application program is not correct.
178pub const ERROR_INVALID_CATEGORY: DWORD = 0x00000075;
179///The verify-on-write switch parameter value is not correct.
180pub const ERROR_INVALID_VERIFY_SWITCH: DWORD = 0x00000076;
181///The system does not support the command requested.
182pub const ERROR_BAD_DRIVER_LEVEL: DWORD = 0x00000077;
183///This function is not supported on this system.
184pub const ERROR_CALL_NOT_IMPLEMENTED: DWORD = 0x00000078;
185///The semaphore time-out period has expired.
186pub const ERROR_SEM_TIMEOUT: DWORD = 0x00000079;
187///The data area passed to a system call is too small.
188pub const ERROR_INSUFFICIENT_BUFFER: DWORD = 0x0000007A;
189///The file name, directory name, or volume label syntax is incorrect.
190pub const ERROR_INVALID_NAME: DWORD = 0x0000007B;
191///The system call level is not correct.
192pub const ERROR_INVALID_LEVEL: DWORD = 0x0000007C;
193///The disk has no volume label.
194pub const ERROR_NO_VOLUME_LABEL: DWORD = 0x0000007D;
195///The specified module could not be found.
196pub const ERROR_MOD_NOT_FOUND: DWORD = 0x0000007E;
197///The specified procedure could not be found.
198pub const ERROR_PROC_NOT_FOUND: DWORD = 0x0000007F;
199///There are no child processes to wait for.
200pub const ERROR_WAIT_NO_CHILDREN: DWORD = 0x00000080;
201///The %1 application cannot be run in Win32 mode.
202pub const ERROR_CHILD_NOT_COMPLETE: DWORD = 0x00000081;
203///Attempt to use a file handle to an open disk partition for an operation other than raw disk I/O.
204pub const ERROR_DIRECT_ACCESS_HANDLE: DWORD = 0x00000082;
205///An attempt was made to move the file pointer before the beginning of the file.
206pub const ERROR_NEGATIVE_SEEK: DWORD = 0x00000083;
207///The file pointer cannot be set on the specified device or file.
208pub const ERROR_SEEK_ON_DEVICE: DWORD = 0x00000084;
209///A JOIN or SUBST command cannot be used for a drive that contains previously joined drives.
210pub const ERROR_IS_JOIN_TARGET: DWORD = 0x00000085;
211///An attempt was made to use a JOIN or SUBST command on a drive that has already been joined.
212pub const ERROR_IS_JOINED: DWORD = 0x00000086;
213///An attempt was made to use a JOIN or SUBST command on a drive that has already been substituted.
214pub const ERROR_IS_SUBSTED: DWORD = 0x00000087;
215///The system tried to delete the JOIN of a drive that is not joined.
216pub const ERROR_NOT_JOINED: DWORD = 0x00000088;
217///The system tried to delete the substitution of a drive that is not substituted.
218pub const ERROR_NOT_SUBSTED: DWORD = 0x00000089;
219///The system tried to join a drive to a directory on a joined drive.
220pub const ERROR_JOIN_TO_JOIN: DWORD = 0x0000008A;
221///The system tried to substitute a drive to a directory on a substituted drive.
222pub const ERROR_SUBST_TO_SUBST: DWORD = 0x0000008B;
223///The system tried to join a drive to a directory on a substituted drive.
224pub const ERROR_JOIN_TO_SUBST: DWORD = 0x0000008C;
225///The system tried to SUBST a drive to a directory on a joined drive.
226pub const ERROR_SUBST_TO_JOIN: DWORD = 0x0000008D;
227///The system cannot perform a JOIN or SUBST at this time.
228pub const ERROR_BUSY_DRIVE: DWORD = 0x0000008E;
229///The system cannot join or substitute a drive to or for a directory on the same drive.
230pub const ERROR_SAME_DRIVE: DWORD = 0x0000008F;
231///The directory is not a subdirectory of the root directory.
232pub const ERROR_DIR_NOT_ROOT: DWORD = 0x00000090;
233///The directory is not empty.
234pub const ERROR_DIR_NOT_EMPTY: DWORD = 0x00000091;
235///The path specified is being used in a substitute.
236pub const ERROR_IS_SUBST_PATH: DWORD = 0x00000092;
237///Not enough resources are available to process this command.
238pub const ERROR_IS_JOIN_PATH: DWORD = 0x00000093;
239///The path specified cannot be used at this time.
240pub const ERROR_PATH_BUSY: DWORD = 0x00000094;
241///An attempt was made to join or substitute a drive for which a directory on the drive is the target of a previous substitute.
242pub const ERROR_IS_SUBST_TARGET: DWORD = 0x00000095;
243///System trace information was not specified in your CONFIG.SYS file, or tracing is disallowed.
244pub const ERROR_SYSTEM_TRACE: DWORD = 0x00000096;
245///The number of specified semaphore events for DosMuxSemWait is not correct.
246pub const ERROR_INVALID_EVENT_COUNT: DWORD = 0x00000097;
247///DosMuxSemWait did not execute; too many semaphores are already set.
248pub const ERROR_TOO_MANY_MUXWAITERS: DWORD = 0x00000098;
249///The DosMuxSemWait list is not correct.
250pub const ERROR_INVALID_LIST_FORMAT: DWORD = 0x00000099;
251///The volume label you entered exceeds the label character limit of the destination file system.
252pub const ERROR_LABEL_TOO_LONG: DWORD = 0x0000009A;
253///Cannot create another thread.
254pub const ERROR_TOO_MANY_TCBS: DWORD = 0x0000009B;
255///The recipient process has refused the signal.
256pub const ERROR_SIGNAL_REFUSED: DWORD = 0x0000009C;
257///The segment is already discarded and cannot be locked.
258pub const ERROR_DISCARDED: DWORD = 0x0000009D;
259///The segment is already unlocked.
260pub const ERROR_NOT_LOCKED: DWORD = 0x0000009E;
261///The address for the thread ID is not correct.
262pub const ERROR_BAD_THREADID_ADDR: DWORD = 0x0000009F;
263///One or more arguments are not correct.
264pub const ERROR_BAD_ARGUMENTS: DWORD = 0x000000A0;
265///The specified path is invalid.
266pub const ERROR_BAD_PATHNAME: DWORD = 0x000000A1;
267///A signal is already pending.
268pub const ERROR_SIGNAL_PENDING: DWORD = 0x000000A2;
269///No more threads can be created in the system.
270pub const ERROR_MAX_THRDS_REACHED: DWORD = 0x000000A4;
271///Unable to lock a region of a file.
272pub const ERROR_LOCK_FAILED: DWORD = 0x000000A7;
273///The requested resource is in use.
274pub const ERROR_BUSY: DWORD = 0x000000AA;
275///A lock request was not outstanding for the supplied cancel region.
276pub const ERROR_CANCEL_VIOLATION: DWORD = 0x000000AD;
277///The file system does not support atomic changes to the lock type.
278pub const ERROR_ATOMIC_LOCKS_NOT_SUPPORTED: DWORD = 0x000000AE;
279///The system detected a segment number that was not correct.
280pub const ERROR_INVALID_SEGMENT_NUMBER: DWORD = 0x000000B4;
281///The operating system cannot run %1.
282pub const ERROR_INVALID_ORDINAL: DWORD = 0x000000B6;
283///Cannot create a file when that file already exists.
284pub const ERROR_ALREADY_EXISTS: DWORD = 0x000000B7;
285///The flag passed is not correct.
286pub const ERROR_INVALID_FLAG_NUMBER: DWORD = 0x000000BA;
287///The specified system semaphore name was not found.
288pub const ERROR_SEM_NOT_FOUND: DWORD = 0x000000BB;
289///The operating system cannot run %1.
290pub const ERROR_INVALID_STARTING_CODESEG: DWORD = 0x000000BC;
291///The operating system cannot run %1.
292pub const ERROR_INVALID_STACKSEG: DWORD = 0x000000BD;
293///The operating system cannot run %1.
294pub const ERROR_INVALID_MODULETYPE: DWORD = 0x000000BE;
295///Cannot run %1 in Win32 mode.
296pub const ERROR_INVALID_EXE_SIGNATURE: DWORD = 0x000000BF;
297///The operating system cannot run %1.
298pub const ERROR_EXE_MARKED_INVALID: DWORD = 0x000000C0;
299///%1 is not a valid Win32 application.
300pub const ERROR_BAD_EXE_FORMAT: DWORD = 0x000000C1;
301///The operating system cannot run %1.
302pub const ERROR_ITERATED_DATA_EXCEEDS_64k: DWORD = 0x000000C2;
303///The operating system cannot run %1.
304pub const ERROR_INVALID_MINALLOCSIZE: DWORD = 0x000000C3;
305///The operating system cannot run this application program.
306pub const ERROR_DYNLINK_FROM_INVALID_RING: DWORD = 0x000000C4;
307///The operating system is not presently configured to run this application.
308pub const ERROR_IOPL_NOT_ENABLED: DWORD = 0x000000C5;
309///The operating system cannot run %1.
310pub const ERROR_INVALID_SEGDPL: DWORD = 0x000000C6;
311///The operating system cannot run this application program.
312pub const ERROR_AUTODATASEG_EXCEEDS_64k: DWORD = 0x000000C7;
313///The code segment cannot be greater than or equal to 64 KB.
314pub const ERROR_RING2SEG_MUST_BE_MOVABLE: DWORD = 0x000000C8;
315///The operating system cannot run %1.
316pub const ERROR_RELOC_CHAIN_XEEDS_SEGLIM: DWORD = 0x000000C9;
317///The operating system cannot run %1.
318pub const ERROR_INFLOOP_IN_RELOC_CHAIN: DWORD = 0x000000CA;
319///The system could not find the environment option that was entered.
320pub const ERROR_ENVVAR_NOT_FOUND: DWORD = 0x000000CB;
321///No process in the command subtree has a signal handler.
322pub const ERROR_NO_SIGNAL_SENT: DWORD = 0x000000CD;
323///The file name or extension is too long.
324pub const ERROR_FILENAME_EXCED_RANGE: DWORD = 0x000000CE;
325///The ring 2 stack is in use.
326pub const ERROR_RING2_STACK_IN_USE: DWORD = 0x000000CF;
327///The asterisk (*) or question mark (?) global file name characters are entered incorrectly, or too many global file name characters are specified.
328pub const ERROR_META_EXPANSION_TOO_LONG: DWORD = 0x000000D0;
329///The signal being posted is not correct.
330pub const ERROR_INVALID_SIGNAL_NUMBER: DWORD = 0x000000D1;
331///The signal handler cannot be set.
332pub const ERROR_THREAD_1_INACTIVE: DWORD = 0x000000D2;
333///The segment is locked and cannot be reallocated.
334pub const ERROR_LOCKED: DWORD = 0x000000D4;
335///Too many dynamic-link modules are attached to this program or dynamic-link module.
336pub const ERROR_TOO_MANY_MODULES: DWORD = 0x000000D6;
337///Cannot nest calls to LoadModule.
338pub const ERROR_NESTING_NOT_ALLOWED: DWORD = 0x000000D7;
339///This version of %1 is not compatible with the version of Windows you're running. Check your computer's system information to see whether you need an x86 (32-bit) or x64 (64-bit) version of the program, and then contact the software publisher.
340pub const ERROR_EXE_MACHINE_TYPE_MISMATCH: DWORD = 0x000000D8;
341///The image file %1 is signed, unable to modify.
342pub const ERROR_EXE_CANNOT_MODIFY_SIGNED_BINARY: DWORD = 0x000000D9;
343///The image file %1 is strong signed, unable to modify.
344pub const ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY: DWORD = 0x000000DA;
345///This file is checked out or locked for editing by another user.
346pub const ERROR_FILE_CHECKED_OUT: DWORD = 0x000000DC;
347///The file must be checked out before saving changes.
348pub const ERROR_CHECKOUT_REQUIRED: DWORD = 0x000000DD;
349///The file type being saved or retrieved has been blocked.
350pub const ERROR_BAD_FILE_TYPE: DWORD = 0x000000DE;
351///The file size exceeds the limit allowed and cannot be saved.
352pub const ERROR_FILE_TOO_LARGE: DWORD = 0x000000DF;
353///Access denied. Before opening files in this location, you must first browse to the website and select the option to sign in automatically.
354pub const ERROR_FORMS_AUTH_REQUIRED: DWORD = 0x000000E0;
355///Operation did not complete successfully because the file contains a virus.
356pub const ERROR_VIRUS_INFECTED: DWORD = 0x000000E1;
357///This file contains a virus and cannot be opened. Due to the nature of this virus, the file has been removed from this location.
358pub const ERROR_VIRUS_DELETED: DWORD = 0x000000E2;
359///The pipe is local.
360pub const ERROR_PIPE_LOCAL: DWORD = 0x000000E5;
361///The pipe state is invalid.
362pub const ERROR_BAD_PIPE: DWORD = 0x000000E6;
363///All pipe instances are busy.
364pub const ERROR_PIPE_BUSY: DWORD = 0x000000E7;
365///The pipe is being closed.
366pub const ERROR_NO_DATA: DWORD = 0x000000E8;
367///No process is on the other end of the pipe.
368pub const ERROR_PIPE_NOT_CONNECTED: DWORD = 0x000000E9;
369///More data is available.
370pub const ERROR_MORE_DATA: DWORD = 0x000000EA;
371///The session was canceled.
372pub const ERROR_VC_DISCONNECTED: DWORD = 0x000000F0;
373///The specified extended attribute name was invalid.
374pub const ERROR_INVALID_EA_NAME: DWORD = 0x000000FE;
375///The extended attributes are inconsistent.
376pub const ERROR_EA_LIST_INCONSISTENT: DWORD = 0x000000FF;
377///The wait operation timed out.
378pub const WAIT_TIMEOUT: DWORD = 0x00000102;
379///No more data is available.
380pub const ERROR_NO_MORE_ITEMS: DWORD = 0x00000103;
381///The copy functions cannot be used.
382pub const ERROR_CANNOT_COPY: DWORD = 0x0000010A;
383///The directory name is invalid.
384pub const ERROR_DIRECTORY: DWORD = 0x0000010B;
385///The extended attributes did not fit in the buffer.
386pub const ERROR_EAS_DIDNT_FIT: DWORD = 0x00000113;
387///The extended attribute file on the mounted file system is corrupt.
388pub const ERROR_EA_FILE_CORRUPT: DWORD = 0x00000114;
389///The extended attribute table file is full.
390pub const ERROR_EA_TABLE_FULL: DWORD = 0x00000115;
391///The specified extended attribute handle is invalid.
392pub const ERROR_INVALID_EA_HANDLE: DWORD = 0x00000116;
393///The mounted file system does not support extended attributes.
394pub const ERROR_EAS_NOT_SUPPORTED: DWORD = 0x0000011A;
395///Attempt to release mutex not owned by caller.
396pub const ERROR_NOT_OWNER: DWORD = 0x00000120;
397///Too many posts were made to a semaphore.
398pub const ERROR_TOO_MANY_POSTS: DWORD = 0x0000012A;
399///Only part of a ReadProcessMemory or WriteProcessMemory request was completed.
400pub const ERROR_PARTIAL_COPY: DWORD = 0x0000012B;
401///The oplock request is denied.
402pub const ERROR_OPLOCK_NOT_GRANTED: DWORD = 0x0000012C;
403///An invalid oplock acknowledgment was received by the system.
404pub const ERROR_INVALID_OPLOCK_PROTOCOL: DWORD = 0x0000012D;
405///The volume is too fragmented to complete this operation.
406pub const ERROR_DISK_TOO_FRAGMENTED: DWORD = 0x0000012E;
407///The file cannot be opened because it is in the process of being deleted.
408pub const ERROR_DELETE_PENDING: DWORD = 0x0000012F;
409///The system cannot find message text for message number 0x%1 in the message file for %2.
410pub const ERROR_MR_MID_NOT_FOUND: DWORD = 0x0000013D;
411///The scope specified was not found.
412pub const ERROR_SCOPE_NOT_FOUND: DWORD = 0x0000013E;
413///No action was taken because a system reboot is required.
414pub const ERROR_FAIL_NOACTION_REBOOT: DWORD = 0x0000015E;
415///The shutdown operation failed.
416pub const ERROR_FAIL_SHUTDOWN: DWORD = 0x0000015F;
417///The restart operation failed.
418pub const ERROR_FAIL_RESTART: DWORD = 0x00000160;
419///The maximum number of sessions has been reached.
420pub const ERROR_MAX_SESSIONS_REACHED: DWORD = 0x00000161;
421///The thread is already in background processing mode.
422pub const ERROR_THREAD_MODE_ALREADY_BACKGROUND: DWORD = 0x00000190;
423///The thread is not in background processing mode.
424pub const ERROR_THREAD_MODE_NOT_BACKGROUND: DWORD = 0x00000191;
425///The process is already in background processing mode.
426pub const ERROR_PROCESS_MODE_ALREADY_BACKGROUND: DWORD = 0x00000192;
427///The process is not in background processing mode.
428pub const ERROR_PROCESS_MODE_NOT_BACKGROUND: DWORD = 0x00000193;
429///Attempt to access invalid address.
430pub const ERROR_INVALID_ADDRESS: DWORD = 0x000001E7;
431///User profile cannot be loaded.
432pub const ERROR_USER_PROFILE_LOAD: DWORD = 0x000001F4;
433///Arithmetic result exceeded 32 bits.
434pub const ERROR_ARITHMETIC_OVERFLOW: DWORD = 0x00000216;
435///There is a process on the other end of the pipe.
436pub const ERROR_PIPE_CONNECTED: DWORD = 0x00000217;
437///Waiting for a process to open the other end of the pipe.
438pub const ERROR_PIPE_LISTENING: DWORD = 0x00000218;
439///Application verifier has found an error in the current process.
440pub const ERROR_VERIFIER_STOP: DWORD = 0x00000219;
441///An error occurred in the ABIOS subsystem.
442pub const ERROR_ABIOS_ERROR: DWORD = 0x0000021A;
443///A warning occurred in the WX86 subsystem.
444pub const ERROR_WX86_WARNING: DWORD = 0x0000021B;
445///An error occurred in the WX86 subsystem.
446pub const ERROR_WX86_ERROR: DWORD = 0x0000021C;
447///An attempt was made to cancel or set a timer that has an associated asynchronous procedure call (APC) and the subject thread is not the thread that originally set the timer with an associated APC routine.
448pub const ERROR_TIMER_NOT_CANCELED: DWORD = 0x0000021D;
449///Unwind exception code.
450pub const ERROR_UNWIND: DWORD = 0x0000021E;
451///An invalid or unaligned stack was encountered during an unwind operation.
452pub const ERROR_BAD_STACK: DWORD = 0x0000021F;
453///An invalid unwind target was encountered during an unwind operation.
454pub const ERROR_INVALID_UNWIND_TARGET: DWORD = 0x00000220;
455///Invalid object attributes specified to NtCreatePort or invalid port attributes specified to NtConnectPort.
456pub const ERROR_INVALID_PORT_ATTRIBUTES: DWORD = 0x00000221;
457///Length of message passed to NtRequestPort or NtRequestWaitReplyPort was longer than the maximum message allowed by the port.
458pub const ERROR_PORT_MESSAGE_TOO_LONG: DWORD = 0x00000222;
459///An attempt was made to lower a quota limit below the current usage.
460pub const ERROR_INVALID_QUOTA_LOWER: DWORD = 0x00000223;
461///An attempt was made to attach to a device that was already attached to another device.
462pub const ERROR_DEVICE_ALREADY_ATTACHED: DWORD = 0x00000224;
463///An attempt was made to execute an instruction at an unaligned address, and the host system does not support unaligned instruction references.
464pub const ERROR_INSTRUCTION_MISALIGNMENT: DWORD = 0x00000225;
465///Profiling not started.
466pub const ERROR_PROFILING_NOT_STARTED: DWORD = 0x00000226;
467///Profiling not stopped.
468pub const ERROR_PROFILING_NOT_STOPPED: DWORD = 0x00000227;
469///The passed ACL did not contain the minimum required information.
470pub const ERROR_COULD_NOT_INTERPRET: DWORD = 0x00000228;
471///The number of active profiling objects is at the maximum and no more can be started.
472pub const ERROR_PROFILING_AT_LIMIT: DWORD = 0x00000229;
473///Used to indicate that an operation cannot continue without blocking for I/O.
474pub const ERROR_CANT_WAIT: DWORD = 0x0000022A;
475///Indicates that a thread attempted to terminate itself by default (called NtTerminateThread with NULL) and it was the last thread in the current process.
476pub const ERROR_CANT_TERMINATE_SELF: DWORD = 0x0000022B;
477///If an MM error is returned that is not defined in the standard FsRtl filter, it is converted to one of the following errors that is guaranteed to be in the filter. In this case, information is lost; however, the filter correctly handles the exception.
478pub const ERROR_UNEXPECTED_MM_CREATE_ERR: DWORD = 0x0000022C;
479///If an MM error is returned that is not defined in the standard FsRtl filter, it is converted to one of the following errors that is guaranteed to be in the filter. In this case, information is lost; however, the filter correctly handles the exception.
480pub const ERROR_UNEXPECTED_MM_MAP_ERROR: DWORD = 0x0000022D;
481///If an MM error is returned that is not defined in the standard FsRtl filter, it is converted to one of the following errors that is guaranteed to be in the filter. In this case, information is lost; however, the filter correctly handles the exception.
482pub const ERROR_UNEXPECTED_MM_EXTEND_ERR: DWORD = 0x0000022E;
483///A malformed function table was encountered during an unwind operation.
484pub const ERROR_BAD_FUNCTION_TABLE: DWORD = 0x0000022F;
485///Indicates that an attempt was made to assign protection to a file system file or directory and one of the SIDs in the security descriptor could not be translated into a GUID that could be stored by the file system. This causes the protection attempt to fail, which might cause a file creation attempt to fail.
486pub const ERROR_NO_GUID_TRANSLATION: DWORD = 0x00000230;
487///Indicates that an attempt was made to grow a local domain table (LDT) by setting its size, or that the size was not an even number of selectors.
488pub const ERROR_INVALID_LDT_SIZE: DWORD = 0x00000231;
489///Indicates that the starting value for the LDT information was not an integral multiple of the selector size.
490pub const ERROR_INVALID_LDT_OFFSET: DWORD = 0x00000233;
491///Indicates that the user supplied an invalid descriptor when trying to set up LDT descriptors.
492pub const ERROR_INVALID_LDT_DESCRIPTOR: DWORD = 0x00000234;
493///Indicates a process has too many threads to perform the requested action. For example, assignment of a primary token can be performed only when a process has zero or one threads.
494pub const ERROR_TOO_MANY_THREADS: DWORD = 0x00000235;
495///An attempt was made to operate on a thread within a specific process, but the thread specified is not in the process specified.
496pub const ERROR_THREAD_NOT_IN_PROCESS: DWORD = 0x00000236;
497///Page file quota was exceeded.
498pub const ERROR_PAGEFILE_QUOTA_EXCEEDED: DWORD = 0x00000237;
499///The Netlogon service cannot start because another Netlogon service running in the domain conflicts with the specified role.
500pub const ERROR_LOGON_SERVER_CONFLICT: DWORD = 0x00000238;
501///On applicable Windows Server releases, the Security Accounts Manager (SAM) database is significantly out of synchronization with the copy on the domain controller. A complete synchronization is required.
502pub const ERROR_SYNCHRONIZATION_REQUIRED: DWORD = 0x00000239;
503///The NtCreateFile API failed. This error should never be returned to an application, it is a place holder for the Windows LAN Manager Redirector to use in its internal error mapping routines.
504pub const ERROR_NET_OPEN_FAILED: DWORD = 0x0000023A;
505///{Privilege Failed} The I/O permissions for the process could not be changed.
506pub const ERROR_IO_PRIVILEGE_FAILED: DWORD = 0x0000023B;
507///{Application Exit by CTRL+C} The application terminated as a result of a CTRL+C.
508pub const ERROR_CONTROL_C_EXIT: DWORD = 0x0000023C;
509///{Missing System File} The required system file %hs is bad or missing.
510pub const ERROR_MISSING_SYSTEMFILE: DWORD = 0x0000023D;
511///{Application Error} The exception %s (0x%08lx) occurred in the application at location 0x%08lx.
512pub const ERROR_UNHANDLED_EXCEPTION: DWORD = 0x0000023E;
513///{Application Error} The application failed to initialize properly (0x%lx). Click OK to terminate the application.
514pub const ERROR_APP_INIT_FAILURE: DWORD = 0x0000023F;
515///{Unable to Create Paging File} The creation of the paging file %hs failed (%lx). The requested size was %ld.
516pub const ERROR_PAGEFILE_CREATE_FAILED: DWORD = 0x00000240;
517///The hash for the image cannot be found in the system catalogs. The image is likely corrupt or the victim of tampering.
518pub const ERROR_INVALID_IMAGE_HASH: DWORD = 0x00000241;
519///{No Paging File Specified} No paging file was specified in the system configuration.
520pub const ERROR_NO_PAGEFILE: DWORD = 0x00000242;
521///{EXCEPTION} A real-mode application issued a floating-point instruction, and floating-point hardware is not present.
522pub const ERROR_ILLEGAL_FLOAT_CONTEXT: DWORD = 0x00000243;
523///An event pair synchronization operation was performed using the thread-specific client/server event pair object, but no event pair object was associated with the thread.
524pub const ERROR_NO_EVENT_PAIR: DWORD = 0x00000244;
525///A domain server has an incorrect configuration.
526pub const ERROR_DOMAIN_CTRLR_CONFIG_ERROR: DWORD = 0x00000245;
527///An illegal character was encountered. For a multibyte character set, this includes a lead byte without a succeeding trail byte. For the Unicode character set, this includes the characters 0xFFFF and 0xFFFE.
528pub const ERROR_ILLEGAL_CHARACTER: DWORD = 0x00000246;
529///The Unicode character is not defined in the Unicode character set installed on the system.
530pub const ERROR_UNDEFINED_CHARACTER: DWORD = 0x00000247;
531///The paging file cannot be created on a floppy disk.
532pub const ERROR_FLOPPY_VOLUME: DWORD = 0x00000248;
533///The system bios failed to connect a system interrupt to the device or bus for which the device is connected.
534pub const ERROR_BIOS_FAILED_TO_CONNECT_INTERRUPT: DWORD = 0x00000249;
535///This operation is only allowed for the primary domain controller (PDC) of the domain.
536pub const ERROR_BACKUP_CONTROLLER: DWORD = 0x0000024A;
537///An attempt was made to acquire a mutant such that its maximum count would have been exceeded.
538pub const ERROR_MUTANT_LIMIT_EXCEEDED: DWORD = 0x0000024B;
539///A volume has been accessed for which a file system driver is required that has not yet been loaded.
540pub const ERROR_FS_DRIVER_REQUIRED: DWORD = 0x0000024C;
541///{Registry File Failure} The registry cannot load the hive (file): %hs or its log or alternate. It is corrupt, absent, or not writable.
542pub const ERROR_CANNOT_LOAD_REGISTRY_FILE: DWORD = 0x0000024D;
543///{Unexpected Failure in DebugActiveProcess} An unexpected failure occurred while processing a DebugActiveProcess API request. Choosing OK will terminate the process, and choosing Cancel will ignore the error.
544pub const ERROR_DEBUG_ATTACH_FAILED: DWORD = 0x0000024E;
545///{Fatal System Error} The %hs system process terminated unexpectedly with a status of 0x%08x (0x%08x 0x%08x). The system has been shut down.
546pub const ERROR_SYSTEM_PROCESS_TERMINATED: DWORD = 0x0000024F;
547///{Data Not Accepted} The transport driver interface (TDI) client could not handle the data received during an indication.
548pub const ERROR_DATA_NOT_ACCEPTED: DWORD = 0x00000250;
549///The NT Virtual DOS Machine (NTVDM) encountered a hard error.
550pub const ERROR_VDM_HARD_ERROR: DWORD = 0x00000251;
551///{Cancel Timeout} The driver %hs failed to complete a canceled I/O request in the allotted time.
552pub const ERROR_DRIVER_CANCEL_TIMEOUT: DWORD = 0x00000252;
553///{Reply Message Mismatch} An attempt was made to reply to a local procedure call (LPC) message, but the thread specified by the client ID in the message was not waiting on that message.
554pub const ERROR_REPLY_MESSAGE_MISMATCH: DWORD = 0x00000253;
555///{Delayed Write Failed} Windows was unable to save all the data for the file %hs. The data has been lost. This error might be caused by a failure of your computer hardware or network connection. Try to save this file elsewhere.
556pub const ERROR_LOST_WRITEBEHIND_DATA: DWORD = 0x00000254;
557///The parameters passed to the server in the client/server shared memory window were invalid. Too much data might have been put in the shared memory window.
558pub const ERROR_CLIENT_SERVER_PARAMETERS_INVALID: DWORD = 0x00000255;
559///The stream is not a tiny stream.
560pub const ERROR_NOT_TINY_STREAM: DWORD = 0x00000256;
561///The request must be handled by the stack overflow code.
562pub const ERROR_STACK_OVERFLOW_READ: DWORD = 0x00000257;
563///Internal OFS status codes indicating how an allocation operation is handled. Either it is retried after the containing onode is moved or the extent stream is converted to a large stream.
564pub const ERROR_CONVERT_TO_LARGE: DWORD = 0x00000258;
565///The attempt to find the object found an object matching by ID on the volume but it is out of the scope of the handle used for the operation.
566pub const ERROR_FOUND_OUT_OF_SCOPE: DWORD = 0x00000259;
567///The bucket array must be grown. Retry transaction after doing so.
568pub const ERROR_ALLOCATE_BUCKET: DWORD = 0x0000025A;
569///The user/kernel marshaling buffer has overflowed.
570pub const ERROR_MARSHALL_OVERFLOW: DWORD = 0x0000025B;
571///The supplied variant structure contains invalid data.
572pub const ERROR_INVALID_VARIANT: DWORD = 0x0000025C;
573///The specified buffer contains ill-formed data.
574pub const ERROR_BAD_COMPRESSION_BUFFER: DWORD = 0x0000025D;
575///{Audit Failed} An attempt to generate a security audit failed.
576pub const ERROR_AUDIT_FAILED: DWORD = 0x0000025E;
577///The timer resolution was not previously set by the current process.
578pub const ERROR_TIMER_RESOLUTION_NOT_SET: DWORD = 0x0000025F;
579///There is insufficient account information to log you on.
580pub const ERROR_INSUFFICIENT_LOGON_INFO: DWORD = 0x00000260;
581///{Invalid DLL Entrypoint} The dynamic link library %hs is not written correctly. The stack pointer has been left in an inconsistent state. The entry point should be declared as WINAPI or STDCALL. Select YES to fail the DLL load. Select NO to continue execution. Selecting NO can cause the application to operate incorrectly.
582pub const ERROR_BAD_DLL_ENTRYPOINT: DWORD = 0x00000261;
583///{Invalid Service Callback Entrypoint} The %hs service is not written correctly. The stack pointer has been left in an inconsistent state. The callback entry point should be declared as WINAPI or STDCALL. Selecting OK will cause the service to continue operation. However, the service process might operate incorrectly.
584pub const ERROR_BAD_SERVICE_ENTRYPOINT: DWORD = 0x00000262;
585///There is an IP address conflict with another system on the network.
586pub const ERROR_IP_ADDRESS_CONFLICT1: DWORD = 0x00000263;
587///There is an IP address conflict with another system on the network.
588pub const ERROR_IP_ADDRESS_CONFLICT2: DWORD = 0x00000264;
589///{Low On Registry Space} The system has reached the maximum size allowed for the system part of the registry. Additional storage requests will be ignored.
590pub const ERROR_REGISTRY_QUOTA_LIMIT: DWORD = 0x00000265;
591///A callback return system service cannot be executed when no callback is active.
592pub const ERROR_NO_CALLBACK_ACTIVE: DWORD = 0x00000266;
593///The password provided is too short to meet the policy of your user account. Choose a longer password.
594pub const ERROR_PWD_TOO_SHORT: DWORD = 0x00000267;
595///The policy of your user account does not allow you to change passwords too frequently. This is done to prevent users from changing back to a familiar, but potentially discovered, password. If you feel your password has been compromised, contact your administrator immediately to have a new one assigned.
596pub const ERROR_PWD_TOO_RECENT: DWORD = 0x00000268;
597///You have attempted to change your password to one that you have used in the past. The policy of your user account does not allow this. Select a password that you have not previously used.
598pub const ERROR_PWD_HISTORY_CONFLICT: DWORD = 0x00000269;
599///The specified compression format is unsupported.
600pub const ERROR_UNSUPPORTED_COMPRESSION: DWORD = 0x0000026A;
601///The specified hardware profile configuration is invalid.
602pub const ERROR_INVALID_HW_PROFILE: DWORD = 0x0000026B;
603///The specified Plug and Play registry device path is invalid.
604pub const ERROR_INVALID_PLUGPLAY_DEVICE_PATH: DWORD = 0x0000026C;
605///The specified quota list is internally inconsistent with its descriptor.
606pub const ERROR_QUOTA_LIST_INCONSISTENT: DWORD = 0x0000026D;
607///{Windows Evaluation Notification} The evaluation period for this installation of Windows has expired. This system will shut down in 1 hour. To restore access to this installation of Windows, upgrade this installation using a licensed distribution of this product.
608pub const ERROR_EVALUATION_EXPIRATION: DWORD = 0x0000026E;
609///{Illegal System DLL Relocation} The system DLL %hs was relocated in memory. The application will not run properly. The relocation occurred because the DLL %hs occupied an address range reserved for Windows system DLLs. The vendor supplying the DLL should be contacted for a new DLL.
610pub const ERROR_ILLEGAL_DLL_RELOCATION: DWORD = 0x0000026F;
611///{DLL Initialization Failed} The application failed to initialize because the window station is shutting down.
612pub const ERROR_DLL_INIT_FAILED_LOGOFF: DWORD = 0x00000270;
613///The validation process needs to continue on to the next step.
614pub const ERROR_VALIDATE_CONTINUE: DWORD = 0x00000271;
615///There are no more matches for the current index enumeration.
616pub const ERROR_NO_MORE_MATCHES: DWORD = 0x00000272;
617///The range could not be added to the range list because of a conflict.
618pub const ERROR_RANGE_LIST_CONFLICT: DWORD = 0x00000273;
619///The server process is running under a SID different than that required by the client.
620pub const ERROR_SERVER_SID_MISMATCH: DWORD = 0x00000274;
621///A group marked use for deny only cannot be enabled.
622pub const ERROR_CANT_ENABLE_DENY_ONLY: DWORD = 0x00000275;
623///{EXCEPTION} Multiple floating point faults.
624pub const ERROR_FLOAT_MULTIPLE_FAULTS: DWORD = 0x00000276;
625///{EXCEPTION} Multiple floating point traps.
626pub const ERROR_FLOAT_MULTIPLE_TRAPS: DWORD = 0x00000277;
627///The requested interface is not supported.
628pub const ERROR_NOINTERFACE: DWORD = 0x00000278;
629///{System Standby Failed} The driver %hs does not support standby mode. Updating this driver might allow the system to go to standby mode.
630pub const ERROR_DRIVER_FAILED_SLEEP: DWORD = 0x00000279;
631///The system file %1 has become corrupt and has been replaced.
632pub const ERROR_CORRUPT_SYSTEM_FILE: DWORD = 0x0000027A;
633///{Virtual Memory Minimum Too Low} Your system is low on virtual memory. Windows is increasing the size of your virtual memory paging file. During this process, memory requests for some applications might be denied. For more information, see Help.
634pub const ERROR_COMMITMENT_MINIMUM: DWORD = 0x0000027B;
635///A device was removed so enumeration must be restarted.
636pub const ERROR_PNP_RESTART_ENUMERATION: DWORD = 0x0000027C;
637///{Fatal System Error} The system image %s is not properly signed. The file has been replaced with the signed file. The system has been shut down.
638pub const ERROR_SYSTEM_IMAGE_BAD_SIGNATURE: DWORD = 0x0000027D;
639///Device will not start without a reboot.
640pub const ERROR_PNP_REBOOT_REQUIRED: DWORD = 0x0000027E;
641///There is not enough power to complete the requested operation.
642pub const ERROR_INSUFFICIENT_POWER: DWORD = 0x0000027F;
643///The system is in the process of shutting down.
644pub const ERROR_SYSTEM_SHUTDOWN: DWORD = 0x00000281;
645///An attempt to remove a process DebugPort was made, but a port was not already associated with the process.
646pub const ERROR_PORT_NOT_SET: DWORD = 0x00000282;
647///This version of Windows is not compatible with the behavior version of directory forest, domain, or domain controller.
648pub const ERROR_DS_VERSION_CHECK_FAILURE: DWORD = 0x00000283;
649///The specified range could not be found in the range list.
650pub const ERROR_RANGE_NOT_FOUND: DWORD = 0x00000284;
651///The driver was not loaded because the system is booting into safe mode.
652pub const ERROR_NOT_SAFE_MODE_DRIVER: DWORD = 0x00000286;
653///The driver was not loaded because it failed its initialization call.
654pub const ERROR_FAILED_DRIVER_ENTRY: DWORD = 0x00000287;
655///The device encountered an error while applying power or reading the device configuration. This might be caused by a failure of your hardware or by a poor connection.
656pub const ERROR_DEVICE_ENUMERATION_ERROR: DWORD = 0x00000288;
657///The create operation failed because the name contained at least one mount point that resolves to a volume to which the specified device object is not attached.
658pub const ERROR_MOUNT_POINT_NOT_RESOLVED: DWORD = 0x00000289;
659///The device object parameter is either not a valid device object or is not attached to the volume specified by the file name.
660pub const ERROR_INVALID_DEVICE_OBJECT_PARAMETER: DWORD = 0x0000028A;
661///A machine check error has occurred. Check the system event log for additional information.
662pub const ERROR_MCA_OCCURED: DWORD = 0x0000028B;
663///There was an error [%2] processing the driver database.
664pub const ERROR_DRIVER_DATABASE_ERROR: DWORD = 0x0000028C;
665///The system hive size has exceeded its limit.
666pub const ERROR_SYSTEM_HIVE_TOO_LARGE: DWORD = 0x0000028D;
667///The driver could not be loaded because a previous version of the driver is still in memory.
668pub const ERROR_DRIVER_FAILED_PRIOR_UNLOAD: DWORD = 0x0000028E;
669///{Volume Shadow Copy Service} Wait while the Volume Shadow Copy Service prepares volume %hs for hibernation.
670pub const ERROR_VOLSNAP_PREPARE_HIBERNATE: DWORD = 0x0000028F;
671///The system has failed to hibernate (the error code is %hs). Hibernation will be disabled until the system is restarted.
672pub const ERROR_HIBERNATION_FAILURE: DWORD = 0x00000290;
673///The requested operation could not be completed due to a file system limitation.
674pub const ERROR_FILE_SYSTEM_LIMITATION: DWORD = 0x00000299;
675///An assertion failure has occurred.
676pub const ERROR_ASSERTION_FAILURE: DWORD = 0x0000029C;
677///An error occurred in the Advanced Configuration and Power Interface (ACPI) subsystem.
678pub const ERROR_ACPI_ERROR: DWORD = 0x0000029D;
679///WOW assertion error.
680pub const ERROR_WOW_ASSERTION: DWORD = 0x0000029E;
681///A device is missing in the system BIOS MultiProcessor Specification (MPS) table. This device will not be used. Contact your system vendor for system BIOS update.
682pub const ERROR_PNP_BAD_MPS_TABLE: DWORD = 0x0000029F;
683///A translator failed to translate resources.
684pub const ERROR_PNP_TRANSLATION_FAILED: DWORD = 0x000002A0;
685///An interrupt request (IRQ) translator failed to translate resources.
686pub const ERROR_PNP_IRQ_TRANSLATION_FAILED: DWORD = 0x000002A1;
687///Driver %2 returned invalid ID for a child device (%3).
688pub const ERROR_PNP_INVALID_ID: DWORD = 0x000002A2;
689///{Kernel Debugger Awakened} the system debugger was awakened by an interrupt.
690pub const ERROR_WAKE_SYSTEM_DEBUGGER: DWORD = 0x000002A3;
691///{Handles Closed} Handles to objects have been automatically closed because of the requested operation.
692pub const ERROR_HANDLES_CLOSED: DWORD = 0x000002A4;
693///{Too Much Information} The specified ACL contained more information than was expected.
694pub const ERROR_EXTRANEOUS_INFORMATION: DWORD = 0x000002A5;
695///This warning level status indicates that the transaction state already exists for the registry subtree, but that a transaction commit was previously aborted. The commit has NOT been completed, but it has not been rolled back either (so it can still be committed if desired).
696pub const ERROR_RXACT_COMMIT_NECESSARY: DWORD = 0x000002A6;
697///{Media Changed} The media might have changed.
698pub const ERROR_MEDIA_CHECK: DWORD = 0x000002A7;
699///{GUID Substitution} During the translation of a GUID to a Windows SID, no administratively defined GUID prefix was found. A substitute prefix was used, which will not compromise system security. However, this might provide more restrictive access than intended.
700pub const ERROR_GUID_SUBSTITUTION_MADE: DWORD = 0x000002A8;
701///The create operation stopped after reaching a symbolic link.
702pub const ERROR_STOPPED_ON_SYMLINK: DWORD = 0x000002A9;
703///A long jump has been executed.
704pub const ERROR_LONGJUMP: DWORD = 0x000002AA;
705///The Plug and Play query operation was not successful.
706pub const ERROR_PLUGPLAY_QUERY_VETOED: DWORD = 0x000002AB;
707///A frame consolidation has been executed.
708pub const ERROR_UNWIND_CONSOLIDATE: DWORD = 0x000002AC;
709///{Registry Hive Recovered} Registry hive (file): %hs was corrupted and it has been recovered. Some data might have been lost.
710pub const ERROR_REGISTRY_HIVE_RECOVERED: DWORD = 0x000002AD;
711///The application is attempting to run executable code from the module %hs. This might be insecure. An alternative, %hs, is available. Should the application use the secure module %hs?
712pub const ERROR_DLL_MIGHT_BE_INSECURE: DWORD = 0x000002AE;
713///The application is loading executable code from the module %hs. This is secure, but might be incompatible with previous releases of the operating system. An alternative, %hs, is available. Should the application use the secure module %hs?
714pub const ERROR_DLL_MIGHT_BE_INCOMPATIBLE: DWORD = 0x000002AF;
715///Debugger did not handle the exception.
716pub const ERROR_DBG_EXCEPTION_NOT_HANDLED: DWORD = 0x000002B0;
717///Debugger will reply later.
718pub const ERROR_DBG_REPLY_LATER: DWORD = 0x000002B1;
719///Debugger cannot provide handle.
720pub const ERROR_DBG_UNABLE_TO_PROVIDE_HANDLE: DWORD = 0x000002B2;
721///Debugger terminated thread.
722pub const ERROR_DBG_TERMINATE_THREAD: DWORD = 0x000002B3;
723///Debugger terminated process.
724pub const ERROR_DBG_TERMINATE_PROCESS: DWORD = 0x000002B4;
725///Debugger got control C.
726pub const ERROR_DBG_CONTROL_C: DWORD = 0x000002B5;
727///Debugger printed exception on control C.
728pub const ERROR_DBG_PRINTEXCEPTION_C: DWORD = 0x000002B6;
729///Debugger received Routing Information Protocol (RIP) exception.
730pub const ERROR_DBG_RIPEXCEPTION: DWORD = 0x000002B7;
731///Debugger received control break.
732pub const ERROR_DBG_CONTROL_BREAK: DWORD = 0x000002B8;
733///Debugger command communication exception.
734pub const ERROR_DBG_COMMAND_EXCEPTION: DWORD = 0x000002B9;
735///{Object Exists} An attempt was made to create an object and the object name already existed.
736pub const ERROR_OBJECT_NAME_EXISTS: DWORD = 0x000002BA;
737///{Thread Suspended} A thread termination occurred while the thread was suspended. The thread was resumed and termination proceeded.
738pub const ERROR_THREAD_WAS_SUSPENDED: DWORD = 0x000002BB;
739///{Image Relocated} An image file could not be mapped at the address specified in the image file. Local fixes must be performed on this image.
740pub const ERROR_IMAGE_NOT_AT_BASE: DWORD = 0x000002BC;
741///This informational level status indicates that a specified registry subtree transaction state did not yet exist and had to be created.
742pub const ERROR_RXACT_STATE_CREATED: DWORD = 0x000002BD;
743///{Segment Load} A virtual DOS machine (VDM) is loading, unloading, or moving an MS-DOS or Win16 program segment image. An exception is raised so a debugger can load, unload, or track symbols and breakpoints within these 16-bit segments.
744pub const ERROR_SEGMENT_NOTIFICATION: DWORD = 0x000002BE;
745///{Invalid Current Directory} The process cannot switch to the startup current directory %hs. Select OK to set current directory to %hs, or select CANCEL to exit.
746pub const ERROR_BAD_CURRENT_DIRECTORY: DWORD = 0x000002BF;
747///{Redundant Read} To satisfy a read request, the NT fault-tolerant file system successfully read the requested data from a redundant copy. This was done because the file system encountered a failure on a member of the fault-tolerant volume, but it was unable to reassign the failing area of the device.
748pub const ERROR_FT_READ_RECOVERY_FROM_BACKUP: DWORD = 0x000002C0;
749///{Redundant Write} To satisfy a write request, the Windows NT operating system fault-tolerant file system successfully wrote a redundant copy of the information. This was done because the file system encountered a failure on a member of the fault-tolerant volume, but it was not able to reassign the failing area of the device.
750pub const ERROR_FT_WRITE_RECOVERY: DWORD = 0x000002C1;
751///{Machine Type Mismatch} The image file %hs is valid, but is for a machine type other than the current machine. Select OK to continue, or CANCEL to fail the DLL load.
752pub const ERROR_IMAGE_MACHINE_TYPE_MISMATCH: DWORD = 0x000002C2;
753///{Partial Data Received} The network transport returned partial data to its client. The remaining data will be sent later.
754pub const ERROR_RECEIVE_PARTIAL: DWORD = 0x000002C3;
755///{Expedited Data Received} The network transport returned data to its client that was marked as expedited by the remote system.
756pub const ERROR_RECEIVE_EXPEDITED: DWORD = 0x000002C4;
757///{Partial Expedited Data Received} The network transport returned partial data to its client and this data was marked as expedited by the remote system. The remaining data will be sent later.
758pub const ERROR_RECEIVE_PARTIAL_EXPEDITED: DWORD = 0x000002C5;
759///{TDI Event Done} The TDI indication has completed successfully.
760pub const ERROR_EVENT_DONE: DWORD = 0x000002C6;
761///{TDI Event Pending} The TDI indication has entered the pending state.
762pub const ERROR_EVENT_PENDING: DWORD = 0x000002C7;
763///Checking file system on %wZ.
764pub const ERROR_CHECKING_FILE_SYSTEM: DWORD = 0x000002C8;
765///{Fatal Application Exit} %hs.
766pub const ERROR_FATAL_APP_EXIT: DWORD = 0x000002C9;
767///The specified registry key is referenced by a predefined handle.
768pub const ERROR_PREDEFINED_HANDLE: DWORD = 0x000002CA;
769///{Page Unlocked} The page protection of a locked page was changed to 'No Access' and the page was unlocked from memory and from the process.
770pub const ERROR_WAS_UNLOCKED: DWORD = 0x000002CB;
771///{Page Locked} One of the pages to lock was already locked.
772pub const ERROR_WAS_LOCKED: DWORD = 0x000002CD;
773///The value already corresponds with a Win 32 error code.
774pub const ERROR_ALREADY_WIN32: DWORD = 0x000002CF;
775///{Machine Type Mismatch} The image file %hs is valid, but is for a machine type other than the current machine.
776pub const ERROR_IMAGE_MACHINE_TYPE_MISMATCH_EXE: DWORD = 0x000002D0;
777///A yield execution was performed and no thread was available to run.
778pub const ERROR_NO_YIELD_PERFORMED: DWORD = 0x000002D1;
779///The resume flag to a timer API was ignored.
780pub const ERROR_TIMER_RESUME_IGNORED: DWORD = 0x000002D2;
781///The arbiter has deferred arbitration of these resources to its parent.
782pub const ERROR_ARBITRATION_UNHANDLED: DWORD = 0x000002D3;
783///The inserted CardBus device cannot be started because of a configuration error on %hs"."
784pub const ERROR_CARDBUS_NOT_SUPPORTED: DWORD = 0x000002D4;
785///The CPUs in this multiprocessor system are not all the same revision level. To use all processors the operating system restricts itself to the features of the least capable processor in the system. If problems occur with this system, contact the CPU manufacturer to see if this mix of processors is supported.
786pub const ERROR_MP_PROCESSOR_MISMATCH: DWORD = 0x000002D5;
787///The system was put into hibernation.
788pub const ERROR_HIBERNATED: DWORD = 0x000002D6;
789///The system was resumed from hibernation.
790pub const ERROR_RESUME_HIBERNATION: DWORD = 0x000002D7;
791///Windows has detected that the system firmware (BIOS) was updated (previous firmware date = %2, current firmware date %3).
792pub const ERROR_FIRMWARE_UPDATED: DWORD = 0x000002D8;
793///A device driver is leaking locked I/O pages, causing system degradation. The system has automatically enabled a tracking code to try and catch the culprit.
794pub const ERROR_DRIVERS_LEAKING_LOCKED_PAGES: DWORD = 0x000002D9;
795///The system has awoken.
796pub const ERROR_WAKE_SYSTEM: DWORD = 0x000002DA;
797///The call failed because the handle associated with it was closed.
798pub const ERROR_ABANDONED_WAIT_0: DWORD = 0x000002DF;
799///The requested operation requires elevation.
800pub const ERROR_ELEVATION_REQUIRED: DWORD = 0x000002E4;
801///A reparse should be performed by the object manager because the name of the file resulted in a symbolic link.
802pub const ERROR_REPARSE: DWORD = 0x000002E5;
803///An open/create operation completed while an oplock break is underway.
804pub const ERROR_OPLOCK_BREAK_IN_PROGRESS: DWORD = 0x000002E6;
805///A new volume has been mounted by a file system.
806pub const ERROR_VOLUME_MOUNTED: DWORD = 0x000002E7;
807///This success level status indicates that the transaction state already exists for the registry subtree, but that a transaction commit was previously aborted. The commit has now been completed.
808pub const ERROR_RXACT_COMMITTED: DWORD = 0x000002E8;
809///This indicates that a notify change request has been completed due to closing the handle which made the notify change request.
810pub const ERROR_NOTIFY_CLEANUP: DWORD = 0x000002E9;
811///{Connect Failure on Primary Transport} An attempt was made to connect to the remote server %hs on the primary transport, but the connection failed. The computer was able to connect on a secondary transport.
812pub const ERROR_PRIMARY_TRANSPORT_CONNECT_FAILED: DWORD = 0x000002EA;
813///Page fault was a transition fault.
814pub const ERROR_PAGE_FAULT_TRANSITION: DWORD = 0x000002EB;
815///Page fault was a demand zero fault.
816pub const ERROR_PAGE_FAULT_DEMAND_ZERO: DWORD = 0x000002EC;
817///Page fault was a demand zero fault.
818pub const ERROR_PAGE_FAULT_COPY_ON_WRITE: DWORD = 0x000002ED;
819///Page fault was a demand zero fault.
820pub const ERROR_PAGE_FAULT_GUARD_PAGE: DWORD = 0x000002EE;
821///Page fault was satisfied by reading from a secondary storage device.
822pub const ERROR_PAGE_FAULT_PAGING_FILE: DWORD = 0x000002EF;
823///Cached page was locked during operation.
824pub const ERROR_CACHE_PAGE_LOCKED: DWORD = 0x000002F0;
825///Crash dump exists in paging file.
826pub const ERROR_CRASH_DUMP: DWORD = 0x000002F1;
827///Specified buffer contains all zeros.
828pub const ERROR_BUFFER_ALL_ZEROS: DWORD = 0x000002F2;
829///A reparse should be performed by the object manager because the name of the file resulted in a symbolic link.
830pub const ERROR_REPARSE_OBJECT: DWORD = 0x000002F3;
831///The device has succeeded a query-stop and its resource requirements have changed.
832pub const ERROR_RESOURCE_REQUIREMENTS_CHANGED: DWORD = 0x000002F4;
833///The translator has translated these resources into the global space and no further translations should be performed.
834pub const ERROR_TRANSLATION_COMPLETE: DWORD = 0x000002F5;
835///A process being terminated has no threads to terminate.
836pub const ERROR_NOTHING_TO_TERMINATE: DWORD = 0x000002F6;
837///The specified process is not part of a job.
838pub const ERROR_PROCESS_NOT_IN_JOB: DWORD = 0x000002F7;
839///The specified process is part of a job.
840pub const ERROR_PROCESS_IN_JOB: DWORD = 0x000002F8;
841///{Volume Shadow Copy Service} The system is now ready for hibernation.
842pub const ERROR_VOLSNAP_HIBERNATE_READY: DWORD = 0x000002F9;
843///A file system or file system filter driver has successfully completed an FsFilter operation.
844pub const ERROR_FSFILTER_OP_COMPLETED_SUCCESSFULLY: DWORD = 0x000002FA;
845///The specified interrupt vector was already connected.
846pub const ERROR_INTERRUPT_VECTOR_ALREADY_CONNECTED: DWORD = 0x000002FB;
847///The specified interrupt vector is still connected.
848pub const ERROR_INTERRUPT_STILL_CONNECTED: DWORD = 0x000002FC;
849///An operation is blocked waiting for an oplock.
850pub const ERROR_WAIT_FOR_OPLOCK: DWORD = 0x000002FD;
851///Debugger handled exception.
852pub const ERROR_DBG_EXCEPTION_HANDLED: DWORD = 0x000002FE;
853///Debugger continued.
854pub const ERROR_DBG_CONTINUE: DWORD = 0x000002FF;
855///An exception occurred in a user mode callback and the kernel callback frame should be removed.
856pub const ERROR_CALLBACK_POP_STACK: DWORD = 0x00000300;
857///Compression is disabled for this volume.
858pub const ERROR_COMPRESSION_DISABLED: DWORD = 0x00000301;
859///The data provider cannot fetch backward through a result set.
860pub const ERROR_CANTFETCHBACKWARDS: DWORD = 0x00000302;
861///The data provider cannot scroll backward through a result set.
862pub const ERROR_CANTSCROLLBACKWARDS: DWORD = 0x00000303;
863///The data provider requires that previously fetched data is released before asking for more data.
864pub const ERROR_ROWSNOTRELEASED: DWORD = 0x00000304;
865///The data provider was not able to interpret the flags set for a column binding in an accessor.
866pub const ERROR_BAD_ACCESSOR_FLAGS: DWORD = 0x00000305;
867///One or more errors occurred while processing the request.
868pub const ERROR_ERRORS_ENCOUNTERED: DWORD = 0x00000306;
869///The implementation is not capable of performing the request.
870pub const ERROR_NOT_CAPABLE: DWORD = 0x00000307;
871///The client of a component requested an operation that is not valid given the state of the component instance.
872pub const ERROR_REQUEST_OUT_OF_SEQUENCE: DWORD = 0x00000308;
873///A version number could not be parsed.
874pub const ERROR_VERSION_PARSE_ERROR: DWORD = 0x00000309;
875///The iterator's start position is invalid.
876pub const ERROR_BADSTARTPOSITION: DWORD = 0x0000030A;
877///The hardware has reported an uncorrectable memory error.
878pub const ERROR_MEMORY_HARDWARE: DWORD = 0x0000030B;
879///The attempted operation required self-healing to be enabled.
880pub const ERROR_DISK_REPAIR_DISABLED: DWORD = 0x0000030C;
881///The Desktop heap encountered an error while allocating session memory. There is more information in the system event log.
882pub const ERROR_INSUFFICIENT_RESOURCE_FOR_SPECIFIED_SHARED_SECTION_SIZE: DWORD = 0x0000030D;
883///The system power state is transitioning from %2 to %3.
884pub const ERROR_SYSTEM_POWERSTATE_TRANSITION: DWORD = 0x0000030E;
885///The system power state is transitioning from %2 to %3 but could enter %4.
886pub const ERROR_SYSTEM_POWERSTATE_COMPLEX_TRANSITION: DWORD = 0x0000030F;
887///A thread is getting dispatched with MCA EXCEPTION because of MCA.
888pub const ERROR_MCA_EXCEPTION: DWORD = 0x00000310;
889///Access to %1 is monitored by policy rule %2.
890pub const ERROR_ACCESS_AUDIT_BY_POLICY: DWORD = 0x00000311;
891///Access to %1 has been restricted by your administrator by policy rule %2.
892pub const ERROR_ACCESS_DISABLED_NO_SAFER_UI_BY_POLICY: DWORD = 0x00000312;
893///A valid hibernation file has been invalidated and should be abandoned.
894pub const ERROR_ABANDON_HIBERFILE: DWORD = 0x00000313;
895///{Delayed Write Failed} Windows was unable to save all the data for the file %hs; the data has been lost. This error can be caused by network connectivity issues. Try to save this file elsewhere.
896pub const ERROR_LOST_WRITEBEHIND_DATA_NETWORK_DISCONNECTED: DWORD = 0x00000314;
897///{Delayed Write Failed} Windows was unable to save all the data for the file %hs; the data has been lost. This error was returned by the server on which the file exists. Try to save this file elsewhere.
898pub const ERROR_LOST_WRITEBEHIND_DATA_NETWORK_SERVER_ERROR: DWORD = 0x00000315;
899///{Delayed Write Failed} Windows was unable to save all the data for the file %hs; the data has been lost. This error can be caused if the device has been removed or the media is write-protected.
900pub const ERROR_LOST_WRITEBEHIND_DATA_LOCAL_DISK_ERROR: DWORD = 0x00000316;
901///Access to the extended attribute was denied.
902pub const ERROR_EA_ACCESS_DENIED: DWORD = 0x000003E2;
903///The I/O operation has been aborted because of either a thread exit or an application request.
904pub const ERROR_OPERATION_ABORTED: DWORD = 0x000003E3;
905///Overlapped I/O event is not in a signaled state.
906pub const ERROR_IO_INCOMPLETE: DWORD = 0x000003E4;
907///Overlapped I/O operation is in progress.
908pub const ERROR_IO_PENDING: DWORD = 0x000003E5;
909///Invalid access to memory location.
910pub const ERROR_NOACCESS: DWORD = 0x000003E6;
911///Error performing in-page operation.
912pub const ERROR_SWAPERROR: DWORD = 0x000003E7;
913///Recursion too deep; the stack overflowed.
914pub const ERROR_STACK_OVERFLOW: DWORD = 0x000003E9;
915///The window cannot act on the sent message.
916pub const ERROR_INVALID_MESSAGE: DWORD = 0x000003EA;
917///Cannot complete this function.
918pub const ERROR_CAN_NOT_COMPLETE: DWORD = 0x000003EB;
919///Invalid flags.
920pub const ERROR_INVALID_FLAGS: DWORD = 0x000003EC;
921///The volume does not contain a recognized file system. Be sure that all required file system drivers are loaded and that the volume is not corrupted.
922pub const ERROR_UNRECOGNIZED_VOLUME: DWORD = 0x000003ED;
923///The volume for a file has been externally altered so that the opened file is no longer valid.
924pub const ERROR_FILE_INVALID: DWORD = 0x000003EE;
925///The requested operation cannot be performed in full-screen mode.
926pub const ERROR_FULLSCREEN_MODE: DWORD = 0x000003EF;
927///An attempt was made to reference a token that does not exist.
928pub const ERROR_NO_TOKEN: DWORD = 0x000003F0;
929///The configuration registry database is corrupt.
930pub const ERROR_BADDB: DWORD = 0x000003F1;
931///The configuration registry key is invalid.
932pub const ERROR_BADKEY: DWORD = 0x000003F2;
933///The configuration registry key could not be opened.
934pub const ERROR_CANTOPEN: DWORD = 0x000003F3;
935///The configuration registry key could not be read.
936pub const ERROR_CANTREAD: DWORD = 0x000003F4;
937///The configuration registry key could not be written.
938pub const ERROR_CANTWRITE: DWORD = 0x000003F5;
939///One of the files in the registry database had to be recovered by use of a log or alternate copy. The recovery was successful.
940pub const ERROR_REGISTRY_RECOVERED: DWORD = 0x000003F6;
941///The registry is corrupted. The structure of one of the files containing registry data is corrupted, or the system's memory image of the file is corrupted, or the file could not be recovered because the alternate copy or log was absent or corrupted.
942pub const ERROR_REGISTRY_CORRUPT: DWORD = 0x000003F7;
943///An I/O operation initiated by the registry failed and cannot be recovered. The registry could not read in, write out, or flush one of the files that contain the system's image of the registry.
944pub const ERROR_REGISTRY_IO_FAILED: DWORD = 0x000003F8;
945///The system attempted to load or restore a file into the registry, but the specified file is not in a registry file format.
946pub const ERROR_NOT_REGISTRY_FILE: DWORD = 0x000003F9;
947///Illegal operation attempted on a registry key that has been marked for deletion.
948pub const ERROR_KEY_DELETED: DWORD = 0x000003FA;
949///System could not allocate the required space in a registry log.
950pub const ERROR_NO_LOG_SPACE: DWORD = 0x000003FB;
951///Cannot create a symbolic link in a registry key that already has subkeys or values.
952pub const ERROR_KEY_HAS_CHILDREN: DWORD = 0x000003FC;
953///Cannot create a stable subkey under a volatile parent key.
954pub const ERROR_CHILD_MUST_BE_VOLATILE: DWORD = 0x000003FD;
955///A notify change request is being completed and the information is not being returned in the caller's buffer. The caller now needs to enumerate the files to find the changes.
956pub const ERROR_NOTIFY_ENUM_DIR: DWORD = 0x000003FE;
957///A stop control has been sent to a service that other running services are dependent on.
958pub const ERROR_DEPENDENT_SERVICES_RUNNING: DWORD = 0x0000041B;
959///The requested control is not valid for this service.
960pub const ERROR_INVALID_SERVICE_CONTROL: DWORD = 0x0000041C;
961///The service did not respond to the start or control request in a timely fashion.
962pub const ERROR_SERVICE_REQUEST_TIMEOUT: DWORD = 0x0000041D;
963///A thread could not be created for the service.
964pub const ERROR_SERVICE_NO_THREAD: DWORD = 0x0000041E;
965///The service database is locked.
966pub const ERROR_SERVICE_DATABASE_LOCKED: DWORD = 0x0000041F;
967///An instance of the service is already running.
968pub const ERROR_SERVICE_ALREADY_RUNNING: DWORD = 0x00000420;
969///The account name is invalid or does not exist, or the password is invalid for the account name specified.
970pub const ERROR_INVALID_SERVICE_ACCOUNT: DWORD = 0x00000421;
971///The service cannot be started, either because it is disabled or because it has no enabled devices associated with it.
972pub const ERROR_SERVICE_DISABLED: DWORD = 0x00000422;
973///Circular service dependency was specified.
974pub const ERROR_CIRCULAR_DEPENDENCY: DWORD = 0x00000423;
975///The specified service does not exist as an installed service.
976pub const ERROR_SERVICE_DOES_NOT_EXIST: DWORD = 0x00000424;
977///The service cannot accept control messages at this time.
978pub const ERROR_SERVICE_CANNOT_ACCEPT_CTRL: DWORD = 0x00000425;
979///The service has not been started.
980pub const ERROR_SERVICE_NOT_ACTIVE: DWORD = 0x00000426;
981///The service process could not connect to the service controller.
982pub const ERROR_FAILED_SERVICE_CONTROLLER_CONNECT: DWORD = 0x00000427;
983///An exception occurred in the service when handling the control request.
984pub const ERROR_EXCEPTION_IN_SERVICE: DWORD = 0x00000428;
985///The database specified does not exist.
986pub const ERROR_DATABASE_DOES_NOT_EXIST: DWORD = 0x00000429;
987///The service has returned a service-specific error code.
988pub const ERROR_SERVICE_SPECIFIC_ERROR: DWORD = 0x0000042A;
989///The process terminated unexpectedly.
990pub const ERROR_PROCESS_ABORTED: DWORD = 0x0000042B;
991///The dependency service or group failed to start.
992pub const ERROR_SERVICE_DEPENDENCY_FAIL: DWORD = 0x0000042C;
993///The service did not start due to a logon failure.
994pub const ERROR_SERVICE_LOGON_FAILED: DWORD = 0x0000042D;
995///After starting, the service stopped responding in a start-pending state.
996pub const ERROR_SERVICE_START_HANG: DWORD = 0x0000042E;
997///The specified service database lock is invalid.
998pub const ERROR_INVALID_SERVICE_LOCK: DWORD = 0x0000042F;
999///The specified service has been marked for deletion.
1000pub const ERROR_SERVICE_MARKED_FOR_DELETE: DWORD = 0x00000430;
1001///The specified service already exists.
1002pub const ERROR_SERVICE_EXISTS: DWORD = 0x00000431;
1003///The system is currently running with the last-known-good configuration.
1004pub const ERROR_ALREADY_RUNNING_LKG: DWORD = 0x00000432;
1005///The dependency service does not exist or has been marked for deletion.
1006pub const ERROR_SERVICE_DEPENDENCY_DELETED: DWORD = 0x00000433;
1007///The current boot has already been accepted for use as the last-known-good control set.
1008pub const ERROR_BOOT_ALREADY_ACCEPTED: DWORD = 0x00000434;
1009///No attempts to start the service have been made since the last boot.
1010pub const ERROR_SERVICE_NEVER_STARTED: DWORD = 0x00000435;
1011///The name is already in use as either a service name or a service display name.
1012pub const ERROR_DUPLICATE_SERVICE_NAME: DWORD = 0x00000436;
1013///The account specified for this service is different from the account specified for other services running in the same process.
1014pub const ERROR_DIFFERENT_SERVICE_ACCOUNT: DWORD = 0x00000437;
1015///Failure actions can only be set for Win32 services, not for drivers.
1016pub const ERROR_CANNOT_DETECT_DRIVER_FAILURE: DWORD = 0x00000438;
1017///This service runs in the same process as the service control manager. Therefore, the service control manager cannot take action if this service's process terminates unexpectedly.
1018pub const ERROR_CANNOT_DETECT_PROCESS_ABORT: DWORD = 0x00000439;
1019///No recovery program has been configured for this service.
1020pub const ERROR_NO_RECOVERY_PROGRAM: DWORD = 0x0000043A;
1021///The executable program that this service is configured to run in does not implement the service.
1022pub const ERROR_SERVICE_NOT_IN_EXE: DWORD = 0x0000043B;
1023///This service cannot be started in Safe Mode.
1024pub const ERROR_NOT_SAFEBOOT_SERVICE: DWORD = 0x0000043C;
1025///The physical end of the tape has been reached.
1026pub const ERROR_END_OF_MEDIA: DWORD = 0x0000044C;
1027///A tape access reached a filemark.
1028pub const ERROR_FILEMARK_DETECTED: DWORD = 0x0000044D;
1029///The beginning of the tape or a partition was encountered.
1030pub const ERROR_BEGINNING_OF_MEDIA: DWORD = 0x0000044E;
1031///A tape access reached the end of a set of files.
1032pub const ERROR_SETMARK_DETECTED: DWORD = 0x0000044F;
1033///No more data is on the tape.
1034pub const ERROR_NO_DATA_DETECTED: DWORD = 0x00000450;
1035///Tape could not be partitioned.
1036pub const ERROR_PARTITION_FAILURE: DWORD = 0x00000451;
1037///When accessing a new tape of a multivolume partition, the current block size is incorrect.
1038pub const ERROR_INVALID_BLOCK_LENGTH: DWORD = 0x00000452;
1039///Tape partition information could not be found when loading a tape.
1040pub const ERROR_DEVICE_NOT_PARTITIONED: DWORD = 0x00000453;
1041///Unable to lock the media eject mechanism.
1042pub const ERROR_UNABLE_TO_LOCK_MEDIA: DWORD = 0x00000454;
1043///Unable to unload the media.
1044pub const ERROR_UNABLE_TO_UNLOAD_MEDIA: DWORD = 0x00000455;
1045///The media in the drive might have changed.
1046pub const ERROR_MEDIA_CHANGED: DWORD = 0x00000456;
1047///The I/O bus was reset.
1048pub const ERROR_BUS_RESET: DWORD = 0x00000457;
1049///No media in drive.
1050pub const ERROR_NO_MEDIA_IN_DRIVE: DWORD = 0x00000458;
1051///No mapping for the Unicode character exists in the target multibyte code page.
1052pub const ERROR_NO_UNICODE_TRANSLATION: DWORD = 0x00000459;
1053///A DLL initialization routine failed.
1054pub const ERROR_DLL_INIT_FAILED: DWORD = 0x0000045A;
1055///A system shutdown is in progress.
1056pub const ERROR_SHUTDOWN_IN_PROGRESS: DWORD = 0x0000045B;
1057///Unable to abort the system shutdown because no shutdown was in progress.
1058pub const ERROR_NO_SHUTDOWN_IN_PROGRESS: DWORD = 0x0000045C;
1059///The request could not be performed because of an I/O device error.
1060pub const ERROR_IO_DEVICE: DWORD = 0x0000045D;
1061///No serial device was successfully initialized. The serial driver will unload.
1062pub const ERROR_SERIAL_NO_DEVICE: DWORD = 0x0000045E;
1063///Unable to open a device that was sharing an IRQ with other devices. At least one other device that uses that IRQ was already opened.
1064pub const ERROR_IRQ_BUSY: DWORD = 0x0000045F;
1065///A serial I/O operation was completed by another write to the serial port. (The IOCTL_SERIAL_XOFF_COUNTER reached zero.)
1066pub const ERROR_MORE_WRITES: DWORD = 0x00000460;
1067///A serial I/O operation completed because the time-out period expired. (The IOCTL_SERIAL_XOFF_COUNTER did not reach zero.)
1068pub const ERROR_COUNTER_TIMEOUT: DWORD = 0x00000461;
1069///No ID address mark was found on the floppy disk.
1070pub const ERROR_FLOPPY_ID_MARK_NOT_FOUND: DWORD = 0x00000462;
1071///Mismatch between the floppy disk sector ID field and the floppy disk controller track address.
1072pub const ERROR_FLOPPY_WRONG_CYLINDER: DWORD = 0x00000463;
1073///The floppy disk controller reported an error that is not recognized by the floppy disk driver.
1074pub const ERROR_FLOPPY_UNKNOWN_ERROR: DWORD = 0x00000464;
1075///The floppy disk controller returned inconsistent results in its registers.
1076pub const ERROR_FLOPPY_BAD_REGISTERS: DWORD = 0x00000465;
1077///While accessing the hard disk, a recalibrate operation failed, even after retries.
1078pub const ERROR_DISK_RECALIBRATE_FAILED: DWORD = 0x00000466;
1079///While accessing the hard disk, a disk operation failed even after retries.
1080pub const ERROR_DISK_OPERATION_FAILED: DWORD = 0x00000467;
1081///While accessing the hard disk, a disk controller reset was needed, but that also failed.
1082pub const ERROR_DISK_RESET_FAILED: DWORD = 0x00000468;
1083///Physical end of tape encountered.
1084pub const ERROR_EOM_OVERFLOW: DWORD = 0x00000469;
1085///Not enough server storage is available to process this command.
1086pub const ERROR_NOT_ENOUGH_SERVER_MEMORY: DWORD = 0x0000046A;
1087///A potential deadlock condition has been detected.
1088pub const ERROR_POSSIBLE_DEADLOCK: DWORD = 0x0000046B;
1089///The base address or the file offset specified does not have the proper alignment.
1090pub const ERROR_MAPPED_ALIGNMENT: DWORD = 0x0000046C;
1091///An attempt to change the system power state was vetoed by another application or driver.
1092pub const ERROR_SET_POWER_STATE_VETOED: DWORD = 0x00000474;
1093///The system BIOS failed an attempt to change the system power state.
1094pub const ERROR_SET_POWER_STATE_FAILED: DWORD = 0x00000475;
1095///An attempt was made to create more links on a file than the file system supports.
1096pub const ERROR_TOO_MANY_LINKS: DWORD = 0x00000476;
1097///The specified program requires a newer version of Windows.
1098pub const ERROR_OLD_WIN_VERSION: DWORD = 0x0000047E;
1099///The specified program is not a Windows or MS-DOS program.
1100pub const ERROR_APP_WRONG_OS: DWORD = 0x0000047F;
1101///Cannot start more than one instance of the specified program.
1102pub const ERROR_SINGLE_INSTANCE_APP: DWORD = 0x00000480;
1103///The specified program was written for an earlier version of Windows.
1104pub const ERROR_RMODE_APP: DWORD = 0x00000481;
1105///One of the library files needed to run this application is damaged.
1106pub const ERROR_INVALID_DLL: DWORD = 0x00000482;
1107///No application is associated with the specified file for this operation.
1108pub const ERROR_NO_ASSOCIATION: DWORD = 0x00000483;
1109///An error occurred in sending the command to the application.
1110pub const ERROR_DDE_FAIL: DWORD = 0x00000484;
1111///One of the library files needed to run this application cannot be found.
1112pub const ERROR_DLL_NOT_FOUND: DWORD = 0x00000485;
1113///The current process has used all of its system allowance of handles for Windows manager objects.
1114pub const ERROR_NO_MORE_USER_HANDLES: DWORD = 0x00000486;
1115///The message can be used only with synchronous operations.
1116pub const ERROR_MESSAGE_SYNC_ONLY: DWORD = 0x00000487;
1117///The indicated source element has no media.
1118pub const ERROR_SOURCE_ELEMENT_EMPTY: DWORD = 0x00000488;
1119///The indicated destination element already contains media.
1120pub const ERROR_DESTINATION_ELEMENT_FULL: DWORD = 0x00000489;
1121///The indicated element does not exist.
1122pub const ERROR_ILLEGAL_ELEMENT_ADDRESS: DWORD = 0x0000048A;
1123///The indicated element is part of a magazine that is not present.
1124pub const ERROR_MAGAZINE_NOT_PRESENT: DWORD = 0x0000048B;
1125///The indicated device requires re-initialization due to hardware errors.
1126pub const ERROR_DEVICE_REINITIALIZATION_NEEDED: DWORD = 0x0000048C;
1127///The device has indicated that cleaning is required before further operations are attempted.
1128pub const ERROR_DEVICE_REQUIRES_CLEANING: DWORD = 0x0000048D;
1129///The device has indicated that its door is open.
1130pub const ERROR_DEVICE_DOOR_OPEN: DWORD = 0x0000048E;
1131///The device is not connected.
1132pub const ERROR_DEVICE_NOT_CONNECTED: DWORD = 0x0000048F;
1133///Element not found.
1134pub const ERROR_NOT_FOUND: DWORD = 0x00000490;
1135///There was no match for the specified key in the index.
1136pub const ERROR_NO_MATCH: DWORD = 0x00000491;
1137///The property set specified does not exist on the object.
1138pub const ERROR_SET_NOT_FOUND: DWORD = 0x00000492;
1139///The point passed to GetMouseMovePoints is not in the buffer.
1140pub const ERROR_POINT_NOT_FOUND: DWORD = 0x00000493;
1141///The tracking (workstation) service is not running.
1142pub const ERROR_NO_TRACKING_SERVICE: DWORD = 0x00000494;
1143///The volume ID could not be found.
1144pub const ERROR_NO_VOLUME_ID: DWORD = 0x00000495;
1145///Unable to remove the file to be replaced.
1146pub const ERROR_UNABLE_TO_REMOVE_REPLACED: DWORD = 0x00000497;
1147///Unable to move the replacement file to the file to be replaced. The file to be replaced has retained its original name.
1148pub const ERROR_UNABLE_TO_MOVE_REPLACEMENT: DWORD = 0x00000498;
1149///Unable to move the replacement file to the file to be replaced. The file to be replaced has been renamed using the backup name.
1150pub const ERROR_UNABLE_TO_MOVE_REPLACEMENT_2: DWORD = 0x00000499;
1151///The volume change journal is being deleted.
1152pub const ERROR_JOURNAL_DELETE_IN_PROGRESS: DWORD = 0x0000049A;
1153///The volume change journal is not active.
1154pub const ERROR_JOURNAL_NOT_ACTIVE: DWORD = 0x0000049B;
1155///A file was found, but it might not be the correct file.
1156pub const ERROR_POTENTIAL_FILE_FOUND: DWORD = 0x0000049C;
1157///The journal entry has been deleted from the journal.
1158pub const ERROR_JOURNAL_ENTRY_DELETED: DWORD = 0x0000049D;
1159///A system shutdown has already been scheduled.
1160pub const ERROR_SHUTDOWN_IS_SCHEDULED: DWORD = 0x000004A6;
1161///The system shutdown cannot be initiated because there are other users logged on to the computer.
1162pub const ERROR_SHUTDOWN_USERS_LOGGED_ON: DWORD = 0x000004A7;
1163///The specified device name is invalid.
1164pub const ERROR_BAD_DEVICE: DWORD = 0x000004B0;
1165///The device is not currently connected but it is a remembered connection.
1166pub const ERROR_CONNECTION_UNAVAIL: DWORD = 0x000004B1;
1167///The local device name has a remembered connection to another network resource.
1168pub const ERROR_DEVICE_ALREADY_REMEMBERED: DWORD = 0x000004B2;
1169///The network path was either typed incorrectly, does not exist, or the network provider is not currently available. Try retyping the path or contact your network administrator.
1170pub const ERROR_NO_NET_OR_BAD_PATH: DWORD = 0x000004B3;
1171///The specified network provider name is invalid.
1172pub const ERROR_BAD_PROVIDER: DWORD = 0x000004B4;
1173///Unable to open the network connection profile.
1174pub const ERROR_CANNOT_OPEN_PROFILE: DWORD = 0x000004B5;
1175///The network connection profile is corrupted.
1176pub const ERROR_BAD_PROFILE: DWORD = 0x000004B6;
1177///Cannot enumerate a noncontainer.
1178pub const ERROR_NOT_CONTAINER: DWORD = 0x000004B7;
1179///An extended error has occurred.
1180pub const ERROR_EXTENDED_ERROR: DWORD = 0x000004B8;
1181///The format of the specified group name is invalid.
1182pub const ERROR_INVALID_GROUPNAME: DWORD = 0x000004B9;
1183///The format of the specified computer name is invalid.
1184pub const ERROR_INVALID_COMPUTERNAME: DWORD = 0x000004BA;
1185///The format of the specified event name is invalid.
1186pub const ERROR_INVALID_EVENTNAME: DWORD = 0x000004BB;
1187///The format of the specified domain name is invalid.
1188pub const ERROR_INVALID_DOMAINNAME: DWORD = 0x000004BC;
1189///The format of the specified service name is invalid.
1190pub const ERROR_INVALID_SERVICENAME: DWORD = 0x000004BD;
1191///The format of the specified network name is invalid.
1192pub const ERROR_INVALID_NETNAME: DWORD = 0x000004BE;
1193///The format of the specified share name is invalid.
1194pub const ERROR_INVALID_SHARENAME: DWORD = 0x000004BF;
1195///The format of the specified password is invalid.
1196pub const ERROR_INVALID_PASSWORDNAME: DWORD = 0x000004C0;
1197///The format of the specified message name is invalid.
1198pub const ERROR_INVALID_MESSAGENAME: DWORD = 0x000004C1;
1199///The format of the specified message destination is invalid.
1200pub const ERROR_INVALID_MESSAGEDEST: DWORD = 0x000004C2;
1201///Multiple connections to a server or shared resource by the same user, using more than one user name, are not allowed. Disconnect all previous connections to the server or shared resource and try again.
1202pub const ERROR_SESSION_CREDENTIAL_CONFLICT: DWORD = 0x000004C3;
1203///An attempt was made to establish a session to a network server, but there are already too many sessions established to that server.
1204pub const ERROR_REMOTE_SESSION_LIMIT_EXCEEDED: DWORD = 0x000004C4;
1205///The workgroup or domain name is already in use by another computer on the network.
1206pub const ERROR_DUP_DOMAINNAME: DWORD = 0x000004C5;
1207///The network is not present or not started.
1208pub const ERROR_NO_NETWORK: DWORD = 0x000004C6;
1209///The operation was canceled by the user.
1210pub const ERROR_CANCELLED: DWORD = 0x000004C7;
1211///The requested operation cannot be performed on a file with a user-mapped section open.
1212pub const ERROR_USER_MAPPED_FILE: DWORD = 0x000004C8;
1213///The remote system refused the network connection.
1214pub const ERROR_CONNECTION_REFUSED: DWORD = 0x000004C9;
1215///The network connection was gracefully closed.
1216pub const ERROR_GRACEFUL_DISCONNECT: DWORD = 0x000004CA;
1217///The network transport endpoint already has an address associated with it.
1218pub const ERROR_ADDRESS_ALREADY_ASSOCIATED: DWORD = 0x000004CB;
1219///An address has not yet been associated with the network endpoint.
1220pub const ERROR_ADDRESS_NOT_ASSOCIATED: DWORD = 0x000004CC;
1221///An operation was attempted on a nonexistent network connection.
1222pub const ERROR_CONNECTION_INVALID: DWORD = 0x000004CD;
1223///An invalid operation was attempted on an active network connection.
1224pub const ERROR_CONNECTION_ACTIVE: DWORD = 0x000004CE;
1225///The network location cannot be reached. For information about network troubleshooting, see Windows Help.
1226pub const ERROR_NETWORK_UNREACHABLE: DWORD = 0x000004CF;
1227///The network location cannot be reached. For information about network troubleshooting, see Windows Help.
1228pub const ERROR_HOST_UNREACHABLE: DWORD = 0x000004D0;
1229///The network location cannot be reached. For information about network troubleshooting, see Windows Help.
1230pub const ERROR_PROTOCOL_UNREACHABLE: DWORD = 0x000004D1;
1231///No service is operating at the destination network endpoint on the remote system.
1232pub const ERROR_PORT_UNREACHABLE: DWORD = 0x000004D2;
1233///The request was aborted.
1234pub const ERROR_REQUEST_ABORTED: DWORD = 0x000004D3;
1235///The network connection was aborted by the local system.
1236pub const ERROR_CONNECTION_ABORTED: DWORD = 0x000004D4;
1237///The operation could not be completed. A retry should be performed.
1238pub const ERROR_RETRY: DWORD = 0x000004D5;
1239///A connection to the server could not be made because the limit on the number of concurrent connections for this account has been reached.
1240pub const ERROR_CONNECTION_COUNT_LIMIT: DWORD = 0x000004D6;
1241///Attempting to log on during an unauthorized time of day for this account.
1242pub const ERROR_LOGIN_TIME_RESTRICTION: DWORD = 0x000004D7;
1243///The account is not authorized to log on from this station.
1244pub const ERROR_LOGIN_WKSTA_RESTRICTION: DWORD = 0x000004D8;
1245///The network address could not be used for the operation requested.
1246pub const ERROR_INCORRECT_ADDRESS: DWORD = 0x000004D9;
1247///The service is already registered.
1248pub const ERROR_ALREADY_REGISTERED: DWORD = 0x000004DA;
1249///The specified service does not exist.
1250pub const ERROR_SERVICE_NOT_FOUND: DWORD = 0x000004DB;
1251///The operation being requested was not performed because the user has not been authenticated.
1252pub const ERROR_NOT_AUTHENTICATED: DWORD = 0x000004DC;
1253///The operation being requested was not performed because the user has not logged on to the network. The specified service does not exist.
1254pub const ERROR_NOT_LOGGED_ON: DWORD = 0x000004DD;
1255///Continue with work in progress.
1256pub const ERROR_CONTINUE: DWORD = 0x000004DE;
1257///An attempt was made to perform an initialization operation when initialization has already been completed.
1258pub const ERROR_ALREADY_INITIALIZED: DWORD = 0x000004DF;
1259///No more local devices.
1260pub const ERROR_NO_MORE_DEVICES: DWORD = 0x000004E0;
1261///The specified site does not exist.
1262pub const ERROR_NO_SUCH_SITE: DWORD = 0x000004E1;
1263///A domain controller with the specified name already exists.
1264pub const ERROR_DOMAIN_CONTROLLER_EXISTS: DWORD = 0x000004E2;
1265///This operation is supported only when you are connected to the server.
1266pub const ERROR_ONLY_IF_CONNECTED: DWORD = 0x000004E3;
1267///The group policy framework should call the extension even if there are no changes.
1268pub const ERROR_OVERRIDE_NOCHANGES: DWORD = 0x000004E4;
1269///The specified user does not have a valid profile.
1270pub const ERROR_BAD_USER_PROFILE: DWORD = 0x000004E5;
1271///This operation is not supported on a computer running Windows Server 2003 operating system for Small Business Server.
1272pub const ERROR_NOT_SUPPORTED_ON_SBS: DWORD = 0x000004E6;
1273///The server machine is shutting down.
1274pub const ERROR_SERVER_SHUTDOWN_IN_PROGRESS: DWORD = 0x000004E7;
1275///The remote system is not available. For information about network troubleshooting, see Windows Help.
1276pub const ERROR_HOST_DOWN: DWORD = 0x000004E8;
1277///The security identifier provided is not from an account domain.
1278pub const ERROR_NON_ACCOUNT_SID: DWORD = 0x000004E9;
1279///The security identifier provided does not have a domain component.
1280pub const ERROR_NON_DOMAIN_SID: DWORD = 0x000004EA;
1281///AppHelp dialog canceled, thus preventing the application from starting.
1282pub const ERROR_APPHELP_BLOCK: DWORD = 0x000004EB;
1283///This program is blocked by Group Policy. For more information, contact your system administrator.
1284pub const ERROR_ACCESS_DISABLED_BY_POLICY: DWORD = 0x000004EC;
1285///A program attempt to use an invalid register value. Normally caused by an uninitialized register. This error is Itanium specific.
1286pub const ERROR_REG_NAT_CONSUMPTION: DWORD = 0x000004ED;
1287///The share is currently offline or does not exist.
1288pub const ERROR_CSCSHARE_OFFLINE: DWORD = 0x000004EE;
1289///The Kerberos protocol encountered an error while validating the KDC certificate during smartcard logon. There is more information in the system event log.
1290pub const ERROR_PKINIT_FAILURE: DWORD = 0x000004EF;
1291///The Kerberos protocol encountered an error while attempting to utilize the smartcard subsystem.
1292pub const ERROR_SMARTCARD_SUBSYSTEM_FAILURE: DWORD = 0x000004F0;
1293///The system detected a possible attempt to compromise security. Ensure that you can contact the server that authenticated you.
1294pub const ERROR_DOWNGRADE_DETECTED: DWORD = 0x000004F1;
1295///The machine is locked and cannot be shut down without the force option.
1296pub const ERROR_MACHINE_LOCKED: DWORD = 0x000004F7;
1297///An application-defined callback gave invalid data when called.
1298pub const ERROR_CALLBACK_SUPPLIED_INVALID_DATA: DWORD = 0x000004F9;
1299///The Group Policy framework should call the extension in the synchronous foreground policy refresh.
1300pub const ERROR_SYNC_FOREGROUND_REFRESH_REQUIRED: DWORD = 0x000004FA;
1301///This driver has been blocked from loading.
1302pub const ERROR_DRIVER_BLOCKED: DWORD = 0x000004FB;
1303///A DLL referenced a module that was neither a DLL nor the process's executable image.
1304pub const ERROR_INVALID_IMPORT_OF_NON_DLL: DWORD = 0x000004FC;
1305///Windows cannot open this program because it has been disabled.
1306pub const ERROR_ACCESS_DISABLED_WEBBLADE: DWORD = 0x000004FD;
1307///Windows cannot open this program because the license enforcement system has been tampered with or become corrupted.
1308pub const ERROR_ACCESS_DISABLED_WEBBLADE_TAMPER: DWORD = 0x000004FE;
1309///A transaction recover failed.
1310pub const ERROR_RECOVERY_FAILURE: DWORD = 0x000004FF;
1311///The current thread has already been converted to a fiber.
1312pub const ERROR_ALREADY_FIBER: DWORD = 0x00000500;
1313///The current thread has already been converted from a fiber.
1314pub const ERROR_ALREADY_THREAD: DWORD = 0x00000501;
1315///The system detected an overrun of a stack-based buffer in this application. This overrun could potentially allow a malicious user to gain control of this application.
1316pub const ERROR_STACK_BUFFER_OVERRUN: DWORD = 0x00000502;
1317///Data present in one of the parameters is more than the function can operate on.
1318pub const ERROR_PARAMETER_QUOTA_EXCEEDED: DWORD = 0x00000503;
1319///An attempt to perform an operation on a debug object failed because the object is in the process of being deleted.
1320pub const ERROR_DEBUGGER_INACTIVE: DWORD = 0x00000504;
1321///An attempt to delay-load a .dll or get a function address in a delay-loaded .dll failed.
1322pub const ERROR_DELAY_LOAD_FAILED: DWORD = 0x00000505;
1323///%1 is a 16-bit application. You do not have permissions to execute 16-bit applications. Check your permissions with your system administrator.
1324pub const ERROR_VDM_DISALLOWED: DWORD = 0x00000506;
1325///Insufficient information exists to identify the cause of failure.
1326pub const ERROR_UNIDENTIFIED_ERROR: DWORD = 0x00000507;
1327///The parameter passed to a C runtime function is incorrect.
1328pub const ERROR_INVALID_CRUNTIME_PARAMETER: DWORD = 0x00000508;
1329///The operation occurred beyond the valid data length of the file.
1330pub const ERROR_BEYOND_VDL: DWORD = 0x00000509;
1331///The service start failed because one or more services in the same process have an incompatible service SID type setting. A service with a restricted service SID type can only coexist in the same process with other services with a restricted SID type.
1332pub const ERROR_INCOMPATIBLE_SERVICE_SID_TYPE: DWORD = 0x0000050A;
1333///The process hosting the driver for this device has been terminated.
1334pub const ERROR_DRIVER_PROCESS_TERMINATED: DWORD = 0x0000050B;
1335///An operation attempted to exceed an implementation-defined limit.
1336pub const ERROR_IMPLEMENTATION_LIMIT: DWORD = 0x0000050C;
1337///Either the target process, or the target thread's containing process, is a protected process.
1338pub const ERROR_PROCESS_IS_PROTECTED: DWORD = 0x0000050D;
1339///The service notification client is lagging too far behind the current state of services in the machine.
1340pub const ERROR_SERVICE_NOTIFY_CLIENT_LAGGING: DWORD = 0x0000050E;
1341///An operation failed because the storage quota was exceeded.
1342pub const ERROR_DISK_QUOTA_EXCEEDED: DWORD = 0x0000050F;
1343///An operation failed because the content was blocked.
1344pub const ERROR_CONTENT_BLOCKED: DWORD = 0x00000510;
1345///A privilege that the service requires to function properly does not exist in the service account configuration. The Services Microsoft Management Console (MMC) snap-in (Services.msc) and the Local Security Settings MMC snap-in (Secpol.msc) can be used to view the service configuration and the account configuration.
1346pub const ERROR_INCOMPATIBLE_SERVICE_PRIVILEGE: DWORD = 0x00000511;
1347///Indicates a particular SID cannot be assigned as the label of an object.
1348pub const ERROR_INVALID_LABEL: DWORD = 0x00000513;
1349///Not all privileges or groups referenced are assigned to the caller.
1350pub const ERROR_NOT_ALL_ASSIGNED: DWORD = 0x00000514;
1351///Some mapping between account names and SIDs was not done.
1352pub const ERROR_SOME_NOT_MAPPED: DWORD = 0x00000515;
1353///No system quota limits are specifically set for this account.
1354pub const ERROR_NO_QUOTAS_FOR_ACCOUNT: DWORD = 0x00000516;
1355///No encryption key is available. A well-known encryption key was returned.
1356pub const ERROR_LOCAL_USER_SESSION_KEY: DWORD = 0x00000517;
1357///The password is too complex to be converted to a LAN Manager password. The LAN Manager password returned is a null string.
1358pub const ERROR_NULL_LM_PASSWORD: DWORD = 0x00000518;
1359///The revision level is unknown.
1360pub const ERROR_UNKNOWN_REVISION: DWORD = 0x00000519;
1361///Indicates two revision levels are incompatible.
1362pub const ERROR_REVISION_MISMATCH: DWORD = 0x0000051A;
1363///This SID cannot be assigned as the owner of this object.
1364pub const ERROR_INVALID_OWNER: DWORD = 0x0000051B;
1365///This SID cannot be assigned as the primary group of an object.
1366pub const ERROR_INVALID_PRIMARY_GROUP: DWORD = 0x0000051C;
1367///An attempt has been made to operate on an impersonation token by a thread that is not currently impersonating a client.
1368pub const ERROR_NO_IMPERSONATION_TOKEN: DWORD = 0x0000051D;
1369///The group cannot be disabled.
1370pub const ERROR_CANT_DISABLE_MANDATORY: DWORD = 0x0000051E;
1371///There are currently no logon servers available to service the logon request.
1372pub const ERROR_NO_LOGON_SERVERS: DWORD = 0x0000051F;
1373///A specified logon session does not exist. It might already have been terminated.
1374pub const ERROR_NO_SUCH_LOGON_SESSION: DWORD = 0x00000520;
1375///A specified privilege does not exist.
1376pub const ERROR_NO_SUCH_PRIVILEGE: DWORD = 0x00000521;
1377///A required privilege is not held by the client.
1378pub const ERROR_PRIVILEGE_NOT_HELD: DWORD = 0x00000522;
1379///The name provided is not a properly formed account name.
1380pub const ERROR_INVALID_ACCOUNT_NAME: DWORD = 0x00000523;
1381///The specified account already exists.
1382pub const ERROR_USER_EXISTS: DWORD = 0x00000524;
1383///The specified account does not exist.
1384pub const ERROR_NO_SUCH_USER: DWORD = 0x00000525;
1385///The specified group already exists.
1386pub const ERROR_GROUP_EXISTS: DWORD = 0x00000526;
1387///The specified group does not exist.
1388pub const ERROR_NO_SUCH_GROUP: DWORD = 0x00000527;
1389///Either the specified user account is already a member of the specified group, or the specified group cannot be deleted because it contains a member.
1390pub const ERROR_MEMBER_IN_GROUP: DWORD = 0x00000528;
1391///The specified user account is not a member of the specified group account.
1392pub const ERROR_MEMBER_NOT_IN_GROUP: DWORD = 0x00000529;
1393///The last remaining administration account cannot be disabled or deleted.
1394pub const ERROR_LAST_ADMIN: DWORD = 0x0000052A;
1395///Unable to update the password. The value provided as the current password is incorrect.
1396pub const ERROR_WRONG_PASSWORD: DWORD = 0x0000052B;
1397///Unable to update the password. The value provided for the new password contains values that are not allowed in passwords.
1398pub const ERROR_ILL_FORMED_PASSWORD: DWORD = 0x0000052C;
1399///Unable to update the password. The value provided for the new password does not meet the length, complexity, or history requirements of the domain.
1400pub const ERROR_PASSWORD_RESTRICTION: DWORD = 0x0000052D;
1401///Logon failure: Unknown user name or bad password.
1402pub const ERROR_LOGON_FAILURE: DWORD = 0x0000052E;
1403///Logon failure: User account restriction. Possible reasons are blank passwords not allowed, logon hour restrictions, or a policy restriction has been enforced.
1404pub const ERROR_ACCOUNT_RESTRICTION: DWORD = 0x0000052F;
1405///Logon failure: Account logon time restriction violation.
1406pub const ERROR_INVALID_LOGON_HOURS: DWORD = 0x00000530;
1407///Logon failure: User not allowed to log on to this computer.
1408pub const ERROR_INVALID_WORKSTATION: DWORD = 0x00000531;
1409///Logon failure: The specified account password has expired.
1410pub const ERROR_PASSWORD_EXPIRED: DWORD = 0x00000532;
1411///Logon failure: Account currently disabled.
1412pub const ERROR_ACCOUNT_DISABLED: DWORD = 0x00000533;
1413///No mapping between account names and SIDs was done.
1414pub const ERROR_NONE_MAPPED: DWORD = 0x00000534;
1415///Too many local user identifiers (LUIDs) were requested at one time.
1416pub const ERROR_TOO_MANY_LUIDS_REQUESTED: DWORD = 0x00000535;
1417///No more LUIDs are available.
1418pub const ERROR_LUIDS_EXHAUSTED: DWORD = 0x00000536;
1419///The sub-authority part of an SID is invalid for this particular use.
1420pub const ERROR_INVALID_SUB_AUTHORITY: DWORD = 0x00000537;
1421///The ACL structure is invalid.
1422pub const ERROR_INVALID_ACL: DWORD = 0x00000538;
1423///The SID structure is invalid.
1424pub const ERROR_INVALID_SID: DWORD = 0x00000539;
1425///The security descriptor structure is invalid.
1426pub const ERROR_INVALID_SECURITY_DESCR: DWORD = 0x0000053A;
1427///The inherited ACL or ACE could not be built.
1428pub const ERROR_BAD_INHERITANCE_ACL: DWORD = 0x0000053C;
1429///The server is currently disabled.
1430pub const ERROR_SERVER_DISABLED: DWORD = 0x0000053D;
1431///The server is currently enabled.
1432pub const ERROR_SERVER_NOT_DISABLED: DWORD = 0x0000053E;
1433///The value provided was an invalid value for an identifier authority.
1434pub const ERROR_INVALID_ID_AUTHORITY: DWORD = 0x0000053F;
1435///No more memory is available for security information updates.
1436pub const ERROR_ALLOTTED_SPACE_EXCEEDED: DWORD = 0x00000540;
1437///The specified attributes are invalid, or incompatible with the attributes for the group as a whole.
1438pub const ERROR_INVALID_GROUP_ATTRIBUTES: DWORD = 0x00000541;
1439///Either a required impersonation level was not provided, or the provided impersonation level is invalid.
1440pub const ERROR_BAD_IMPERSONATION_LEVEL: DWORD = 0x00000542;
1441///Cannot open an anonymous level security token.
1442pub const ERROR_CANT_OPEN_ANONYMOUS: DWORD = 0x00000543;
1443///The validation information class requested was invalid.
1444pub const ERROR_BAD_VALIDATION_CLASS: DWORD = 0x00000544;
1445///The type of the token is inappropriate for its attempted use.
1446pub const ERROR_BAD_TOKEN_TYPE: DWORD = 0x00000545;
1447///Unable to perform a security operation on an object that has no associated security.
1448pub const ERROR_NO_SECURITY_ON_OBJECT: DWORD = 0x00000546;
1449///Configuration information could not be read from the domain controller, either because the machine is unavailable, or access has been denied.
1450pub const ERROR_CANT_ACCESS_DOMAIN_INFO: DWORD = 0x00000547;
1451///The SAM or local security authority (LSA) server was in the wrong state to perform the security operation.
1452pub const ERROR_INVALID_SERVER_STATE: DWORD = 0x00000548;
1453///The domain was in the wrong state to perform the security operation.
1454pub const ERROR_INVALID_DOMAIN_STATE: DWORD = 0x00000549;
1455///This operation is only allowed for the PDC of the domain.
1456pub const ERROR_INVALID_DOMAIN_ROLE: DWORD = 0x0000054A;
1457///The specified domain either does not exist or could not be contacted.
1458pub const ERROR_NO_SUCH_DOMAIN: DWORD = 0x0000054B;
1459///The specified domain already exists.
1460pub const ERROR_DOMAIN_EXISTS: DWORD = 0x0000054C;
1461///An attempt was made to exceed the limit on the number of domains per server.
1462pub const ERROR_DOMAIN_LIMIT_EXCEEDED: DWORD = 0x0000054D;
1463///Unable to complete the requested operation because of either a catastrophic media failure or a data structure corruption on the disk.
1464pub const ERROR_INTERNAL_DB_CORRUPTION: DWORD = 0x0000054E;
1465///An internal error occurred.
1466pub const ERROR_INTERNAL_ERROR: DWORD = 0x0000054F;
1467///Generic access types were contained in an access mask that should already be mapped to nongeneric types.
1468pub const ERROR_GENERIC_NOT_MAPPED: DWORD = 0x00000550;
1469///A security descriptor is not in the right format (absolute or self-relative).
1470pub const ERROR_BAD_DESCRIPTOR_FORMAT: DWORD = 0x00000551;
1471///The requested action is restricted for use by logon processes only. The calling process has not registered as a logon process.
1472pub const ERROR_NOT_LOGON_PROCESS: DWORD = 0x00000552;
1473///Cannot start a new logon session with an ID that is already in use.
1474pub const ERROR_LOGON_SESSION_EXISTS: DWORD = 0x00000553;
1475///A specified authentication package is unknown.
1476pub const ERROR_NO_SUCH_PACKAGE: DWORD = 0x00000554;
1477///The logon session is not in a state that is consistent with the requested operation.
1478pub const ERROR_BAD_LOGON_SESSION_STATE: DWORD = 0x00000555;
1479///The logon session ID is already in use.
1480pub const ERROR_LOGON_SESSION_COLLISION: DWORD = 0x00000556;
1481///A logon request contained an invalid logon type value.
1482pub const ERROR_INVALID_LOGON_TYPE: DWORD = 0x00000557;
1483///Unable to impersonate using a named pipe until data has been read from that pipe.
1484pub const ERROR_CANNOT_IMPERSONATE: DWORD = 0x00000558;
1485///The transaction state of a registry subtree is incompatible with the requested operation.
1486pub const ERROR_RXACT_INVALID_STATE: DWORD = 0x00000559;
1487///An internal security database corruption has been encountered.
1488pub const ERROR_RXACT_COMMIT_FAILURE: DWORD = 0x0000055A;
1489///Cannot perform this operation on built-in accounts.
1490pub const ERROR_SPECIAL_ACCOUNT: DWORD = 0x0000055B;
1491///Cannot perform this operation on this built-in special group.
1492pub const ERROR_SPECIAL_GROUP: DWORD = 0x0000055C;
1493///Cannot perform this operation on this built-in special user.
1494pub const ERROR_SPECIAL_USER: DWORD = 0x0000055D;
1495///The user cannot be removed from a group because the group is currently the user's primary group.
1496pub const ERROR_MEMBERS_PRIMARY_GROUP: DWORD = 0x0000055E;
1497///The token is already in use as a primary token.
1498pub const ERROR_TOKEN_ALREADY_IN_USE: DWORD = 0x0000055F;
1499///The specified local group does not exist.
1500pub const ERROR_NO_SUCH_ALIAS: DWORD = 0x00000560;
1501///The specified account name is not a member of the group.
1502pub const ERROR_MEMBER_NOT_IN_ALIAS: DWORD = 0x00000561;
1503///The specified account name is already a member of the group.
1504pub const ERROR_MEMBER_IN_ALIAS: DWORD = 0x00000562;
1505///The specified local group already exists.
1506pub const ERROR_ALIAS_EXISTS: DWORD = 0x00000563;
1507///Logon failure: The user has not been granted the requested logon type at this computer.
1508pub const ERROR_LOGON_NOT_GRANTED: DWORD = 0x00000564;
1509///The maximum number of secrets that can be stored in a single system has been exceeded.
1510pub const ERROR_TOO_MANY_SECRETS: DWORD = 0x00000565;
1511///The length of a secret exceeds the maximum length allowed.
1512pub const ERROR_SECRET_TOO_LONG: DWORD = 0x00000566;
1513///The local security authority database contains an internal inconsistency.
1514pub const ERROR_INTERNAL_DB_ERROR: DWORD = 0x00000567;
1515///During a logon attempt, the user's security context accumulated too many SIDs.
1516pub const ERROR_TOO_MANY_CONTEXT_IDS: DWORD = 0x00000568;
1517///Logon failure: The user has not been granted the requested logon type at this computer.
1518pub const ERROR_LOGON_TYPE_NOT_GRANTED: DWORD = 0x00000569;
1519///A cross-encrypted password is necessary to change a user password.
1520pub const ERROR_NT_CROSS_ENCRYPTION_REQUIRED: DWORD = 0x0000056A;
1521///A member could not be added to or removed from the local group because the member does not exist.
1522pub const ERROR_NO_SUCH_MEMBER: DWORD = 0x0000056B;
1523///A new member could not be added to a local group because the member has the wrong account type.
1524pub const ERROR_INVALID_MEMBER: DWORD = 0x0000056C;
1525///Too many SIDs have been specified.
1526pub const ERROR_TOO_MANY_SIDS: DWORD = 0x0000056D;
1527///A cross-encrypted password is necessary to change this user password.
1528pub const ERROR_LM_CROSS_ENCRYPTION_REQUIRED: DWORD = 0x0000056E;
1529///Indicates an ACL contains no inheritable components.
1530pub const ERROR_NO_INHERITANCE: DWORD = 0x0000056F;
1531///The file or directory is corrupted and unreadable.
1532pub const ERROR_FILE_CORRUPT: DWORD = 0x00000570;
1533///The disk structure is corrupted and unreadable.
1534pub const ERROR_DISK_CORRUPT: DWORD = 0x00000571;
1535///There is no user session key for the specified logon session.
1536pub const ERROR_NO_USER_SESSION_KEY: DWORD = 0x00000572;
1537///The service being accessed is licensed for a particular number of connections. No more connections can be made to the service at this time because the service has accepted the maximum number of connections.
1538pub const ERROR_LICENSE_QUOTA_EXCEEDED: DWORD = 0x00000573;
1539///Logon failure: The target account name is incorrect.
1540pub const ERROR_WRONG_TARGET_NAME: DWORD = 0x00000574;
1541///Mutual authentication failed. The server's password is out of date at the domain controller.
1542pub const ERROR_MUTUAL_AUTH_FAILED: DWORD = 0x00000575;
1543///There is a time and/or date difference between the client and server.
1544pub const ERROR_TIME_SKEW: DWORD = 0x00000576;
1545///This operation cannot be performed on the current domain.
1546pub const ERROR_CURRENT_DOMAIN_NOT_ALLOWED: DWORD = 0x00000577;
1547///Invalid window handle.
1548pub const ERROR_INVALID_WINDOW_HANDLE: DWORD = 0x00000578;
1549///Invalid menu handle.
1550pub const ERROR_INVALID_MENU_HANDLE: DWORD = 0x00000579;
1551///Invalid cursor handle.
1552pub const ERROR_INVALID_CURSOR_HANDLE: DWORD = 0x0000057A;
1553///Invalid accelerator table handle.
1554pub const ERROR_INVALID_ACCEL_HANDLE: DWORD = 0x0000057B;
1555///Invalid hook handle.
1556pub const ERROR_INVALID_HOOK_HANDLE: DWORD = 0x0000057C;
1557///Invalid handle to a multiple-window position structure.
1558pub const ERROR_INVALID_DWP_HANDLE: DWORD = 0x0000057D;
1559///Cannot create a top-level child window.
1560pub const ERROR_TLW_WITH_WSCHILD: DWORD = 0x0000057E;
1561///Cannot find window class.
1562pub const ERROR_CANNOT_FIND_WND_CLASS: DWORD = 0x0000057F;
1563///Invalid window; it belongs to other thread.
1564pub const ERROR_WINDOW_OF_OTHER_THREAD: DWORD = 0x00000580;
1565///Hot key is already registered.
1566pub const ERROR_HOTKEY_ALREADY_REGISTERED: DWORD = 0x00000581;
1567///Class already exists.
1568pub const ERROR_CLASS_ALREADY_EXISTS: DWORD = 0x00000582;
1569///Class does not exist.
1570pub const ERROR_CLASS_DOES_NOT_EXIST: DWORD = 0x00000583;
1571///Class still has open windows.
1572pub const ERROR_CLASS_HAS_WINDOWS: DWORD = 0x00000584;
1573///Invalid index.
1574pub const ERROR_INVALID_INDEX: DWORD = 0x00000585;
1575///Invalid icon handle.
1576pub const ERROR_INVALID_ICON_HANDLE: DWORD = 0x00000586;
1577///Using private DIALOG window words.
1578pub const ERROR_PRIVATE_DIALOG_INDEX: DWORD = 0x00000587;
1579///The list box identifier was not found.
1580pub const ERROR_LISTBOX_ID_NOT_FOUND: DWORD = 0x00000588;
1581///No wildcards were found.
1582pub const ERROR_NO_WILDCARD_CHARACTERS: DWORD = 0x00000589;
1583///Thread does not have a clipboard open.
1584pub const ERROR_CLIPBOARD_NOT_OPEN: DWORD = 0x0000058A;
1585///Hot key is not registered.
1586pub const ERROR_HOTKEY_NOT_REGISTERED: DWORD = 0x0000058B;
1587///The window is not a valid dialog window.
1588pub const ERROR_WINDOW_NOT_DIALOG: DWORD = 0x0000058C;
1589///Control ID not found.
1590pub const ERROR_CONTROL_ID_NOT_FOUND: DWORD = 0x0000058D;
1591///Invalid message for a combo box because it does not have an edit control.
1592pub const ERROR_INVALID_COMBOBOX_MESSAGE: DWORD = 0x0000058E;
1593///The window is not a combo box.
1594pub const ERROR_WINDOW_NOT_COMBOBOX: DWORD = 0x0000058F;
1595///Height must be less than 256.
1596pub const ERROR_INVALID_EDIT_HEIGHT: DWORD = 0x00000590;
1597///Invalid device context (DC) handle.
1598pub const ERROR_DC_NOT_FOUND: DWORD = 0x00000591;
1599///Invalid hook procedure type.
1600pub const ERROR_INVALID_HOOK_FILTER: DWORD = 0x00000592;
1601///Invalid hook procedure.
1602pub const ERROR_INVALID_FILTER_PROC: DWORD = 0x00000593;
1603///Cannot set nonlocal hook without a module handle.
1604pub const ERROR_HOOK_NEEDS_HMOD: DWORD = 0x00000594;
1605///This hook procedure can only be set globally.
1606pub const ERROR_GLOBAL_ONLY_HOOK: DWORD = 0x00000595;
1607///The journal hook procedure is already installed.
1608pub const ERROR_JOURNAL_HOOK_SET: DWORD = 0x00000596;
1609///The hook procedure is not installed.
1610pub const ERROR_HOOK_NOT_INSTALLED: DWORD = 0x00000597;
1611///Invalid message for single-selection list box.
1612pub const ERROR_INVALID_LB_MESSAGE: DWORD = 0x00000598;
1613///LB_SETCOUNT sent to non-lazy list box.
1614pub const ERROR_SETCOUNT_ON_BAD_LB: DWORD = 0x00000599;
1615///This list box does not support tab stops.
1616pub const ERROR_LB_WITHOUT_TABSTOPS: DWORD = 0x0000059A;
1617///Cannot destroy object created by another thread.
1618pub const ERROR_DESTROY_OBJECT_OF_OTHER_THREAD: DWORD = 0x0000059B;
1619///Child windows cannot have menus.
1620pub const ERROR_CHILD_WINDOW_MENU: DWORD = 0x0000059C;
1621///The window does not have a system menu.
1622pub const ERROR_NO_SYSTEM_MENU: DWORD = 0x0000059D;
1623///Invalid message box style.
1624pub const ERROR_INVALID_MSGBOX_STYLE: DWORD = 0x0000059E;
1625///Invalid system-wide (SPI_*) parameter.
1626pub const ERROR_INVALID_SPI_VALUE: DWORD = 0x0000059F;
1627///Screen already locked.
1628pub const ERROR_SCREEN_ALREADY_LOCKED: DWORD = 0x000005A0;
1629///All handles to windows in a multiple-window position structure must have the same parent.
1630pub const ERROR_HWNDS_HAVE_DIFF_PARENT: DWORD = 0x000005A1;
1631///The window is not a child window.
1632pub const ERROR_NOT_CHILD_WINDOW: DWORD = 0x000005A2;
1633///Invalid GW_* command.
1634pub const ERROR_INVALID_GW_COMMAND: DWORD = 0x000005A3;
1635///Invalid thread identifier.
1636pub const ERROR_INVALID_THREAD_ID: DWORD = 0x000005A4;
1637///Cannot process a message from a window that is not a multiple document interface (MDI) window.
1638pub const ERROR_NON_MDICHILD_WINDOW: DWORD = 0x000005A5;
1639///Pop-up menu already active.
1640pub const ERROR_POPUP_ALREADY_ACTIVE: DWORD = 0x000005A6;
1641///The window does not have scroll bars.
1642pub const ERROR_NO_SCROLLBARS: DWORD = 0x000005A7;
1643///Scroll bar range cannot be greater than MAXLONG.
1644pub const ERROR_INVALID_SCROLLBAR_RANGE: DWORD = 0x000005A8;
1645///Cannot show or remove the window in the way specified.
1646pub const ERROR_INVALID_SHOWWIN_COMMAND: DWORD = 0x000005A9;
1647///Insufficient system resources exist to complete the requested service.
1648pub const ERROR_NO_SYSTEM_RESOURCES: DWORD = 0x000005AA;
1649///Insufficient system resources exist to complete the requested service.
1650pub const ERROR_NONPAGED_SYSTEM_RESOURCES: DWORD = 0x000005AB;
1651///Insufficient system resources exist to complete the requested service.
1652pub const ERROR_PAGED_SYSTEM_RESOURCES: DWORD = 0x000005AC;
1653///Insufficient quota to complete the requested service.
1654pub const ERROR_WORKING_SET_QUOTA: DWORD = 0x000005AD;
1655///Insufficient quota to complete the requested service.
1656pub const ERROR_PAGEFILE_QUOTA: DWORD = 0x000005AE;
1657///The paging file is too small for this operation to complete.
1658pub const ERROR_COMMITMENT_LIMIT: DWORD = 0x000005AF;
1659///A menu item was not found.
1660pub const ERROR_MENU_ITEM_NOT_FOUND: DWORD = 0x000005B0;
1661///Invalid keyboard layout handle.
1662pub const ERROR_INVALID_KEYBOARD_HANDLE: DWORD = 0x000005B1;
1663///Hook type not allowed.
1664pub const ERROR_HOOK_TYPE_NOT_ALLOWED: DWORD = 0x000005B2;
1665///This operation requires an interactive window station.
1666pub const ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION: DWORD = 0x000005B3;
1667///This operation returned because the time-out period expired.
1668pub const ERROR_TIMEOUT: DWORD = 0x000005B4;
1669///Invalid monitor handle.
1670pub const ERROR_INVALID_MONITOR_HANDLE: DWORD = 0x000005B5;
1671///Incorrect size argument.
1672pub const ERROR_INCORRECT_SIZE: DWORD = 0x000005B6;
1673///The symbolic link cannot be followed because its type is disabled.
1674pub const ERROR_SYMLINK_CLASS_DISABLED: DWORD = 0x000005B7;
1675///This application does not support the current operation on symbolic links.
1676pub const ERROR_SYMLINK_NOT_SUPPORTED: DWORD = 0x000005B8;
1677///The event log file is corrupted.
1678pub const ERROR_EVENTLOG_FILE_CORRUPT: DWORD = 0x000005DC;
1679///No event log file could be opened, so the event logging service did not start.
1680pub const ERROR_EVENTLOG_CANT_START: DWORD = 0x000005DD;
1681///The event log file is full.
1682pub const ERROR_LOG_FILE_FULL: DWORD = 0x000005DE;
1683///The event log file has changed between read operations.
1684pub const ERROR_EVENTLOG_FILE_CHANGED: DWORD = 0x000005DF;
1685///The specified task name is invalid.
1686pub const ERROR_INVALID_TASK_NAME: DWORD = 0x0000060E;
1687///The specified task index is invalid.
1688pub const ERROR_INVALID_TASK_INDEX: DWORD = 0x0000060F;
1689///The specified thread is already joining a task.
1690pub const ERROR_THREAD_ALREADY_IN_TASK: DWORD = 0x00000610;
1691///The Windows Installer service could not be accessed. This can occur if the Windows Installer is not correctly installed. Contact your support personnel for assistance.
1692pub const ERROR_INSTALL_SERVICE_FAILURE: DWORD = 0x00000641;
1693///User canceled installation.
1694pub const ERROR_INSTALL_USEREXIT: DWORD = 0x00000642;
1695///Fatal error during installation.
1696pub const ERROR_INSTALL_FAILURE: DWORD = 0x00000643;
1697///Installation suspended, incomplete.
1698pub const ERROR_INSTALL_SUSPEND: DWORD = 0x00000644;
1699///This action is valid only for products that are currently installed.
1700pub const ERROR_UNKNOWN_PRODUCT: DWORD = 0x00000645;
1701///Feature ID not registered.
1702pub const ERROR_UNKNOWN_FEATURE: DWORD = 0x00000646;
1703///Component ID not registered.
1704pub const ERROR_UNKNOWN_COMPONENT: DWORD = 0x00000647;
1705///Unknown property.
1706pub const ERROR_UNKNOWN_PROPERTY: DWORD = 0x00000648;
1707///Handle is in an invalid state.
1708pub const ERROR_INVALID_HANDLE_STATE: DWORD = 0x00000649;
1709///The configuration data for this product is corrupt. Contact your support personnel.
1710pub const ERROR_BAD_CONFIGURATION: DWORD = 0x0000064A;
1711///Component qualifier not present.
1712pub const ERROR_INDEX_ABSENT: DWORD = 0x0000064B;
1713///The installation source for this product is not available. Verify that the source exists and that you can access it.
1714pub const ERROR_INSTALL_SOURCE_ABSENT: DWORD = 0x0000064C;
1715///This installation package cannot be installed by the Windows Installer service. You must install a Windows service pack that contains a newer version of the Windows Installer service.
1716pub const ERROR_INSTALL_PACKAGE_VERSION: DWORD = 0x0000064D;
1717///Product is uninstalled.
1718pub const ERROR_PRODUCT_UNINSTALLED: DWORD = 0x0000064E;
1719///SQL query syntax invalid or unsupported.
1720pub const ERROR_BAD_QUERY_SYNTAX: DWORD = 0x0000064F;
1721///Record field does not exist.
1722pub const ERROR_INVALID_FIELD: DWORD = 0x00000650;
1723///The device has been removed.
1724pub const ERROR_DEVICE_REMOVED: DWORD = 0x00000651;
1725///Another installation is already in progress. Complete that installation before proceeding with this install.
1726pub const ERROR_INSTALL_ALREADY_RUNNING: DWORD = 0x00000652;
1727///This installation package could not be opened. Verify that the package exists and that you can access it, or contact the application vendor to verify that this is a valid Windows Installer package.
1728pub const ERROR_INSTALL_PACKAGE_OPEN_FAILED: DWORD = 0x00000653;
1729///This installation package could not be opened. Contact the application vendor to verify that this is a valid Windows Installer package.
1730pub const ERROR_INSTALL_PACKAGE_INVALID: DWORD = 0x00000654;
1731///There was an error starting the Windows Installer service user interface. Contact your support personnel.
1732pub const ERROR_INSTALL_UI_FAILURE: DWORD = 0x00000655;
1733///Error opening installation log file. Verify that the specified log file location exists and that you can write to it.
1734pub const ERROR_INSTALL_LOG_FAILURE: DWORD = 0x00000656;
1735///The language of this installation package is not supported by your system.
1736pub const ERROR_INSTALL_LANGUAGE_UNSUPPORTED: DWORD = 0x00000657;
1737///Error applying transforms. Verify that the specified transform paths are valid.
1738pub const ERROR_INSTALL_TRANSFORM_FAILURE: DWORD = 0x00000658;
1739///This installation is forbidden by system policy. Contact your system administrator.
1740pub const ERROR_INSTALL_PACKAGE_REJECTED: DWORD = 0x00000659;
1741///Function could not be executed.
1742pub const ERROR_FUNCTION_NOT_CALLED: DWORD = 0x0000065A;
1743///Function failed during execution.
1744pub const ERROR_FUNCTION_FAILED: DWORD = 0x0000065B;
1745///Invalid or unknown table specified.
1746pub const ERROR_INVALID_TABLE: DWORD = 0x0000065C;
1747///Data supplied is of wrong type.
1748pub const ERROR_DATATYPE_MISMATCH: DWORD = 0x0000065D;
1749///Data of this type is not supported.
1750pub const ERROR_UNSUPPORTED_TYPE: DWORD = 0x0000065E;
1751///The Windows Installer service failed to start. Contact your support personnel.
1752pub const ERROR_CREATE_FAILED: DWORD = 0x0000065F;
1753///The Temp folder is on a drive that is full or is inaccessible. Free up space on the drive or verify that you have write permission on the Temp folder.
1754pub const ERROR_INSTALL_TEMP_UNWRITABLE: DWORD = 0x00000660;
1755///This installation package is not supported by this processor type. Contact your product vendor.
1756pub const ERROR_INSTALL_PLATFORM_UNSUPPORTED: DWORD = 0x00000661;
1757///Component not used on this computer.
1758pub const ERROR_INSTALL_NOTUSED: DWORD = 0x00000662;
1759///This update package could not be opened. Verify that the update package exists and that you can access it, or contact the application vendor to verify that this is a valid Windows Installer update package.
1760pub const ERROR_PATCH_PACKAGE_OPEN_FAILED: DWORD = 0x00000663;
1761///This update package could not be opened. Contact the application vendor to verify that this is a valid Windows Installer update package.
1762pub const ERROR_PATCH_PACKAGE_INVALID: DWORD = 0x00000664;
1763///This update package cannot be processed by the Windows Installer service. You must install a Windows service pack that contains a newer version of the Windows Installer service.
1764pub const ERROR_PATCH_PACKAGE_UNSUPPORTED: DWORD = 0x00000665;
1765///Another version of this product is already installed. Installation of this version cannot continue. To configure or remove the existing version of this product, use Add/Remove Programs in Control Panel.
1766pub const ERROR_PRODUCT_VERSION: DWORD = 0x00000666;
1767///Invalid command-line argument. Consult the Windows Installer SDK for detailed command line help.
1768pub const ERROR_INVALID_COMMAND_LINE: DWORD = 0x00000667;
1769///Only administrators have permission to add, remove, or configure server software during a Terminal Services remote session. If you want to install or configure software on the server, contact your network administrator.
1770pub const ERROR_INSTALL_REMOTE_DISALLOWED: DWORD = 0x00000668;
1771///The requested operation completed successfully. The system will be restarted so the changes can take effect.
1772pub const ERROR_SUCCESS_REBOOT_INITIATED: DWORD = 0x00000669;
1773///The upgrade cannot be installed by the Windows Installer service because the program to be upgraded might be missing, or the upgrade might update a different version of the program. Verify that the program to be upgraded exists on your computer and that you have the correct upgrade.
1774pub const ERROR_PATCH_TARGET_NOT_FOUND: DWORD = 0x0000066A;
1775///The update package is not permitted by a software restriction policy.
1776pub const ERROR_PATCH_PACKAGE_REJECTED: DWORD = 0x0000066B;
1777///One or more customizations are not permitted by a software restriction policy.
1778pub const ERROR_INSTALL_TRANSFORM_REJECTED: DWORD = 0x0000066C;
1779///The Windows Installer does not permit installation from a Remote Desktop Connection.
1780pub const ERROR_INSTALL_REMOTE_PROHIBITED: DWORD = 0x0000066D;
1781///Uninstallation of the update package is not supported.
1782pub const ERROR_PATCH_REMOVAL_UNSUPPORTED: DWORD = 0x0000066E;
1783///The update is not applied to this product.
1784pub const ERROR_UNKNOWN_PATCH: DWORD = 0x0000066F;
1785///No valid sequence could be found for the set of updates.
1786pub const ERROR_PATCH_NO_SEQUENCE: DWORD = 0x00000670;
1787///Update removal was disallowed by policy.
1788pub const ERROR_PATCH_REMOVAL_DISALLOWED: DWORD = 0x00000671;
1789///The XML update data is invalid.
1790pub const ERROR_INVALID_PATCH_XML: DWORD = 0x00000672;
1791///Windows Installer does not permit updating of managed advertised products. At least one feature of the product must be installed before applying the update.
1792pub const ERROR_PATCH_MANAGED_ADVERTISED_PRODUCT: DWORD = 0x00000673;
1793///The Windows Installer service is not accessible in Safe Mode. Try again when your computer is not in Safe Mode or you can use System Restore to return your machine to a previous good state.
1794pub const ERROR_INSTALL_SERVICE_SAFEBOOT: DWORD = 0x00000674;
1795///The string binding is invalid.
1796pub const RPC_S_INVALID_STRING_BINDING: DWORD = 0x000006A4;
1797///The binding handle is not the correct type.
1798pub const RPC_S_WRONG_KIND_OF_BINDING: DWORD = 0x000006A5;
1799///The binding handle is invalid.
1800pub const RPC_S_INVALID_BINDING: DWORD = 0x000006A6;
1801///The RPC protocol sequence is not supported.
1802pub const RPC_S_PROTSEQ_NOT_SUPPORTED: DWORD = 0x000006A7;
1803///The RPC protocol sequence is invalid.
1804pub const RPC_S_INVALID_RPC_PROTSEQ: DWORD = 0x000006A8;
1805///The string UUID is invalid.
1806pub const RPC_S_INVALID_STRING_UUID: DWORD = 0x000006A9;
1807///The endpoint format is invalid.
1808pub const RPC_S_INVALID_ENDPOINT_FORMAT: DWORD = 0x000006AA;
1809///The network address is invalid.
1810pub const RPC_S_INVALID_NET_ADDR: DWORD = 0x000006AB;
1811///No endpoint was found.
1812pub const RPC_S_NO_ENDPOINT_FOUND: DWORD = 0x000006AC;
1813///The time-out value is invalid.
1814pub const RPC_S_INVALID_TIMEOUT: DWORD = 0x000006AD;
1815///The object UUID) was not found.
1816pub const RPC_S_OBJECT_NOT_FOUND: DWORD = 0x000006AE;
1817///The object UUID) has already been registered.
1818pub const RPC_S_ALREADY_REGISTERED: DWORD = 0x000006AF;
1819///The type UUID has already been registered.
1820pub const RPC_S_TYPE_ALREADY_REGISTERED: DWORD = 0x000006B0;
1821///The RPC server is already listening.
1822pub const RPC_S_ALREADY_LISTENING: DWORD = 0x000006B1;
1823///No protocol sequences have been registered.
1824pub const RPC_S_NO_PROTSEQS_REGISTERED: DWORD = 0x000006B2;
1825///The RPC server is not listening.
1826pub const RPC_S_NOT_LISTENING: DWORD = 0x000006B3;
1827///The manager type is unknown.
1828pub const RPC_S_UNKNOWN_MGR_TYPE: DWORD = 0x000006B4;
1829///The interface is unknown.
1830pub const RPC_S_UNKNOWN_IF: DWORD = 0x000006B5;
1831///There are no bindings.
1832pub const RPC_S_NO_BINDINGS: DWORD = 0x000006B6;
1833///There are no protocol sequences.
1834pub const RPC_S_NO_PROTSEQS: DWORD = 0x000006B7;
1835///The endpoint cannot be created.
1836pub const RPC_S_CANT_CREATE_ENDPOINT: DWORD = 0x000006B8;
1837///Not enough resources are available to complete this operation.
1838pub const RPC_S_OUT_OF_RESOURCES: DWORD = 0x000006B9;
1839///The RPC server is unavailable.
1840pub const RPC_S_SERVER_UNAVAILABLE: DWORD = 0x000006BA;
1841///The RPC server is too busy to complete this operation.
1842pub const RPC_S_SERVER_TOO_BUSY: DWORD = 0x000006BB;
1843///The network options are invalid.
1844pub const RPC_S_INVALID_NETWORK_OPTIONS: DWORD = 0x000006BC;
1845///There are no RPCs active on this thread.
1846pub const RPC_S_NO_CALL_ACTIVE: DWORD = 0x000006BD;
1847///The RPC failed.
1848pub const RPC_S_CALL_FAILED: DWORD = 0x000006BE;
1849///The RPC failed and did not execute.
1850pub const RPC_S_CALL_FAILED_DNE: DWORD = 0x000006BF;
1851///An RPC protocol error occurred.
1852pub const RPC_S_PROTOCOL_ERROR: DWORD = 0x000006C0;
1853///Access to the HTTP proxy is denied.
1854pub const RPC_S_PROXY_ACCESS_DENIED: DWORD = 0x000006C1;
1855///The transfer syntax is not supported by the RPC server.
1856pub const RPC_S_UNSUPPORTED_TRANS_SYN: DWORD = 0x000006C2;
1857///The UUID type is not supported.
1858pub const RPC_S_UNSUPPORTED_TYPE: DWORD = 0x000006C4;
1859///The tag is invalid.
1860pub const RPC_S_INVALID_TAG: DWORD = 0x000006C5;
1861///The array bounds are invalid.
1862pub const RPC_S_INVALID_BOUND: DWORD = 0x000006C6;
1863///The binding does not contain an entry name.
1864pub const RPC_S_NO_ENTRY_NAME: DWORD = 0x000006C7;
1865///The name syntax is invalid.
1866pub const RPC_S_INVALID_NAME_SYNTAX: DWORD = 0x000006C8;
1867///The name syntax is not supported.
1868pub const RPC_S_UNSUPPORTED_NAME_SYNTAX: DWORD = 0x000006C9;
1869///No network address is available to use to construct a UUID.
1870pub const RPC_S_UUID_NO_ADDRESS: DWORD = 0x000006CB;
1871///The endpoint is a duplicate.
1872pub const RPC_S_DUPLICATE_ENDPOINT: DWORD = 0x000006CC;
1873///The authentication type is unknown.
1874pub const RPC_S_UNKNOWN_AUTHN_TYPE: DWORD = 0x000006CD;
1875///The maximum number of calls is too small.
1876pub const RPC_S_MAX_CALLS_TOO_SMALL: DWORD = 0x000006CE;
1877///The string is too long.
1878pub const RPC_S_STRING_TOO_LONG: DWORD = 0x000006CF;
1879///The RPC protocol sequence was not found.
1880pub const RPC_S_PROTSEQ_NOT_FOUND: DWORD = 0x000006D0;
1881///The procedure number is out of range.
1882pub const RPC_S_PROCNUM_OUT_OF_RANGE: DWORD = 0x000006D1;
1883///The binding does not contain any authentication information.
1884pub const RPC_S_BINDING_HAS_NO_AUTH: DWORD = 0x000006D2;
1885///The authentication service is unknown.
1886pub const RPC_S_UNKNOWN_AUTHN_SERVICE: DWORD = 0x000006D3;
1887///The authentication level is unknown.
1888pub const RPC_S_UNKNOWN_AUTHN_LEVEL: DWORD = 0x000006D4;
1889///The security context is invalid.
1890pub const RPC_S_INVALID_AUTH_IDENTITY: DWORD = 0x000006D5;
1891///The authorization service is unknown.
1892pub const RPC_S_UNKNOWN_AUTHZ_SERVICE: DWORD = 0x000006D6;
1893///The entry is invalid.
1894pub const EPT_S_INVALID_ENTRY: DWORD = 0x000006D7;
1895///The server endpoint cannot perform the operation.
1896pub const EPT_S_CANT_PERFORM_OP: DWORD = 0x000006D8;
1897///There are no more endpoints available from the endpoint mapper.
1898pub const EPT_S_NOT_REGISTERED: DWORD = 0x000006D9;
1899///No interfaces have been exported.
1900pub const RPC_S_NOTHING_TO_EXPORT: DWORD = 0x000006DA;
1901///The entry name is incomplete.
1902pub const RPC_S_INCOMPLETE_NAME: DWORD = 0x000006DB;
1903///The version option is invalid.
1904pub const RPC_S_INVALID_VERS_OPTION: DWORD = 0x000006DC;
1905///There are no more members.
1906pub const RPC_S_NO_MORE_MEMBERS: DWORD = 0x000006DD;
1907///There is nothing to unexport.
1908pub const RPC_S_NOT_ALL_OBJS_UNEXPORTED: DWORD = 0x000006DE;
1909///The interface was not found.
1910pub const RPC_S_INTERFACE_NOT_FOUND: DWORD = 0x000006DF;
1911///The entry already exists.
1912pub const RPC_S_ENTRY_ALREADY_EXISTS: DWORD = 0x000006E0;
1913///The entry is not found.
1914pub const RPC_S_ENTRY_NOT_FOUND: DWORD = 0x000006E1;
1915///The name service is unavailable.
1916pub const RPC_S_NAME_SERVICE_UNAVAILABLE: DWORD = 0x000006E2;
1917///The network address family is invalid.
1918pub const RPC_S_INVALID_NAF_ID: DWORD = 0x000006E3;
1919///The requested operation is not supported.
1920pub const RPC_S_CANNOT_SUPPORT: DWORD = 0x000006E4;
1921///No security context is available to allow impersonation.
1922pub const RPC_S_NO_CONTEXT_AVAILABLE: DWORD = 0x000006E5;
1923///An internal error occurred in an RPC.
1924pub const RPC_S_INTERNAL_ERROR: DWORD = 0x000006E6;
1925///The RPC server attempted an integer division by zero.
1926pub const RPC_S_ZERO_DIVIDE: DWORD = 0x000006E7;
1927///An addressing error occurred in the RPC server.
1928pub const RPC_S_ADDRESS_ERROR: DWORD = 0x000006E8;
1929///A floating-point operation at the RPC server caused a division by zero.
1930pub const RPC_S_FP_DIV_ZERO: DWORD = 0x000006E9;
1931///A floating-point underflow occurred at the RPC server.
1932pub const RPC_S_FP_UNDERFLOW: DWORD = 0x000006EA;
1933///A floating-point overflow occurred at the RPC server.
1934pub const RPC_S_FP_OVERFLOW: DWORD = 0x000006EB;
1935///The list of RPC servers available for the binding of auto handles has been exhausted.
1936pub const RPC_X_NO_MORE_ENTRIES: DWORD = 0x000006EC;
1937///Unable to open the character translation table file.
1938pub const RPC_X_SS_CHAR_TRANS_OPEN_FAIL: DWORD = 0x000006ED;
1939///The file containing the character translation table has fewer than 512 bytes.
1940pub const RPC_X_SS_CHAR_TRANS_SHORT_FILE: DWORD = 0x000006EE;
1941///A null context handle was passed from the client to the host during an RPC.
1942pub const RPC_X_SS_IN_NULL_CONTEXT: DWORD = 0x000006EF;
1943///The context handle changed during an RPC.
1944pub const RPC_X_SS_CONTEXT_DAMAGED: DWORD = 0x000006F1;
1945///The binding handles passed to an RPC do not match.
1946pub const RPC_X_SS_HANDLES_MISMATCH: DWORD = 0x000006F2;
1947///The stub is unable to get the RPC handle.
1948pub const RPC_X_SS_CANNOT_GET_CALL_HANDLE: DWORD = 0x000006F3;
1949///A null reference pointer was passed to the stub.
1950pub const RPC_X_NULL_REF_POINTER: DWORD = 0x000006F4;
1951///The enumeration value is out of range.
1952pub const RPC_X_ENUM_VALUE_OUT_OF_RANGE: DWORD = 0x000006F5;
1953///The byte count is too small.
1954pub const RPC_X_BYTE_COUNT_TOO_SMALL: DWORD = 0x000006F6;
1955///The stub received bad data.
1956pub const RPC_X_BAD_STUB_DATA: DWORD = 0x000006F7;
1957///The supplied user buffer is not valid for the requested operation.
1958pub const ERROR_INVALID_USER_BUFFER: DWORD = 0x000006F8;
1959///The disk media is not recognized. It might not be formatted.
1960pub const ERROR_UNRECOGNIZED_MEDIA: DWORD = 0x000006F9;
1961///The workstation does not have a trust secret.
1962pub const ERROR_NO_TRUST_LSA_SECRET: DWORD = 0x000006FA;
1963///The security database on the server does not have a computer account for this workstation trust relationship.
1964pub const ERROR_NO_TRUST_SAM_ACCOUNT: DWORD = 0x000006FB;
1965///The trust relationship between the primary domain and the trusted domain failed.
1966pub const ERROR_TRUSTED_DOMAIN_FAILURE: DWORD = 0x000006FC;
1967///The trust relationship between this workstation and the primary domain failed.
1968pub const ERROR_TRUSTED_RELATIONSHIP_FAILURE: DWORD = 0x000006FD;
1969///The network logon failed.
1970pub const ERROR_TRUST_FAILURE: DWORD = 0x000006FE;
1971///An RPC is already in progress for this thread.
1972pub const RPC_S_CALL_IN_PROGRESS: DWORD = 0x000006FF;
1973///An attempt was made to log on, but the network logon service was not started.
1974pub const ERROR_NETLOGON_NOT_STARTED: DWORD = 0x00000700;
1975///The user's account has expired.
1976pub const ERROR_ACCOUNT_EXPIRED: DWORD = 0x00000701;
1977///The redirector is in use and cannot be unloaded.
1978pub const ERROR_REDIRECTOR_HAS_OPEN_HANDLES: DWORD = 0x00000702;
1979///The specified printer driver is already installed.
1980pub const ERROR_PRINTER_DRIVER_ALREADY_INSTALLED: DWORD = 0x00000703;
1981///The specified port is unknown.
1982pub const ERROR_UNKNOWN_PORT: DWORD = 0x00000704;
1983///The printer driver is unknown.
1984pub const ERROR_UNKNOWN_PRINTER_DRIVER: DWORD = 0x00000705;
1985///The print processor is unknown.
1986pub const ERROR_UNKNOWN_PRINTPROCESSOR: DWORD = 0x00000706;
1987///The specified separator file is invalid.
1988pub const ERROR_INVALID_SEPARATOR_FILE: DWORD = 0x00000707;
1989///The specified priority is invalid.
1990pub const ERROR_INVALID_PRIORITY: DWORD = 0x00000708;
1991///The printer name is invalid.
1992pub const ERROR_INVALID_PRINTER_NAME: DWORD = 0x00000709;
1993///The printer already exists.
1994pub const ERROR_PRINTER_ALREADY_EXISTS: DWORD = 0x0000070A;
1995///The printer command is invalid.
1996pub const ERROR_INVALID_PRINTER_COMMAND: DWORD = 0x0000070B;
1997///The specified data type is invalid.
1998pub const ERROR_INVALID_DATATYPE: DWORD = 0x0000070C;
1999///The environment specified is invalid.
2000pub const ERROR_INVALID_ENVIRONMENT: DWORD = 0x0000070D;
2001///There are no more bindings.
2002pub const RPC_S_NO_MORE_BINDINGS: DWORD = 0x0000070E;
2003///The account used is an interdomain trust account. Use your global user account or local user account to access this server.
2004pub const ERROR_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT: DWORD = 0x0000070F;
2005///The account used is a computer account. Use your global user account or local user account to access this server.
2006pub const ERROR_NOLOGON_WORKSTATION_TRUST_ACCOUNT: DWORD = 0x00000710;
2007///The account used is a server trust account. Use your global user account or local user account to access this server.
2008pub const ERROR_NOLOGON_SERVER_TRUST_ACCOUNT: DWORD = 0x00000711;
2009///The name or SID of the domain specified is inconsistent with the trust information for that domain.
2010pub const ERROR_DOMAIN_TRUST_INCONSISTENT: DWORD = 0x00000712;
2011///The server is in use and cannot be unloaded.
2012pub const ERROR_SERVER_HAS_OPEN_HANDLES: DWORD = 0x00000713;
2013///The specified image file did not contain a resource section.
2014pub const ERROR_RESOURCE_DATA_NOT_FOUND: DWORD = 0x00000714;
2015///The specified resource type cannot be found in the image file.
2016pub const ERROR_RESOURCE_TYPE_NOT_FOUND: DWORD = 0x00000715;
2017///The specified resource name cannot be found in the image file.
2018pub const ERROR_RESOURCE_NAME_NOT_FOUND: DWORD = 0x00000716;
2019///The specified resource language ID cannot be found in the image file.
2020pub const ERROR_RESOURCE_LANG_NOT_FOUND: DWORD = 0x00000717;
2021///Not enough quota is available to process this command.
2022pub const ERROR_NOT_ENOUGH_QUOTA: DWORD = 0x00000718;
2023///No interfaces have been registered.
2024pub const RPC_S_NO_INTERFACES: DWORD = 0x00000719;
2025///The RPC was canceled.
2026pub const RPC_S_CALL_CANCELLED: DWORD = 0x0000071A;
2027///The binding handle does not contain all the required information.
2028pub const RPC_S_BINDING_INCOMPLETE: DWORD = 0x0000071B;
2029///A communications failure occurred during an RPC.
2030pub const RPC_S_COMM_FAILURE: DWORD = 0x0000071C;
2031///The requested authentication level is not supported.
2032pub const RPC_S_UNSUPPORTED_AUTHN_LEVEL: DWORD = 0x0000071D;
2033///No principal name is registered.
2034pub const RPC_S_NO_PRINC_NAME: DWORD = 0x0000071E;
2035///The error specified is not a valid Windows RPC error code.
2036pub const RPC_S_NOT_RPC_ERROR: DWORD = 0x0000071F;
2037///A UUID that is valid only on this computer has been allocated.
2038pub const RPC_S_UUID_LOCAL_ONLY: DWORD = 0x00000720;
2039///A security package-specific error occurred.
2040pub const RPC_S_SEC_PKG_ERROR: DWORD = 0x00000721;
2041///The thread is not canceled.
2042pub const RPC_S_NOT_CANCELLED: DWORD = 0x00000722;
2043///Invalid operation on the encoding/decoding handle.
2044pub const RPC_X_INVALID_ES_ACTION: DWORD = 0x00000723;
2045///Incompatible version of the serializing package.
2046pub const RPC_X_WRONG_ES_VERSION: DWORD = 0x00000724;
2047///Incompatible version of the RPC stub.
2048pub const RPC_X_WRONG_STUB_VERSION: DWORD = 0x00000725;
2049///The RPC pipe object is invalid or corrupted.
2050pub const RPC_X_INVALID_PIPE_OBJECT: DWORD = 0x00000726;
2051///An invalid operation was attempted on an RPC pipe object.
2052pub const RPC_X_WRONG_PIPE_ORDER: DWORD = 0x00000727;
2053///Unsupported RPC pipe version.
2054pub const RPC_X_WRONG_PIPE_VERSION: DWORD = 0x00000728;
2055///The group member was not found.
2056pub const RPC_S_GROUP_MEMBER_NOT_FOUND: DWORD = 0x0000076A;
2057///The endpoint mapper database entry could not be created.
2058pub const EPT_S_CANT_CREATE: DWORD = 0x0000076B;
2059///The object UUID is the nil UUID.
2060pub const RPC_S_INVALID_OBJECT: DWORD = 0x0000076C;
2061///The specified time is invalid.
2062pub const ERROR_INVALID_TIME: DWORD = 0x0000076D;
2063///The specified form name is invalid.
2064pub const ERROR_INVALID_FORM_NAME: DWORD = 0x0000076E;
2065///The specified form size is invalid.
2066pub const ERROR_INVALID_FORM_SIZE: DWORD = 0x0000076F;
2067///The specified printer handle is already being waited on.
2068pub const ERROR_ALREADY_WAITING: DWORD = 0x00000770;
2069///The specified printer has been deleted.
2070pub const ERROR_PRINTER_DELETED: DWORD = 0x00000771;
2071///The state of the printer is invalid.
2072pub const ERROR_INVALID_PRINTER_STATE: DWORD = 0x00000772;
2073///The user's password must be changed before logging on the first time.
2074pub const ERROR_PASSWORD_MUST_CHANGE: DWORD = 0x00000773;
2075///Could not find the domain controller for this domain.
2076pub const ERROR_DOMAIN_CONTROLLER_NOT_FOUND: DWORD = 0x00000774;
2077///The referenced account is currently locked out and cannot be logged on to.
2078pub const ERROR_ACCOUNT_LOCKED_OUT: DWORD = 0x00000775;
2079///The object exporter specified was not found.
2080pub const OR_INVALID_OXID: DWORD = 0x00000776;
2081///The object specified was not found.
2082pub const OR_INVALID_OID: DWORD = 0x00000777;
2083///The object set specified was not found.
2084pub const OR_INVALID_SET: DWORD = 0x00000778;
2085///Some data remains to be sent in the request buffer.
2086pub const RPC_S_SEND_INCOMPLETE: DWORD = 0x00000779;
2087///Invalid asynchronous RPC handle.
2088pub const RPC_S_INVALID_ASYNC_HANDLE: DWORD = 0x0000077A;
2089///Invalid asynchronous RPC call handle for this operation.
2090pub const RPC_S_INVALID_ASYNC_CALL: DWORD = 0x0000077B;
2091///The RPC pipe object has already been closed.
2092pub const RPC_X_PIPE_CLOSED: DWORD = 0x0000077C;
2093///The RPC call completed before all pipes were processed.
2094pub const RPC_X_PIPE_DISCIPLINE_ERROR: DWORD = 0x0000077D;
2095///No more data is available from the RPC pipe.
2096pub const RPC_X_PIPE_EMPTY: DWORD = 0x0000077E;
2097///No site name is available for this machine.
2098pub const ERROR_NO_SITENAME: DWORD = 0x0000077F;
2099///The file cannot be accessed by the system.
2100pub const ERROR_CANT_ACCESS_FILE: DWORD = 0x00000780;
2101///The name of the file cannot be resolved by the system.
2102pub const ERROR_CANT_RESOLVE_FILENAME: DWORD = 0x00000781;
2103///The entry is not of the expected type.
2104pub const RPC_S_ENTRY_TYPE_MISMATCH: DWORD = 0x00000782;
2105///Not all object UUIDs could be exported to the specified entry.
2106pub const RPC_S_NOT_ALL_OBJS_EXPORTED: DWORD = 0x00000783;
2107///The interface could not be exported to the specified entry.
2108pub const RPC_S_INTERFACE_NOT_EXPORTED: DWORD = 0x00000784;
2109///The specified profile entry could not be added.
2110pub const RPC_S_PROFILE_NOT_ADDED: DWORD = 0x00000785;
2111///The specified profile element could not be added.
2112pub const RPC_S_PRF_ELT_NOT_ADDED: DWORD = 0x00000786;
2113///The specified profile element could not be removed.
2114pub const RPC_S_PRF_ELT_NOT_REMOVED: DWORD = 0x00000787;
2115///The group element could not be added.
2116pub const RPC_S_GRP_ELT_NOT_ADDED: DWORD = 0x00000788;
2117///The group element could not be removed.
2118pub const RPC_S_GRP_ELT_NOT_REMOVED: DWORD = 0x00000789;
2119///The printer driver is not compatible with a policy enabled on your computer that blocks Windows NT 4.0 operating system drivers.
2120pub const ERROR_KM_DRIVER_BLOCKED: DWORD = 0x0000078A;
2121///The context has expired and can no longer be used.
2122pub const ERROR_CONTEXT_EXPIRED: DWORD = 0x0000078B;
2123///The current user's delegated trust creation quota has been exceeded.
2124pub const ERROR_PER_USER_TRUST_QUOTA_EXCEEDED: DWORD = 0x0000078C;
2125///The total delegated trust creation quota has been exceeded.
2126pub const ERROR_ALL_USER_TRUST_QUOTA_EXCEEDED: DWORD = 0x0000078D;
2127///The current user's delegated trust deletion quota has been exceeded.
2128pub const ERROR_USER_DELETE_TRUST_QUOTA_EXCEEDED: DWORD = 0x0000078E;
2129///Logon failure: The machine you are logging on to is protected by an authentication firewall. The specified account is not allowed to authenticate to the machine.
2130pub const ERROR_AUTHENTICATION_FIREWALL_FAILED: DWORD = 0x0000078F;
2131///Remote connections to the Print Spooler are blocked by a policy set on your machine.
2132pub const ERROR_REMOTE_PRINT_CONNECTIONS_BLOCKED: DWORD = 0x00000790;
2133///The pixel format is invalid.
2134pub const ERROR_INVALID_PIXEL_FORMAT: DWORD = 0x000007D0;
2135///The specified driver is invalid.
2136pub const ERROR_BAD_DRIVER: DWORD = 0x000007D1;
2137///The window style or class attribute is invalid for this operation.
2138pub const ERROR_INVALID_WINDOW_STYLE: DWORD = 0x000007D2;
2139///The requested metafile operation is not supported.
2140pub const ERROR_METAFILE_NOT_SUPPORTED: DWORD = 0x000007D3;
2141///The requested transformation operation is not supported.
2142pub const ERROR_TRANSFORM_NOT_SUPPORTED: DWORD = 0x000007D4;
2143///The requested clipping operation is not supported.
2144pub const ERROR_CLIPPING_NOT_SUPPORTED: DWORD = 0x000007D5;
2145///The specified color management module is invalid.
2146pub const ERROR_INVALID_CMM: DWORD = 0x000007DA;
2147///The specified color profile is invalid.
2148pub const ERROR_INVALID_PROFILE: DWORD = 0x000007DB;
2149///The specified tag was not found.
2150pub const ERROR_TAG_NOT_FOUND: DWORD = 0x000007DC;
2151///A required tag is not present.
2152pub const ERROR_TAG_NOT_PRESENT: DWORD = 0x000007DD;
2153///The specified tag is already present.
2154pub const ERROR_DUPLICATE_TAG: DWORD = 0x000007DE;
2155///The specified color profile is not associated with any device.
2156pub const ERROR_PROFILE_NOT_ASSOCIATED_WITH_DEVICE: DWORD = 0x000007DF;
2157///The specified color profile was not found.
2158pub const ERROR_PROFILE_NOT_FOUND: DWORD = 0x000007E0;
2159///The specified color space is invalid.
2160pub const ERROR_INVALID_COLORSPACE: DWORD = 0x000007E1;
2161///Image Color Management is not enabled.
2162pub const ERROR_ICM_NOT_ENABLED: DWORD = 0x000007E2;
2163///There was an error while deleting the color transform.
2164pub const ERROR_DELETING_ICM_XFORM: DWORD = 0x000007E3;
2165///The specified color transform is invalid.
2166pub const ERROR_INVALID_TRANSFORM: DWORD = 0x000007E4;
2167///The specified transform does not match the bitmap's color space.
2168pub const ERROR_COLORSPACE_MISMATCH: DWORD = 0x000007E5;
2169///The specified named color index is not present in the profile.
2170pub const ERROR_INVALID_COLORINDEX: DWORD = 0x000007E6;
2171///The specified profile is intended for a device of a different type than the specified device.
2172pub const ERROR_PROFILE_DOES_NOT_MATCH_DEVICE: DWORD = 0x000007E7;
2173///The workstation driver is not installed.
2174pub const NERR_NetNotStarted: DWORD = 0x00000836;
2175///The server could not be located.
2176pub const NERR_UnknownServer: DWORD = 0x00000837;
2177///An internal error occurred. The network cannot access a shared memory segment.
2178pub const NERR_ShareMem: DWORD = 0x00000838;
2179///A network resource shortage occurred.
2180pub const NERR_NoNetworkResource: DWORD = 0x00000839;
2181///This operation is not supported on workstations.
2182pub const NERR_RemoteOnly: DWORD = 0x0000083A;
2183///The device is not connected.
2184pub const NERR_DevNotRedirected: DWORD = 0x0000083B;
2185///The network connection was made successfully, but the user had to be prompted for a password other than the one originally specified.
2186pub const ERROR_CONNECTED_OTHER_PASSWORD: DWORD = 0x0000083C;
2187///The network connection was made successfully using default credentials.
2188pub const ERROR_CONNECTED_OTHER_PASSWORD_DEFAULT: DWORD = 0x0000083D;
2189///The Server service is not started.
2190pub const NERR_ServerNotStarted: DWORD = 0x00000842;
2191///The queue is empty.
2192pub const NERR_ItemNotFound: DWORD = 0x00000843;
2193///The device or directory does not exist.
2194pub const NERR_UnknownDevDir: DWORD = 0x00000844;
2195///The operation is invalid on a redirected resource.
2196pub const NERR_RedirectedPath: DWORD = 0x00000845;
2197///The name has already been shared.
2198pub const NERR_DuplicateShare: DWORD = 0x00000846;
2199///The server is currently out of the requested resource.
2200pub const NERR_NoRoom: DWORD = 0x00000847;
2201///Requested addition of items exceeds the maximum allowed.
2202pub const NERR_TooManyItems: DWORD = 0x00000849;
2203///The Peer service supports only two simultaneous users.
2204pub const NERR_InvalidMaxUsers: DWORD = 0x0000084A;
2205///The API return buffer is too small.
2206pub const NERR_BufTooSmall: DWORD = 0x0000084B;
2207///A remote API error occurred.
2208pub const NERR_RemoteErr: DWORD = 0x0000084F;
2209///An error occurred when opening or reading the configuration file.
2210pub const NERR_LanmanIniError: DWORD = 0x00000853;
2211///A general network error occurred.
2212pub const NERR_NetworkError: DWORD = 0x00000858;
2213///The Workstation service is in an inconsistent state. Restart the computer before restarting the Workstation service.
2214pub const NERR_WkstaInconsistentState: DWORD = 0x00000859;
2215///The Workstation service has not been started.
2216pub const NERR_WkstaNotStarted: DWORD = 0x0000085A;
2217///The requested information is not available.
2218pub const NERR_BrowserNotStarted: DWORD = 0x0000085B;
2219///An internal error occurred.
2220pub const NERR_InternalError: DWORD = 0x0000085C;
2221///The server is not configured for transactions.
2222pub const NERR_BadTransactConfig: DWORD = 0x0000085D;
2223///The requested API is not supported on the remote server.
2224pub const NERR_InvalidAPI: DWORD = 0x0000085E;
2225///The event name is invalid.
2226pub const NERR_BadEventName: DWORD = 0x0000085F;
2227///The computer name already exists on the network. Change it and reboot the computer.
2228pub const NERR_DupNameReboot: DWORD = 0x00000860;
2229///The specified component could not be found in the configuration information.
2230pub const NERR_CfgCompNotFound: DWORD = 0x00000862;
2231///The specified parameter could not be found in the configuration information.
2232pub const NERR_CfgParamNotFound: DWORD = 0x00000863;
2233///A line in the configuration file is too long.
2234pub const NERR_LineTooLong: DWORD = 0x00000865;
2235///The printer does not exist.
2236pub const NERR_QNotFound: DWORD = 0x00000866;
2237///The print job does not exist.
2238pub const NERR_JobNotFound: DWORD = 0x00000867;
2239///The printer destination cannot be found.
2240pub const NERR_DestNotFound: DWORD = 0x00000868;
2241///The printer destination already exists.
2242pub const NERR_DestExists: DWORD = 0x00000869;
2243///The print queue already exists.
2244pub const NERR_QExists: DWORD = 0x0000086A;
2245///No more printers can be added.
2246pub const NERR_QNoRoom: DWORD = 0x0000086B;
2247///No more print jobs can be added.
2248pub const NERR_JobNoRoom: DWORD = 0x0000086C;
2249///No more printer destinations can be added.
2250pub const NERR_DestNoRoom: DWORD = 0x0000086D;
2251///This printer destination is idle and cannot accept control operations.
2252pub const NERR_DestIdle: DWORD = 0x0000086E;
2253///This printer destination request contains an invalid control function.
2254pub const NERR_DestInvalidOp: DWORD = 0x0000086F;
2255///The print processor is not responding.
2256pub const NERR_ProcNoRespond: DWORD = 0x00000870;
2257///The spooler is not running.
2258pub const NERR_SpoolerNotLoaded: DWORD = 0x00000871;
2259///This operation cannot be performed on the print destination in its current state.
2260pub const NERR_DestInvalidState: DWORD = 0x00000872;
2261///This operation cannot be performed on the print queue in its current state.
2262pub const NERR_QinvalidState: DWORD = 0x00000873;
2263///This operation cannot be performed on the print job in its current state.
2264pub const NERR_JobInvalidState: DWORD = 0x00000874;
2265///A spooler memory allocation failure occurred.
2266pub const NERR_SpoolNoMemory: DWORD = 0x00000875;
2267///The device driver does not exist.
2268pub const NERR_DriverNotFound: DWORD = 0x00000876;
2269///The data type is not supported by the print processor.
2270pub const NERR_DataTypeInvalid: DWORD = 0x00000877;
2271///The print processor is not installed.
2272pub const NERR_ProcNotFound: DWORD = 0x00000878;
2273///The service database is locked.
2274pub const NERR_ServiceTableLocked: DWORD = 0x00000884;
2275///The service table is full.
2276pub const NERR_ServiceTableFull: DWORD = 0x00000885;
2277///The requested service has already been started.
2278pub const NERR_ServiceInstalled: DWORD = 0x00000886;
2279///The service does not respond to control actions.
2280pub const NERR_ServiceEntryLocked: DWORD = 0x00000887;
2281///The service has not been started.
2282pub const NERR_ServiceNotInstalled: DWORD = 0x00000888;
2283///The service name is invalid.
2284pub const NERR_BadServiceName: DWORD = 0x00000889;
2285///The service is not responding to the control function.
2286pub const NERR_ServiceCtlTimeout: DWORD = 0x0000088A;
2287///The service control is busy.
2288pub const NERR_ServiceCtlBusy: DWORD = 0x0000088B;
2289///The configuration file contains an invalid service program name.
2290pub const NERR_BadServiceProgName: DWORD = 0x0000088C;
2291///The service could not be controlled in its present state.
2292pub const NERR_ServiceNotCtrl: DWORD = 0x0000088D;
2293///The service ended abnormally.
2294pub const NERR_ServiceKillProc: DWORD = 0x0000088E;
2295///The requested pause or stop is not valid for this service.
2296pub const NERR_ServiceCtlNotValid: DWORD = 0x0000088F;
2297///The service control dispatcher could not find the service name in the dispatch table.
2298pub const NERR_NotInDispatchTbl: DWORD = 0x00000890;
2299///The service control dispatcher pipe read failed.
2300pub const NERR_BadControlRecv: DWORD = 0x00000891;
2301///A thread for the new service could not be created.
2302pub const NERR_ServiceNotStarting: DWORD = 0x00000892;
2303///This workstation is already logged on to the LAN.
2304pub const NERR_AlreadyLoggedOn: DWORD = 0x00000898;
2305///The workstation is not logged on to the LAN.
2306pub const NERR_NotLoggedOn: DWORD = 0x00000899;
2307///The user name or group name parameter is invalid.
2308pub const NERR_BadUsername: DWORD = 0x0000089A;
2309///The password parameter is invalid.
2310pub const NERR_BadPassword: DWORD = 0x0000089B;
2311///The logon processor did not add the message alias.
2312pub const NERR_UnableToAddName_W: DWORD = 0x0000089C;
2313///The logon processor did not add the message alias.
2314pub const NERR_UnableToAddName_F: DWORD = 0x0000089D;
2315///The logoff processor did not delete the message alias.
2316pub const NERR_UnableToDelName_W: DWORD = 0x0000089E;
2317///The logoff processor did not delete the message alias.
2318pub const NERR_UnableToDelName_F: DWORD = 0x0000089F;
2319///Network logons are paused.
2320pub const NERR_LogonsPaused: DWORD = 0x000008A1;
2321///A centralized logon server conflict occurred.
2322pub const NERR_LogonServerConflict: DWORD = 0x000008A2;
2323///The server is configured without a valid user path.
2324pub const NERR_LogonNoUserPath: DWORD = 0x000008A3;
2325///An error occurred while loading or running the logon script.
2326pub const NERR_LogonScriptError: DWORD = 0x000008A4;
2327///The logon server was not specified. The computer will be logged on as STANDALONE.
2328pub const NERR_StandaloneLogon: DWORD = 0x000008A6;
2329///The logon server could not be found.
2330pub const NERR_LogonServerNotFound: DWORD = 0x000008A7;
2331///There is already a logon domain for this computer.
2332pub const NERR_LogonDomainExists: DWORD = 0x000008A8;
2333///The logon server could not validate the logon.
2334pub const NERR_NonValidatedLogon: DWORD = 0x000008A9;
2335///The security database could not be found.
2336pub const NERR_ACFNotFound: DWORD = 0x000008AB;
2337///The group name could not be found.
2338pub const NERR_GroupNotFound: DWORD = 0x000008AC;
2339///The user name could not be found.
2340pub const NERR_UserNotFound: DWORD = 0x000008AD;
2341///The resource name could not be found.
2342pub const NERR_ResourceNotFound: DWORD = 0x000008AE;
2343///The group already exists.
2344pub const NERR_GroupExists: DWORD = 0x000008AF;
2345///The user account already exists.
2346pub const NERR_UserExists: DWORD = 0x000008B0;
2347///The resource permission list already exists.
2348pub const NERR_ResourceExists: DWORD = 0x000008B1;
2349///This operation is allowed only on the PDC of the domain.
2350pub const NERR_NotPrimary: DWORD = 0x000008B2;
2351///The security database has not been started.
2352pub const NERR_ACFNotLoaded: DWORD = 0x000008B3;
2353///There are too many names in the user accounts database.
2354pub const NERR_ACFNoRoom: DWORD = 0x000008B4;
2355///A disk I/O failure occurred.
2356pub const NERR_ACFFileIOFail: DWORD = 0x000008B5;
2357///The limit of 64 entries per resource was exceeded.
2358pub const NERR_ACFTooManyLists: DWORD = 0x000008B6;
2359///Deleting a user with a session is not allowed.
2360pub const NERR_UserLogon: DWORD = 0x000008B7;
2361///The parent directory could not be located.
2362pub const NERR_ACFNoParent: DWORD = 0x000008B8;
2363///Unable to add to the security database session cache segment.
2364pub const NERR_CanNotGrowSegment: DWORD = 0x000008B9;
2365///This operation is not allowed on this special group.
2366pub const NERR_SpeGroupOp: DWORD = 0x000008BA;
2367///This user is not cached in the user accounts database session cache.
2368pub const NERR_NotInCache: DWORD = 0x000008BB;
2369///The user already belongs to this group.
2370pub const NERR_UserInGroup: DWORD = 0x000008BC;
2371///The user does not belong to this group.
2372pub const NERR_UserNotInGroup: DWORD = 0x000008BD;
2373///This user account is undefined.
2374pub const NERR_AccountUndefined: DWORD = 0x000008BE;
2375///This user account has expired.
2376pub const NERR_AccountExpired: DWORD = 0x000008BF;
2377///The user is not allowed to log on from this workstation.
2378pub const NERR_InvalidWorkstation: DWORD = 0x000008C0;
2379///The user is not allowed to log on at this time.
2380pub const NERR_InvalidLogonHours: DWORD = 0x000008C1;
2381///The password of this user has expired.
2382pub const NERR_PasswordExpired: DWORD = 0x000008C2;
2383///The password of this user cannot change.
2384pub const NERR_PasswordCantChange: DWORD = 0x000008C3;
2385///This password cannot be used now.
2386pub const NERR_PasswordHistConflict: DWORD = 0x000008C4;
2387///The password does not meet the password policy requirements. Check the minimum password length, password complexity, and password history requirements.
2388pub const NERR_PasswordTooShort: DWORD = 0x000008C5;
2389///The password of this user is too recent to change.
2390pub const NERR_PasswordTooRecent: DWORD = 0x000008C6;
2391///The security database is corrupted.
2392pub const NERR_InvalidDatabase: DWORD = 0x000008C7;
2393///No updates are necessary to this replicant network or local security database.
2394pub const NERR_DatabaseUpToDate: DWORD = 0x000008C8;
2395///This replicant database is outdated; synchronization is required.
2396pub const NERR_SyncRequired: DWORD = 0x000008C9;
2397///The network connection could not be found.
2398pub const NERR_UseNotFound: DWORD = 0x000008CA;
2399///This asg_type is invalid.
2400pub const NERR_BadAsgType: DWORD = 0x000008CB;
2401///This device is currently being shared.
2402pub const NERR_DeviceIsShared: DWORD = 0x000008CC;
2403///The computer name could not be added as a message alias. The name might already exist on the network.
2404pub const NERR_NoComputerName: DWORD = 0x000008DE;
2405///The Messenger service is already started.
2406pub const NERR_MsgAlreadyStarted: DWORD = 0x000008DF;
2407///The Messenger service failed to start.
2408pub const NERR_MsgInitFailed: DWORD = 0x000008E0;
2409///The message alias could not be found on the network.
2410pub const NERR_NameNotFound: DWORD = 0x000008E1;
2411///This message alias has already been forwarded.
2412pub const NERR_AlreadyForwarded: DWORD = 0x000008E2;
2413///This message alias has been added but is still forwarded.
2414pub const NERR_AddForwarded: DWORD = 0x000008E3;
2415///This message alias already exists locally.
2416pub const NERR_AlreadyExists: DWORD = 0x000008E4;
2417///The maximum number of added message aliases has been exceeded.
2418pub const NERR_TooManyNames: DWORD = 0x000008E5;
2419///The computer name could not be deleted.
2420pub const NERR_DelComputerName: DWORD = 0x000008E6;
2421///Messages cannot be forwarded back to the same workstation.
2422pub const NERR_LocalForward: DWORD = 0x000008E7;
2423///An error occurred in the domain message processor.
2424pub const NERR_GrpMsgProcessor: DWORD = 0x000008E8;
2425///The message was sent, but the recipient has paused the Messenger service.
2426pub const NERR_PausedRemote: DWORD = 0x000008E9;
2427///The message was sent but not received.
2428pub const NERR_BadReceive: DWORD = 0x000008EA;
2429///The message alias is currently in use. Try again later.
2430pub const NERR_NameInUse: DWORD = 0x000008EB;
2431///The Messenger service has not been started.
2432pub const NERR_MsgNotStarted: DWORD = 0x000008EC;
2433///The name is not on the local computer.
2434pub const NERR_NotLocalName: DWORD = 0x000008ED;
2435///The forwarded message alias could not be found on the network.
2436pub const NERR_NoForwardName: DWORD = 0x000008EE;
2437///The message alias table on the remote station is full.
2438pub const NERR_RemoteFull: DWORD = 0x000008EF;
2439///Messages for this alias are not currently being forwarded.
2440pub const NERR_NameNotForwarded: DWORD = 0x000008F0;
2441///The broadcast message was truncated.
2442pub const NERR_TruncatedBroadcast: DWORD = 0x000008F1;
2443///This is an invalid device name.
2444pub const NERR_InvalidDevice: DWORD = 0x000008F6;
2445///A write fault occurred.
2446pub const NERR_WriteFault: DWORD = 0x000008F7;
2447///A duplicate message alias exists on the network.
2448pub const NERR_DuplicateName: DWORD = 0x000008F9;
2449///This message alias will be deleted later.
2450pub const NERR_DeleteLater: DWORD = 0x000008FA;
2451///The message alias was not successfully deleted from all networks.
2452pub const NERR_IncompleteDel: DWORD = 0x000008FB;
2453///This operation is not supported on computers with multiple networks.
2454pub const NERR_MultipleNets: DWORD = 0x000008FC;
2455///This shared resource does not exist.
2456pub const NERR_NetNameNotFound: DWORD = 0x00000906;
2457///This device is not shared.
2458pub const NERR_DeviceNotShared: DWORD = 0x00000907;
2459///A session does not exist with that computer name.
2460pub const NERR_ClientNameNotFound: DWORD = 0x00000908;
2461///There is not an open file with that identification number.
2462pub const NERR_FileIdNotFound: DWORD = 0x0000090A;
2463///A failure occurred when executing a remote administration command.
2464pub const NERR_ExecFailure: DWORD = 0x0000090B;
2465///A failure occurred when opening a remote temporary file.
2466pub const NERR_TmpFile: DWORD = 0x0000090C;
2467///The data returned from a remote administration command has been truncated to 64 KB.
2468pub const NERR_TooMuchData: DWORD = 0x0000090D;
2469///This device cannot be shared as both a spooled and a nonspooled resource.
2470pub const NERR_DeviceShareConflict: DWORD = 0x0000090E;
2471///The information in the list of servers might be incorrect.
2472pub const NERR_BrowserTableIncomplete: DWORD = 0x0000090F;
2473///The computer is not active in this domain.
2474pub const NERR_NotLocalDomain: DWORD = 0x00000910;
2475///The share must be removed from the Distributed File System (DFS) before it can be deleted.
2476pub const NERR_IsDfsShare: DWORD = 0x00000911;
2477///The operation is invalid for this device.
2478pub const NERR_DevInvalidOpCode: DWORD = 0x0000091B;
2479///This device cannot be shared.
2480pub const NERR_DevNotFound: DWORD = 0x0000091C;
2481///This device was not open.
2482pub const NERR_DevNotOpen: DWORD = 0x0000091D;
2483///This device name list is invalid.
2484pub const NERR_BadQueueDevString: DWORD = 0x0000091E;
2485///The queue priority is invalid.
2486pub const NERR_BadQueuePriority: DWORD = 0x0000091F;
2487///There are no shared communication devices.
2488pub const NERR_NoCommDevs: DWORD = 0x00000921;
2489///The queue you specified does not exist.
2490pub const NERR_QueueNotFound: DWORD = 0x00000922;
2491///This list of devices is invalid.
2492pub const NERR_BadDevString: DWORD = 0x00000924;
2493///The requested device is invalid.
2494pub const NERR_BadDev: DWORD = 0x00000925;
2495///This device is already in use by the spooler.
2496pub const NERR_InUseBySpooler: DWORD = 0x00000926;
2497///This device is already in use as a communication device.
2498pub const NERR_CommDevInUse: DWORD = 0x00000927;
2499///This computer name is invalid.
2500pub const NERR_InvalidComputer: DWORD = 0x0000092F;
2501///The string and prefix specified are too long.
2502pub const NERR_MaxLenExceeded: DWORD = 0x00000932;
2503///This path component is invalid.
2504pub const NERR_BadComponent: DWORD = 0x00000934;
2505///Could not determine the type of input.
2506pub const NERR_CantType: DWORD = 0x00000935;
2507///The buffer for types is not big enough.
2508pub const NERR_TooManyEntries: DWORD = 0x0000093A;
2509///Profile files cannot exceed 64 KB.
2510pub const NERR_ProfileFileTooBig: DWORD = 0x00000942;
2511///The start offset is out of range.
2512pub const NERR_ProfileOffset: DWORD = 0x00000943;
2513///The system cannot delete current connections to network resources.
2514pub const NERR_ProfileCleanup: DWORD = 0x00000944;
2515///The system was unable to parse the command line in this file.
2516pub const NERR_ProfileUnknownCmd: DWORD = 0x00000945;
2517///An error occurred while loading the profile file.
2518pub const NERR_ProfileLoadErr: DWORD = 0x00000946;
2519///Errors occurred while saving the profile file. The profile was partially saved.
2520pub const NERR_ProfileSaveErr: DWORD = 0x00000947;
2521///Log file %1 is full.
2522pub const NERR_LogOverflow: DWORD = 0x00000949;
2523///This log file has changed between reads.
2524pub const NERR_LogFileChanged: DWORD = 0x0000094A;
2525///Log file %1 is corrupt.
2526pub const NERR_LogFileCorrupt: DWORD = 0x0000094B;
2527///The source path cannot be a directory.
2528pub const NERR_SourceIsDir: DWORD = 0x0000094C;
2529///The source path is illegal.
2530pub const NERR_BadSource: DWORD = 0x0000094D;
2531///The destination path is illegal.
2532pub const NERR_BadDest: DWORD = 0x0000094E;
2533///The source and destination paths are on different servers.
2534pub const NERR_DifferentServers: DWORD = 0x0000094F;
2535///The Run server you requested is paused.
2536pub const NERR_RunSrvPaused: DWORD = 0x00000951;
2537///An error occurred when communicating with a Run server.
2538pub const NERR_ErrCommRunSrv: DWORD = 0x00000955;
2539///An error occurred when starting a background process.
2540pub const NERR_ErrorExecingGhost: DWORD = 0x00000957;
2541///The shared resource you are connected to could not be found.
2542pub const NERR_ShareNotFound: DWORD = 0x00000958;
2543///The LAN adapter number is invalid.
2544pub const NERR_InvalidLana: DWORD = 0x00000960;
2545///There are open files on the connection.
2546pub const NERR_OpenFiles: DWORD = 0x00000961;
2547///Active connections still exist.
2548pub const NERR_ActiveConns: DWORD = 0x00000962;
2549///This share name or password is invalid.
2550pub const NERR_BadPasswordCore: DWORD = 0x00000963;
2551///The device is being accessed by an active process.
2552pub const NERR_DevInUse: DWORD = 0x00000964;
2553///The drive letter is in use locally.
2554pub const NERR_LocalDrive: DWORD = 0x00000965;
2555///The specified client is already registered for the specified event.
2556pub const NERR_AlertExists: DWORD = 0x0000097E;
2557///The alert table is full.
2558pub const NERR_TooManyAlerts: DWORD = 0x0000097F;
2559///An invalid or nonexistent alert name was raised.
2560pub const NERR_NoSuchAlert: DWORD = 0x00000980;
2561///The alert recipient is invalid.
2562pub const NERR_BadRecipient: DWORD = 0x00000981;
2563///A user's session with this server has been deleted.
2564pub const NERR_AcctLimitExceeded: DWORD = 0x00000982;
2565///The log file does not contain the requested record number.
2566pub const NERR_InvalidLogSeek: DWORD = 0x00000988;
2567///The user accounts database is not configured correctly.
2568pub const NERR_BadUasConfig: DWORD = 0x00000992;
2569///This operation is not permitted when the Net Logon service is running.
2570pub const NERR_InvalidUASOp: DWORD = 0x00000993;
2571///This operation is not allowed on the last administrative account.
2572pub const NERR_LastAdmin: DWORD = 0x00000994;
2573///Could not find the domain controller for this domain.
2574pub const NERR_DCNotFound: DWORD = 0x00000995;
2575///Could not set logon information for this user.
2576pub const NERR_LogonTrackingError: DWORD = 0x00000996;
2577///The Net Logon service has not been started.
2578pub const NERR_NetlogonNotStarted: DWORD = 0x00000997;
2579///Unable to add to the user accounts database.
2580pub const NERR_CanNotGrowUASFile: DWORD = 0x00000998;
2581///This server's clock is not synchronized with the PDC's clock.
2582pub const NERR_TimeDiffAtDC: DWORD = 0x00000999;
2583///A password mismatch has been detected.
2584pub const NERR_PasswordMismatch: DWORD = 0x0000099A;
2585///The server identification does not specify a valid server.
2586pub const NERR_NoSuchServer: DWORD = 0x0000099C;
2587///The session identification does not specify a valid session.
2588pub const NERR_NoSuchSession: DWORD = 0x0000099D;
2589///The connection identification does not specify a valid connection.
2590pub const NERR_NoSuchConnection: DWORD = 0x0000099E;
2591///There is no space for another entry in the table of available servers.
2592pub const NERR_TooManyServers: DWORD = 0x0000099F;
2593///The server has reached the maximum number of sessions it supports.
2594pub const NERR_TooManySessions: DWORD = 0x000009A0;
2595///The server has reached the maximum number of connections it supports.
2596pub const NERR_TooManyConnections: DWORD = 0x000009A1;
2597///The server cannot open more files because it has reached its maximum number.
2598pub const NERR_TooManyFiles: DWORD = 0x000009A2;
2599///There are no alternate servers registered on this server.
2600pub const NERR_NoAlternateServers: DWORD = 0x000009A3;
2601///Try the down-level (remote admin protocol) version of API instead.
2602pub const NERR_TryDownLevel: DWORD = 0x000009A6;
2603///The uninterruptible power supply (UPS) driver could not be accessed by the UPS service.
2604pub const NERR_UPSDriverNotStarted: DWORD = 0x000009B0;
2605///The UPS service is not configured correctly.
2606pub const NERR_UPSInvalidConfig: DWORD = 0x000009B1;
2607///The UPS service could not access the specified Comm Port.
2608pub const NERR_UPSInvalidCommPort: DWORD = 0x000009B2;
2609///The UPS indicated a line fail or low battery situation. Service not started.
2610pub const NERR_UPSSignalAsserted: DWORD = 0x000009B3;
2611///The UPS service failed to perform a system shut down.
2612pub const NERR_UPSShutdownFailed: DWORD = 0x000009B4;
2613///The program below returned an MS-DOS error code.
2614pub const NERR_BadDosRetCode: DWORD = 0x000009C4;
2615///The program below needs more memory.
2616pub const NERR_ProgNeedsExtraMem: DWORD = 0x000009C5;
2617///The program below called an unsupported MS-DOS function.
2618pub const NERR_BadDosFunction: DWORD = 0x000009C6;
2619///The workstation failed to boot.
2620pub const NERR_RemoteBootFailed: DWORD = 0x000009C7;
2621///The file below is corrupt.
2622pub const NERR_BadFileCheckSum: DWORD = 0x000009C8;
2623///No loader is specified in the boot-block definition file.
2624pub const NERR_NoRplBootSystem: DWORD = 0x000009C9;
2625///NetBIOS returned an error: The network control blocks (NCBs) and Server Message Block (SMB) are dumped above.
2626pub const NERR_RplLoadrNetBiosErr: DWORD = 0x000009CA;
2627///A disk I/O error occurred.
2628pub const NERR_RplLoadrDiskErr: DWORD = 0x000009CB;
2629///Image parameter substitution failed.
2630pub const NERR_ImageParamErr: DWORD = 0x000009CC;
2631///Too many image parameters cross disk sector boundaries.
2632pub const NERR_TooManyImageParams: DWORD = 0x000009CD;
2633///The image was not generated from an MS-DOS disk formatted with /S.
2634pub const NERR_NonDosFloppyUsed: DWORD = 0x000009CE;
2635///Remote boot will be restarted later.
2636pub const NERR_RplBootRestart: DWORD = 0x000009CF;
2637///The call to the Remoteboot server failed.
2638pub const NERR_RplSrvrCallFailed: DWORD = 0x000009D0;
2639///Cannot connect to the Remoteboot server.
2640pub const NERR_CantConnectRplSrvr: DWORD = 0x000009D1;
2641///Cannot open image file on the Remoteboot server.
2642pub const NERR_CantOpenImageFile: DWORD = 0x000009D2;
2643///Connecting to the Remoteboot server.
2644pub const NERR_CallingRplSrvr: DWORD = 0x000009D3;
2645///Connecting to the Remoteboot server.
2646pub const NERR_StartingRplBoot: DWORD = 0x000009D4;
2647///Remote boot service was stopped, check the error log for the cause of the problem.
2648pub const NERR_RplBootServiceTerm: DWORD = 0x000009D5;
2649///Remote boot startup failed; check the error log for the cause of the problem.
2650pub const NERR_RplBootStartFailed: DWORD = 0x000009D6;
2651///A second connection to a Remoteboot resource is not allowed.
2652pub const NERR_RPL_CONNECTED: DWORD = 0x000009D7;
2653///The browser service was configured with MaintainServerList=No.
2654pub const NERR_BrowserConfiguredToNotRun: DWORD = 0x000009F6;
2655///Service failed to start because none of the network adapters started with this service.
2656pub const NERR_RplNoAdaptersStarted: DWORD = 0x00000A32;
2657///Service failed to start due to bad startup information in the registry.
2658pub const NERR_RplBadRegistry: DWORD = 0x00000A33;
2659///Service failed to start because its database is absent or corrupt.
2660pub const NERR_RplBadDatabase: DWORD = 0x00000A34;
2661///Service failed to start because the RPLFILES share is absent.
2662pub const NERR_RplRplfilesShare: DWORD = 0x00000A35;
2663///Service failed to start because the RPLUSER group is absent.
2664pub const NERR_RplNotRplServer: DWORD = 0x00000A36;
2665///Cannot enumerate service records.
2666pub const NERR_RplCannotEnum: DWORD = 0x00000A37;
2667///Workstation record information has been corrupted.
2668pub const NERR_RplWkstaInfoCorrupted: DWORD = 0x00000A38;
2669///Workstation record was not found.
2670pub const NERR_RplWkstaNotFound: DWORD = 0x00000A39;
2671///Workstation name is in use by some other workstation.
2672pub const NERR_RplWkstaNameUnavailable: DWORD = 0x00000A3A;
2673///Profile record information has been corrupted.
2674pub const NERR_RplProfileInfoCorrupted: DWORD = 0x00000A3B;
2675///Profile record was not found.
2676pub const NERR_RplProfileNotFound: DWORD = 0x00000A3C;
2677///Profile name is in use by some other profile.
2678pub const NERR_RplProfileNameUnavailable: DWORD = 0x00000A3D;
2679///There are workstations using this profile.
2680pub const NERR_RplProfileNotEmpty: DWORD = 0x00000A3E;
2681///Configuration record information has been corrupted.
2682pub const NERR_RplConfigInfoCorrupted: DWORD = 0x00000A3F;
2683///Configuration record was not found.
2684pub const NERR_RplConfigNotFound: DWORD = 0x00000A40;
2685///Adapter ID record information has been corrupted.
2686pub const NERR_RplAdapterInfoCorrupted: DWORD = 0x00000A41;
2687///An internal service error has occurred.
2688pub const NERR_RplInternal: DWORD = 0x00000A42;
2689///Vendor ID record information has been corrupted.
2690pub const NERR_RplVendorInfoCorrupted: DWORD = 0x00000A43;
2691///Boot block record information has been corrupted.
2692pub const NERR_RplBootInfoCorrupted: DWORD = 0x00000A44;
2693///The user account for this workstation record is missing.
2694pub const NERR_RplWkstaNeedsUserAcct: DWORD = 0x00000A45;
2695///The RPLUSER local group could not be found.
2696pub const NERR_RplNeedsRPLUSERAcct: DWORD = 0x00000A46;
2697///Boot block record was not found.
2698pub const NERR_RplBootNotFound: DWORD = 0x00000A47;
2699///Chosen profile is incompatible with this workstation.
2700pub const NERR_RplIncompatibleProfile: DWORD = 0x00000A48;
2701///Chosen network adapter ID is in use by some other workstation.
2702pub const NERR_RplAdapterNameUnavailable: DWORD = 0x00000A49;
2703///There are profiles using this configuration.
2704pub const NERR_RplConfigNotEmpty: DWORD = 0x00000A4A;
2705///There are workstations, profiles, or configurations using this boot block.
2706pub const NERR_RplBootInUse: DWORD = 0x00000A4B;
2707///Service failed to back up the Remoteboot database.
2708pub const NERR_RplBackupDatabase: DWORD = 0x00000A4C;
2709///Adapter record was not found.
2710pub const NERR_RplAdapterNotFound: DWORD = 0x00000A4D;
2711///Vendor record was not found.
2712pub const NERR_RplVendorNotFound: DWORD = 0x00000A4E;
2713///Vendor name is in use by some other vendor record.
2714pub const NERR_RplVendorNameUnavailable: DWORD = 0x00000A4F;
2715///The boot name or vendor ID is in use by some other boot block record.
2716pub const NERR_RplBootNameUnavailable: DWORD = 0x00000A50;
2717///The configuration name is in use by some other configuration.
2718pub const NERR_RplConfigNameUnavailable: DWORD = 0x00000A51;
2719///The internal database maintained by the DFS service is corrupt.
2720pub const NERR_DfsInternalCorruption: DWORD = 0x00000A64;
2721///One of the records in the internal DFS database is corrupt.
2722pub const NERR_DfsVolumeDataCorrupt: DWORD = 0x00000A65;
2723///There is no DFS name whose entry path matches the input entry path.
2724pub const NERR_DfsNoSuchVolume: DWORD = 0x00000A66;
2725///A root or link with the given name already exists.
2726pub const NERR_DfsVolumeAlreadyExists: DWORD = 0x00000A67;
2727///The server share specified is already shared in the DFS.
2728pub const NERR_DfsAlreadyShared: DWORD = 0x00000A68;
2729///The indicated server share does not support the indicated DFS namespace.
2730pub const NERR_DfsNoSuchShare: DWORD = 0x00000A69;
2731///The operation is not valid in this portion of the namespace.
2732pub const NERR_DfsNotALeafVolume: DWORD = 0x00000A6A;
2733///The operation is not valid in this portion of the namespace.
2734pub const NERR_DfsLeafVolume: DWORD = 0x00000A6B;
2735///The operation is ambiguous because the link has multiple servers.
2736pub const NERR_DfsVolumeHasMultipleServers: DWORD = 0x00000A6C;
2737///Unable to create a link.
2738pub const NERR_DfsCantCreateJunctionPoint: DWORD = 0x00000A6D;
2739///The server is not DFS-aware.
2740pub const NERR_DfsServerNotDfsAware: DWORD = 0x00000A6E;
2741///The specified rename target path is invalid.
2742pub const NERR_DfsBadRenamePath: DWORD = 0x00000A6F;
2743///The specified DFS link is offline.
2744pub const NERR_DfsVolumeIsOffline: DWORD = 0x00000A70;
2745///The specified server is not a server for this link.
2746pub const NERR_DfsNoSuchServer: DWORD = 0x00000A71;
2747///A cycle in the DFS name was detected.
2748pub const NERR_DfsCyclicalName: DWORD = 0x00000A72;
2749///The operation is not supported on a server-based DFS.
2750pub const NERR_DfsNotSupportedInServerDfs: DWORD = 0x00000A73;
2751///This link is already supported by the specified server share.
2752pub const NERR_DfsDuplicateService: DWORD = 0x00000A74;
2753///Cannot remove the last server share supporting this root or link.
2754pub const NERR_DfsCantRemoveLastServerShare: DWORD = 0x00000A75;
2755///The operation is not supported for an inter-DFS link.
2756pub const NERR_DfsVolumeIsInterDfs: DWORD = 0x00000A76;
2757///The internal state of the DFS Service has become inconsistent.
2758pub const NERR_DfsInconsistent: DWORD = 0x00000A77;
2759///The DFS Service has been installed on the specified server.
2760pub const NERR_DfsServerUpgraded: DWORD = 0x00000A78;
2761///The DFS data being reconciled is identical.
2762pub const NERR_DfsDataIsIdentical: DWORD = 0x00000A79;
2763///The DFS root cannot be deleted. Uninstall DFS if required.
2764pub const NERR_DfsCantRemoveDfsRoot: DWORD = 0x00000A7A;
2765///A child or parent directory of the share is already in a DFS.
2766pub const NERR_DfsChildOrParentInDfs: DWORD = 0x00000A7B;
2767///DFS internal error.
2768pub const NERR_DfsInternalError: DWORD = 0x00000A82;
2769///This machine is already joined to a domain.
2770pub const NERR_SetupAlreadyJoined: DWORD = 0x00000A83;
2771///This machine is not currently joined to a domain.
2772pub const NERR_SetupNotJoined: DWORD = 0x00000A84;
2773///This machine is a domain controller and cannot be unjoined from a domain.
2774pub const NERR_SetupDomainController: DWORD = 0x00000A85;
2775///The destination domain controller does not support creating machine accounts in organizational units (OUs).
2776pub const NERR_DefaultJoinRequired: DWORD = 0x00000A86;
2777///The specified workgroup name is invalid.
2778pub const NERR_InvalidWorkgroupName: DWORD = 0x00000A87;
2779///The specified computer name is incompatible with the default language used on the domain controller.
2780pub const NERR_NameUsesIncompatibleCodePage: DWORD = 0x00000A88;
2781///The specified computer account could not be found.
2782pub const NERR_ComputerAccountNotFound: DWORD = 0x00000A89;
2783///This version of Windows cannot be joined to a domain.
2784pub const NERR_PersonalSku: DWORD = 0x00000A8A;
2785///The password must change at the next logon.
2786pub const NERR_PasswordMustChange: DWORD = 0x00000A8D;
2787///The account is locked out.
2788pub const NERR_AccountLockedOut: DWORD = 0x00000A8E;
2789///The password is too long.
2790pub const NERR_PasswordTooLong: DWORD = 0x00000A8F;
2791///The password does not meet the complexity policy.
2792pub const NERR_PasswordNotComplexEnough: DWORD = 0x00000A90;
2793///The password does not meet the requirements of the password filter DLLs.
2794pub const NERR_PasswordFilterError: DWORD = 0x00000A91;
2795///The specified print monitor is unknown.
2796pub const ERROR_UNKNOWN_PRINT_MONITOR: DWORD = 0x00000BB8;
2797///The specified printer driver is currently in use.
2798pub const ERROR_PRINTER_DRIVER_IN_USE: DWORD = 0x00000BB9;
2799///The spool file was not found.
2800pub const ERROR_SPOOL_FILE_NOT_FOUND: DWORD = 0x00000BBA;
2801///A StartDocPrinter call was not issued.
2802pub const ERROR_SPL_NO_STARTDOC: DWORD = 0x00000BBB;
2803///An AddJob call was not issued.
2804pub const ERROR_SPL_NO_ADDJOB: DWORD = 0x00000BBC;
2805///The specified print processor has already been installed.
2806pub const ERROR_PRINT_PROCESSOR_ALREADY_INSTALLED: DWORD = 0x00000BBD;
2807///The specified print monitor has already been installed.
2808pub const ERROR_PRINT_MONITOR_ALREADY_INSTALLED: DWORD = 0x00000BBE;
2809///The specified print monitor does not have the required functions.
2810pub const ERROR_INVALID_PRINT_MONITOR: DWORD = 0x00000BBF;
2811///The specified print monitor is currently in use.
2812pub const ERROR_PRINT_MONITOR_IN_USE: DWORD = 0x00000BC0;
2813///The requested operation is not allowed when there are jobs queued to the printer.
2814pub const ERROR_PRINTER_HAS_JOBS_QUEUED: DWORD = 0x00000BC1;
2815///The requested operation is successful. Changes will not be effective until the system is rebooted.
2816pub const ERROR_SUCCESS_REBOOT_REQUIRED: DWORD = 0x00000BC2;
2817///The requested operation is successful. Changes will not be effective until the service is restarted.
2818pub const ERROR_SUCCESS_RESTART_REQUIRED: DWORD = 0x00000BC3;
2819///No printers were found.
2820pub const ERROR_PRINTER_NOT_FOUND: DWORD = 0x00000BC4;
2821///The printer driver is known to be unreliable.
2822pub const ERROR_PRINTER_DRIVER_WARNED: DWORD = 0x00000BC5;
2823///The printer driver is known to harm the system.
2824pub const ERROR_PRINTER_DRIVER_BLOCKED: DWORD = 0x00000BC6;
2825///The specified printer driver package is currently in use.
2826pub const ERROR_PRINTER_DRIVER_PACKAGE_IN_USE: DWORD = 0x00000BC7;
2827///Unable to find a core driver package that is required by the printer driver package.
2828pub const ERROR_CORE_DRIVER_PACKAGE_NOT_FOUND: DWORD = 0x00000BC8;
2829///The requested operation failed. A system reboot is required to roll back changes made.
2830pub const ERROR_FAIL_REBOOT_REQUIRED: DWORD = 0x00000BC9;
2831///The requested operation failed. A system reboot has been initiated to roll back changes made.
2832pub const ERROR_FAIL_REBOOT_INITIATED: DWORD = 0x00000BCA;
2833///The specified printer driver was not found on the system and needs to be downloaded.
2834pub const ERROR_PRINTER_DRIVER_DOWNLOAD_NEEDED: DWORD = 0x00000BCB;
2835///The specified printer cannot be shared.
2836pub const ERROR_PRINTER_NOT_SHAREABLE: DWORD = 0x00000BCE;
2837///Reissue the given operation as a cached I/O operation.
2838pub const ERROR_IO_REISSUE_AS_CACHED: DWORD = 0x00000F6E;
2839///Windows Internet Name Service (WINS) encountered an error while processing the command.
2840pub const ERROR_WINS_INTERNAL: DWORD = 0x00000FA0;
2841///The local WINS cannot be deleted.
2842pub const ERROR_CAN_NOT_DEL_LOCAL_WINS: DWORD = 0x00000FA1;
2843///The importation from the file failed.
2844pub const ERROR_STATIC_INIT: DWORD = 0x00000FA2;
2845///The backup failed. Was a full backup done before?
2846pub const ERROR_INC_BACKUP: DWORD = 0x00000FA3;
2847///The backup failed. Check the directory to which you are backing the database.
2848pub const ERROR_FULL_BACKUP: DWORD = 0x00000FA4;
2849///The name does not exist in the WINS database.
2850pub const ERROR_REC_NON_EXISTENT: DWORD = 0x00000FA5;
2851///Replication with a nonconfigured partner is not allowed.
2852pub const ERROR_RPL_NOT_ALLOWED: DWORD = 0x00000FA6;
2853///The version of the supplied content information is not supported.
2854pub const PEERDIST_ERROR_CONTENTINFO_VERSION_UNSUPPORTED: DWORD = 0x00000FD2;
2855///The supplied content information is malformed.
2856pub const PEERDIST_ERROR_CANNOT_PARSE_CONTENTINFO: DWORD = 0x00000FD3;
2857///The requested data cannot be found in local or peer caches.
2858pub const PEERDIST_ERROR_MISSING_DATA: DWORD = 0x00000FD4;
2859///No more data is available or required.
2860pub const PEERDIST_ERROR_NO_MORE: DWORD = 0x00000FD5;
2861///The supplied object has not been initialized.
2862pub const PEERDIST_ERROR_NOT_INITIALIZED: DWORD = 0x00000FD6;
2863///The supplied object has already been initialized.
2864pub const PEERDIST_ERROR_ALREADY_INITIALIZED: DWORD = 0x00000FD7;
2865///A shutdown operation is already in progress.
2866pub const PEERDIST_ERROR_SHUTDOWN_IN_PROGRESS: DWORD = 0x00000FD8;
2867///The supplied object has already been invalidated.
2868pub const PEERDIST_ERROR_INVALIDATED: DWORD = 0x00000FD9;
2869///An element already exists and was not replaced.
2870pub const PEERDIST_ERROR_ALREADY_EXISTS: DWORD = 0x00000FDA;
2871///Cannot cancel the requested operation as it has already been completed.
2872pub const PEERDIST_ERROR_OPERATION_NOTFOUND: DWORD = 0x00000FDB;
2873///Cannot perform the requested operation because it has already been carried out.
2874pub const PEERDIST_ERROR_ALREADY_COMPLETED: DWORD = 0x00000FDC;
2875///An operation accessed data beyond the bounds of valid data.
2876pub const PEERDIST_ERROR_OUT_OF_BOUNDS: DWORD = 0x00000FDD;
2877///The requested version is not supported.
2878pub const PEERDIST_ERROR_VERSION_UNSUPPORTED: DWORD = 0x00000FDE;
2879///A configuration value is invalid.
2880pub const PEERDIST_ERROR_INVALID_CONFIGURATION: DWORD = 0x00000FDF;
2881///The SKU is not licensed.
2882pub const PEERDIST_ERROR_NOT_LICENSED: DWORD = 0x00000FE0;
2883///PeerDist Service is still initializing and will be available shortly.
2884pub const PEERDIST_ERROR_SERVICE_UNAVAILABLE: DWORD = 0x00000FE1;
2885///The Dynamic Host Configuration Protocol (DHCP) client has obtained an IP address that is already in use on the network. The local interface will be disabled until the DHCP client can obtain a new address.
2886pub const ERROR_DHCP_ADDRESS_CONFLICT: DWORD = 0x00001004;
2887///The GUID passed was not recognized as valid by a WMI data provider.
2888pub const ERROR_WMI_GUID_NOT_FOUND: DWORD = 0x00001068;
2889///The instance name passed was not recognized as valid by a WMI data provider.
2890pub const ERROR_WMI_INSTANCE_NOT_FOUND: DWORD = 0x00001069;
2891///The data item ID passed was not recognized as valid by a WMI data provider.
2892pub const ERROR_WMI_ITEMID_NOT_FOUND: DWORD = 0x0000106A;
2893///The WMI request could not be completed and should be retried.
2894pub const ERROR_WMI_TRY_AGAIN: DWORD = 0x0000106B;
2895///The WMI data provider could not be located.
2896pub const ERROR_WMI_DP_NOT_FOUND: DWORD = 0x0000106C;
2897///The WMI data provider references an instance set that has not been registered.
2898pub const ERROR_WMI_UNRESOLVED_INSTANCE_REF: DWORD = 0x0000106D;
2899///The WMI data block or event notification has already been enabled.
2900pub const ERROR_WMI_ALREADY_ENABLED: DWORD = 0x0000106E;
2901///The WMI data block is no longer available.
2902pub const ERROR_WMI_GUID_DISCONNECTED: DWORD = 0x0000106F;
2903///The WMI data service is not available.
2904pub const ERROR_WMI_SERVER_UNAVAILABLE: DWORD = 0x00001070;
2905///The WMI data provider failed to carry out the request.
2906pub const ERROR_WMI_DP_FAILED: DWORD = 0x00001071;
2907///The WMI Managed Object Format (MOF) information is not valid.
2908pub const ERROR_WMI_INVALID_MOF: DWORD = 0x00001072;
2909///The WMI registration information is not valid.
2910pub const ERROR_WMI_INVALID_REGINFO: DWORD = 0x00001073;
2911///The WMI data block or event notification has already been disabled.
2912pub const ERROR_WMI_ALREADY_DISABLED: DWORD = 0x00001074;
2913///The WMI data item or data block is read-only.
2914pub const ERROR_WMI_READ_ONLY: DWORD = 0x00001075;
2915///The WMI data item or data block could not be changed.
2916pub const ERROR_WMI_SET_FAILURE: DWORD = 0x00001076;
2917///The media identifier does not represent a valid medium.
2918pub const ERROR_INVALID_MEDIA: DWORD = 0x000010CC;
2919///The library identifier does not represent a valid library.
2920pub const ERROR_INVALID_LIBRARY: DWORD = 0x000010CD;
2921///The media pool identifier does not represent a valid media pool.
2922pub const ERROR_INVALID_MEDIA_POOL: DWORD = 0x000010CE;
2923///The drive and medium are not compatible, or they exist in different libraries.
2924pub const ERROR_DRIVE_MEDIA_MISMATCH: DWORD = 0x000010CF;
2925///The medium currently exists in an offline library and must be online to perform this operation.
2926pub const ERROR_MEDIA_OFFLINE: DWORD = 0x000010D0;
2927///The operation cannot be performed on an offline library.
2928pub const ERROR_LIBRARY_OFFLINE: DWORD = 0x000010D1;
2929///The library, drive, or media pool is empty.
2930pub const ERROR_EMPTY: DWORD = 0x000010D2;
2931///The library, drive, or media pool must be empty to perform this operation.
2932pub const ERROR_NOT_EMPTY: DWORD = 0x000010D3;
2933///No media is currently available in this media pool or library.
2934pub const ERROR_MEDIA_UNAVAILABLE: DWORD = 0x000010D4;
2935///A resource required for this operation is disabled.
2936pub const ERROR_RESOURCE_DISABLED: DWORD = 0x000010D5;
2937///The media identifier does not represent a valid cleaner.
2938pub const ERROR_INVALID_CLEANER: DWORD = 0x000010D6;
2939///The drive cannot be cleaned or does not support cleaning.
2940pub const ERROR_UNABLE_TO_CLEAN: DWORD = 0x000010D7;
2941///The object identifier does not represent a valid object.
2942pub const ERROR_OBJECT_NOT_FOUND: DWORD = 0x000010D8;
2943///Unable to read from or write to the database.
2944pub const ERROR_DATABASE_FAILURE: DWORD = 0x000010D9;
2945///The database is full.
2946pub const ERROR_DATABASE_FULL: DWORD = 0x000010DA;
2947///The medium is not compatible with the device or media pool.
2948pub const ERROR_MEDIA_INCOMPATIBLE: DWORD = 0x000010DB;
2949///The resource required for this operation does not exist.
2950pub const ERROR_RESOURCE_NOT_PRESENT: DWORD = 0x000010DC;
2951///The operation identifier is not valid.
2952pub const ERROR_INVALID_OPERATION: DWORD = 0x000010DD;
2953///The media is not mounted or ready for use.
2954pub const ERROR_MEDIA_NOT_AVAILABLE: DWORD = 0x000010DE;
2955///The device is not ready for use.
2956pub const ERROR_DEVICE_NOT_AVAILABLE: DWORD = 0x000010DF;
2957///The operator or administrator has refused the request.
2958pub const ERROR_REQUEST_REFUSED: DWORD = 0x000010E0;
2959///The drive identifier does not represent a valid drive.
2960pub const ERROR_INVALID_DRIVE_OBJECT: DWORD = 0x000010E1;
2961///Library is full. No slot is available for use.
2962pub const ERROR_LIBRARY_FULL: DWORD = 0x000010E2;
2963///The transport cannot access the medium.
2964pub const ERROR_MEDIUM_NOT_ACCESSIBLE: DWORD = 0x000010E3;
2965///Unable to load the medium into the drive.
2966pub const ERROR_UNABLE_TO_LOAD_MEDIUM: DWORD = 0x000010E4;
2967///Unable to retrieve the drive status.
2968pub const ERROR_UNABLE_TO_INVENTORY_DRIVE: DWORD = 0x000010E5;
2969///Unable to retrieve the slot status.
2970pub const ERROR_UNABLE_TO_INVENTORY_SLOT: DWORD = 0x000010E6;
2971///Unable to retrieve status about the transport.
2972pub const ERROR_UNABLE_TO_INVENTORY_TRANSPORT: DWORD = 0x000010E7;
2973///Cannot use the transport because it is already in use.
2974pub const ERROR_TRANSPORT_FULL: DWORD = 0x000010E8;
2975///Unable to open or close the inject/eject port.
2976pub const ERROR_CONTROLLING_IEPORT: DWORD = 0x000010E9;
2977///Unable to eject the medium because it is in a drive.
2978pub const ERROR_UNABLE_TO_EJECT_MOUNTED_MEDIA: DWORD = 0x000010EA;
2979///A cleaner slot is already reserved.
2980pub const ERROR_CLEANER_SLOT_SET: DWORD = 0x000010EB;
2981///A cleaner slot is not reserved.
2982pub const ERROR_CLEANER_SLOT_NOT_SET: DWORD = 0x000010EC;
2983///The cleaner cartridge has performed the maximum number of drive cleanings.
2984pub const ERROR_CLEANER_CARTRIDGE_SPENT: DWORD = 0x000010ED;
2985///Unexpected on-medium identifier.
2986pub const ERROR_UNEXPECTED_OMID: DWORD = 0x000010EE;
2987///The last remaining item in this group or resource cannot be deleted.
2988pub const ERROR_CANT_DELETE_LAST_ITEM: DWORD = 0x000010EF;
2989///The message provided exceeds the maximum size allowed for this parameter.
2990pub const ERROR_MESSAGE_EXCEEDS_MAX_SIZE: DWORD = 0x000010F0;
2991///The volume contains system or paging files.
2992pub const ERROR_VOLUME_CONTAINS_SYS_FILES: DWORD = 0x000010F1;
2993///The media type cannot be removed from this library because at least one drive in the library reports it can support this media type.
2994pub const ERROR_INDIGENOUS_TYPE: DWORD = 0x000010F2;
2995///This offline media cannot be mounted on this system because no enabled drives are present that can be used.
2996pub const ERROR_NO_SUPPORTING_DRIVES: DWORD = 0x000010F3;
2997///A cleaner cartridge is present in the tape library.
2998pub const ERROR_CLEANER_CARTRIDGE_INSTALLED: DWORD = 0x000010F4;
2999///Cannot use the IEport because it is not empty.
3000pub const ERROR_IEPORT_FULL: DWORD = 0x000010F5;
3001///The remote storage service was not able to recall the file.
3002pub const ERROR_FILE_OFFLINE: DWORD = 0x000010FE;
3003///The remote storage service is not operational at this time.
3004pub const ERROR_REMOTE_STORAGE_NOT_ACTIVE: DWORD = 0x000010FF;
3005///The remote storage service encountered a media error.
3006pub const ERROR_REMOTE_STORAGE_MEDIA_ERROR: DWORD = 0x00001100;
3007///The file or directory is not a reparse point.
3008pub const ERROR_NOT_A_REPARSE_POINT: DWORD = 0x00001126;
3009///The reparse point attribute cannot be set because it conflicts with an existing attribute.
3010pub const ERROR_REPARSE_ATTRIBUTE_CONFLICT: DWORD = 0x00001127;
3011///The data present in the reparse point buffer is invalid.
3012pub const ERROR_INVALID_REPARSE_DATA: DWORD = 0x00001128;
3013///The tag present in the reparse point buffer is invalid.
3014pub const ERROR_REPARSE_TAG_INVALID: DWORD = 0x00001129;
3015///There is a mismatch between the tag specified in the request and the tag present in the reparse point.
3016pub const ERROR_REPARSE_TAG_MISMATCH: DWORD = 0x0000112A;
3017///Single Instance Storage (SIS) is not available on this volume.
3018pub const ERROR_VOLUME_NOT_SIS_ENABLED: DWORD = 0x00001194;
3019///The operation cannot be completed because other resources depend on this resource.
3020pub const ERROR_DEPENDENT_RESOURCE_EXISTS: DWORD = 0x00001389;
3021///The cluster resource dependency cannot be found.
3022pub const ERROR_DEPENDENCY_NOT_FOUND: DWORD = 0x0000138A;
3023///The cluster resource cannot be made dependent on the specified resource because it is already dependent.
3024pub const ERROR_DEPENDENCY_ALREADY_EXISTS: DWORD = 0x0000138B;
3025///The cluster resource is not online.
3026pub const ERROR_RESOURCE_NOT_ONLINE: DWORD = 0x0000138C;
3027///A cluster node is not available for this operation.
3028pub const ERROR_HOST_NODE_NOT_AVAILABLE: DWORD = 0x0000138D;
3029///The cluster resource is not available.
3030pub const ERROR_RESOURCE_NOT_AVAILABLE: DWORD = 0x0000138E;
3031///The cluster resource could not be found.
3032pub const ERROR_RESOURCE_NOT_FOUND: DWORD = 0x0000138F;
3033///The cluster is being shut down.
3034pub const ERROR_SHUTDOWN_CLUSTER: DWORD = 0x00001390;
3035///A cluster node cannot be evicted from the cluster unless the node is down or it is the last node.
3036pub const ERROR_CANT_EVICT_ACTIVE_NODE: DWORD = 0x00001391;
3037///The object already exists.
3038pub const ERROR_OBJECT_ALREADY_EXISTS: DWORD = 0x00001392;
3039///The object is already in the list.
3040pub const ERROR_OBJECT_IN_LIST: DWORD = 0x00001393;
3041///The cluster group is not available for any new requests.
3042pub const ERROR_GROUP_NOT_AVAILABLE: DWORD = 0x00001394;
3043///The cluster group could not be found.
3044pub const ERROR_GROUP_NOT_FOUND: DWORD = 0x00001395;
3045///The operation could not be completed because the cluster group is not online.
3046pub const ERROR_GROUP_NOT_ONLINE: DWORD = 0x00001396;
3047///The operation failed because either the specified cluster node is not the owner of the resource, or the node is not a possible owner of the resource.
3048pub const ERROR_HOST_NODE_NOT_RESOURCE_OWNER: DWORD = 0x00001397;
3049///The operation failed because either the specified cluster node is not the owner of the group, or the node is not a possible owner of the group.
3050pub const ERROR_HOST_NODE_NOT_GROUP_OWNER: DWORD = 0x00001398;
3051///The cluster resource could not be created in the specified resource monitor.
3052pub const ERROR_RESMON_CREATE_FAILED: DWORD = 0x00001399;
3053///The cluster resource could not be brought online by the resource monitor.
3054pub const ERROR_RESMON_ONLINE_FAILED: DWORD = 0x0000139A;
3055///The operation could not be completed because the cluster resource is online.
3056pub const ERROR_RESOURCE_ONLINE: DWORD = 0x0000139B;
3057///The cluster resource could not be deleted or brought offline because it is the quorum resource.
3058pub const ERROR_QUORUM_RESOURCE: DWORD = 0x0000139C;
3059///The cluster could not make the specified resource a quorum resource because it is not capable of being a quorum resource.
3060pub const ERROR_NOT_QUORUM_CAPABLE: DWORD = 0x0000139D;
3061///The cluster software is shutting down.
3062pub const ERROR_CLUSTER_SHUTTING_DOWN: DWORD = 0x0000139E;
3063///The group or resource is not in the correct state to perform the requested operation.
3064pub const ERROR_INVALID_STATE: DWORD = 0x0000139F;
3065///The properties were stored but not all changes will take effect until the next time the resource is brought online.
3066pub const ERROR_RESOURCE_PROPERTIES_STORED: DWORD = 0x000013A0;
3067///The cluster could not make the specified resource a quorum resource because it does not belong to a shared storage class.
3068pub const ERROR_NOT_QUORUM_CLASS: DWORD = 0x000013A1;
3069///The cluster resource could not be deleted because it is a core resource.
3070pub const ERROR_CORE_RESOURCE: DWORD = 0x000013A2;
3071///The quorum resource failed to come online.
3072pub const ERROR_QUORUM_RESOURCE_ONLINE_FAILED: DWORD = 0x000013A3;
3073///The quorum log could not be created or mounted successfully.
3074pub const ERROR_QUORUMLOG_OPEN_FAILED: DWORD = 0x000013A4;
3075///The cluster log is corrupt.
3076pub const ERROR_CLUSTERLOG_CORRUPT: DWORD = 0x000013A5;
3077///The record could not be written to the cluster log because it exceeds the maximum size.
3078pub const ERROR_CLUSTERLOG_RECORD_EXCEEDS_MAXSIZE: DWORD = 0x000013A6;
3079///The cluster log exceeds its maximum size.
3080pub const ERROR_CLUSTERLOG_EXCEEDS_MAXSIZE: DWORD = 0x000013A7;
3081///No checkpoint record was found in the cluster log.
3082pub const ERROR_CLUSTERLOG_CHKPOINT_NOT_FOUND: DWORD = 0x000013A8;
3083///The minimum required disk space needed for logging is not available.
3084pub const ERROR_CLUSTERLOG_NOT_ENOUGH_SPACE: DWORD = 0x000013A9;
3085///The cluster node failed to take control of the quorum resource because the resource is owned by another active node.
3086pub const ERROR_QUORUM_OWNER_ALIVE: DWORD = 0x000013AA;
3087///A cluster network is not available for this operation.
3088pub const ERROR_NETWORK_NOT_AVAILABLE: DWORD = 0x000013AB;
3089///A cluster node is not available for this operation.
3090pub const ERROR_NODE_NOT_AVAILABLE: DWORD = 0x000013AC;
3091///All cluster nodes must be running to perform this operation.
3092pub const ERROR_ALL_NODES_NOT_AVAILABLE: DWORD = 0x000013AD;
3093///A cluster resource failed.
3094pub const ERROR_RESOURCE_FAILED: DWORD = 0x000013AE;
3095///The cluster node is not valid.
3096pub const ERROR_CLUSTER_INVALID_NODE: DWORD = 0x000013AF;
3097///The cluster node already exists.
3098pub const ERROR_CLUSTER_NODE_EXISTS: DWORD = 0x000013B0;
3099///A node is in the process of joining the cluster.
3100pub const ERROR_CLUSTER_JOIN_IN_PROGRESS: DWORD = 0x000013B1;
3101///The cluster node was not found.
3102pub const ERROR_CLUSTER_NODE_NOT_FOUND: DWORD = 0x000013B2;
3103///The cluster local node information was not found.
3104pub const ERROR_CLUSTER_LOCAL_NODE_NOT_FOUND: DWORD = 0x000013B3;
3105///The cluster network already exists.
3106pub const ERROR_CLUSTER_NETWORK_EXISTS: DWORD = 0x000013B4;
3107///The cluster network was not found.
3108pub const ERROR_CLUSTER_NETWORK_NOT_FOUND: DWORD = 0x000013B5;
3109///The cluster network interface already exists.
3110pub const ERROR_CLUSTER_NETINTERFACE_EXISTS: DWORD = 0x000013B6;
3111///The cluster network interface was not found.
3112pub const ERROR_CLUSTER_NETINTERFACE_NOT_FOUND: DWORD = 0x000013B7;
3113///The cluster request is not valid for this object.
3114pub const ERROR_CLUSTER_INVALID_REQUEST: DWORD = 0x000013B8;
3115///The cluster network provider is not valid.
3116pub const ERROR_CLUSTER_INVALID_NETWORK_PROVIDER: DWORD = 0x000013B9;
3117///The cluster node is down.
3118pub const ERROR_CLUSTER_NODE_DOWN: DWORD = 0x000013BA;
3119///The cluster node is not reachable.
3120pub const ERROR_CLUSTER_NODE_UNREACHABLE: DWORD = 0x000013BB;
3121///The cluster node is not a member of the cluster.
3122pub const ERROR_CLUSTER_NODE_NOT_MEMBER: DWORD = 0x000013BC;
3123///A cluster join operation is not in progress.
3124pub const ERROR_CLUSTER_JOIN_NOT_IN_PROGRESS: DWORD = 0x000013BD;
3125///The cluster network is not valid.
3126pub const ERROR_CLUSTER_INVALID_NETWORK: DWORD = 0x000013BE;
3127///The cluster node is up.
3128pub const ERROR_CLUSTER_NODE_UP: DWORD = 0x000013C0;
3129///The cluster IP address is already in use.
3130pub const ERROR_CLUSTER_IPADDR_IN_USE: DWORD = 0x000013C1;
3131///The cluster node is not paused.
3132pub const ERROR_CLUSTER_NODE_NOT_PAUSED: DWORD = 0x000013C2;
3133///No cluster security context is available.
3134pub const ERROR_CLUSTER_NO_SECURITY_CONTEXT: DWORD = 0x000013C3;
3135///The cluster network is not configured for internal cluster communication.
3136pub const ERROR_CLUSTER_NETWORK_NOT_INTERNAL: DWORD = 0x000013C4;
3137///The cluster node is already up.
3138pub const ERROR_CLUSTER_NODE_ALREADY_UP: DWORD = 0x000013C5;
3139///The cluster node is already down.
3140pub const ERROR_CLUSTER_NODE_ALREADY_DOWN: DWORD = 0x000013C6;
3141///The cluster network is already online.
3142pub const ERROR_CLUSTER_NETWORK_ALREADY_ONLINE: DWORD = 0x000013C7;
3143///The cluster network is already offline.
3144pub const ERROR_CLUSTER_NETWORK_ALREADY_OFFLINE: DWORD = 0x000013C8;
3145///The cluster node is already a member of the cluster.
3146pub const ERROR_CLUSTER_NODE_ALREADY_MEMBER: DWORD = 0x000013C9;
3147///The cluster network is the only one configured for internal cluster communication between two or more active cluster nodes. The internal communication capability cannot be removed from the network.
3148pub const ERROR_CLUSTER_LAST_INTERNAL_NETWORK: DWORD = 0x000013CA;
3149///One or more cluster resources depend on the network to provide service to clients. The client access capability cannot be removed from the network.
3150pub const ERROR_CLUSTER_NETWORK_HAS_DEPENDENTS: DWORD = 0x000013CB;
3151///This operation cannot be performed on the cluster resource because it is the quorum resource. This quorum resource cannot be brought offline and its possible owners list cannot be modified.
3152pub const ERROR_INVALID_OPERATION_ON_QUORUM: DWORD = 0x000013CC;
3153///The cluster quorum resource is not allowed to have any dependencies.
3154pub const ERROR_DEPENDENCY_NOT_ALLOWED: DWORD = 0x000013CD;
3155///The cluster node is paused.
3156pub const ERROR_CLUSTER_NODE_PAUSED: DWORD = 0x000013CE;
3157///The cluster resource cannot be brought online. The owner node cannot run this resource.
3158pub const ERROR_NODE_CANT_HOST_RESOURCE: DWORD = 0x000013CF;
3159///The cluster node is not ready to perform the requested operation.
3160pub const ERROR_CLUSTER_NODE_NOT_READY: DWORD = 0x000013D0;
3161///The cluster node is shutting down.
3162pub const ERROR_CLUSTER_NODE_SHUTTING_DOWN: DWORD = 0x000013D1;
3163///The cluster join operation was aborted.
3164pub const ERROR_CLUSTER_JOIN_ABORTED: DWORD = 0x000013D2;
3165///The cluster join operation failed due to incompatible software versions between the joining node and its sponsor.
3166pub const ERROR_CLUSTER_INCOMPATIBLE_VERSIONS: DWORD = 0x000013D3;
3167///This resource cannot be created because the cluster has reached the limit on the number of resources it can monitor.
3168pub const ERROR_CLUSTER_MAXNUM_OF_RESOURCES_EXCEEDED: DWORD = 0x000013D4;
3169///The system configuration changed during the cluster join or form operation. The join or form operation was aborted.
3170pub const ERROR_CLUSTER_SYSTEM_CONFIG_CHANGED: DWORD = 0x000013D5;
3171///The specified resource type was not found.
3172pub const ERROR_CLUSTER_RESOURCE_TYPE_NOT_FOUND: DWORD = 0x000013D6;
3173///The specified node does not support a resource of this type. This might be due to version inconsistencies or due to the absence of the resource DLL on this node.
3174pub const ERROR_CLUSTER_RESTYPE_NOT_SUPPORTED: DWORD = 0x000013D7;
3175///The specified resource name is not supported by this resource DLL. This might be due to a bad (or changed) name supplied to the resource DLL.
3176pub const ERROR_CLUSTER_RESNAME_NOT_FOUND: DWORD = 0x000013D8;
3177///No authentication package could be registered with the RPC server.
3178pub const ERROR_CLUSTER_NO_RPC_PACKAGES_REGISTERED: DWORD = 0x000013D9;
3179///You cannot bring the group online because the owner of the group is not in the preferred list for the group. To change the owner node for the group, move the group.
3180pub const ERROR_CLUSTER_OWNER_NOT_IN_PREFLIST: DWORD = 0x000013DA;
3181///The join operation failed because the cluster database sequence number has changed or is incompatible with the locker node. This can happen during a join operation if the cluster database was changing during the join.
3182pub const ERROR_CLUSTER_DATABASE_SEQMISMATCH: DWORD = 0x000013DB;
3183///The resource monitor will not allow the fail operation to be performed while the resource is in its current state. This can happen if the resource is in a pending state.
3184pub const ERROR_RESMON_INVALID_STATE: DWORD = 0x000013DC;
3185///A non-locker code received a request to reserve the lock for making global updates.
3186pub const ERROR_CLUSTER_GUM_NOT_LOCKER: DWORD = 0x000013DD;
3187///The quorum disk could not be located by the cluster service.
3188pub const ERROR_QUORUM_DISK_NOT_FOUND: DWORD = 0x000013DE;
3189///The backed-up cluster database is possibly corrupt.
3190pub const ERROR_DATABASE_BACKUP_CORRUPT: DWORD = 0x000013DF;
3191///A DFS root already exists in this cluster node.
3192pub const ERROR_CLUSTER_NODE_ALREADY_HAS_DFS_ROOT: DWORD = 0x000013E0;
3193///An attempt to modify a resource property failed because it conflicts with another existing property.
3194pub const ERROR_RESOURCE_PROPERTY_UNCHANGEABLE: DWORD = 0x000013E1;
3195///An operation was attempted that is incompatible with the current membership state of the node.
3196pub const ERROR_CLUSTER_MEMBERSHIP_INVALID_STATE: DWORD = 0x00001702;
3197///The quorum resource does not contain the quorum log.
3198pub const ERROR_CLUSTER_QUORUMLOG_NOT_FOUND: DWORD = 0x00001703;
3199///The membership engine requested shutdown of the cluster service on this node.
3200pub const ERROR_CLUSTER_MEMBERSHIP_HALT: DWORD = 0x00001704;
3201///The join operation failed because the cluster instance ID of the joining node does not match the cluster instance ID of the sponsor node.
3202pub const ERROR_CLUSTER_INSTANCE_ID_MISMATCH: DWORD = 0x00001705;
3203///A matching cluster network for the specified IP address could not be found.
3204pub const ERROR_CLUSTER_NETWORK_NOT_FOUND_FOR_IP: DWORD = 0x00001706;
3205///The actual data type of the property did not match the expected data type of the property.
3206pub const ERROR_CLUSTER_PROPERTY_DATA_TYPE_MISMATCH: DWORD = 0x00001707;
3207///The cluster node was evicted from the cluster successfully, but the node was not cleaned up. To determine what clean-up steps failed and how to recover, see the Failover Clustering application event log using Event Viewer.
3208pub const ERROR_CLUSTER_EVICT_WITHOUT_CLEANUP: DWORD = 0x00001708;
3209///Two or more parameter values specified for a resource's properties are in conflict.
3210pub const ERROR_CLUSTER_PARAMETER_MISMATCH: DWORD = 0x00001709;
3211///This computer cannot be made a member of a cluster.
3212pub const ERROR_NODE_CANNOT_BE_CLUSTERED: DWORD = 0x0000170A;
3213///This computer cannot be made a member of a cluster because it does not have the correct version of Windows installed.
3214pub const ERROR_CLUSTER_WRONG_OS_VERSION: DWORD = 0x0000170B;
3215///A cluster cannot be created with the specified cluster name because that cluster name is already in use. Specify a different name for the cluster.
3216pub const ERROR_CLUSTER_CANT_CREATE_DUP_CLUSTER_NAME: DWORD = 0x0000170C;
3217///The cluster configuration action has already been committed.
3218pub const ERROR_CLUSCFG_ALREADY_COMMITTED: DWORD = 0x0000170D;
3219///The cluster configuration action could not be rolled back.
3220pub const ERROR_CLUSCFG_ROLLBACK_FAILED: DWORD = 0x0000170E;
3221///The drive letter assigned to a system disk on one node conflicted with the drive letter assigned to a disk on another node.
3222pub const ERROR_CLUSCFG_SYSTEM_DISK_DRIVE_LETTER_CONFLICT: DWORD = 0x0000170F;
3223///One or more nodes in the cluster are running a version of Windows that does not support this operation.
3224pub const ERROR_CLUSTER_OLD_VERSION: DWORD = 0x00001710;
3225///The name of the corresponding computer account does not match the network name for this resource.
3226pub const ERROR_CLUSTER_MISMATCHED_COMPUTER_ACCT_NAME: DWORD = 0x00001711;
3227///No network adapters are available.
3228pub const ERROR_CLUSTER_NO_NET_ADAPTERS: DWORD = 0x00001712;
3229///The cluster node has been poisoned.
3230pub const ERROR_CLUSTER_POISONED: DWORD = 0x00001713;
3231///The group is unable to accept the request because it is moving to another node.
3232pub const ERROR_CLUSTER_GROUP_MOVING: DWORD = 0x00001714;
3233///The resource type cannot accept the request because it is too busy performing another operation.
3234pub const ERROR_CLUSTER_RESOURCE_TYPE_BUSY: DWORD = 0x00001715;
3235///The call to the cluster resource DLL timed out.
3236pub const ERROR_RESOURCE_CALL_TIMED_OUT: DWORD = 0x00001716;
3237///The address is not valid for an IPv6 Address resource. A global IPv6 address is required, and it must match a cluster network. Compatibility addresses are not permitted.
3238pub const ERROR_INVALID_CLUSTER_IPV6_ADDRESS: DWORD = 0x00001717;
3239///An internal cluster error occurred. A call to an invalid function was attempted.
3240pub const ERROR_CLUSTER_INTERNAL_INVALID_FUNCTION: DWORD = 0x00001718;
3241///A parameter value is out of acceptable range.
3242pub const ERROR_CLUSTER_PARAMETER_OUT_OF_BOUNDS: DWORD = 0x00001719;
3243///A network error occurred while sending data to another node in the cluster. The number of bytes transmitted was less than required.
3244pub const ERROR_CLUSTER_PARTIAL_SEND: DWORD = 0x0000171A;
3245///An invalid cluster registry operation was attempted.
3246pub const ERROR_CLUSTER_REGISTRY_INVALID_FUNCTION: DWORD = 0x0000171B;
3247///An input string of characters is not properly terminated.
3248pub const ERROR_CLUSTER_INVALID_STRING_TERMINATION: DWORD = 0x0000171C;
3249///An input string of characters is not in a valid format for the data it represents.
3250pub const ERROR_CLUSTER_INVALID_STRING_FORMAT: DWORD = 0x0000171D;
3251///An internal cluster error occurred. A cluster database transaction was attempted while a transaction was already in progress.
3252pub const ERROR_CLUSTER_DATABASE_TRANSACTION_IN_PROGRESS: DWORD = 0x0000171E;
3253///An internal cluster error occurred. There was an attempt to commit a cluster database transaction while no transaction was in progress.
3254pub const ERROR_CLUSTER_DATABASE_TRANSACTION_NOT_IN_PROGRESS: DWORD = 0x0000171F;
3255///An internal cluster error occurred. Data was not properly initialized.
3256pub const ERROR_CLUSTER_NULL_DATA: DWORD = 0x00001720;
3257///An error occurred while reading from a stream of data. An unexpected number of bytes was returned.
3258pub const ERROR_CLUSTER_PARTIAL_READ: DWORD = 0x00001721;
3259///An error occurred while writing to a stream of data. The required number of bytes could not be written.
3260pub const ERROR_CLUSTER_PARTIAL_WRITE: DWORD = 0x00001722;
3261///An error occurred while deserializing a stream of cluster data.
3262pub const ERROR_CLUSTER_CANT_DESERIALIZE_DATA: DWORD = 0x00001723;
3263///One or more property values for this resource are in conflict with one or more property values associated with its dependent resources.
3264pub const ERROR_DEPENDENT_RESOURCE_PROPERTY_CONFLICT: DWORD = 0x00001724;
3265///A quorum of cluster nodes was not present to form a cluster.
3266pub const ERROR_CLUSTER_NO_QUORUM: DWORD = 0x00001725;
3267///The cluster network is not valid for an IPv6 address resource, or it does not match the configured address.
3268pub const ERROR_CLUSTER_INVALID_IPV6_NETWORK: DWORD = 0x00001726;
3269///The cluster network is not valid for an IPv6 tunnel resource. Check the configuration of the IP Address resource on which the IPv6 tunnel resource depends.
3270pub const ERROR_CLUSTER_INVALID_IPV6_TUNNEL_NETWORK: DWORD = 0x00001727;
3271///Quorum resource cannot reside in the available storage group.
3272pub const ERROR_QUORUM_NOT_ALLOWED_IN_THIS_GROUP: DWORD = 0x00001728;
3273///The specified file could not be encrypted.
3274pub const ERROR_ENCRYPTION_FAILED: DWORD = 0x00001770;
3275///The specified file could not be decrypted.
3276pub const ERROR_DECRYPTION_FAILED: DWORD = 0x00001771;
3277///The specified file is encrypted and the user does not have the ability to decrypt it.
3278pub const ERROR_FILE_ENCRYPTED: DWORD = 0x00001772;
3279///There is no valid encryption recovery policy configured for this system.
3280pub const ERROR_NO_RECOVERY_POLICY: DWORD = 0x00001773;
3281///The required encryption driver is not loaded for this system.
3282pub const ERROR_NO_EFS: DWORD = 0x00001774;
3283///The file was encrypted with a different encryption driver than is currently loaded.
3284pub const ERROR_WRONG_EFS: DWORD = 0x00001775;
3285///There are no Encrypting File System (EFS) keys defined for the user.
3286pub const ERROR_NO_USER_KEYS: DWORD = 0x00001776;
3287///The specified file is not encrypted.
3288pub const ERROR_FILE_NOT_ENCRYPTED: DWORD = 0x00001777;
3289///The specified file is not in the defined EFS export format.
3290pub const ERROR_NOT_EXPORT_FORMAT: DWORD = 0x00001778;
3291///The specified file is read-only.
3292pub const ERROR_FILE_READ_ONLY: DWORD = 0x00001779;
3293///The directory has been disabled for encryption.
3294pub const ERROR_DIR_EFS_DISALLOWED: DWORD = 0x0000177A;
3295///The server is not trusted for remote encryption operation.
3296pub const ERROR_EFS_SERVER_NOT_TRUSTED: DWORD = 0x0000177B;
3297///Recovery policy configured for this system contains invalid recovery certificate.
3298pub const ERROR_BAD_RECOVERY_POLICY: DWORD = 0x0000177C;
3299///The encryption algorithm used on the source file needs a bigger key buffer than the one on the destination file.
3300pub const ERROR_EFS_ALG_BLOB_TOO_BIG: DWORD = 0x0000177D;
3301///The disk partition does not support file encryption.
3302pub const ERROR_VOLUME_NOT_SUPPORT_EFS: DWORD = 0x0000177E;
3303///This machine is disabled for file encryption.
3304pub const ERROR_EFS_DISABLED: DWORD = 0x0000177F;
3305///A newer system is required to decrypt this encrypted file.
3306pub const ERROR_EFS_VERSION_NOT_SUPPORT: DWORD = 0x00001780;
3307///The remote server sent an invalid response for a file being opened with client-side encryption.
3308pub const ERROR_CS_ENCRYPTION_INVALID_SERVER_RESPONSE: DWORD = 0x00001781;
3309///Client-side encryption is not supported by the remote server even though it claims to support it.
3310pub const ERROR_CS_ENCRYPTION_UNSUPPORTED_SERVER: DWORD = 0x00001782;
3311///File is encrypted and should be opened in client-side encryption mode.
3312pub const ERROR_CS_ENCRYPTION_EXISTING_ENCRYPTED_FILE: DWORD = 0x00001783;
3313///A new encrypted file is being created and a $EFS needs to be provided.
3314pub const ERROR_CS_ENCRYPTION_NEW_ENCRYPTED_FILE: DWORD = 0x00001784;
3315///The SMB client requested a client-side extension (CSE) file system control (FSCTL) on a non-CSE file.
3316pub const ERROR_CS_ENCRYPTION_FILE_NOT_CSE: DWORD = 0x00001785;
3317///The list of servers for this workgroup is not currently available
3318pub const ERROR_NO_BROWSER_SERVERS_FOUND: DWORD = 0x000017E6;
3319///The Task Scheduler service must be configured to run in the System account to function properly. Individual tasks can be configured to run in other accounts.
3320pub const SCHED_E_SERVICE_NOT_LOCALSYSTEM: DWORD = 0x00001838;
3321///The log service encountered an invalid log sector.
3322pub const ERROR_LOG_SECTOR_INVALID: DWORD = 0x000019C8;
3323///The log service encountered a log sector with invalid block parity.
3324pub const ERROR_LOG_SECTOR_PARITY_INVALID: DWORD = 0x000019C9;
3325///The log service encountered a remapped log sector.
3326pub const ERROR_LOG_SECTOR_REMAPPED: DWORD = 0x000019CA;
3327///The log service encountered a partial or incomplete log block.
3328pub const ERROR_LOG_BLOCK_INCOMPLETE: DWORD = 0x000019CB;
3329///The log service encountered an attempt to access data outside the active log range.
3330pub const ERROR_LOG_INVALID_RANGE: DWORD = 0x000019CC;
3331///The log service user marshaling buffers are exhausted.
3332pub const ERROR_LOG_BLOCKS_EXHAUSTED: DWORD = 0x000019CD;
3333///The log service encountered an attempt to read from a marshaling area with an invalid read context.
3334pub const ERROR_LOG_READ_CONTEXT_INVALID: DWORD = 0x000019CE;
3335///The log service encountered an invalid log restart area.
3336pub const ERROR_LOG_RESTART_INVALID: DWORD = 0x000019CF;
3337///The log service encountered an invalid log block version.
3338pub const ERROR_LOG_BLOCK_VERSION: DWORD = 0x000019D0;
3339///The log service encountered an invalid log block.
3340pub const ERROR_LOG_BLOCK_INVALID: DWORD = 0x000019D1;
3341///The log service encountered an attempt to read the log with an invalid read mode.
3342pub const ERROR_LOG_READ_MODE_INVALID: DWORD = 0x000019D2;
3343///The log service encountered a log stream with no restart area.
3344pub const ERROR_LOG_NO_RESTART: DWORD = 0x000019D3;
3345///The log service encountered a corrupted metadata file.
3346pub const ERROR_LOG_METADATA_CORRUPT: DWORD = 0x000019D4;
3347///The log service encountered a metadata file that could not be created by the log file system.
3348pub const ERROR_LOG_METADATA_INVALID: DWORD = 0x000019D5;
3349///The log service encountered a metadata file with inconsistent data.
3350pub const ERROR_LOG_METADATA_INCONSISTENT: DWORD = 0x000019D6;
3351///The log service encountered an attempt to erroneous allocate or dispose reservation space.
3352pub const ERROR_LOG_RESERVATION_INVALID: DWORD = 0x000019D7;
3353///The log service cannot delete a log file or file system container.
3354pub const ERROR_LOG_CANT_DELETE: DWORD = 0x000019D8;
3355///The log service has reached the maximum allowable containers allocated to a log file.
3356pub const ERROR_LOG_CONTAINER_LIMIT_EXCEEDED: DWORD = 0x000019D9;
3357///The log service has attempted to read or write backward past the start of the log.
3358pub const ERROR_LOG_START_OF_LOG: DWORD = 0x000019DA;
3359///The log policy could not be installed because a policy of the same type is already present.
3360pub const ERROR_LOG_POLICY_ALREADY_INSTALLED: DWORD = 0x000019DB;
3361///The log policy in question was not installed at the time of the request.
3362pub const ERROR_LOG_POLICY_NOT_INSTALLED: DWORD = 0x000019DC;
3363///The installed set of policies on the log is invalid.
3364pub const ERROR_LOG_POLICY_INVALID: DWORD = 0x000019DD;
3365///A policy on the log in question prevented the operation from completing.
3366pub const ERROR_LOG_POLICY_CONFLICT: DWORD = 0x000019DE;
3367///Log space cannot be reclaimed because the log is pinned by the archive tail.
3368pub const ERROR_LOG_PINNED_ARCHIVE_TAIL: DWORD = 0x000019DF;
3369///The log record is not a record in the log file.
3370pub const ERROR_LOG_RECORD_NONEXISTENT: DWORD = 0x000019E0;
3371///The number of reserved log records or the adjustment of the number of reserved log records is invalid.
3372pub const ERROR_LOG_RECORDS_RESERVED_INVALID: DWORD = 0x000019E1;
3373///The reserved log space or the adjustment of the log space is invalid.
3374pub const ERROR_LOG_SPACE_RESERVED_INVALID: DWORD = 0x000019E2;
3375///A new or existing archive tail or base of the active log is invalid.
3376pub const ERROR_LOG_TAIL_INVALID: DWORD = 0x000019E3;
3377///The log space is exhausted.
3378pub const ERROR_LOG_FULL: DWORD = 0x000019E4;
3379///The log could not be set to the requested size.
3380pub const ERROR_COULD_NOT_RESIZE_LOG: DWORD = 0x000019E5;
3381///The log is multiplexed; no direct writes to the physical log are allowed.
3382pub const ERROR_LOG_MULTIPLEXED: DWORD = 0x000019E6;
3383///The operation failed because the log is a dedicated log.
3384pub const ERROR_LOG_DEDICATED: DWORD = 0x000019E7;
3385///The operation requires an archive context.
3386pub const ERROR_LOG_ARCHIVE_NOT_IN_PROGRESS: DWORD = 0x000019E8;
3387///Log archival is in progress.
3388pub const ERROR_LOG_ARCHIVE_IN_PROGRESS: DWORD = 0x000019E9;
3389///The operation requires a non-ephemeral log, but the log is ephemeral.
3390pub const ERROR_LOG_EPHEMERAL: DWORD = 0x000019EA;
3391///The log must have at least two containers before it can be read from or written to.
3392pub const ERROR_LOG_NOT_ENOUGH_CONTAINERS: DWORD = 0x000019EB;
3393///A log client has already registered on the stream.
3394pub const ERROR_LOG_CLIENT_ALREADY_REGISTERED: DWORD = 0x000019EC;
3395///A log client has not been registered on the stream.
3396pub const ERROR_LOG_CLIENT_NOT_REGISTERED: DWORD = 0x000019ED;
3397///A request has already been made to handle the log full condition.
3398pub const ERROR_LOG_FULL_HANDLER_IN_PROGRESS: DWORD = 0x000019EE;
3399///The log service encountered an error when attempting to read from a log container.
3400pub const ERROR_LOG_CONTAINER_READ_FAILED: DWORD = 0x000019EF;
3401///The log service encountered an error when attempting to write to a log container.
3402pub const ERROR_LOG_CONTAINER_WRITE_FAILED: DWORD = 0x000019F0;
3403///The log service encountered an error when attempting to open a log container.
3404pub const ERROR_LOG_CONTAINER_OPEN_FAILED: DWORD = 0x000019F1;
3405///The log service encountered an invalid container state when attempting a requested action.
3406pub const ERROR_LOG_CONTAINER_STATE_INVALID: DWORD = 0x000019F2;
3407///The log service is not in the correct state to perform a requested action.
3408pub const ERROR_LOG_STATE_INVALID: DWORD = 0x000019F3;
3409///The log space cannot be reclaimed because the log is pinned.
3410pub const ERROR_LOG_PINNED: DWORD = 0x000019F4;
3411///The log metadata flush failed.
3412pub const ERROR_LOG_METADATA_FLUSH_FAILED: DWORD = 0x000019F5;
3413///Security on the log and its containers is inconsistent.
3414pub const ERROR_LOG_INCONSISTENT_SECURITY: DWORD = 0x000019F6;
3415///Records were appended to the log or reservation changes were made, but the log could not be flushed.
3416pub const ERROR_LOG_APPENDED_FLUSH_FAILED: DWORD = 0x000019F7;
3417///The log is pinned due to reservation consuming most of the log space. Free some reserved records to make space available.
3418pub const ERROR_LOG_PINNED_RESERVATION: DWORD = 0x000019F8;
3419///The transaction handle associated with this operation is not valid.
3420pub const ERROR_INVALID_TRANSACTION: DWORD = 0x00001A2C;
3421///The requested operation was made in the context of a transaction that is no longer active.
3422pub const ERROR_TRANSACTION_NOT_ACTIVE: DWORD = 0x00001A2D;
3423///The requested operation is not valid on the transaction object in its current state.
3424pub const ERROR_TRANSACTION_REQUEST_NOT_VALID: DWORD = 0x00001A2E;
3425///The caller has called a response API, but the response is not expected because the transaction manager did not issue the corresponding request to the caller.
3426pub const ERROR_TRANSACTION_NOT_REQUESTED: DWORD = 0x00001A2F;
3427///It is too late to perform the requested operation because the transaction has already been aborted.
3428pub const ERROR_TRANSACTION_ALREADY_ABORTED: DWORD = 0x00001A30;
3429///It is too late to perform the requested operation because the transaction has already been committed.
3430pub const ERROR_TRANSACTION_ALREADY_COMMITTED: DWORD = 0x00001A31;
3431///The transaction manager was unable to be successfully initialized. Transacted operations are not supported.
3432pub const ERROR_TM_INITIALIZATION_FAILED: DWORD = 0x00001A32;
3433///The specified resource manager made no changes or updates to the resource under this transaction.
3434pub const ERROR_RESOURCEMANAGER_READ_ONLY: DWORD = 0x00001A33;
3435///The resource manager has attempted to prepare a transaction that it has not successfully joined.
3436pub const ERROR_TRANSACTION_NOT_JOINED: DWORD = 0x00001A34;
3437///The transaction object already has a superior enlistment, and the caller attempted an operation that would have created a new superior. Only a single superior enlistment is allowed.
3438pub const ERROR_TRANSACTION_SUPERIOR_EXISTS: DWORD = 0x00001A35;
3439///The resource manager tried to register a protocol that already exists.
3440pub const ERROR_CRM_PROTOCOL_ALREADY_EXISTS: DWORD = 0x00001A36;
3441///The attempt to propagate the transaction failed.
3442pub const ERROR_TRANSACTION_PROPAGATION_FAILED: DWORD = 0x00001A37;
3443///The requested propagation protocol was not registered as a CRM.
3444pub const ERROR_CRM_PROTOCOL_NOT_FOUND: DWORD = 0x00001A38;
3445///The buffer passed in to PushTransaction or PullTransaction is not in a valid format.
3446pub const ERROR_TRANSACTION_INVALID_MARSHALL_BUFFER: DWORD = 0x00001A39;
3447///The current transaction context associated with the thread is not a valid handle to a transaction object.
3448pub const ERROR_CURRENT_TRANSACTION_NOT_VALID: DWORD = 0x00001A3A;
3449///The specified transaction object could not be opened because it was not found.
3450pub const ERROR_TRANSACTION_NOT_FOUND: DWORD = 0x00001A3B;
3451///The specified resource manager object could not be opened because it was not found.
3452pub const ERROR_RESOURCEMANAGER_NOT_FOUND: DWORD = 0x00001A3C;
3453///The specified enlistment object could not be opened because it was not found.
3454pub const ERROR_ENLISTMENT_NOT_FOUND: DWORD = 0x00001A3D;
3455///The specified transaction manager object could not be opened because it was not found.
3456pub const ERROR_TRANSACTIONMANAGER_NOT_FOUND: DWORD = 0x00001A3E;
3457///The specified resource manager was unable to create an enlistment because its associated transaction manager is not online.
3458pub const ERROR_TRANSACTIONMANAGER_NOT_ONLINE: DWORD = 0x00001A3F;
3459///The specified transaction manager was unable to create the objects contained in its log file in the ObjectB namespace. Therefore, the transaction manager was unable to recover.
3460pub const ERROR_TRANSACTIONMANAGER_RECOVERY_NAME_COLLISION: DWORD = 0x00001A40;
3461///The function attempted to use a name that is reserved for use by another transaction.
3462pub const ERROR_TRANSACTIONAL_CONFLICT: DWORD = 0x00001A90;
3463///Transaction support within the specified file system resource manager is not started or was shut down due to an error.
3464pub const ERROR_RM_NOT_ACTIVE: DWORD = 0x00001A91;
3465///The metadata of the resource manager has been corrupted. The resource manager will not function.
3466pub const ERROR_RM_METADATA_CORRUPT: DWORD = 0x00001A92;
3467///The specified directory does not contain a resource manager.
3468pub const ERROR_DIRECTORY_NOT_RM: DWORD = 0x00001A93;
3469///The remote server or share does not support transacted file operations.
3470pub const ERROR_TRANSACTIONS_UNSUPPORTED_REMOTE: DWORD = 0x00001A95;
3471///The requested log size is invalid.
3472pub const ERROR_LOG_RESIZE_INVALID_SIZE: DWORD = 0x00001A96;
3473///The object (file, stream, link) corresponding to the handle has been deleted by a transaction savepoint rollback.
3474pub const ERROR_OBJECT_NO_LONGER_EXISTS: DWORD = 0x00001A97;
3475///The specified file miniversion was not found for this transacted file open.
3476pub const ERROR_STREAM_MINIVERSION_NOT_FOUND: DWORD = 0x00001A98;
3477///The specified file miniversion was found but has been invalidated. The most likely cause is a transaction savepoint rollback.
3478pub const ERROR_STREAM_MINIVERSION_NOT_VALID: DWORD = 0x00001A99;
3479///A miniversion can only be opened in the context of the transaction that created it.
3480pub const ERROR_MINIVERSION_INACCESSIBLE_FROM_SPECIFIED_TRANSACTION: DWORD = 0x00001A9A;
3481///It is not possible to open a miniversion with modify access.
3482pub const ERROR_CANT_OPEN_MINIVERSION_WITH_MODIFY_INTENT: DWORD = 0x00001A9B;
3483///It is not possible to create any more miniversions for this stream.
3484pub const ERROR_CANT_CREATE_MORE_STREAM_MINIVERSIONS: DWORD = 0x00001A9C;
3485///The remote server sent mismatching version numbers or FID for a file opened with transactions.
3486pub const ERROR_REMOTE_FILE_VERSION_MISMATCH: DWORD = 0x00001A9E;
3487///The handle has been invalidated by a transaction. The most likely cause is the presence of memory mapping on a file, or an open handle when the transaction ended or rolled back to savepoint.
3488pub const ERROR_HANDLE_NO_LONGER_VALID: DWORD = 0x00001A9F;
3489///There is no transaction metadata on the file.
3490pub const ERROR_NO_TXF_METADATA: DWORD = 0x00001AA0;
3491///The log data is corrupt.
3492pub const ERROR_LOG_CORRUPTION_DETECTED: DWORD = 0x00001AA1;
3493///The file cannot be recovered because a handle is still open on it.
3494pub const ERROR_CANT_RECOVER_WITH_HANDLE_OPEN: DWORD = 0x00001AA2;
3495///The transaction outcome is unavailable because the resource manager responsible for it is disconnected.
3496pub const ERROR_RM_DISCONNECTED: DWORD = 0x00001AA3;
3497///The request was rejected because the enlistment in question is not a superior enlistment.
3498pub const ERROR_ENLISTMENT_NOT_SUPERIOR: DWORD = 0x00001AA4;
3499///The transactional resource manager is already consistent. Recovery is not needed.
3500pub const ERROR_RECOVERY_NOT_NEEDED: DWORD = 0x00001AA5;
3501///The transactional resource manager has already been started.
3502pub const ERROR_RM_ALREADY_STARTED: DWORD = 0x00001AA6;
3503///The file cannot be opened in a transaction because its identity depends on the outcome of an unresolved transaction.
3504pub const ERROR_FILE_IDENTITY_NOT_PERSISTENT: DWORD = 0x00001AA7;
3505///The operation cannot be performed because another transaction is depending on the fact that this property will not change.
3506pub const ERROR_CANT_BREAK_TRANSACTIONAL_DEPENDENCY: DWORD = 0x00001AA8;
3507///The operation would involve a single file with two transactional resource managers and is therefore not allowed.
3508pub const ERROR_CANT_CROSS_RM_BOUNDARY: DWORD = 0x00001AA9;
3509///The $Txf directory must be empty for this operation to succeed.
3510pub const ERROR_TXF_DIR_NOT_EMPTY: DWORD = 0x00001AAA;
3511///The operation would leave a transactional resource manager in an inconsistent state and is, therefore, not allowed.
3512pub const ERROR_INDOUBT_TRANSACTIONS_EXIST: DWORD = 0x00001AAB;
3513///The operation could not be completed because the transaction manager does not have a log.
3514pub const ERROR_TM_VOLATILE: DWORD = 0x00001AAC;
3515///A rollback could not be scheduled because a previously scheduled rollback has already been executed or is queued for execution.
3516pub const ERROR_ROLLBACK_TIMER_EXPIRED: DWORD = 0x00001AAD;
3517///The transactional metadata attribute on the file or directory is corrupt and unreadable.
3518pub const ERROR_TXF_ATTRIBUTE_CORRUPT: DWORD = 0x00001AAE;
3519///The encryption operation could not be completed because a transaction is active.
3520pub const ERROR_EFS_NOT_ALLOWED_IN_TRANSACTION: DWORD = 0x00001AAF;
3521///This object is not allowed to be opened in a transaction.
3522pub const ERROR_TRANSACTIONAL_OPEN_NOT_ALLOWED: DWORD = 0x00001AB0;
3523///An attempt to create space in the transactional resource manager's log failed. The failure status has been recorded in the event log.
3524pub const ERROR_LOG_GROWTH_FAILED: DWORD = 0x00001AB1;
3525///Memory mapping (creating a mapped section) to a remote file under a transaction is not supported.
3526pub const ERROR_TRANSACTED_MAPPING_UNSUPPORTED_REMOTE: DWORD = 0x00001AB2;
3527///Transaction metadata is already present on this file and cannot be superseded.
3528pub const ERROR_TXF_METADATA_ALREADY_PRESENT: DWORD = 0x00001AB3;
3529///A transaction scope could not be entered because the scope handler has not been initialized.
3530pub const ERROR_TRANSACTION_SCOPE_CALLBACKS_NOT_SET: DWORD = 0x00001AB4;
3531///Promotion was required to allow the resource manager to enlist, but the transaction was set to disallow it.
3532pub const ERROR_TRANSACTION_REQUIRED_PROMOTION: DWORD = 0x00001AB5;
3533///This file is open for modification in an unresolved transaction and can be opened for execution only by a transacted reader.
3534pub const ERROR_CANNOT_EXECUTE_FILE_IN_TRANSACTION: DWORD = 0x00001AB6;
3535///The request to thaw frozen transactions was ignored because transactions were not previously frozen.
3536pub const ERROR_TRANSACTIONS_NOT_FROZEN: DWORD = 0x00001AB7;
3537///Transactions cannot be frozen because a freeze is already in progress.
3538pub const ERROR_TRANSACTION_FREEZE_IN_PROGRESS: DWORD = 0x00001AB8;
3539///The target volume is not a snapshot volume. This operation is only valid on a volume mounted as a snapshot.
3540pub const ERROR_NOT_SNAPSHOT_VOLUME: DWORD = 0x00001AB9;
3541///The savepoint operation failed because files are open on the transaction. This is not permitted.
3542pub const ERROR_NO_SAVEPOINT_WITH_OPEN_FILES: DWORD = 0x00001ABA;
3543///Windows has discovered corruption in a file, and that file has since been repaired. Data loss might have occurred.
3544pub const ERROR_DATA_LOST_REPAIR: DWORD = 0x00001ABB;
3545///The sparse operation could not be completed because a transaction is active on the file.
3546pub const ERROR_SPARSE_NOT_ALLOWED_IN_TRANSACTION: DWORD = 0x00001ABC;
3547///The call to create a transaction manager object failed because the Tm Identity stored in the logfile does not match the Tm Identity that was passed in as an argument.
3548pub const ERROR_TM_IDENTITY_MISMATCH: DWORD = 0x00001ABD;
3549///I/O was attempted on a section object that has been floated as a result of a transaction ending. There is no valid data.
3550pub const ERROR_FLOATED_SECTION: DWORD = 0x00001ABE;
3551///The transactional resource manager cannot currently accept transacted work due to a transient condition, such as low resources.
3552pub const ERROR_CANNOT_ACCEPT_TRANSACTED_WORK: DWORD = 0x00001ABF;
3553///The transactional resource manager had too many transactions outstanding that could not be aborted. The transactional resource manager has been shut down.
3554pub const ERROR_CANNOT_ABORT_TRANSACTIONS: DWORD = 0x00001AC0;
3555///The specified session name is invalid.
3556pub const ERROR_CTX_WINSTATION_NAME_INVALID: DWORD = 0x00001B59;
3557///The specified protocol driver is invalid.
3558pub const ERROR_CTX_INVALID_PD: DWORD = 0x00001B5A;
3559///The specified protocol driver was not found in the system path.
3560pub const ERROR_CTX_PD_NOT_FOUND: DWORD = 0x00001B5B;
3561///The specified terminal connection driver was not found in the system path.
3562pub const ERROR_CTX_WD_NOT_FOUND: DWORD = 0x00001B5C;
3563///A registry key for event logging could not be created for this session.
3564pub const ERROR_CTX_CANNOT_MAKE_EVENTLOG_ENTRY: DWORD = 0x00001B5D;
3565///A service with the same name already exists on the system.
3566pub const ERROR_CTX_SERVICE_NAME_COLLISION: DWORD = 0x00001B5E;
3567///A close operation is pending on the session.
3568pub const ERROR_CTX_CLOSE_PENDING: DWORD = 0x00001B5F;
3569///There are no free output buffers available.
3570pub const ERROR_CTX_NO_OUTBUF: DWORD = 0x00001B60;
3571///The MODEM.INF file was not found.
3572pub const ERROR_CTX_MODEM_INF_NOT_FOUND: DWORD = 0x00001B61;
3573///The modem name was not found in the MODEM.INF file.
3574pub const ERROR_CTX_INVALID_MODEMNAME: DWORD = 0x00001B62;
3575///The modem did not accept the command sent to it. Verify that the configured modem name matches the attached modem.
3576pub const ERROR_CTX_MODEM_RESPONSE_ERROR: DWORD = 0x00001B63;
3577///The modem did not respond to the command sent to it. Verify that the modem is properly cabled and turned on.
3578pub const ERROR_CTX_MODEM_RESPONSE_TIMEOUT: DWORD = 0x00001B64;
3579///Carrier detect has failed or carrier has been dropped due to disconnect.
3580pub const ERROR_CTX_MODEM_RESPONSE_NO_CARRIER: DWORD = 0x00001B65;
3581///Dial tone not detected within the required time. Verify that the phone cable is properly attached and functional.
3582pub const ERROR_CTX_MODEM_RESPONSE_NO_DIALTONE: DWORD = 0x00001B66;
3583///Busy signal detected at remote site on callback.
3584pub const ERROR_CTX_MODEM_RESPONSE_BUSY: DWORD = 0x00001B67;
3585///Voice detected at remote site on callback.
3586pub const ERROR_CTX_MODEM_RESPONSE_VOICE: DWORD = 0x00001B68;
3587///Transport driver error.
3588pub const ERROR_CTX_TD_ERROR: DWORD = 0x00001B69;
3589///The specified session cannot be found.
3590pub const ERROR_CTX_WINSTATION_NOT_FOUND: DWORD = 0x00001B6E;
3591///The specified session name is already in use.
3592pub const ERROR_CTX_WINSTATION_ALREADY_EXISTS: DWORD = 0x00001B6F;
3593///The requested operation cannot be completed because the terminal connection is currently busy processing a connect, disconnect, reset, or delete operation.
3594pub const ERROR_CTX_WINSTATION_BUSY: DWORD = 0x00001B70;
3595///An attempt has been made to connect to a session whose video mode is not supported by the current client.
3596pub const ERROR_CTX_BAD_VIDEO_MODE: DWORD = 0x00001B71;
3597///The application attempted to enable DOS graphics mode. DOS graphics mode is not supported.
3598pub const ERROR_CTX_GRAPHICS_INVALID: DWORD = 0x00001B7B;
3599///Your interactive logon privilege has been disabled. Contact your administrator.
3600pub const ERROR_CTX_LOGON_DISABLED: DWORD = 0x00001B7D;
3601///The requested operation can be performed only on the system console. This is most often the result of a driver or system DLL requiring direct console access.
3602pub const ERROR_CTX_NOT_CONSOLE: DWORD = 0x00001B7E;
3603///The client failed to respond to the server connect message.
3604pub const ERROR_CTX_CLIENT_QUERY_TIMEOUT: DWORD = 0x00001B80;
3605///Disconnecting the console session is not supported.
3606pub const ERROR_CTX_CONSOLE_DISCONNECT: DWORD = 0x00001B81;
3607///Reconnecting a disconnected session to the console is not supported.
3608pub const ERROR_CTX_CONSOLE_CONNECT: DWORD = 0x00001B82;
3609///The request to control another session remotely was denied.
3610pub const ERROR_CTX_SHADOW_DENIED: DWORD = 0x00001B84;
3611///The requested session access is denied.
3612pub const ERROR_CTX_WINSTATION_ACCESS_DENIED: DWORD = 0x00001B85;
3613///The specified terminal connection driver is invalid.
3614pub const ERROR_CTX_INVALID_WD: DWORD = 0x00001B89;
3615///The requested session cannot be controlled remotely. This might be because the session is disconnected or does not currently have a user logged on.
3616pub const ERROR_CTX_SHADOW_INVALID: DWORD = 0x00001B8A;
3617///The requested session is not configured to allow remote control.
3618pub const ERROR_CTX_SHADOW_DISABLED: DWORD = 0x00001B8B;
3619///Your request to connect to this terminal server has been rejected. Your terminal server client license number is currently being used by another user. Call your system administrator to obtain a unique license number.
3620pub const ERROR_CTX_CLIENT_LICENSE_IN_USE: DWORD = 0x00001B8C;
3621///Your request to connect to this terminal server has been rejected. Your terminal server client license number has not been entered for this copy of the terminal server client. Contact your system administrator.
3622pub const ERROR_CTX_CLIENT_LICENSE_NOT_SET: DWORD = 0x00001B8D;
3623///The number of connections to this computer is limited and all connections are in use right now. Try connecting later or contact your system administrator.
3624pub const ERROR_CTX_LICENSE_NOT_AVAILABLE: DWORD = 0x00001B8E;
3625///The client you are using is not licensed to use this system. Your logon request is denied.
3626pub const ERROR_CTX_LICENSE_CLIENT_INVALID: DWORD = 0x00001B8F;
3627///The system license has expired. Your logon request is denied.
3628pub const ERROR_CTX_LICENSE_EXPIRED: DWORD = 0x00001B90;
3629///Remote control could not be terminated because the specified session is not currently being remotely controlled.
3630pub const ERROR_CTX_SHADOW_NOT_RUNNING: DWORD = 0x00001B91;
3631///The remote control of the console was terminated because the display mode was changed. Changing the display mode in a remote control session is not supported.
3632pub const ERROR_CTX_SHADOW_ENDED_BY_MODE_CHANGE: DWORD = 0x00001B92;
3633///Activation has already been reset the maximum number of times for this installation. Your activation timer will not be cleared.
3634pub const ERROR_ACTIVATION_COUNT_EXCEEDED: DWORD = 0x00001B93;
3635///Remote logons are currently disabled.
3636pub const ERROR_CTX_WINSTATIONS_DISABLED: DWORD = 0x00001B94;
3637///You do not have the proper encryption level to access this session.
3638pub const ERROR_CTX_ENCRYPTION_LEVEL_REQUIRED: DWORD = 0x00001B95;
3639///The user %s\\%s is currently logged on to this computer. Only the current user or an administrator can log on to this computer.
3640pub const ERROR_CTX_SESSION_IN_USE: DWORD = 0x00001B96;
3641///The user %s\\%s is already logged on to the console of this computer. You do not have permission to log in at this time. To resolve this issue, contact %s\\%s and have them log off.
3642pub const ERROR_CTX_NO_FORCE_LOGOFF: DWORD = 0x00001B97;
3643///Unable to log you on because of an account restriction.
3644pub const ERROR_CTX_ACCOUNT_RESTRICTION: DWORD = 0x00001B98;
3645///The RDP component %2 detected an error in the protocol stream and has disconnected the client.
3646pub const ERROR_RDP_PROTOCOL_ERROR: DWORD = 0x00001B99;
3647///The Client Drive Mapping Service has connected on terminal connection.
3648pub const ERROR_CTX_CDM_CONNECT: DWORD = 0x00001B9A;
3649///The Client Drive Mapping Service has disconnected on terminal connection.
3650pub const ERROR_CTX_CDM_DISCONNECT: DWORD = 0x00001B9B;
3651///The terminal server security layer detected an error in the protocol stream and has disconnected the client.
3652pub const ERROR_CTX_SECURITY_LAYER_ERROR: DWORD = 0x00001B9C;
3653///The target session is incompatible with the current session.
3654pub const ERROR_TS_INCOMPATIBLE_SESSIONS: DWORD = 0x00001B9D;
3655///The file replication service API was called incorrectly.
3656pub const FRS_ERR_INVALID_API_SEQUENCE: DWORD = 0x00001F41;
3657///The file replication service cannot be started.
3658pub const FRS_ERR_STARTING_SERVICE: DWORD = 0x00001F42;
3659///The file replication service cannot be stopped.
3660pub const FRS_ERR_STOPPING_SERVICE: DWORD = 0x00001F43;
3661///The file replication service API terminated the request. The event log might contain more information.
3662pub const FRS_ERR_INTERNAL_API: DWORD = 0x00001F44;
3663///The file replication service terminated the request. The event log might contain more information.
3664pub const FRS_ERR_INTERNAL: DWORD = 0x00001F45;
3665///The file replication service cannot be contacted. The event log might contain more information.
3666pub const FRS_ERR_SERVICE_COMM: DWORD = 0x00001F46;
3667///The file replication service cannot satisfy the request because the user has insufficient privileges. The event log might contain more information.
3668pub const FRS_ERR_INSUFFICIENT_PRIV: DWORD = 0x00001F47;
3669///The file replication service cannot satisfy the request because authenticated RPC is not available. The event log might contain more information.
3670pub const FRS_ERR_AUTHENTICATION: DWORD = 0x00001F48;
3671///The file replication service cannot satisfy the request because the user has insufficient privileges on the domain controller. The event log might contain more information.
3672pub const FRS_ERR_PARENT_INSUFFICIENT_PRIV: DWORD = 0x00001F49;
3673///The file replication service cannot satisfy the request because authenticated RPC is not available on the domain controller. The event log might contain more information.
3674pub const FRS_ERR_PARENT_AUTHENTICATION: DWORD = 0x00001F4A;
3675///The file replication service cannot communicate with the file replication service on the domain controller. The event log might contain more information.
3676pub const FRS_ERR_CHILD_TO_PARENT_COMM: DWORD = 0x00001F4B;
3677///The file replication service on the domain controller cannot communicate with the file replication service on this computer. The event log might contain more information.
3678pub const FRS_ERR_PARENT_TO_CHILD_COMM: DWORD = 0x00001F4C;
3679///The file replication service cannot populate the system volume because of an internal error. The event log might contain more information.
3680pub const FRS_ERR_SYSVOL_POPULATE: DWORD = 0x00001F4D;
3681///The file replication service cannot populate the system volume because of an internal time-out. The event log might contain more information.
3682pub const FRS_ERR_SYSVOL_POPULATE_TIMEOUT: DWORD = 0x00001F4E;
3683///The file replication service cannot process the request. The system volume is busy with a previous request.
3684pub const FRS_ERR_SYSVOL_IS_BUSY: DWORD = 0x00001F4F;
3685///The file replication service cannot stop replicating the system volume because of an internal error. The event log might contain more information.
3686pub const FRS_ERR_SYSVOL_DEMOTE: DWORD = 0x00001F50;
3687///The file replication service detected an invalid parameter.
3688pub const FRS_ERR_INVALID_SERVICE_PARAMETER: DWORD = 0x00001F51;
3689///An error occurred while installing the directory service. For more information, see the event log.
3690pub const ERROR_DS_NOT_INSTALLED: DWORD = 0x00002008;
3691///The directory service evaluated group memberships locally.
3692pub const ERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY: DWORD = 0x00002009;
3693///The specified directory service attribute or value does not exist.
3694pub const ERROR_DS_NO_ATTRIBUTE_OR_VALUE: DWORD = 0x0000200A;
3695///The attribute syntax specified to the directory service is invalid.
3696pub const ERROR_DS_INVALID_ATTRIBUTE_SYNTAX: DWORD = 0x0000200B;
3697///The attribute type specified to the directory service is not defined.
3698pub const ERROR_DS_ATTRIBUTE_TYPE_UNDEFINED: DWORD = 0x0000200C;
3699///The specified directory service attribute or value already exists.
3700pub const ERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS: DWORD = 0x0000200D;
3701///The directory service is busy.
3702pub const ERROR_DS_BUSY: DWORD = 0x0000200E;
3703///The directory service is unavailable.
3704pub const ERROR_DS_UNAVAILABLE: DWORD = 0x0000200F;
3705///The directory service was unable to allocate a relative identifier.
3706pub const ERROR_DS_NO_RIDS_ALLOCATED: DWORD = 0x00002010;
3707///The directory service has exhausted the pool of relative identifiers.
3708pub const ERROR_DS_NO_MORE_RIDS: DWORD = 0x00002011;
3709///The requested operation could not be performed because the directory service is not the master for that type of operation.
3710pub const ERROR_DS_INCORRECT_ROLE_OWNER: DWORD = 0x00002012;
3711///The directory service was unable to initialize the subsystem that allocates relative identifiers.
3712pub const ERROR_DS_RIDMGR_INIT_ERROR: DWORD = 0x00002013;
3713///The requested operation did not satisfy one or more constraints associated with the class of the object.
3714pub const ERROR_DS_OBJ_CLASS_VIOLATION: DWORD = 0x00002014;
3715///The directory service can perform the requested operation only on a leaf object.
3716pub const ERROR_DS_CANT_ON_NON_LEAF: DWORD = 0x00002015;
3717///The directory service cannot perform the requested operation on the relative distinguished name (RDN) attribute of an object.
3718pub const ERROR_DS_CANT_ON_RDN: DWORD = 0x00002016;
3719///The directory service detected an attempt to modify the object class of an object.
3720pub const ERROR_DS_CANT_MOD_OBJ_CLASS: DWORD = 0x00002017;
3721///The requested cross-domain move operation could not be performed.
3722pub const ERROR_DS_CROSS_DOM_MOVE_ERROR: DWORD = 0x00002018;
3723///Unable to contact the global catalog (GC) server.
3724pub const ERROR_DS_GC_NOT_AVAILABLE: DWORD = 0x00002019;
3725///The policy object is shared and can only be modified at the root.
3726pub const ERROR_SHARED_POLICY: DWORD = 0x0000201A;
3727///The policy object does not exist.
3728pub const ERROR_POLICY_OBJECT_NOT_FOUND: DWORD = 0x0000201B;
3729///The requested policy information is only in the directory service.
3730pub const ERROR_POLICY_ONLY_IN_DS: DWORD = 0x0000201C;
3731///A domain controller promotion is currently active.
3732pub const ERROR_PROMOTION_ACTIVE: DWORD = 0x0000201D;
3733///A domain controller promotion is not currently active.
3734pub const ERROR_NO_PROMOTION_ACTIVE: DWORD = 0x0000201E;
3735///An operations error occurred.
3736pub const ERROR_DS_OPERATIONS_ERROR: DWORD = 0x00002020;
3737///A protocol error occurred.
3738pub const ERROR_DS_PROTOCOL_ERROR: DWORD = 0x00002021;
3739///The time limit for this request was exceeded.
3740pub const ERROR_DS_TIMELIMIT_EXCEEDED: DWORD = 0x00002022;
3741///The size limit for this request was exceeded.
3742pub const ERROR_DS_SIZELIMIT_EXCEEDED: DWORD = 0x00002023;
3743///The administrative limit for this request was exceeded.
3744pub const ERROR_DS_ADMIN_LIMIT_EXCEEDED: DWORD = 0x00002024;
3745///The compare response was false.
3746pub const ERROR_DS_COMPARE_FALSE: DWORD = 0x00002025;
3747///The compare response was true.
3748pub const ERROR_DS_COMPARE_TRUE: DWORD = 0x00002026;
3749///The requested authentication method is not supported by the server.
3750pub const ERROR_DS_AUTH_METHOD_NOT_SUPPORTED: DWORD = 0x00002027;
3751///A more secure authentication method is required for this server.
3752pub const ERROR_DS_STRONG_AUTH_REQUIRED: DWORD = 0x00002028;
3753///Inappropriate authentication.
3754pub const ERROR_DS_INAPPROPRIATE_AUTH: DWORD = 0x00002029;
3755///The authentication mechanism is unknown.
3756pub const ERROR_DS_AUTH_UNKNOWN: DWORD = 0x0000202A;
3757///A referral was returned from the server.
3758pub const ERROR_DS_REFERRAL: DWORD = 0x0000202B;
3759///The server does not support the requested critical extension.
3760pub const ERROR_DS_UNAVAILABLE_CRIT_EXTENSION: DWORD = 0x0000202C;
3761///This request requires a secure connection.
3762pub const ERROR_DS_CONFIDENTIALITY_REQUIRED: DWORD = 0x0000202D;
3763///Inappropriate matching.
3764pub const ERROR_DS_INAPPROPRIATE_MATCHING: DWORD = 0x0000202E;
3765///A constraint violation occurred.
3766pub const ERROR_DS_CONSTRAINT_VIOLATION: DWORD = 0x0000202F;
3767///There is no such object on the server.
3768pub const ERROR_DS_NO_SUCH_OBJECT: DWORD = 0x00002030;
3769///There is an alias problem.
3770pub const ERROR_DS_ALIAS_PROBLEM: DWORD = 0x00002031;
3771///An invalid dn syntax has been specified.
3772pub const ERROR_DS_INVALID_DN_SYNTAX: DWORD = 0x00002032;
3773///The object is a leaf object.
3774pub const ERROR_DS_IS_LEAF: DWORD = 0x00002033;
3775///There is an alias dereferencing problem.
3776pub const ERROR_DS_ALIAS_DEREF_PROBLEM: DWORD = 0x00002034;
3777///The server is unwilling to process the request.
3778pub const ERROR_DS_UNWILLING_TO_PERFORM: DWORD = 0x00002035;
3779///A loop has been detected.
3780pub const ERROR_DS_LOOP_DETECT: DWORD = 0x00002036;
3781///There is a naming violation.
3782pub const ERROR_DS_NAMING_VIOLATION: DWORD = 0x00002037;
3783///The result set is too large.
3784pub const ERROR_DS_OBJECT_RESULTS_TOO_LARGE: DWORD = 0x00002038;
3785///The operation affects multiple DSAs.
3786pub const ERROR_DS_AFFECTS_MULTIPLE_DSAS: DWORD = 0x00002039;
3787///The server is not operational.
3788pub const ERROR_DS_SERVER_DOWN: DWORD = 0x0000203A;
3789///A local error has occurred.
3790pub const ERROR_DS_LOCAL_ERROR: DWORD = 0x0000203B;
3791///An encoding error has occurred.
3792pub const ERROR_DS_ENCODING_ERROR: DWORD = 0x0000203C;
3793///A decoding error has occurred.
3794pub const ERROR_DS_DECODING_ERROR: DWORD = 0x0000203D;
3795///The search filter cannot be recognized.
3796pub const ERROR_DS_FILTER_UNKNOWN: DWORD = 0x0000203E;
3797///One or more parameters are illegal.
3798pub const ERROR_DS_PARAM_ERROR: DWORD = 0x0000203F;
3799///The specified method is not supported.
3800pub const ERROR_DS_NOT_SUPPORTED: DWORD = 0x00002040;
3801///No results were returned.
3802pub const ERROR_DS_NO_RESULTS_RETURNED: DWORD = 0x00002041;
3803///The specified control is not supported by the server.
3804pub const ERROR_DS_CONTROL_NOT_FOUND: DWORD = 0x00002042;
3805///A referral loop was detected by the client.
3806pub const ERROR_DS_CLIENT_LOOP: DWORD = 0x00002043;
3807///The preset referral limit was exceeded.
3808pub const ERROR_DS_REFERRAL_LIMIT_EXCEEDED: DWORD = 0x00002044;
3809///The search requires a SORT control.
3810pub const ERROR_DS_SORT_CONTROL_MISSING: DWORD = 0x00002045;
3811///The search results exceed the offset range specified.
3812pub const ERROR_DS_OFFSET_RANGE_ERROR: DWORD = 0x00002046;
3813///The root object must be the head of a naming context. The root object cannot have an instantiated parent.
3814pub const ERROR_DS_ROOT_MUST_BE_NC: DWORD = 0x0000206D;
3815///The add replica operation cannot be performed. The naming context must be writable to create the replica.
3816pub const ERROR_DS_ADD_REPLICA_INHIBITED: DWORD = 0x0000206E;
3817///A reference to an attribute that is not defined in the schema occurred.
3818pub const ERROR_DS_ATT_NOT_DEF_IN_SCHEMA: DWORD = 0x0000206F;
3819///The maximum size of an object has been exceeded.
3820pub const ERROR_DS_MAX_OBJ_SIZE_EXCEEDED: DWORD = 0x00002070;
3821///An attempt was made to add an object to the directory with a name that is already in use.
3822pub const ERROR_DS_OBJ_STRING_NAME_EXISTS: DWORD = 0x00002071;
3823///An attempt was made to add an object of a class that does not have an RDN defined in the schema.
3824pub const ERROR_DS_NO_RDN_DEFINED_IN_SCHEMA: DWORD = 0x00002072;
3825///An attempt was made to add an object using an RDN that is not the RDN defined in the schema.
3826pub const ERROR_DS_RDN_DOESNT_MATCH_SCHEMA: DWORD = 0x00002073;
3827///None of the requested attributes were found on the objects.
3828pub const ERROR_DS_NO_REQUESTED_ATTS_FOUND: DWORD = 0x00002074;
3829///The user buffer is too small.
3830pub const ERROR_DS_USER_BUFFER_TO_SMALL: DWORD = 0x00002075;
3831///The attribute specified in the operation is not present on the object.
3832pub const ERROR_DS_ATT_IS_NOT_ON_OBJ: DWORD = 0x00002076;
3833///Illegal modify operation. Some aspect of the modification is not permitted.
3834pub const ERROR_DS_ILLEGAL_MOD_OPERATION: DWORD = 0x00002077;
3835///The specified object is too large.
3836pub const ERROR_DS_OBJ_TOO_LARGE: DWORD = 0x00002078;
3837///The specified instance type is not valid.
3838pub const ERROR_DS_BAD_INSTANCE_TYPE: DWORD = 0x00002079;
3839///The operation must be performed at a master DSA.
3840pub const ERROR_DS_MASTERDSA_REQUIRED: DWORD = 0x0000207A;
3841///The object class attribute must be specified.
3842pub const ERROR_DS_OBJECT_CLASS_REQUIRED: DWORD = 0x0000207B;
3843///A required attribute is missing.
3844pub const ERROR_DS_MISSING_REQUIRED_ATT: DWORD = 0x0000207C;
3845///An attempt was made to modify an object to include an attribute that is not legal for its class.
3846pub const ERROR_DS_ATT_NOT_DEF_FOR_CLASS: DWORD = 0x0000207D;
3847///The specified attribute is already present on the object.
3848pub const ERROR_DS_ATT_ALREADY_EXISTS: DWORD = 0x0000207E;
3849///The specified attribute is not present, or has no values.
3850pub const ERROR_DS_CANT_ADD_ATT_VALUES: DWORD = 0x00002080;
3851///Multiple values were specified for an attribute that can have only one value.
3852pub const ERROR_DS_SINGLE_VALUE_CONSTRAINT: DWORD = 0x00002081;
3853///A value for the attribute was not in the acceptable range of values.
3854pub const ERROR_DS_RANGE_CONSTRAINT: DWORD = 0x00002082;
3855///The specified value already exists.
3856pub const ERROR_DS_ATT_VAL_ALREADY_EXISTS: DWORD = 0x00002083;
3857///The attribute cannot be removed because it is not present on the object.
3858pub const ERROR_DS_CANT_REM_MISSING_ATT: DWORD = 0x00002084;
3859///The attribute value cannot be removed because it is not present on the object.
3860pub const ERROR_DS_CANT_REM_MISSING_ATT_VAL: DWORD = 0x00002085;
3861///The specified root object cannot be a subreference.
3862pub const ERROR_DS_ROOT_CANT_BE_SUBREF: DWORD = 0x00002086;
3863///Chaining is not permitted.
3864pub const ERROR_DS_NO_CHAINING: DWORD = 0x00002087;
3865///Chained evaluation is not permitted.
3866pub const ERROR_DS_NO_CHAINED_EVAL: DWORD = 0x00002088;
3867///The operation could not be performed because the object's parent is either uninstantiated or deleted.
3868pub const ERROR_DS_NO_PARENT_OBJECT: DWORD = 0x00002089;
3869///Having a parent that is an alias is not permitted. Aliases are leaf objects.
3870pub const ERROR_DS_PARENT_IS_AN_ALIAS: DWORD = 0x0000208A;
3871///The object and parent must be of the same type, either both masters or both replicas.
3872pub const ERROR_DS_CANT_MIX_MASTER_AND_REPS: DWORD = 0x0000208B;
3873///The operation cannot be performed because child objects exist. This operation can only be performed on a leaf object.
3874pub const ERROR_DS_CHILDREN_EXIST: DWORD = 0x0000208C;
3875///Directory object not found.
3876pub const ERROR_DS_OBJ_NOT_FOUND: DWORD = 0x0000208D;
3877///The aliased object is missing.
3878pub const ERROR_DS_ALIASED_OBJ_MISSING: DWORD = 0x0000208E;
3879///The object name has bad syntax.
3880pub const ERROR_DS_BAD_NAME_SYNTAX: DWORD = 0x0000208F;
3881///An alias is not permitted to refer to another alias.
3882pub const ERROR_DS_ALIAS_POINTS_TO_ALIAS: DWORD = 0x00002090;
3883///The alias cannot be dereferenced.
3884pub const ERROR_DS_CANT_DEREF_ALIAS: DWORD = 0x00002091;
3885///The operation is out of scope.
3886pub const ERROR_DS_OUT_OF_SCOPE: DWORD = 0x00002092;
3887///The operation cannot continue because the object is in the process of being removed.
3888pub const ERROR_DS_OBJECT_BEING_REMOVED: DWORD = 0x00002093;
3889///The DSA object cannot be deleted.
3890pub const ERROR_DS_CANT_DELETE_DSA_OBJ: DWORD = 0x00002094;
3891///A directory service error has occurred.
3892pub const ERROR_DS_GENERIC_ERROR: DWORD = 0x00002095;
3893///The operation can only be performed on an internal master DSA object.
3894pub const ERROR_DS_DSA_MUST_BE_INT_MASTER: DWORD = 0x00002096;
3895///The object must be of class DSA.
3896pub const ERROR_DS_CLASS_NOT_DSA: DWORD = 0x00002097;
3897///Insufficient access rights to perform the operation.
3898pub const ERROR_DS_INSUFF_ACCESS_RIGHTS: DWORD = 0x00002098;
3899///The object cannot be added because the parent is not on the list of possible superiors.
3900pub const ERROR_DS_ILLEGAL_SUPERIOR: DWORD = 0x00002099;
3901///Access to the attribute is not permitted because the attribute is owned by the SAM.
3902pub const ERROR_DS_ATTRIBUTE_OWNED_BY_SAM: DWORD = 0x0000209A;
3903///The name has too many parts.
3904pub const ERROR_DS_NAME_TOO_MANY_PARTS: DWORD = 0x0000209B;
3905///The name is too long.
3906pub const ERROR_DS_NAME_TOO_LONG: DWORD = 0x0000209C;
3907///The name value is too long.
3908pub const ERROR_DS_NAME_VALUE_TOO_LONG: DWORD = 0x0000209D;
3909///The directory service encountered an error parsing a name.
3910pub const ERROR_DS_NAME_UNPARSEABLE: DWORD = 0x0000209E;
3911///The directory service cannot get the attribute type for a name.
3912pub const ERROR_DS_NAME_TYPE_UNKNOWN: DWORD = 0x0000209F;
3913///The name does not identify an object; the name identifies a phantom.
3914pub const ERROR_DS_NOT_AN_OBJECT: DWORD = 0x000020A0;
3915///The security descriptor is too short.
3916pub const ERROR_DS_SEC_DESC_TOO_SHORT: DWORD = 0x000020A1;
3917///The security descriptor is invalid.
3918pub const ERROR_DS_SEC_DESC_INVALID: DWORD = 0x000020A2;
3919///Failed to create name for deleted object.
3920pub const ERROR_DS_NO_DELETED_NAME: DWORD = 0x000020A3;
3921///The parent of a new subreference must exist.
3922pub const ERROR_DS_SUBREF_MUST_HAVE_PARENT: DWORD = 0x000020A4;
3923///The object must be a naming context.
3924pub const ERROR_DS_NCNAME_MUST_BE_NC: DWORD = 0x000020A5;
3925///It is not permitted to add an attribute that is owned by the system.
3926pub const ERROR_DS_CANT_ADD_SYSTEM_ONLY: DWORD = 0x000020A6;
3927///The class of the object must be structural; you cannot instantiate an abstract class.
3928pub const ERROR_DS_CLASS_MUST_BE_CONCRETE: DWORD = 0x000020A7;
3929///The schema object could not be found.
3930pub const ERROR_DS_INVALID_DMD: DWORD = 0x000020A8;
3931///A local object with this GUID (dead or alive) already exists.
3932pub const ERROR_DS_OBJ_GUID_EXISTS: DWORD = 0x000020A9;
3933///The operation cannot be performed on a back link.
3934pub const ERROR_DS_NOT_ON_BACKLINK: DWORD = 0x000020AA;
3935///The cross-reference for the specified naming context could not be found.
3936pub const ERROR_DS_NO_CROSSREF_FOR_NC: DWORD = 0x000020AB;
3937///The operation could not be performed because the directory service is shutting down.
3938pub const ERROR_DS_SHUTTING_DOWN: DWORD = 0x000020AC;
3939///The directory service request is invalid.
3940pub const ERROR_DS_UNKNOWN_OPERATION: DWORD = 0x000020AD;
3941///The role owner attribute could not be read.
3942pub const ERROR_DS_INVALID_ROLE_OWNER: DWORD = 0x000020AE;
3943///The requested Flexible Single Master Operations (FSMO) operation failed. The current FSMO holder could not be contacted.
3944pub const ERROR_DS_COULDNT_CONTACT_FSMO: DWORD = 0x000020AF;
3945///Modification of a distinguished name across a naming context is not permitted.
3946pub const ERROR_DS_CROSS_NC_DN_RENAME: DWORD = 0x000020B0;
3947///The attribute cannot be modified because it is owned by the system.
3948pub const ERROR_DS_CANT_MOD_SYSTEM_ONLY: DWORD = 0x000020B1;
3949///Only the replicator can perform this function.
3950pub const ERROR_DS_REPLICATOR_ONLY: DWORD = 0x000020B2;
3951///The specified class is not defined.
3952pub const ERROR_DS_OBJ_CLASS_NOT_DEFINED: DWORD = 0x000020B3;
3953///The specified class is not a subclass.
3954pub const ERROR_DS_OBJ_CLASS_NOT_SUBCLASS: DWORD = 0x000020B4;
3955///The name reference is invalid.
3956pub const ERROR_DS_NAME_REFERENCE_INVALID: DWORD = 0x000020B5;
3957///A cross-reference already exists.
3958pub const ERROR_DS_CROSS_REF_EXISTS: DWORD = 0x000020B6;
3959///It is not permitted to delete a master cross-reference.
3960pub const ERROR_DS_CANT_DEL_MASTER_CROSSREF: DWORD = 0x000020B7;
3961///Subtree notifications are only supported on naming context (NC) heads.
3962pub const ERROR_DS_SUBTREE_NOTIFY_NOT_NC_HEAD: DWORD = 0x000020B8;
3963///Notification filter is too complex.
3964pub const ERROR_DS_NOTIFY_FILTER_TOO_COMPLEX: DWORD = 0x000020B9;
3965///Schema update failed: Duplicate RDN.
3966pub const ERROR_DS_DUP_RDN: DWORD = 0x000020BA;
3967///Schema update failed: Duplicate OID.
3968pub const ERROR_DS_DUP_OID: DWORD = 0x000020BB;
3969///Schema update failed: Duplicate Message Application Programming Interface (MAPI) identifier.
3970pub const ERROR_DS_DUP_MAPI_ID: DWORD = 0x000020BC;
3971///Schema update failed: Duplicate schema ID GUID.
3972pub const ERROR_DS_DUP_SCHEMA_ID_GUID: DWORD = 0x000020BD;
3973///Schema update failed: Duplicate LDAP display name.
3974pub const ERROR_DS_DUP_LDAP_DISPLAY_NAME: DWORD = 0x000020BE;
3975///Schema update failed: Range-Lower less than Range-Upper.
3976pub const ERROR_DS_SEMANTIC_ATT_TEST: DWORD = 0x000020BF;
3977///Schema update failed: Syntax mismatch.
3978pub const ERROR_DS_SYNTAX_MISMATCH: DWORD = 0x000020C0;
3979///Schema deletion failed: Attribute is used in the Must-Contain list.
3980pub const ERROR_DS_EXISTS_IN_MUST_HAVE: DWORD = 0x000020C1;
3981///Schema deletion failed: Attribute is used in the May-Contain list.
3982pub const ERROR_DS_EXISTS_IN_MAY_HAVE: DWORD = 0x000020C2;
3983///Schema update failed: Attribute in May-Contain list does not exist.
3984pub const ERROR_DS_NONEXISTENT_MAY_HAVE: DWORD = 0x000020C3;
3985///Schema update failed: Attribute in the Must-Contain list does not exist.
3986pub const ERROR_DS_NONEXISTENT_MUST_HAVE: DWORD = 0x000020C4;
3987///Schema update failed: Class in the Aux Class list does not exist or is not an auxiliary class.
3988pub const ERROR_DS_AUX_CLS_TEST_FAIL: DWORD = 0x000020C5;
3989///Schema update failed: Class in the Poss-Superiors list does not exist.
3990pub const ERROR_DS_NONEXISTENT_POSS_SUP: DWORD = 0x000020C6;
3991///Schema update failed: Class in the subclass of the list does not exist or does not satisfy hierarchy rules.
3992pub const ERROR_DS_SUB_CLS_TEST_FAIL: DWORD = 0x000020C7;
3993///Schema update failed: Rdn-Att-Id has wrong syntax.
3994pub const ERROR_DS_BAD_RDN_ATT_ID_SYNTAX: DWORD = 0x000020C8;
3995///Schema deletion failed: Class is used as an auxiliary class.
3996pub const ERROR_DS_EXISTS_IN_AUX_CLS: DWORD = 0x000020C9;
3997///Schema deletion failed: Class is used as a subclass.
3998pub const ERROR_DS_EXISTS_IN_SUB_CLS: DWORD = 0x000020CA;
3999///Schema deletion failed: Class is used as a Poss-Superior.
4000pub const ERROR_DS_EXISTS_IN_POSS_SUP: DWORD = 0x000020CB;
4001///Schema update failed in recalculating validation cache.
4002pub const ERROR_DS_RECALCSCHEMA_FAILED: DWORD = 0x000020CC;
4003///The tree deletion is not finished. The request must be made again to continue deleting the tree.
4004pub const ERROR_DS_TREE_DELETE_NOT_FINISHED: DWORD = 0x000020CD;
4005///The requested delete operation could not be performed.
4006pub const ERROR_DS_CANT_DELETE: DWORD = 0x000020CE;
4007///Cannot read the governs class identifier for the schema record.
4008pub const ERROR_DS_ATT_SCHEMA_REQ_ID: DWORD = 0x000020CF;
4009///The attribute schema has bad syntax.
4010pub const ERROR_DS_BAD_ATT_SCHEMA_SYNTAX: DWORD = 0x000020D0;
4011///The attribute could not be cached.
4012pub const ERROR_DS_CANT_CACHE_ATT: DWORD = 0x000020D1;
4013///The class could not be cached.
4014pub const ERROR_DS_CANT_CACHE_CLASS: DWORD = 0x000020D2;
4015///The attribute could not be removed from the cache.
4016pub const ERROR_DS_CANT_REMOVE_ATT_CACHE: DWORD = 0x000020D3;
4017///The class could not be removed from the cache.
4018pub const ERROR_DS_CANT_REMOVE_CLASS_CACHE: DWORD = 0x000020D4;
4019///The distinguished name attribute could not be read.
4020pub const ERROR_DS_CANT_RETRIEVE_DN: DWORD = 0x000020D5;
4021///No superior reference has been configured for the directory service. The directory service is, therefore, unable to issue referrals to objects outside this forest.
4022pub const ERROR_DS_MISSING_SUPREF: DWORD = 0x000020D6;
4023///The instance type attribute could not be retrieved.
4024pub const ERROR_DS_CANT_RETRIEVE_INSTANCE: DWORD = 0x000020D7;
4025///An internal error has occurred.
4026pub const ERROR_DS_CODE_INCONSISTENCY: DWORD = 0x000020D8;
4027///A database error has occurred.
4028pub const ERROR_DS_DATABASE_ERROR: DWORD = 0x000020D9;
4029///The governsID attribute is missing.
4030pub const ERROR_DS_GOVERNSID_MISSING: DWORD = 0x000020DA;
4031///An expected attribute is missing.
4032pub const ERROR_DS_MISSING_EXPECTED_ATT: DWORD = 0x000020DB;
4033///The specified naming context is missing a cross-reference.
4034pub const ERROR_DS_NCNAME_MISSING_CR_REF: DWORD = 0x000020DC;
4035///A security checking error has occurred.
4036pub const ERROR_DS_SECURITY_CHECKING_ERROR: DWORD = 0x000020DD;
4037///The schema is not loaded.
4038pub const ERROR_DS_SCHEMA_NOT_LOADED: DWORD = 0x000020DE;
4039///Schema allocation failed. Check if the machine is running low on memory.
4040pub const ERROR_DS_SCHEMA_ALLOC_FAILED: DWORD = 0x000020DF;
4041///Failed to obtain the required syntax for the attribute schema.
4042pub const ERROR_DS_ATT_SCHEMA_REQ_SYNTAX: DWORD = 0x000020E0;
4043///The GC verification failed. The GC is not available or does not support the operation. Some part of the directory is currently not available.
4044pub const ERROR_DS_GCVERIFY_ERROR: DWORD = 0x000020E1;
4045///The replication operation failed because of a schema mismatch between the servers involved.
4046pub const ERROR_DS_DRA_SCHEMA_MISMATCH: DWORD = 0x000020E2;
4047///The DSA object could not be found.
4048pub const ERROR_DS_CANT_FIND_DSA_OBJ: DWORD = 0x000020E3;
4049///The naming context could not be found.
4050pub const ERROR_DS_CANT_FIND_EXPECTED_NC: DWORD = 0x000020E4;
4051///The naming context could not be found in the cache.
4052pub const ERROR_DS_CANT_FIND_NC_IN_CACHE: DWORD = 0x000020E5;
4053///The child object could not be retrieved.
4054pub const ERROR_DS_CANT_RETRIEVE_CHILD: DWORD = 0x000020E6;
4055///The modification was not permitted for security reasons.
4056pub const ERROR_DS_SECURITY_ILLEGAL_MODIFY: DWORD = 0x000020E7;
4057///The operation cannot replace the hidden record.
4058pub const ERROR_DS_CANT_REPLACE_HIDDEN_REC: DWORD = 0x000020E8;
4059///The hierarchy file is invalid.
4060pub const ERROR_DS_BAD_HIERARCHY_FILE: DWORD = 0x000020E9;
4061///The attempt to build the hierarchy table failed.
4062pub const ERROR_DS_BUILD_HIERARCHY_TABLE_FAILED: DWORD = 0x000020EA;
4063///The directory configuration parameter is missing from the registry.
4064pub const ERROR_DS_CONFIG_PARAM_MISSING: DWORD = 0x000020EB;
4065///The attempt to count the address book indices failed.
4066pub const ERROR_DS_COUNTING_AB_INDICES_FAILED: DWORD = 0x000020EC;
4067///The allocation of the hierarchy table failed.
4068pub const ERROR_DS_HIERARCHY_TABLE_MALLOC_FAILED: DWORD = 0x000020ED;
4069///The directory service encountered an internal failure.
4070pub const ERROR_DS_INTERNAL_FAILURE: DWORD = 0x000020EE;
4071///The directory service encountered an unknown failure.
4072pub const ERROR_DS_UNKNOWN_ERROR: DWORD = 0x000020EF;
4073///A root object requires a class of "top".
4074pub const ERROR_DS_ROOT_REQUIRES_CLASS_TOP: DWORD = 0x000020F0;
4075///This directory server is shutting down, and cannot take ownership of new floating single-master operation roles.
4076pub const ERROR_DS_REFUSING_FSMO_ROLES: DWORD = 0x000020F1;
4077///The directory service is missing mandatory configuration information and is unable to determine the ownership of floating single-master operation roles.
4078pub const ERROR_DS_MISSING_FSMO_SETTINGS: DWORD = 0x000020F2;
4079///The directory service was unable to transfer ownership of one or more floating single-master operation roles to other servers.
4080pub const ERROR_DS_UNABLE_TO_SURRENDER_ROLES: DWORD = 0x000020F3;
4081///The replication operation failed.
4082pub const ERROR_DS_DRA_GENERIC: DWORD = 0x000020F4;
4083///An invalid parameter was specified for this replication operation.
4084pub const ERROR_DS_DRA_INVALID_PARAMETER: DWORD = 0x000020F5;
4085///The directory service is too busy to complete the replication operation at this time.
4086pub const ERROR_DS_DRA_BUSY: DWORD = 0x000020F6;
4087///The DN specified for this replication operation is invalid.
4088pub const ERROR_DS_DRA_BAD_DN: DWORD = 0x000020F7;
4089///The naming context specified for this replication operation is invalid.
4090pub const ERROR_DS_DRA_BAD_NC: DWORD = 0x000020F8;
4091///The DN specified for this replication operation already exists.
4092pub const ERROR_DS_DRA_DN_EXISTS: DWORD = 0x000020F9;
4093///The replication system encountered an internal error.
4094pub const ERROR_DS_DRA_INTERNAL_ERROR: DWORD = 0x000020FA;
4095///The replication operation encountered a database inconsistency.
4096pub const ERROR_DS_DRA_INCONSISTENT_DIT: DWORD = 0x000020FB;
4097///The server specified for this replication operation could not be contacted.
4098pub const ERROR_DS_DRA_CONNECTION_FAILED: DWORD = 0x000020FC;
4099///The replication operation encountered an object with an invalid instance type.
4100pub const ERROR_DS_DRA_BAD_INSTANCE_TYPE: DWORD = 0x000020FD;
4101///The replication operation failed to allocate memory.
4102pub const ERROR_DS_DRA_OUT_OF_MEM: DWORD = 0x000020FE;
4103///The replication operation encountered an error with the mail system.
4104pub const ERROR_DS_DRA_MAIL_PROBLEM: DWORD = 0x000020FF;
4105///The replication reference information for the target server already exists.
4106pub const ERROR_DS_DRA_REF_ALREADY_EXISTS: DWORD = 0x00002100;
4107///The replication reference information for the target server does not exist.
4108pub const ERROR_DS_DRA_REF_NOT_FOUND: DWORD = 0x00002101;
4109///The naming context cannot be removed because it is replicated to another server.
4110pub const ERROR_DS_DRA_OBJ_IS_REP_SOURCE: DWORD = 0x00002102;
4111///The replication operation encountered a database error.
4112pub const ERROR_DS_DRA_DB_ERROR: DWORD = 0x00002103;
4113///The naming context is in the process of being removed or is not replicated from the specified server.
4114pub const ERROR_DS_DRA_NO_REPLICA: DWORD = 0x00002104;
4115///Replication access was denied.
4116pub const ERROR_DS_DRA_ACCESS_DENIED: DWORD = 0x00002105;
4117///The requested operation is not supported by this version of the directory service.
4118pub const ERROR_DS_DRA_NOT_SUPPORTED: DWORD = 0x00002106;
4119///The replication RPC was canceled.
4120pub const ERROR_DS_DRA_RPC_CANCELLED: DWORD = 0x00002107;
4121///The source server is currently rejecting replication requests.
4122pub const ERROR_DS_DRA_SOURCE_DISABLED: DWORD = 0x00002108;
4123///The destination server is currently rejecting replication requests.
4124pub const ERROR_DS_DRA_SINK_DISABLED: DWORD = 0x00002109;
4125///The replication operation failed due to a collision of object names.
4126pub const ERROR_DS_DRA_NAME_COLLISION: DWORD = 0x0000210A;
4127///The replication source has been reinstalled.
4128pub const ERROR_DS_DRA_SOURCE_REINSTALLED: DWORD = 0x0000210B;
4129///The replication operation failed because a required parent object is missing.
4130pub const ERROR_DS_DRA_MISSING_PARENT: DWORD = 0x0000210C;
4131///The replication operation was preempted.
4132pub const ERROR_DS_DRA_PREEMPTED: DWORD = 0x0000210D;
4133///The replication synchronization attempt was abandoned because of a lack of updates.
4134pub const ERROR_DS_DRA_ABANDON_SYNC: DWORD = 0x0000210E;
4135///The replication operation was terminated because the system is shutting down.
4136pub const ERROR_DS_DRA_SHUTDOWN: DWORD = 0x0000210F;
4137///A synchronization attempt failed because the destination DC is currently waiting to synchronize new partial attributes from the source. This condition is normal if a recent schema change modified the partial attribute set. The destination partial attribute set is not a subset of the source partial attribute set.
4138pub const ERROR_DS_DRA_INCOMPATIBLE_PARTIAL_SET: DWORD = 0x00002110;
4139///The replication synchronization attempt failed because a master replica attempted to sync from a partial replica.
4140pub const ERROR_DS_DRA_SOURCE_IS_PARTIAL_REPLICA: DWORD = 0x00002111;
4141///The server specified for this replication operation was contacted, but that server was unable to contact an additional server needed to complete the operation.
4142pub const ERROR_DS_DRA_EXTN_CONNECTION_FAILED: DWORD = 0x00002112;
4143///The version of the directory service schema of the source forest is not compatible with the version of the directory service on this computer.
4144pub const ERROR_DS_INSTALL_SCHEMA_MISMATCH: DWORD = 0x00002113;
4145///Schema update failed: An attribute with the same link identifier already exists.
4146pub const ERROR_DS_DUP_LINK_ID: DWORD = 0x00002114;
4147///Name translation: Generic processing error.
4148pub const ERROR_DS_NAME_ERROR_RESOLVING: DWORD = 0x00002115;
4149///Name translation: Could not find the name or insufficient right to see name.
4150pub const ERROR_DS_NAME_ERROR_NOT_FOUND: DWORD = 0x00002116;
4151///Name translation: Input name mapped to more than one output name.
4152pub const ERROR_DS_NAME_ERROR_NOT_UNIQUE: DWORD = 0x00002117;
4153///Name translation: The input name was found but not the associated output format.
4154pub const ERROR_DS_NAME_ERROR_NO_MAPPING: DWORD = 0x00002118;
4155///Name translation: Unable to resolve completely, only the domain was found.
4156pub const ERROR_DS_NAME_ERROR_DOMAIN_ONLY: DWORD = 0x00002119;
4157///Name translation: Unable to perform purely syntactical mapping at the client without going out to the wire.
4158pub const ERROR_DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING: DWORD = 0x0000211A;
4159///Modification of a constructed attribute is not allowed.
4160pub const ERROR_DS_CONSTRUCTED_ATT_MOD: DWORD = 0x0000211B;
4161///The OM-Object-Class specified is incorrect for an attribute with the specified syntax.
4162pub const ERROR_DS_WRONG_OM_OBJ_CLASS: DWORD = 0x0000211C;
4163///The replication request has been posted; waiting for a reply.
4164pub const ERROR_DS_DRA_REPL_PENDING: DWORD = 0x0000211D;
4165///The requested operation requires a directory service, and none was available.
4166pub const ERROR_DS_DS_REQUIRED: DWORD = 0x0000211E;
4167///The LDAP display name of the class or attribute contains non-ASCII characters.
4168pub const ERROR_DS_INVALID_LDAP_DISPLAY_NAME: DWORD = 0x0000211F;
4169///The requested search operation is only supported for base searches.
4170pub const ERROR_DS_NON_BASE_SEARCH: DWORD = 0x00002120;
4171///The search failed to retrieve attributes from the database.
4172pub const ERROR_DS_CANT_RETRIEVE_ATTS: DWORD = 0x00002121;
4173///The schema update operation tried to add a backward link attribute that has no corresponding forward link.
4174pub const ERROR_DS_BACKLINK_WITHOUT_LINK: DWORD = 0x00002122;
4175///The source and destination of a cross-domain move do not agree on the object's epoch number. Either the source or the destination does not have the latest version of the object.
4176pub const ERROR_DS_EPOCH_MISMATCH: DWORD = 0x00002123;
4177///The source and destination of a cross-domain move do not agree on the object's current name. Either the source or the destination does not have the latest version of the object.
4178pub const ERROR_DS_SRC_NAME_MISMATCH: DWORD = 0x00002124;
4179///The source and destination for the cross-domain move operation are identical. The caller should use a local move operation instead of a cross-domain move operation.
4180pub const ERROR_DS_SRC_AND_DST_NC_IDENTICAL: DWORD = 0x00002125;
4181///The source and destination for a cross-domain move do not agree on the naming contexts in the forest. Either the source or the destination does not have the latest version of the Partitions container.
4182pub const ERROR_DS_DST_NC_MISMATCH: DWORD = 0x00002126;
4183///The destination of a cross-domain move is not authoritative for the destination naming context.
4184pub const ERROR_DS_NOT_AUTHORITIVE_FOR_DST_NC: DWORD = 0x00002127;
4185///The source and destination of a cross-domain move do not agree on the identity of the source object. Either the source or the destination does not have the latest version of the source object.
4186pub const ERROR_DS_SRC_GUID_MISMATCH: DWORD = 0x00002128;
4187///The object being moved across domains is already known to be deleted by the destination server. The source server does not have the latest version of the source object.
4188pub const ERROR_DS_CANT_MOVE_DELETED_OBJECT: DWORD = 0x00002129;
4189///Another operation that requires exclusive access to the PDC FSMO is already in progress.
4190pub const ERROR_DS_PDC_OPERATION_IN_PROGRESS: DWORD = 0x0000212A;
4191///A cross-domain move operation failed because two versions of the moved object exist—one each in the source and destination domains. The destination object needs to be removed to restore the system to a consistent state.
4192pub const ERROR_DS_CROSS_DOMAIN_CLEANUP_REQD: DWORD = 0x0000212B;
4193///This object cannot be moved across domain boundaries either because cross-domain moves for this class are not allowed, or the object has some special characteristics, for example, a trust account or a restricted relative identifier (RID), that prevent its move.
4194pub const ERROR_DS_ILLEGAL_XDOM_MOVE_OPERATION: DWORD = 0x0000212C;
4195///Cannot move objects with memberships across domain boundaries because, once moved, this violates the membership conditions of the account group. Remove the object from any account group memberships and retry.
4196pub const ERROR_DS_CANT_WITH_ACCT_GROUP_MEMBERSHPS: DWORD = 0x0000212D;
4197///A naming context head must be the immediate child of another naming context head, not of an interior node.
4198pub const ERROR_DS_NC_MUST_HAVE_NC_PARENT: DWORD = 0x0000212E;
4199///The directory cannot validate the proposed naming context name because it does not hold a replica of the naming context above the proposed naming context. Ensure that the domain naming master role is held by a server that is configured as a GC server, and that the server is up-to-date with its replication partners. (Applies only to Windows 2000 operating system domain naming masters.)
4200pub const ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE: DWORD = 0x0000212F;
4201///Destination domain must be in native mode.
4202pub const ERROR_DS_DST_DOMAIN_NOT_NATIVE: DWORD = 0x00002130;
4203///The operation cannot be performed because the server does not have an infrastructure container in the domain of interest.
4204pub const ERROR_DS_MISSING_INFRASTRUCTURE_CONTAINER: DWORD = 0x00002131;
4205///Cross-domain moves of nonempty account groups is not allowed.
4206pub const ERROR_DS_CANT_MOVE_ACCOUNT_GROUP: DWORD = 0x00002132;
4207///Cross-domain moves of nonempty resource groups is not allowed.
4208pub const ERROR_DS_CANT_MOVE_RESOURCE_GROUP: DWORD = 0x00002133;
4209///The search flags for the attribute are invalid. The ambiguous name resolution (ANR) bit is valid only on attributes of Unicode or Teletex strings.
4210pub const ERROR_DS_INVALID_SEARCH_FLAG: DWORD = 0x00002134;
4211///Tree deletions starting at an object that has an NC head as a descendant are not allowed.
4212pub const ERROR_DS_NO_TREE_DELETE_ABOVE_NC: DWORD = 0x00002135;
4213///The directory service failed to lock a tree in preparation for a tree deletion because the tree was in use.
4214pub const ERROR_DS_COULDNT_LOCK_TREE_FOR_DELETE: DWORD = 0x00002136;
4215///The directory service failed to identify the list of objects to delete while attempting a tree deletion.
4216pub const ERROR_DS_COULDNT_IDENTIFY_OBJECTS_FOR_TREE_DELETE: DWORD = 0x00002137;
4217///SAM initialization failed because of the following error: %1. Error Status: 0x%2. Click OK to shut down the system and reboot into Directory Services Restore Mode. Check the event log for detailed information.
4218pub const ERROR_DS_SAM_INIT_FAILURE: DWORD = 0x00002138;
4219///Only an administrator can modify the membership list of an administrative group.
4220pub const ERROR_DS_SENSITIVE_GROUP_VIOLATION: DWORD = 0x00002139;
4221///Cannot change the primary group ID of a domain controller account.
4222pub const ERROR_DS_CANT_MOD_PRIMARYGROUPID: DWORD = 0x0000213A;
4223///An attempt was made to modify the base schema.
4224pub const ERROR_DS_ILLEGAL_BASE_SCHEMA_MOD: DWORD = 0x0000213B;
4225///Adding a new mandatory attribute to an existing class, deleting a mandatory attribute from an existing class, or adding an optional attribute to the special class Top that is not a backlink attribute (directly or through inheritance, for example, by adding or deleting an auxiliary class) is not allowed.
4226pub const ERROR_DS_NONSAFE_SCHEMA_CHANGE: DWORD = 0x0000213C;
4227///Schema update is not allowed on this DC because the DC is not the schema FSMO role owner.
4228pub const ERROR_DS_SCHEMA_UPDATE_DISALLOWED: DWORD = 0x0000213D;
4229///An object of this class cannot be created under the schema container. You can only create Attribute-Schema and Class-Schema objects under the schema container.
4230pub const ERROR_DS_CANT_CREATE_UNDER_SCHEMA: DWORD = 0x0000213E;
4231///The replica or child install failed to get the objectVersion attribute on the schema container on the source DC. Either the attribute is missing on the schema container or the credentials supplied do not have permission to read it.
4232pub const ERROR_DS_INSTALL_NO_SRC_SCH_VERSION: DWORD = 0x0000213F;
4233///The replica or child install failed to read the objectVersion attribute in the SCHEMA section of the file schema.ini in the System32 directory.
4234pub const ERROR_DS_INSTALL_NO_SCH_VERSION_IN_INIFILE: DWORD = 0x00002140;
4235///The specified group type is invalid.
4236pub const ERROR_DS_INVALID_GROUP_TYPE: DWORD = 0x00002141;
4237///You cannot nest global groups in a mixed domain if the group is security-enabled.
4238pub const ERROR_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN: DWORD = 0x00002142;
4239///You cannot nest local groups in a mixed domain if the group is security-enabled.
4240pub const ERROR_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN: DWORD = 0x00002143;
4241///A global group cannot have a local group as a member.
4242pub const ERROR_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER: DWORD = 0x00002144;
4243///A global group cannot have a universal group as a member.
4244pub const ERROR_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER: DWORD = 0x00002145;
4245///A universal group cannot have a local group as a member.
4246pub const ERROR_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER: DWORD = 0x00002146;
4247///A global group cannot have a cross-domain member.
4248pub const ERROR_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER: DWORD = 0x00002147;
4249///A local group cannot have another cross domain local group as a member.
4250pub const ERROR_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER: DWORD = 0x00002148;
4251///A group with primary members cannot change to a security-disabled group.
4252pub const ERROR_DS_HAVE_PRIMARY_MEMBERS: DWORD = 0x00002149;
4253///The schema cache load failed to convert the string default security descriptor (SD) on a class-schema object.
4254pub const ERROR_DS_STRING_SD_CONVERSION_FAILED: DWORD = 0x0000214A;
4255///Only DSAs configured to be GC servers should be allowed to hold the domain naming master FSMO role. (Applies only to Windows 2000 servers.)
4256pub const ERROR_DS_NAMING_MASTER_GC: DWORD = 0x0000214B;
4257///The DSA operation is unable to proceed because of a DNS lookup failure.
4258pub const ERROR_DS_DNS_LOOKUP_FAILURE: DWORD = 0x0000214C;
4259///While processing a change to the DNS host name for an object, the SPN values could not be kept in sync.
4260pub const ERROR_DS_COULDNT_UPDATE_SPNS: DWORD = 0x0000214D;
4261///The Security Descriptor attribute could not be read.
4262pub const ERROR_DS_CANT_RETRIEVE_SD: DWORD = 0x0000214E;
4263///The object requested was not found, but an object with that key was found.
4264pub const ERROR_DS_KEY_NOT_UNIQUE: DWORD = 0x0000214F;
4265///The syntax of the linked attribute being added is incorrect. Forward links can only have syntax 2.5.5.1, 2.5.5.7, and 2.5.5.14, and backlinks can only have syntax 2.5.5.1.
4266pub const ERROR_DS_WRONG_LINKED_ATT_SYNTAX: DWORD = 0x00002150;
4267///SAM needs to get the boot password.
4268pub const ERROR_DS_SAM_NEED_BOOTKEY_PASSWORD: DWORD = 0x00002151;
4269///SAM needs to get the boot key from the floppy disk.
4270pub const ERROR_DS_SAM_NEED_BOOTKEY_FLOPPY: DWORD = 0x00002152;
4271///Directory Service cannot start.
4272pub const ERROR_DS_CANT_START: DWORD = 0x00002153;
4273///Directory Services could not start.
4274pub const ERROR_DS_INIT_FAILURE: DWORD = 0x00002154;
4275///The connection between client and server requires packet privacy or better.
4276pub const ERROR_DS_NO_PKT_PRIVACY_ON_CONNECTION: DWORD = 0x00002155;
4277///The source domain cannot be in the same forest as the destination.
4278pub const ERROR_DS_SOURCE_DOMAIN_IN_FOREST: DWORD = 0x00002156;
4279///The destination domain MUST be in the forest.
4280pub const ERROR_DS_DESTINATION_DOMAIN_NOT_IN_FOREST: DWORD = 0x00002157;
4281///The operation requires that destination domain auditing be enabled.
4282pub const ERROR_DS_DESTINATION_AUDITING_NOT_ENABLED: DWORD = 0x00002158;
4283///The operation could not locate a DC for the source domain.
4284pub const ERROR_DS_CANT_FIND_DC_FOR_SRC_DOMAIN: DWORD = 0x00002159;
4285///The source object must be a group or user.
4286pub const ERROR_DS_SRC_OBJ_NOT_GROUP_OR_USER: DWORD = 0x0000215A;
4287///The source object's SID already exists in the destination forest.
4288pub const ERROR_DS_SRC_SID_EXISTS_IN_FOREST: DWORD = 0x0000215B;
4289///The source and destination object must be of the same type.
4290pub const ERROR_DS_SRC_AND_DST_OBJECT_CLASS_MISMATCH: DWORD = 0x0000215C;
4291///SAM initialization failed because of the following error: %1. Error Status: 0x%2. Click OK to shut down the system and reboot into Safe Mode. Check the event log for detailed information.
4292pub const ERROR_SAM_INIT_FAILURE: DWORD = 0x0000215D;
4293///Schema information could not be included in the replication request.
4294pub const ERROR_DS_DRA_SCHEMA_INFO_SHIP: DWORD = 0x0000215E;
4295///The replication operation could not be completed due to a schema incompatibility.
4296pub const ERROR_DS_DRA_SCHEMA_CONFLICT: DWORD = 0x0000215F;
4297///The replication operation could not be completed due to a previous schema incompatibility.
4298pub const ERROR_DS_DRA_EARLIER_SCHEMA_CONFLICT: DWORD = 0x00002160;
4299///The replication update could not be applied because either the source or the destination has not yet received information regarding a recent cross-domain move operation.
4300pub const ERROR_DS_DRA_OBJ_NC_MISMATCH: DWORD = 0x00002161;
4301///The requested domain could not be deleted because there exist domain controllers that still host this domain.
4302pub const ERROR_DS_NC_STILL_HAS_DSAS: DWORD = 0x00002162;
4303///The requested operation can be performed only on a GC server.
4304pub const ERROR_DS_GC_REQUIRED: DWORD = 0x00002163;
4305///A local group can only be a member of other local groups in the same domain.
4306pub const ERROR_DS_LOCAL_MEMBER_OF_LOCAL_ONLY: DWORD = 0x00002164;
4307///Foreign security principals cannot be members of universal groups.
4308pub const ERROR_DS_NO_FPO_IN_UNIVERSAL_GROUPS: DWORD = 0x00002165;
4309///The attribute is not allowed to be replicated to the GC because of security reasons.
4310pub const ERROR_DS_CANT_ADD_TO_GC: DWORD = 0x00002166;
4311///The checkpoint with the PDC could not be taken because too many modifications are currently being processed.
4312pub const ERROR_DS_NO_CHECKPOINT_WITH_PDC: DWORD = 0x00002167;
4313///The operation requires that source domain auditing be enabled.
4314pub const ERROR_DS_SOURCE_AUDITING_NOT_ENABLED: DWORD = 0x00002168;
4315///Security principal objects can only be created inside domain naming contexts.
4316pub const ERROR_DS_CANT_CREATE_IN_NONDOMAIN_NC: DWORD = 0x00002169;
4317///An SPN could not be constructed because the provided host name is not in the necessary format.
4318pub const ERROR_DS_INVALID_NAME_FOR_SPN: DWORD = 0x0000216A;
4319///A filter was passed that uses constructed attributes.
4320pub const ERROR_DS_FILTER_USES_CONTRUCTED_ATTRS: DWORD = 0x0000216B;
4321///The unicodePwd attribute value must be enclosed in quotation marks.
4322pub const ERROR_DS_UNICODEPWD_NOT_IN_QUOTES: DWORD = 0x0000216C;
4323///Your computer could not be joined to the domain. You have exceeded the maximum number of computer accounts you are allowed to create in this domain. Contact your system administrator to have this limit reset or increased.
4324pub const ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED: DWORD = 0x0000216D;
4325///For security reasons, the operation must be run on the destination DC.
4326pub const ERROR_DS_MUST_BE_RUN_ON_DST_DC: DWORD = 0x0000216E;
4327///For security reasons, the source DC must be NT4SP4 or greater.
4328pub const ERROR_DS_SRC_DC_MUST_BE_SP4_OR_GREATER: DWORD = 0x0000216F;
4329///Critical directory service system objects cannot be deleted during tree deletion operations. The tree deletion might have been partially performed.
4330pub const ERROR_DS_CANT_TREE_DELETE_CRITICAL_OBJ: DWORD = 0x00002170;
4331///Directory Services could not start because of the following error: %1. Error Status: 0x%2. Click OK to shut down the system. You can use the Recovery Console to further diagnose the system.
4332pub const ERROR_DS_INIT_FAILURE_CONSOLE: DWORD = 0x00002171;
4333///SAM initialization failed because of the following error: %1. Error Status: 0x%2. Click OK to shut down the system. You can use the Recovery Console to further diagnose the system.
4334pub const ERROR_DS_SAM_INIT_FAILURE_CONSOLE: DWORD = 0x00002172;
4335///The version of the operating system installed is incompatible with the current forest functional level. You must upgrade to a new version of the operating system before this server can become a domain controller in this forest.
4336pub const ERROR_DS_FOREST_VERSION_TOO_HIGH: DWORD = 0x00002173;
4337///The version of the operating system installed is incompatible with the current domain functional level. You must upgrade to a new version of the operating system before this server can become a domain controller in this domain.
4338pub const ERROR_DS_DOMAIN_VERSION_TOO_HIGH: DWORD = 0x00002174;
4339///The version of the operating system installed on this server no longer supports the current forest functional level. You must raise the forest functional level before this server can become a domain controller in this forest.
4340pub const ERROR_DS_FOREST_VERSION_TOO_LOW: DWORD = 0x00002175;
4341///The version of the operating system installed on this server no longer supports the current domain functional level. You must raise the domain functional level before this server can become a domain controller in this domain.
4342pub const ERROR_DS_DOMAIN_VERSION_TOO_LOW: DWORD = 0x00002176;
4343///The version of the operating system installed on this server is incompatible with the functional level of the domain or forest.
4344pub const ERROR_DS_INCOMPATIBLE_VERSION: DWORD = 0x00002177;
4345///The functional level of the domain (or forest) cannot be raised to the requested value because one or more domain controllers in the domain (or forest) are at a lower, incompatible functional level.
4346pub const ERROR_DS_LOW_DSA_VERSION: DWORD = 0x00002178;
4347///The forest functional level cannot be raised to the requested value because one or more domains are still in mixed-domain mode. All domains in the forest must be in native mode for you to raise the forest functional level.
4348pub const ERROR_DS_NO_BEHAVIOR_VERSION_IN_MIXEDDOMAIN: DWORD = 0x00002179;
4349///The sort order requested is not supported.
4350pub const ERROR_DS_NOT_SUPPORTED_SORT_ORDER: DWORD = 0x0000217A;
4351///The requested name already exists as a unique identifier.
4352pub const ERROR_DS_NAME_NOT_UNIQUE: DWORD = 0x0000217B;
4353///The machine account was created before Windows NT 4.0. The account needs to be re-created.
4354pub const ERROR_DS_MACHINE_ACCOUNT_CREATED_PRENT4: DWORD = 0x0000217C;
4355///The database is out of version store.
4356pub const ERROR_DS_OUT_OF_VERSION_STORE: DWORD = 0x0000217D;
4357///Unable to continue operation because multiple conflicting controls were used.
4358pub const ERROR_DS_INCOMPATIBLE_CONTROLS_USED: DWORD = 0x0000217E;
4359///Unable to find a valid security descriptor reference domain for this partition.
4360pub const ERROR_DS_NO_REF_DOMAIN: DWORD = 0x0000217F;
4361///Schema update failed: The link identifier is reserved.
4362pub const ERROR_DS_RESERVED_LINK_ID: DWORD = 0x00002180;
4363///Schema update failed: There are no link identifiers available.
4364pub const ERROR_DS_LINK_ID_NOT_AVAILABLE: DWORD = 0x00002181;
4365///An account group cannot have a universal group as a member.
4366pub const ERROR_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER: DWORD = 0x00002182;
4367///Rename or move operations on naming context heads or read-only objects are not allowed.
4368pub const ERROR_DS_MODIFYDN_DISALLOWED_BY_INSTANCE_TYPE: DWORD = 0x00002183;
4369///Move operations on objects in the schema naming context are not allowed.
4370pub const ERROR_DS_NO_OBJECT_MOVE_IN_SCHEMA_NC: DWORD = 0x00002184;
4371///A system flag has been set on the object that does not allow the object to be moved or renamed.
4372pub const ERROR_DS_MODIFYDN_DISALLOWED_BY_FLAG: DWORD = 0x00002185;
4373///This object is not allowed to change its grandparent container. Moves are not forbidden on this object, but are restricted to sibling containers.
4374pub const ERROR_DS_MODIFYDN_WRONG_GRANDPARENT: DWORD = 0x00002186;
4375///Unable to resolve completely; a referral to another forest was generated.
4376pub const ERROR_DS_NAME_ERROR_TRUST_REFERRAL: DWORD = 0x00002187;
4377///The requested action is not supported on a standard server.
4378pub const ERROR_NOT_SUPPORTED_ON_STANDARD_SERVER: DWORD = 0x00002188;
4379///Could not access a partition of the directory service located on a remote server. Make sure at least one server is running for the partition in question.
4380pub const ERROR_DS_CANT_ACCESS_REMOTE_PART_OF_AD: DWORD = 0x00002189;
4381///The directory cannot validate the proposed naming context (or partition) name because it does not hold a replica, nor can it contact a replica of the naming context above the proposed naming context. Ensure that the parent naming context is properly registered in the DNS, and at least one replica of this naming context is reachable by the domain naming master.
4382pub const ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE_V2: DWORD = 0x0000218A;
4383///The thread limit for this request was exceeded.
4384pub const ERROR_DS_THREAD_LIMIT_EXCEEDED: DWORD = 0x0000218B;
4385///The GC server is not in the closest site.
4386pub const ERROR_DS_NOT_CLOSEST: DWORD = 0x0000218C;
4387///The directory service cannot derive an SPN with which to mutually authenticate the target server because the corresponding server object in the local DS database has no serverReference attribute.
4388pub const ERROR_DS_CANT_DERIVE_SPN_WITHOUT_SERVER_REF: DWORD = 0x0000218D;
4389///The directory service failed to enter single-user mode.
4390pub const ERROR_DS_SINGLE_USER_MODE_FAILED: DWORD = 0x0000218E;
4391///The directory service cannot parse the script because of a syntax error.
4392pub const ERROR_DS_NTDSCRIPT_SYNTAX_ERROR: DWORD = 0x0000218F;
4393///The directory service cannot process the script because of an error.
4394pub const ERROR_DS_NTDSCRIPT_PROCESS_ERROR: DWORD = 0x00002190;
4395///The directory service cannot perform the requested operation because the servers involved are of different replication epochs (which is usually related to a domain rename that is in progress).
4396pub const ERROR_DS_DIFFERENT_REPL_EPOCHS: DWORD = 0x00002191;
4397///The directory service binding must be renegotiated due to a change in the server extensions information.
4398pub const ERROR_DS_DRS_EXTENSIONS_CHANGED: DWORD = 0x00002192;
4399///The operation is not allowed on a disabled cross-reference.
4400pub const ERROR_DS_REPLICA_SET_CHANGE_NOT_ALLOWED_ON_DISABLED_CR: DWORD = 0x00002193;
4401///Schema update failed: No values for msDS-IntId are available.
4402pub const ERROR_DS_NO_MSDS_INTID: DWORD = 0x00002194;
4403///Schema update failed: Duplicate msDS-IntId. Retry the operation.
4404pub const ERROR_DS_DUP_MSDS_INTID: DWORD = 0x00002195;
4405///Schema deletion failed: Attribute is used in rDNAttID.
4406pub const ERROR_DS_EXISTS_IN_RDNATTID: DWORD = 0x00002196;
4407///The directory service failed to authorize the request.
4408pub const ERROR_DS_AUTHORIZATION_FAILED: DWORD = 0x00002197;
4409///The directory service cannot process the script because it is invalid.
4410pub const ERROR_DS_INVALID_SCRIPT: DWORD = 0x00002198;
4411///The remote create cross-reference operation failed on the domain naming master FSMO. The operation's error is in the extended data.
4412pub const ERROR_DS_REMOTE_CROSSREF_OP_FAILED: DWORD = 0x00002199;
4413///A cross-reference is in use locally with the same name.
4414pub const ERROR_DS_CROSS_REF_BUSY: DWORD = 0x0000219A;
4415///The directory service cannot derive an SPN with which to mutually authenticate the target server because the server's domain has been deleted from the forest.
4416pub const ERROR_DS_CANT_DERIVE_SPN_FOR_DELETED_DOMAIN: DWORD = 0x0000219B;
4417///Writable NCs prevent this DC from demoting.
4418pub const ERROR_DS_CANT_DEMOTE_WITH_WRITEABLE_NC: DWORD = 0x0000219C;
4419///The requested object has a nonunique identifier and cannot be retrieved.
4420pub const ERROR_DS_DUPLICATE_ID_FOUND: DWORD = 0x0000219D;
4421///Insufficient attributes were given to create an object. This object might not exist because it might have been deleted and the garbage already collected.
4422pub const ERROR_DS_INSUFFICIENT_ATTR_TO_CREATE_OBJECT: DWORD = 0x0000219E;
4423///The group cannot be converted due to attribute restrictions on the requested group type.
4424pub const ERROR_DS_GROUP_CONVERSION_ERROR: DWORD = 0x0000219F;
4425///Cross-domain moves of nonempty basic application groups is not allowed.
4426pub const ERROR_DS_CANT_MOVE_APP_BASIC_GROUP: DWORD = 0x000021A0;
4427///Cross-domain moves of nonempty query-based application groups is not allowed.
4428pub const ERROR_DS_CANT_MOVE_APP_QUERY_GROUP: DWORD = 0x000021A1;
4429///The FSMO role ownership could not be verified because its directory partition did not replicate successfully with at least one replication partner.
4430pub const ERROR_DS_ROLE_NOT_VERIFIED: DWORD = 0x000021A2;
4431///The target container for a redirection of a well-known object container cannot already be a special container.
4432pub const ERROR_DS_WKO_CONTAINER_CANNOT_BE_SPECIAL: DWORD = 0x000021A3;
4433///The directory service cannot perform the requested operation because a domain rename operation is in progress.
4434pub const ERROR_DS_DOMAIN_RENAME_IN_PROGRESS: DWORD = 0x000021A4;
4435///The directory service detected a child partition below the requested partition name. The partition hierarchy must be created in a top down method.
4436pub const ERROR_DS_EXISTING_AD_CHILD_NC: DWORD = 0x000021A5;
4437///The directory service cannot replicate with this server because the time since the last replication with this server has exceeded the tombstone lifetime.
4438pub const ERROR_DS_REPL_LIFETIME_EXCEEDED: DWORD = 0x000021A6;
4439///The requested operation is not allowed on an object under the system container.
4440pub const ERROR_DS_DISALLOWED_IN_SYSTEM_CONTAINER: DWORD = 0x000021A7;
4441///The LDAP server's network send queue has filled up because the client is not processing the results of its requests fast enough. No more requests will be processed until the client catches up. If the client does not catch up then it will be disconnected.
4442pub const ERROR_DS_LDAP_SEND_QUEUE_FULL: DWORD = 0x000021A8;
4443///The scheduled replication did not take place because the system was too busy to execute the request within the schedule window. The replication queue is overloaded. Consider reducing the number of partners or decreasing the scheduled replication frequency.
4444pub const ERROR_DS_DRA_OUT_SCHEDULE_WINDOW: DWORD = 0x000021A9;
4445///At this time, it cannot be determined if the branch replication policy is available on the hub domain controller. Retry at a later time to account for replication latencies.
4446pub const ERROR_DS_POLICY_NOT_KNOWN: DWORD = 0x000021AA;
4447///The site settings object for the specified site does not exist.
4448pub const ERROR_NO_SITE_SETTINGS_OBJECT: DWORD = 0x000021AB;
4449///The local account store does not contain secret material for the specified account.
4450pub const ERROR_NO_SECRETS: DWORD = 0x000021AC;
4451///Could not find a writable domain controller in the domain.
4452pub const ERROR_NO_WRITABLE_DC_FOUND: DWORD = 0x000021AD;
4453///The server object for the domain controller does not exist.
4454pub const ERROR_DS_NO_SERVER_OBJECT: DWORD = 0x000021AE;
4455///The NTDS Settings object for the domain controller does not exist.
4456pub const ERROR_DS_NO_NTDSA_OBJECT: DWORD = 0x000021AF;
4457///The requested search operation is not supported for attribute scoped query (ASQ) searches.
4458pub const ERROR_DS_NON_ASQ_SEARCH: DWORD = 0x000021B0;
4459///A required audit event could not be generated for the operation.
4460pub const ERROR_DS_AUDIT_FAILURE: DWORD = 0x000021B1;
4461///The search flags for the attribute are invalid. The subtree index bit is valid only on single-valued attributes.
4462pub const ERROR_DS_INVALID_SEARCH_FLAG_SUBTREE: DWORD = 0x000021B2;
4463///The search flags for the attribute are invalid. The tuple index bit is valid only on attributes of Unicode strings.
4464pub const ERROR_DS_INVALID_SEARCH_FLAG_TUPLE: DWORD = 0x000021B3;
4465///The replication operation failed because the target object referenced by a link value is recycled.
4466pub const ERROR_DS_DRA_RECYCLED_TARGET: DWORD = 0x000021BF;
4467///The functional level of the domain (or forest) cannot be lowered to the requested value.
4468pub const ERROR_DS_HIGH_DSA_VERSION: DWORD = 0x000021C2;
4469///The operation failed because the SPN value provided for addition/modification is not unique forest-wide.
4470pub const ERROR_DS_SPN_VALUE_NOT_UNIQUE_IN_FOREST: DWORD = 0x000021C7;
4471///The operation failed because the UPN value provided for addition/modification is not unique forest-wide.
4472pub const ERROR_DS_UPN_VALUE_NOT_UNIQUE_IN_FOREST: DWORD = 0x000021C8;
4473///DNS server unable to interpret format.
4474pub const DNS_ERROR_RCODE_FORMAT_ERROR: DWORD = 0x00002329;
4475///DNS server failure.
4476pub const DNS_ERROR_RCODE_SERVER_FAILURE: DWORD = 0x0000232A;
4477///DNS name does not exist.
4478pub const DNS_ERROR_RCODE_NAME_ERROR: DWORD = 0x0000232B;
4479///DNS request not supported by name server.
4480pub const DNS_ERROR_RCODE_NOT_IMPLEMENTED: DWORD = 0x0000232C;
4481///DNS operation refused.
4482pub const DNS_ERROR_RCODE_REFUSED: DWORD = 0x0000232D;
4483///DNS name that should not exist, does exist.
4484pub const DNS_ERROR_RCODE_YXDOMAIN: DWORD = 0x0000232E;
4485///DNS resource record (RR) set that should not exist, does exist.
4486pub const DNS_ERROR_RCODE_YXRRSET: DWORD = 0x0000232F;
4487///DNS RR set that should to exist, does not exist.
4488pub const DNS_ERROR_RCODE_NXRRSET: DWORD = 0x00002330;
4489///DNS server not authoritative for zone.
4490pub const DNS_ERROR_RCODE_NOTAUTH: DWORD = 0x00002331;
4491///DNS name in update or prereq is not in zone.
4492pub const DNS_ERROR_RCODE_NOTZONE: DWORD = 0x00002332;
4493///DNS signature failed to verify.
4494pub const DNS_ERROR_RCODE_BADSIG: DWORD = 0x00002338;
4495///DNS bad key.
4496pub const DNS_ERROR_RCODE_BADKEY: DWORD = 0x00002339;
4497///DNS signature validity expired.
4498pub const DNS_ERROR_RCODE_BADTIME: DWORD = 0x0000233A;
4499///No records found for given DNS query.
4500pub const DNS_INFO_NO_RECORDS: DWORD = 0x0000251D;
4501///Bad DNS packet.
4502pub const DNS_ERROR_BAD_PACKET: DWORD = 0x0000251E;
4503///No DNS packet.
4504pub const DNS_ERROR_NO_PACKET: DWORD = 0x0000251F;
4505///DNS error, check rcode.
4506pub const DNS_ERROR_RCODE: DWORD = 0x00002520;
4507///Unsecured DNS packet.
4508pub const DNS_ERROR_UNSECURE_PACKET: DWORD = 0x00002521;
4509///Invalid DNS type.
4510pub const DNS_ERROR_INVALID_TYPE: DWORD = 0x0000254F;
4511///Invalid IP address.
4512pub const DNS_ERROR_INVALID_IP_ADDRESS: DWORD = 0x00002550;
4513///Invalid property.
4514pub const DNS_ERROR_INVALID_PROPERTY: DWORD = 0x00002551;
4515///Try DNS operation again later.
4516pub const DNS_ERROR_TRY_AGAIN_LATER: DWORD = 0x00002552;
4517///Record for given name and type is not unique.
4518pub const DNS_ERROR_NOT_UNIQUE: DWORD = 0x00002553;
4519///DNS name does not comply with RFC specifications.
4520pub const DNS_ERROR_NON_RFC_NAME: DWORD = 0x00002554;
4521///DNS name is a fully qualified DNS name.
4522pub const DNS_STATUS_FQDN: DWORD = 0x00002555;
4523///DNS name is dotted (multilabel).
4524pub const DNS_STATUS_DOTTED_NAME: DWORD = 0x00002556;
4525///DNS name is a single-part name.
4526pub const DNS_STATUS_SINGLE_PART_NAME: DWORD = 0x00002557;
4527///DNS name contains an invalid character.
4528pub const DNS_ERROR_INVALID_NAME_CHAR: DWORD = 0x00002558;
4529///DNS name is entirely numeric.
4530pub const DNS_ERROR_NUMERIC_NAME: DWORD = 0x00002559;
4531///The operation requested is not permitted on a DNS root server.
4532pub const DNS_ERROR_NOT_ALLOWED_ON_ROOT_SERVER: DWORD = 0x0000255A;
4533///The record could not be created because this part of the DNS namespace has been delegated to another server.
4534pub const DNS_ERROR_NOT_ALLOWED_UNDER_DELEGATION: DWORD = 0x0000255B;
4535///The DNS server could not find a set of root hints.
4536pub const DNS_ERROR_CANNOT_FIND_ROOT_HINTS: DWORD = 0x0000255C;
4537///The DNS server found root hints but they were not consistent across all adapters.
4538pub const DNS_ERROR_INCONSISTENT_ROOT_HINTS: DWORD = 0x0000255D;
4539///The specified value is too small for this parameter.
4540pub const DNS_ERROR_DWORD_VALUE_TOO_SMALL: DWORD = 0x0000255E;
4541///The specified value is too large for this parameter.
4542pub const DNS_ERROR_DWORD_VALUE_TOO_LARGE: DWORD = 0x0000255F;
4543///This operation is not allowed while the DNS server is loading zones in the background. Try again later.
4544pub const DNS_ERROR_BACKGROUND_LOADING: DWORD = 0x00002560;
4545///The operation requested is not permitted on against a DNS server running on a read-only DC.
4546pub const DNS_ERROR_NOT_ALLOWED_ON_RODC: DWORD = 0x00002561;
4547///DNS zone does not exist.
4548pub const DNS_ERROR_ZONE_DOES_NOT_EXIST: DWORD = 0x00002581;
4549///DNS zone information not available.
4550pub const DNS_ERROR_NO_ZONE_INFO: DWORD = 0x00002582;
4551///Invalid operation for DNS zone.
4552pub const DNS_ERROR_INVALID_ZONE_OPERATION: DWORD = 0x00002583;
4553///Invalid DNS zone configuration.
4554pub const DNS_ERROR_ZONE_CONFIGURATION_ERROR: DWORD = 0x00002584;
4555///DNS zone has no start of authority (SOA) record.
4556pub const DNS_ERROR_ZONE_HAS_NO_SOA_RECORD: DWORD = 0x00002585;
4557///DNS zone has no Name Server (NS) record.
4558pub const DNS_ERROR_ZONE_HAS_NO_NS_RECORDS: DWORD = 0x00002586;
4559///DNS zone is locked.
4560pub const DNS_ERROR_ZONE_LOCKED: DWORD = 0x00002587;
4561///DNS zone creation failed.
4562pub const DNS_ERROR_ZONE_CREATION_FAILED: DWORD = 0x00002588;
4563///DNS zone already exists.
4564pub const DNS_ERROR_ZONE_ALREADY_EXISTS: DWORD = 0x00002589;
4565///DNS automatic zone already exists.
4566pub const DNS_ERROR_AUTOZONE_ALREADY_EXISTS: DWORD = 0x0000258A;
4567///Invalid DNS zone type.
4568pub const DNS_ERROR_INVALID_ZONE_TYPE: DWORD = 0x0000258B;
4569///Secondary DNS zone requires master IP address.
4570pub const DNS_ERROR_SECONDARY_REQUIRES_MASTER_IP: DWORD = 0x0000258C;
4571///DNS zone not secondary.
4572pub const DNS_ERROR_ZONE_NOT_SECONDARY: DWORD = 0x0000258D;
4573///Need secondary IP address.
4574pub const DNS_ERROR_NEED_SECONDARY_ADDRESSES: DWORD = 0x0000258E;
4575///WINS initialization failed.
4576pub const DNS_ERROR_WINS_INIT_FAILED: DWORD = 0x0000258F;
4577///Need WINS servers.
4578pub const DNS_ERROR_NEED_WINS_SERVERS: DWORD = 0x00002590;
4579///NBTSTAT initialization call failed.
4580pub const DNS_ERROR_NBSTAT_INIT_FAILED: DWORD = 0x00002591;
4581///Invalid delete of SOA.
4582pub const DNS_ERROR_SOA_DELETE_INVALID: DWORD = 0x00002592;
4583///A conditional forwarding zone already exists for that name.
4584pub const DNS_ERROR_FORWARDER_ALREADY_EXISTS: DWORD = 0x00002593;
4585///This zone must be configured with one or more master DNS server IP addresses.
4586pub const DNS_ERROR_ZONE_REQUIRES_MASTER_IP: DWORD = 0x00002594;
4587///The operation cannot be performed because this zone is shut down.
4588pub const DNS_ERROR_ZONE_IS_SHUTDOWN: DWORD = 0x00002595;
4589///The primary DNS zone requires a data file.
4590pub const DNS_ERROR_PRIMARY_REQUIRES_DATAFILE: DWORD = 0x000025B3;
4591///Invalid data file name for the DNS zone.
4592pub const DNS_ERROR_INVALID_DATAFILE_NAME: DWORD = 0x000025B4;
4593///Failed to open the data file for the DNS zone.
4594pub const DNS_ERROR_DATAFILE_OPEN_FAILURE: DWORD = 0x000025B5;
4595///Failed to write the data file for the DNS zone.
4596pub const DNS_ERROR_FILE_WRITEBACK_FAILED: DWORD = 0x000025B6;
4597///Failure while reading datafile for DNS zone.
4598pub const DNS_ERROR_DATAFILE_PARSING: DWORD = 0x000025B7;
4599///DNS record does not exist.
4600pub const DNS_ERROR_RECORD_DOES_NOT_EXIST: DWORD = 0x000025E5;
4601///DNS record format error.
4602pub const DNS_ERROR_RECORD_FORMAT: DWORD = 0x000025E6;
4603///Node creation failure in DNS.
4604pub const DNS_ERROR_NODE_CREATION_FAILED: DWORD = 0x000025E7;
4605///Unknown DNS record type.
4606pub const DNS_ERROR_UNKNOWN_RECORD_TYPE: DWORD = 0x000025E8;
4607///DNS record timed out.
4608pub const DNS_ERROR_RECORD_TIMED_OUT: DWORD = 0x000025E9;
4609///Name not in DNS zone.
4610pub const DNS_ERROR_NAME_NOT_IN_ZONE: DWORD = 0x000025EA;
4611///CNAME loop detected.
4612pub const DNS_ERROR_CNAME_LOOP: DWORD = 0x000025EB;
4613///Node is a CNAME DNS record.
4614pub const DNS_ERROR_NODE_IS_CNAME: DWORD = 0x000025EC;
4615///A CNAME record already exists for the given name.
4616pub const DNS_ERROR_CNAME_COLLISION: DWORD = 0x000025ED;
4617///Record is only at DNS zone root.
4618pub const DNS_ERROR_RECORD_ONLY_AT_ZONE_ROOT: DWORD = 0x000025EE;
4619///DNS record already exists.
4620pub const DNS_ERROR_RECORD_ALREADY_EXISTS: DWORD = 0x000025EF;
4621///Secondary DNS zone data error.
4622pub const DNS_ERROR_SECONDARY_DATA: DWORD = 0x000025F0;
4623///Could not create DNS cache data.
4624pub const DNS_ERROR_NO_CREATE_CACHE_DATA: DWORD = 0x000025F1;
4625///DNS name does not exist.
4626pub const DNS_ERROR_NAME_DOES_NOT_EXIST: DWORD = 0x000025F2;
4627///Could not create pointer (PTR) record.
4628pub const DNS_WARNING_PTR_CREATE_FAILED: DWORD = 0x000025F3;
4629///DNS domain was undeleted.
4630pub const DNS_WARNING_DOMAIN_UNDELETED: DWORD = 0x000025F4;
4631///The directory service is unavailable.
4632pub const DNS_ERROR_DS_UNAVAILABLE: DWORD = 0x000025F5;
4633///DNS zone already exists in the directory service.
4634pub const DNS_ERROR_DS_ZONE_ALREADY_EXISTS: DWORD = 0x000025F6;
4635///DNS server not creating or reading the boot file for the directory service integrated DNS zone.
4636pub const DNS_ERROR_NO_BOOTFILE_IF_DS_ZONE: DWORD = 0x000025F7;
4637///DNS AXFR (zone transfer) complete.
4638pub const DNS_INFO_AXFR_COMPLETE: DWORD = 0x00002617;
4639///DNS zone transfer failed.
4640pub const DNS_ERROR_AXFR: DWORD = 0x00002618;
4641///Added local WINS server.
4642pub const DNS_INFO_ADDED_LOCAL_WINS: DWORD = 0x00002619;
4643///Secure update call needs to continue update request.
4644pub const DNS_STATUS_CONTINUE_NEEDED: DWORD = 0x00002649;
4645///TCP/IP network protocol not installed.
4646pub const DNS_ERROR_NO_TCPIP: DWORD = 0x0000267B;
4647///No DNS servers configured for local system.
4648pub const DNS_ERROR_NO_DNS_SERVERS: DWORD = 0x0000267C;
4649///The specified directory partition does not exist.
4650pub const DNS_ERROR_DP_DOES_NOT_EXIST: DWORD = 0x000026AD;
4651///The specified directory partition already exists.
4652pub const DNS_ERROR_DP_ALREADY_EXISTS: DWORD = 0x000026AE;
4653///This DNS server is not enlisted in the specified directory partition.
4654pub const DNS_ERROR_DP_NOT_ENLISTED: DWORD = 0x000026AF;
4655///This DNS server is already enlisted in the specified directory partition.
4656pub const DNS_ERROR_DP_ALREADY_ENLISTED: DWORD = 0x000026B0;
4657///The directory partition is not available at this time. Wait a few minutes and try again.
4658pub const DNS_ERROR_DP_NOT_AVAILABLE: DWORD = 0x000026B1;
4659///The application directory partition operation failed. The domain controller holding the domain naming master role is down or unable to service the request or is not running Windows Server 2003.
4660pub const DNS_ERROR_DP_FSMO_ERROR: DWORD = 0x000026B2;
4661///A blocking operation was interrupted by a call to WSACancelBlockingCall.
4662pub const WSAEINTR: DWORD = 0x00002714;
4663///The file handle supplied is not valid.
4664pub const WSAEBADF: DWORD = 0x00002719;
4665///An attempt was made to access a socket in a way forbidden by its access permissions.
4666pub const WSAEACCES: DWORD = 0x0000271D;
4667///The system detected an invalid pointer address in attempting to use a pointer argument in a call.
4668pub const WSAEFAULT: DWORD = 0x0000271E;
4669///An invalid argument was supplied.
4670pub const WSAEINVAL: DWORD = 0x00002726;
4671///Too many open sockets.
4672pub const WSAEMFILE: DWORD = 0x00002728;
4673///A nonblocking socket operation could not be completed immediately.
4674pub const WSAEWOULDBLOCK: DWORD = 0x00002733;
4675///A blocking operation is currently executing.
4676pub const WSAEINPROGRESS: DWORD = 0x00002734;
4677///An operation was attempted on a nonblocking socket that already had an operation in progress.
4678pub const WSAEALREADY: DWORD = 0x00002735;
4679///An operation was attempted on something that is not a socket.
4680pub const WSAENOTSOCK: DWORD = 0x00002736;
4681///A required address was omitted from an operation on a socket.
4682pub const WSAEDESTADDRREQ: DWORD = 0x00002737;
4683///A message sent on a datagram socket was larger than the internal message buffer or some other network limit, or the buffer used to receive a datagram into was smaller than the datagram itself.
4684pub const WSAEMSGSIZE: DWORD = 0x00002738;
4685///A protocol was specified in the socket function call that does not support the semantics of the socket type requested.
4686pub const WSAEPROTOTYPE: DWORD = 0x00002739;
4687///An unknown, invalid, or unsupported option or level was specified in a getsockopt or setsockopt call.
4688pub const WSAENOPROTOOPT: DWORD = 0x0000273A;
4689///The requested protocol has not been configured into the system, or no implementation for it exists.
4690pub const WSAEPROTONOSUPPORT: DWORD = 0x0000273B;
4691///The support for the specified socket type does not exist in this address family.
4692pub const WSAESOCKTNOSUPPORT: DWORD = 0x0000273C;
4693///The attempted operation is not supported for the type of object referenced.
4694pub const WSAEOPNOTSUPP: DWORD = 0x0000273D;
4695///The protocol family has not been configured into the system or no implementation for it exists.
4696pub const WSAEPFNOSUPPORT: DWORD = 0x0000273E;
4697///An address incompatible with the requested protocol was used.
4698pub const WSAEAFNOSUPPORT: DWORD = 0x0000273F;
4699///Only one usage of each socket address (protocol/network address/port) is normally permitted.
4700pub const WSAEADDRINUSE: DWORD = 0x00002740;
4701///The requested address is not valid in its context.
4702pub const WSAEADDRNOTAVAIL: DWORD = 0x00002741;
4703///A socket operation encountered a dead network.
4704pub const WSAENETDOWN: DWORD = 0x00002742;
4705///A socket operation was attempted to an unreachable network.
4706pub const WSAENETUNREACH: DWORD = 0x00002743;
4707///The connection has been broken due to keep-alive activity detecting a failure while the operation was in progress.
4708pub const WSAENETRESET: DWORD = 0x00002744;
4709///An established connection was aborted by the software in your host machine.
4710pub const WSAECONNABORTED: DWORD = 0x00002745;
4711///An existing connection was forcibly closed by the remote host.
4712pub const WSAECONNRESET: DWORD = 0x00002746;
4713///An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full.
4714pub const WSAENOBUFS: DWORD = 0x00002747;
4715///A connect request was made on an already connected socket.
4716pub const WSAEISCONN: DWORD = 0x00002748;
4717///A request to send or receive data was disallowed because the socket is not connected and (when sending on a datagram socket using a sendto call) no address was supplied.
4718pub const WSAENOTCONN: DWORD = 0x00002749;
4719///A request to send or receive data was disallowed because the socket had already been shut down in that direction with a previous shutdown call.
4720pub const WSAESHUTDOWN: DWORD = 0x0000274A;
4721///Too many references to a kernel object.
4722pub const WSAETOOMANYREFS: DWORD = 0x0000274B;
4723///A connection attempt failed because the connected party did not properly respond after a period of time, or the established connection failed because the connected host failed to respond.
4724pub const WSAETIMEDOUT: DWORD = 0x0000274C;
4725///No connection could be made because the target machine actively refused it.
4726pub const WSAECONNREFUSED: DWORD = 0x0000274D;
4727///Cannot translate name.
4728pub const WSAELOOP: DWORD = 0x0000274E;
4729///Name or name component was too long.
4730pub const WSAENAMETOOLONG: DWORD = 0x0000274F;
4731///A socket operation failed because the destination host was down.
4732pub const WSAEHOSTDOWN: DWORD = 0x00002750;
4733///A socket operation was attempted to an unreachable host.
4734pub const WSAEHOSTUNREACH: DWORD = 0x00002751;
4735///Cannot remove a directory that is not empty.
4736pub const WSAENOTEMPTY: DWORD = 0x00002752;
4737///A Windows Sockets implementation might have a limit on the number of applications that can use it simultaneously.
4738pub const WSAEPROCLIM: DWORD = 0x00002753;
4739///Ran out of quota.
4740pub const WSAEUSERS: DWORD = 0x00002754;
4741///Ran out of disk quota.
4742pub const WSAEDQUOT: DWORD = 0x00002755;
4743///File handle reference is no longer available.
4744pub const WSAESTALE: DWORD = 0x00002756;
4745///Item is not available locally.
4746pub const WSAEREMOTE: DWORD = 0x00002757;
4747///WSAStartup cannot function at this time because the underlying system it uses to provide network services is currently unavailable.
4748pub const WSASYSNOTREADY: DWORD = 0x0000276B;
4749///The Windows Sockets version requested is not supported.
4750pub const WSAVERNOTSUPPORTED: DWORD = 0x0000276C;
4751///Either the application has not called WSAStartup, or WSAStartup failed.
4752pub const WSANOTINITIALISED: DWORD = 0x0000276D;
4753///Returned by WSARecv or WSARecvFrom to indicate that the remote party has initiated a graceful shutdown sequence.
4754pub const WSAEDISCON: DWORD = 0x00002775;
4755///No more results can be returned by WSALookupServiceNext.
4756pub const WSAENOMORE: DWORD = 0x00002776;
4757///A call to WSALookupServiceEnd was made while this call was still processing. The call has been canceled.
4758pub const WSAECANCELLED: DWORD = 0x00002777;
4759///The procedure call table is invalid.
4760pub const WSAEINVALIDPROCTABLE: DWORD = 0x00002778;
4761///The requested service provider is invalid.
4762pub const WSAEINVALIDPROVIDER: DWORD = 0x00002779;
4763///The requested service provider could not be loaded or initialized.
4764pub const WSAEPROVIDERFAILEDINIT: DWORD = 0x0000277A;
4765///A system call that should never fail has failed.
4766pub const WSASYSCALLFAILURE: DWORD = 0x0000277B;
4767///No such service is known. The service cannot be found in the specified namespace.
4768pub const WSASERVICE_NOT_FOUND: DWORD = 0x0000277C;
4769///The specified class was not found.
4770pub const WSATYPE_NOT_FOUND: DWORD = 0x0000277D;
4771///No more results can be returned by WSALookupServiceNext.
4772pub const WSA_E_NO_MORE: DWORD = 0x0000277E;
4773///A call to WSALookupServiceEnd was made while this call was still processing. The call has been canceled.
4774pub const WSA_E_CANCELLED: DWORD = 0x0000277F;
4775///A database query failed because it was actively refused.
4776pub const WSAEREFUSED: DWORD = 0x00002780;
4777///No such host is known.
4778pub const WSAHOST_NOT_FOUND: DWORD = 0x00002AF9;
4779///This is usually a temporary error during host name resolution and means that the local server did not receive a response from an authoritative server.
4780pub const WSATRY_AGAIN: DWORD = 0x00002AFA;
4781///A nonrecoverable error occurred during a database lookup.
4782pub const WSANO_RECOVERY: DWORD = 0x00002AFB;
4783///The requested name is valid, but no data of the requested type was found.
4784pub const WSANO_DATA: DWORD = 0x00002AFC;
4785///At least one reserve has arrived.
4786pub const WSA_QOS_RECEIVERS: DWORD = 0x00002AFD;
4787///At least one path has arrived.
4788pub const WSA_QOS_SENDERS: DWORD = 0x00002AFE;
4789///There are no senders.
4790pub const WSA_QOS_NO_SENDERS: DWORD = 0x00002AFF;
4791///There are no receivers.
4792pub const WSA_QOS_NO_RECEIVERS: DWORD = 0x00002B00;
4793///Reserve has been confirmed.
4794pub const WSA_QOS_REQUEST_CONFIRMED: DWORD = 0x00002B01;
4795///Error due to lack of resources.
4796pub const WSA_QOS_ADMISSION_FAILURE: DWORD = 0x00002B02;
4797///Rejected for administrative reasons—bad credentials.
4798pub const WSA_QOS_POLICY_FAILURE: DWORD = 0x00002B03;
4799///Unknown or conflicting style.
4800pub const WSA_QOS_BAD_STYLE: DWORD = 0x00002B04;
4801///There is a problem with some part of the filterspec or provider-specific buffer in general.
4802pub const WSA_QOS_BAD_OBJECT: DWORD = 0x00002B05;
4803///There is a problem with some part of the flowspec.
4804pub const WSA_QOS_TRAFFIC_CTRL_ERROR: DWORD = 0x00002B06;
4805///General quality of serve (QOS) error.
4806pub const WSA_QOS_GENERIC_ERROR: DWORD = 0x00002B07;
4807///An invalid or unrecognized service type was found in the flowspec.
4808pub const WSA_QOS_ESERVICETYPE: DWORD = 0x00002B08;
4809///An invalid or inconsistent flowspec was found in the QOS structure.
4810pub const WSA_QOS_EFLOWSPEC: DWORD = 0x00002B09;
4811///Invalid QOS provider-specific buffer.
4812pub const WSA_QOS_EPROVSPECBUF: DWORD = 0x00002B0A;
4813///An invalid QOS filter style was used.
4814pub const WSA_QOS_EFILTERSTYLE: DWORD = 0x00002B0B;
4815///An invalid QOS filter type was used.
4816pub const WSA_QOS_EFILTERTYPE: DWORD = 0x00002B0C;
4817///An incorrect number of QOS FILTERSPECs were specified in the FLOWDESCRIPTOR.
4818pub const WSA_QOS_EFILTERCOUNT: DWORD = 0x00002B0D;
4819///An object with an invalid ObjectLength field was specified in the QOS provider-specific buffer.
4820pub const WSA_QOS_EOBJLENGTH: DWORD = 0x00002B0E;
4821///An incorrect number of flow descriptors was specified in the QOS structure.
4822pub const WSA_QOS_EFLOWCOUNT: DWORD = 0x00002B0F;
4823///An unrecognized object was found in the QOS provider-specific buffer.
4824pub const WSA_QOS_EUNKOWNPSOBJ: DWORD = 0x00002B10;
4825///An invalid policy object was found in the QOS provider-specific buffer.
4826pub const WSA_QOS_EPOLICYOBJ: DWORD = 0x00002B11;
4827///An invalid QOS flow descriptor was found in the flow descriptor list.
4828pub const WSA_QOS_EFLOWDESC: DWORD = 0x00002B12;
4829///An invalid or inconsistent flowspec was found in the QOS provider-specific buffer.
4830pub const WSA_QOS_EPSFLOWSPEC: DWORD = 0x00002B13;
4831///An invalid FILTERSPEC was found in the QOS provider-specific buffer.
4832pub const WSA_QOS_EPSFILTERSPEC: DWORD = 0x00002B14;
4833///An invalid shape discard mode object was found in the QOS provider-specific buffer.
4834pub const WSA_QOS_ESDMODEOBJ: DWORD = 0x00002B15;
4835///An invalid shaping rate object was found in the QOS provider-specific buffer.
4836pub const WSA_QOS_ESHAPERATEOBJ: DWORD = 0x00002B16;
4837///A reserved policy element was found in the QOS provider-specific buffer.
4838pub const WSA_QOS_RESERVED_PETYPE: DWORD = 0x00002B17;
4839///The specified quick mode policy already exists.
4840pub const ERROR_IPSEC_QM_POLICY_EXISTS: DWORD = 0x000032C8;
4841///The specified quick mode policy was not found.
4842pub const ERROR_IPSEC_QM_POLICY_NOT_FOUND: DWORD = 0x000032C9;
4843///The specified quick mode policy is being used.
4844pub const ERROR_IPSEC_QM_POLICY_IN_USE: DWORD = 0x000032CA;
4845///The specified main mode policy already exists.
4846pub const ERROR_IPSEC_MM_POLICY_EXISTS: DWORD = 0x000032CB;
4847///The specified main mode policy was not found.
4848pub const ERROR_IPSEC_MM_POLICY_NOT_FOUND: DWORD = 0x000032CC;
4849///The specified main mode policy is being used.
4850pub const ERROR_IPSEC_MM_POLICY_IN_USE: DWORD = 0x000032CD;
4851///The specified main mode filter already exists.
4852pub const ERROR_IPSEC_MM_FILTER_EXISTS: DWORD = 0x000032CE;
4853///The specified main mode filter was not found.
4854pub const ERROR_IPSEC_MM_FILTER_NOT_FOUND: DWORD = 0x000032CF;
4855///The specified transport mode filter already exists.
4856pub const ERROR_IPSEC_TRANSPORT_FILTER_EXISTS: DWORD = 0x000032D0;
4857///The specified transport mode filter does not exist.
4858pub const ERROR_IPSEC_TRANSPORT_FILTER_NOT_FOUND: DWORD = 0x000032D1;
4859///The specified main mode authentication list exists.
4860pub const ERROR_IPSEC_MM_AUTH_EXISTS: DWORD = 0x000032D2;
4861///The specified main mode authentication list was not found.
4862pub const ERROR_IPSEC_MM_AUTH_NOT_FOUND: DWORD = 0x000032D3;
4863///The specified main mode authentication list is being used.
4864pub const ERROR_IPSEC_MM_AUTH_IN_USE: DWORD = 0x000032D4;
4865///The specified default main mode policy was not found.
4866pub const ERROR_IPSEC_DEFAULT_MM_POLICY_NOT_FOUND: DWORD = 0x000032D5;
4867///The specified default main mode authentication list was not found.
4868pub const ERROR_IPSEC_DEFAULT_MM_AUTH_NOT_FOUND: DWORD = 0x000032D6;
4869///The specified default quick mode policy was not found.
4870pub const ERROR_IPSEC_DEFAULT_QM_POLICY_NOT_FOUND: DWORD = 0x000032D7;
4871///The specified tunnel mode filter exists.
4872pub const ERROR_IPSEC_TUNNEL_FILTER_EXISTS: DWORD = 0x000032D8;
4873///The specified tunnel mode filter was not found.
4874pub const ERROR_IPSEC_TUNNEL_FILTER_NOT_FOUND: DWORD = 0x000032D9;
4875///The main mode filter is pending deletion.
4876pub const ERROR_IPSEC_MM_FILTER_PENDING_DELETION: DWORD = 0x000032DA;
4877///The transport filter is pending deletion.
4878pub const ERROR_IPSEC_TRANSPORT_FILTER_ENDING_DELETION: DWORD = 0x000032DB;
4879///The tunnel filter is pending deletion.
4880pub const ERROR_IPSEC_TUNNEL_FILTER_PENDING_DELETION: DWORD = 0x000032DC;
4881///The main mode policy is pending deletion.
4882pub const ERROR_IPSEC_MM_POLICY_PENDING_ELETION: DWORD = 0x000032DD;
4883///The main mode authentication bundle is pending deletion.
4884pub const ERROR_IPSEC_MM_AUTH_PENDING_DELETION: DWORD = 0x000032DE;
4885///The quick mode policy is pending deletion.
4886pub const ERROR_IPSEC_QM_POLICY_PENDING_DELETION: DWORD = 0x000032DF;
4887///The main mode policy was successfully added, but some of the requested offers are not supported.
4888pub const WARNING_IPSEC_MM_POLICY_PRUNED: DWORD = 0x000032E0;
4889///The quick mode policy was successfully added, but some of the requested offers are not supported.
4890pub const WARNING_IPSEC_QM_POLICY_PRUNED: DWORD = 0x000032E1;
4891///Starts the list of frequencies of various IKE Win32 error codes encountered during negotiations.
4892pub const ERROR_IPSEC_IKE_NEG_STATUS_BEGIN: DWORD = 0x000035E8;
4893///The IKE authentication credentials are unacceptable.
4894pub const ERROR_IPSEC_IKE_AUTH_FAIL: DWORD = 0x000035E9;
4895///The IKE security attributes are unacceptable.
4896pub const ERROR_IPSEC_IKE_ATTRIB_FAIL: DWORD = 0x000035EA;
4897///The IKE negotiation is in progress.
4898pub const ERROR_IPSEC_IKE_NEGOTIATION_PENDING: DWORD = 0x000035EB;
4899///General processing error.
4900pub const ERROR_IPSEC_IKE_GENERAL_PROCESSING_ERROR: DWORD = 0x000035EC;
4901///Negotiation timed out.
4902pub const ERROR_IPSEC_IKE_TIMED_OUT: DWORD = 0x000035ED;
4903///The IKE failed to find a valid machine certificate. Contact your network security administrator about installing a valid certificate in the appropriate certificate store.
4904pub const ERROR_IPSEC_IKE_NO_CERT: DWORD = 0x000035EE;
4905///The IKE security association (SA) was deleted by a peer before it was completely established.
4906pub const ERROR_IPSEC_IKE_SA_DELETED: DWORD = 0x000035EF;
4907///The IKE SA was deleted before it was completely established.
4908pub const ERROR_IPSEC_IKE_SA_REAPED: DWORD = 0x000035F0;
4909///The negotiation request sat in the queue too long.
4910pub const ERROR_IPSEC_IKE_MM_ACQUIRE_DROP: DWORD = 0x000035F1;
4911///The negotiation request sat in the queue too long.
4912pub const ERROR_IPSEC_IKE_QM_ACQUIRE_DROP: DWORD = 0x000035F2;
4913///The negotiation request sat in the queue too long.
4914pub const ERROR_IPSEC_IKE_QUEUE_DROP_MM: DWORD = 0x000035F3;
4915///The negotiation request sat in the queue too long.
4916pub const ERROR_IPSEC_IKE_QUEUE_DROP_NO_MM: DWORD = 0x000035F4;
4917///There was no response from a peer.
4918pub const ERROR_IPSEC_IKE_DROP_NO_RESPONSE: DWORD = 0x000035F5;
4919///The negotiation took too long.
4920pub const ERROR_IPSEC_IKE_MM_DELAY_DROP: DWORD = 0x000035F6;
4921///The negotiation took too long.
4922pub const ERROR_IPSEC_IKE_QM_DELAY_DROP: DWORD = 0x000035F7;
4923///An unknown error occurred.
4924pub const ERROR_IPSEC_IKE_ERROR: DWORD = 0x000035F8;
4925///The certificate revocation check failed.
4926pub const ERROR_IPSEC_IKE_CRL_FAILED: DWORD = 0x000035F9;
4927///Invalid certificate key usage.
4928pub const ERROR_IPSEC_IKE_INVALID_KEY_USAGE: DWORD = 0x000035FA;
4929///Invalid certificate type.
4930pub const ERROR_IPSEC_IKE_INVALID_CERT_TYPE: DWORD = 0x000035FB;
4931///The IKE negotiation failed because the machine certificate used does not have a private key. IPsec certificates require a private key. Contact your network security administrator about a certificate that has a private key.
4932pub const ERROR_IPSEC_IKE_NO_PRIVATE_KEY: DWORD = 0x000035FC;
4933///There was a failure in the Diffie-Hellman computation.
4934pub const ERROR_IPSEC_IKE_DH_FAIL: DWORD = 0x000035FE;
4935///Invalid header.
4936pub const ERROR_IPSEC_IKE_INVALID_HEADER: DWORD = 0x00003600;
4937///No policy configured.
4938pub const ERROR_IPSEC_IKE_NO_POLICY: DWORD = 0x00003601;
4939///Failed to verify signature.
4940pub const ERROR_IPSEC_IKE_INVALID_SIGNATURE: DWORD = 0x00003602;
4941///Failed to authenticate using Kerberos.
4942pub const ERROR_IPSEC_IKE_KERBEROS_ERROR: DWORD = 0x00003603;
4943///The peer's certificate did not have a public key.
4944pub const ERROR_IPSEC_IKE_NO_PUBLIC_KEY: DWORD = 0x00003604;
4945///Error processing the error payload.
4946pub const ERROR_IPSEC_IKE_PROCESS_ERR: DWORD = 0x00003605;
4947///Error processing the SA payload.
4948pub const ERROR_IPSEC_IKE_PROCESS_ERR_SA: DWORD = 0x00003606;
4949///Error processing the proposal payload.
4950pub const ERROR_IPSEC_IKE_PROCESS_ERR_PROP: DWORD = 0x00003607;
4951///Error processing the transform payload.
4952pub const ERROR_IPSEC_IKE_PROCESS_ERR_TRANS: DWORD = 0x00003608;
4953///Error processing the key exchange payload.
4954pub const ERROR_IPSEC_IKE_PROCESS_ERR_KE: DWORD = 0x00003609;
4955///Error processing the ID payload.
4956pub const ERROR_IPSEC_IKE_PROCESS_ERR_ID: DWORD = 0x0000360A;
4957///Error processing the certification payload.
4958pub const ERROR_IPSEC_IKE_PROCESS_ERR_CERT: DWORD = 0x0000360B;
4959///Error processing the certificate request payload.
4960pub const ERROR_IPSEC_IKE_PROCESS_ERR_CERT_REQ: DWORD = 0x0000360C;
4961///Error processing the hash payload.
4962pub const ERROR_IPSEC_IKE_PROCESS_ERR_HASH: DWORD = 0x0000360D;
4963///Error processing the signature payload.
4964pub const ERROR_IPSEC_IKE_PROCESS_ERR_SIG: DWORD = 0x0000360E;
4965///Error processing the nonce payload.
4966pub const ERROR_IPSEC_IKE_PROCESS_ERR_NONCE: DWORD = 0x0000360F;
4967///Error processing the notify payload.
4968pub const ERROR_IPSEC_IKE_PROCESS_ERR_NOTIFY: DWORD = 0x00003610;
4969///Error processing the delete payload.
4970pub const ERROR_IPSEC_IKE_PROCESS_ERR_DELETE: DWORD = 0x00003611;
4971///Error processing the VendorId payload.
4972pub const ERROR_IPSEC_IKE_PROCESS_ERR_VENDOR: DWORD = 0x00003612;
4973///Invalid payload received.
4974pub const ERROR_IPSEC_IKE_INVALID_PAYLOAD: DWORD = 0x00003613;
4975///Soft SA loaded.
4976pub const ERROR_IPSEC_IKE_LOAD_SOFT_SA: DWORD = 0x00003614;
4977///Soft SA torn down.
4978pub const ERROR_IPSEC_IKE_SOFT_SA_TORN_DOWN: DWORD = 0x00003615;
4979///Invalid cookie received.
4980pub const ERROR_IPSEC_IKE_INVALID_COOKIE: DWORD = 0x00003616;
4981///Peer failed to send valid machine certificate.
4982pub const ERROR_IPSEC_IKE_NO_PEER_CERT: DWORD = 0x00003617;
4983///Certification revocation check of peer's certificate failed.
4984pub const ERROR_IPSEC_IKE_PEER_CRL_FAILED: DWORD = 0x00003618;
4985///New policy invalidated SAs formed with the old policy.
4986pub const ERROR_IPSEC_IKE_POLICY_CHANGE: DWORD = 0x00003619;
4987///There is no available main mode IKE policy.
4988pub const ERROR_IPSEC_IKE_NO_MM_POLICY: DWORD = 0x0000361A;
4989///Failed to enabled trusted computer base (TCB) privilege.
4990pub const ERROR_IPSEC_IKE_NOTCBPRIV: DWORD = 0x0000361B;
4991///Failed to load SECURITY.DLL.
4992pub const ERROR_IPSEC_IKE_SECLOADFAIL: DWORD = 0x0000361C;
4993///Failed to obtain the security function table dispatch address from the SSPI.
4994pub const ERROR_IPSEC_IKE_FAILSSPINIT: DWORD = 0x0000361D;
4995///Failed to query the Kerberos package to obtain the max token size.
4996pub const ERROR_IPSEC_IKE_FAILQUERYSSP: DWORD = 0x0000361E;
4997///Failed to obtain the Kerberos server credentials for the Internet Security Association and Key Management Protocol (ISAKMP)/ERROR_IPSEC_IKE service. Kerberos authentication will not function. The most likely reason for this is lack of domain membership. This is normal if your computer is a member of a workgroup.
4998pub const ERROR_IPSEC_IKE_SRVACQFAIL: DWORD = 0x0000361F;
4999///Failed to determine the SSPI principal name for ISAKMP/ERROR_IPSEC_IKE service (QueryCredentialsAttributes).
5000pub const ERROR_IPSEC_IKE_SRVQUERYCRED: DWORD = 0x00003620;
5001///Failed to obtain a new service provider interface (SPI) for the inbound SA from the IPsec driver. The most common cause for this is that the driver does not have the correct filter. Check your policy to verify the filters.
5002pub const ERROR_IPSEC_IKE_GETSPIFAIL: DWORD = 0x00003621;
5003///Given filter is invalid.
5004pub const ERROR_IPSEC_IKE_INVALID_FILTER: DWORD = 0x00003622;
5005///Memory allocation failed.
5006pub const ERROR_IPSEC_IKE_OUT_OF_MEMORY: DWORD = 0x00003623;
5007///Failed to add an SA to the IPSec driver. The most common cause for this is if the IKE negotiation took too long to complete. If the problem persists, reduce the load on the faulting machine.
5008pub const ERROR_IPSEC_IKE_ADD_UPDATE_KEY_FAILED: DWORD = 0x00003624;
5009///Invalid policy.
5010pub const ERROR_IPSEC_IKE_INVALID_POLICY: DWORD = 0x00003625;
5011///Invalid digital object identifier (DOI).
5012pub const ERROR_IPSEC_IKE_UNKNOWN_DOI: DWORD = 0x00003626;
5013///Invalid situation.
5014pub const ERROR_IPSEC_IKE_INVALID_SITUATION: DWORD = 0x00003627;
5015///Diffie-Hellman failure.
5016pub const ERROR_IPSEC_IKE_DH_FAILURE: DWORD = 0x00003628;
5017///Invalid Diffie-Hellman group.
5018pub const ERROR_IPSEC_IKE_INVALID_GROUP: DWORD = 0x00003629;
5019///Error encrypting payload.
5020pub const ERROR_IPSEC_IKE_ENCRYPT: DWORD = 0x0000362A;
5021///Error decrypting payload.
5022pub const ERROR_IPSEC_IKE_DECRYPT: DWORD = 0x0000362B;
5023///Policy match error.
5024pub const ERROR_IPSEC_IKE_POLICY_MATCH: DWORD = 0x0000362C;
5025///Unsupported ID.
5026pub const ERROR_IPSEC_IKE_UNSUPPORTED_ID: DWORD = 0x0000362D;
5027///Hash verification failed.
5028pub const ERROR_IPSEC_IKE_INVALID_HASH: DWORD = 0x0000362E;
5029///Invalid hash algorithm.
5030pub const ERROR_IPSEC_IKE_INVALID_HASH_ALG: DWORD = 0x0000362F;
5031///Invalid hash size.
5032pub const ERROR_IPSEC_IKE_INVALID_HASH_SIZE: DWORD = 0x00003630;
5033///Invalid encryption algorithm.
5034pub const ERROR_IPSEC_IKE_INVALID_ENCRYPT_ALG: DWORD = 0x00003631;
5035///Invalid authentication algorithm.
5036pub const ERROR_IPSEC_IKE_INVALID_AUTH_ALG: DWORD = 0x00003632;
5037///Invalid certificate signature.
5038pub const ERROR_IPSEC_IKE_INVALID_SIG: DWORD = 0x00003633;
5039///Load failed.
5040pub const ERROR_IPSEC_IKE_LOAD_FAILED: DWORD = 0x00003634;
5041///Deleted by using an RPC call.
5042pub const ERROR_IPSEC_IKE_RPC_DELETE: DWORD = 0x00003635;
5043///A temporary state was created to perform reinitialization. This is not a real failure.
5044pub const ERROR_IPSEC_IKE_BENIGN_REINIT: DWORD = 0x00003636;
5045///The lifetime value received in the Responder Lifetime Notify is below the Windows 2000 configured minimum value. Fix the policy on the peer machine.
5046pub const ERROR_IPSEC_IKE_INVALID_RESPONDER_LIFETIME_NOTIFY: DWORD = 0x00003637;
5047///Key length in the certificate is too small for configured security requirements.
5048pub const ERROR_IPSEC_IKE_INVALID_CERT_KEYLEN: DWORD = 0x00003639;
5049///Maximum number of established MM SAs to peer exceeded.
5050pub const ERROR_IPSEC_IKE_MM_LIMIT: DWORD = 0x0000363A;
5051///The IKE received a policy that disables negotiation.
5052pub const ERROR_IPSEC_IKE_NEGOTIATION_DISABLED: DWORD = 0x0000363B;
5053///Reached maximum quick mode limit for the main mode. New main mode will be started.
5054pub const ERROR_IPSEC_IKE_QM_LIMIT: DWORD = 0x0000363C;
5055///Main mode SA lifetime expired or the peer sent a main mode delete.
5056pub const ERROR_IPSEC_IKE_MM_EXPIRED: DWORD = 0x0000363D;
5057///Main mode SA assumed to be invalid because peer stopped responding.
5058pub const ERROR_IPSEC_IKE_PEER_MM_ASSUMED_INVALID: DWORD = 0x0000363E;
5059///Certificate does not chain to a trusted root in IPsec policy.
5060pub const ERROR_IPSEC_IKE_CERT_CHAIN_POLICY_MISMATCH: DWORD = 0x0000363F;
5061///Received unexpected message ID.
5062pub const ERROR_IPSEC_IKE_UNEXPECTED_MESSAGE_ID: DWORD = 0x00003640;
5063///Received invalid AuthIP user mode attributes.
5064pub const ERROR_IPSEC_IKE_INVALID_UMATTS: DWORD = 0x00003641;
5065///Sent DOS cookie notify to initiator.
5066pub const ERROR_IPSEC_IKE_DOS_COOKIE_SENT: DWORD = 0x00003642;
5067///The IKE service is shutting down.
5068pub const ERROR_IPSEC_IKE_SHUTTING_DOWN: DWORD = 0x00003643;
5069///Could not verify the binding between the color graphics adapter (CGA) address and the certificate.
5070pub const ERROR_IPSEC_IKE_CGA_AUTH_FAILED: DWORD = 0x00003644;
5071///Error processing the NatOA payload.
5072pub const ERROR_IPSEC_IKE_PROCESS_ERR_NATOA: DWORD = 0x00003645;
5073///The parameters of the main mode are invalid for this quick mode.
5074pub const ERROR_IPSEC_IKE_INVALID_MM_FOR_QM: DWORD = 0x00003646;
5075///The quick mode SA was expired by the IPsec driver.
5076pub const ERROR_IPSEC_IKE_QM_EXPIRED: DWORD = 0x00003647;
5077///Too many dynamically added IKEEXT filters were detected.
5078pub const ERROR_IPSEC_IKE_TOO_MANY_FILTERS: DWORD = 0x00003648;
5079///Ends the list of frequencies of various IKE Win32 error codes encountered during negotiations.
5080pub const ERROR_IPSEC_IKE_NEG_STATUS_END: DWORD = 0x00003649;
5081///The requested section was not present in the activation context.
5082pub const ERROR_SXS_SECTION_NOT_FOUND: DWORD = 0x000036B0;
5083///The application has failed to start because its side-by-side configuration is incorrect. See the application event log for more detail.
5084pub const ERROR_SXS_CANT_GEN_ACTCTX: DWORD = 0x000036B1;
5085///The application binding data format is invalid.
5086pub const ERROR_SXS_INVALID_ACTCTXDATA_FORMAT: DWORD = 0x000036B2;
5087///The referenced assembly is not installed on your system.
5088pub const ERROR_SXS_ASSEMBLY_NOT_FOUND: DWORD = 0x000036B3;
5089///The manifest file does not begin with the required tag and format information.
5090pub const ERROR_SXS_MANIFEST_FORMAT_ERROR: DWORD = 0x000036B4;
5091///The manifest file contains one or more syntax errors.
5092pub const ERROR_SXS_MANIFEST_PARSE_ERROR: DWORD = 0x000036B5;
5093///The application attempted to activate a disabled activation context.
5094pub const ERROR_SXS_ACTIVATION_CONTEXT_DISABLED: DWORD = 0x000036B6;
5095///The requested lookup key was not found in any active activation context.
5096pub const ERROR_SXS_KEY_NOT_FOUND: DWORD = 0x000036B7;
5097///A component version required by the application conflicts with another active component version.
5098pub const ERROR_SXS_VERSION_CONFLICT: DWORD = 0x000036B8;
5099///The type requested activation context section does not match the query API used.
5100pub const ERROR_SXS_WRONG_SECTION_TYPE: DWORD = 0x000036B9;
5101///Lack of system resources has required isolated activation to be disabled for the current thread of execution.
5102pub const ERROR_SXS_THREAD_QUERIES_DISABLED: DWORD = 0x000036BA;
5103///An attempt to set the process default activation context failed because the process default activation context was already set.
5104pub const ERROR_SXS_PROCESS_DEFAULT_ALREADY_SET: DWORD = 0x000036BB;
5105///The encoding group identifier specified is not recognized.
5106pub const ERROR_SXS_UNKNOWN_ENCODING_GROUP: DWORD = 0x000036BC;
5107///The encoding requested is not recognized.
5108pub const ERROR_SXS_UNKNOWN_ENCODING: DWORD = 0x000036BD;
5109///The manifest contains a reference to an invalid URI.
5110pub const ERROR_SXS_INVALID_XML_NAMESPACE_URI: DWORD = 0x000036BE;
5111///The application manifest contains a reference to a dependent assembly that is not installed.
5112pub const ERROR_SXS_ROOT_MANIFEST_DEPENDENCY_OT_INSTALLED: DWORD = 0x000036BF;
5113///The manifest for an assembly used by the application has a reference to a dependent assembly that is not installed.
5114pub const ERROR_SXS_LEAF_MANIFEST_DEPENDENCY_NOT_INSTALLED: DWORD = 0x000036C0;
5115///The manifest contains an attribute for the assembly identity that is not valid.
5116pub const ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE: DWORD = 0x000036C1;
5117///The manifest is missing the required default namespace specification on the assembly element.
5118pub const ERROR_SXS_MANIFEST_MISSING_REQUIRED_DEFAULT_NAMESPACE: DWORD = 0x000036C2;
5119///The manifest has a default namespace specified on the assembly element but its value is not urn:schemas-microsoft-com:asm.v1"."
5120pub const ERROR_SXS_MANIFEST_INVALID_REQUIRED_DEFAULT_NAMESPACE: DWORD = 0x000036C3;
5121///The private manifest probed has crossed the reparse-point-associated path.
5122pub const ERROR_SXS_PRIVATE_MANIFEST_CROSS_PATH_WITH_REPARSE_POINT: DWORD = 0x000036C4;
5123///Two or more components referenced directly or indirectly by the application manifest have files by the same name.
5124pub const ERROR_SXS_DUPLICATE_DLL_NAME: DWORD = 0x000036C5;
5125///Two or more components referenced directly or indirectly by the application manifest have window classes with the same name.
5126pub const ERROR_SXS_DUPLICATE_WINDOWCLASS_NAME: DWORD = 0x000036C6;
5127///Two or more components referenced directly or indirectly by the application manifest have the same COM server CLSIDs.
5128pub const ERROR_SXS_DUPLICATE_CLSID: DWORD = 0x000036C7;
5129///Two or more components referenced directly or indirectly by the application manifest have proxies for the same COM interface IIDs.
5130pub const ERROR_SXS_DUPLICATE_IID: DWORD = 0x000036C8;
5131///Two or more components referenced directly or indirectly by the application manifest have the same COM type library TLBIDs.
5132pub const ERROR_SXS_DUPLICATE_TLBID: DWORD = 0x000036C9;
5133///Two or more components referenced directly or indirectly by the application manifest have the same COM ProgIDs.
5134pub const ERROR_SXS_DUPLICATE_PROGID: DWORD = 0x000036CA;
5135///Two or more components referenced directly or indirectly by the application manifest are different versions of the same component, which is not permitted.
5136pub const ERROR_SXS_DUPLICATE_ASSEMBLY_NAME: DWORD = 0x000036CB;
5137///A component's file does not match the verification information present in the component manifest.
5138pub const ERROR_SXS_FILE_HASH_MISMATCH: DWORD = 0x000036CC;
5139///The policy manifest contains one or more syntax errors.
5140pub const ERROR_SXS_POLICY_PARSE_ERROR: DWORD = 0x000036CD;
5141///Manifest Parse Error: A string literal was expected, but no opening quotation mark was found.
5142pub const ERROR_SXS_XML_E_MISSINGQUOTE: DWORD = 0x000036CE;
5143///Manifest Parse Error: Incorrect syntax was used in a comment.
5144pub const ERROR_SXS_XML_E_COMMENTSYNTAX: DWORD = 0x000036CF;
5145///Manifest Parse Error: A name started with an invalid character.
5146pub const ERROR_SXS_XML_E_BADSTARTNAMECHAR: DWORD = 0x000036D0;
5147///Manifest Parse Error: A name contained an invalid character.
5148pub const ERROR_SXS_XML_E_BADNAMECHAR: DWORD = 0x000036D1;
5149///Manifest Parse Error: A string literal contained an invalid character.
5150pub const ERROR_SXS_XML_E_BADCHARINSTRING: DWORD = 0x000036D2;
5151///Manifest Parse Error: Invalid syntax for an XML declaration.
5152pub const ERROR_SXS_XML_E_XMLDECLSYNTAX: DWORD = 0x000036D3;
5153///Manifest Parse Error: An Invalid character was found in text content.
5154pub const ERROR_SXS_XML_E_BADCHARDATA: DWORD = 0x000036D4;
5155///Manifest Parse Error: Required white space was missing.
5156pub const ERROR_SXS_XML_E_MISSINGWHITESPACE: DWORD = 0x000036D5;
5157///Manifest Parse Error: The angle bracket (>) character was expected.
5158pub const ERROR_SXS_XML_E_EXPECTINGTAGEND: DWORD = 0x000036D6;
5159///Manifest Parse Error: A semicolon (;) was expected.
5160pub const ERROR_SXS_XML_E_MISSINGSEMICOLON: DWORD = 0x000036D7;
5161///Manifest Parse Error: Unbalanced parentheses.
5162pub const ERROR_SXS_XML_E_UNBALANCEDPAREN: DWORD = 0x000036D8;
5163///Manifest Parse Error: Internal error.
5164pub const ERROR_SXS_XML_E_INTERNALERROR: DWORD = 0x000036D9;
5165///Manifest Parse Error: Whitespace is not allowed at this location.
5166pub const ERROR_SXS_XML_E_UNEXPECTED_WHITESPACE: DWORD = 0x000036DA;
5167///Manifest Parse Error: End of file reached in invalid state for current encoding.
5168pub const ERROR_SXS_XML_E_INCOMPLETE_ENCODING: DWORD = 0x000036DB;
5169///Manifest Parse Error: Missing parenthesis.
5170pub const ERROR_SXS_XML_E_MISSING_PAREN: DWORD = 0x000036DC;
5171///Manifest Parse Error: A single (') or double (") quotation mark is missing.
5172pub const ERROR_SXS_XML_E_EXPECTINGCLOSEQUOTE: DWORD = 0x000036DD;
5173///Manifest Parse Error: Multiple colons are not allowed in a name.
5174pub const ERROR_SXS_XML_E_MULTIPLE_COLONS: DWORD = 0x000036DE;
5175///Manifest Parse Error: Invalid character for decimal digit.
5176pub const ERROR_SXS_XML_E_INVALID_DECIMAL: DWORD = 0x000036DF;
5177///Manifest Parse Error: Invalid character for hexadecimal digit.
5178pub const ERROR_SXS_XML_E_INVALID_HEXIDECIMAL: DWORD = 0x000036E0;
5179///Manifest Parse Error: Invalid Unicode character value for this platform.
5180pub const ERROR_SXS_XML_E_INVALID_UNICODE: DWORD = 0x000036E1;
5181///Manifest Parse Error: Expecting whitespace or question mark (?).
5182pub const ERROR_SXS_XML_E_WHITESPACEORQUESTIONMARK: DWORD = 0x000036E2;
5183///Manifest Parse Error: End tag was not expected at this location.
5184pub const ERROR_SXS_XML_E_UNEXPECTEDENDTAG: DWORD = 0x000036E3;
5185///Manifest Parse Error: The following tags were not closed: %1.
5186pub const ERROR_SXS_XML_E_UNCLOSEDTAG: DWORD = 0x000036E4;
5187///Manifest Parse Error: Duplicate attribute.
5188pub const ERROR_SXS_XML_E_DUPLICATEATTRIBUTE: DWORD = 0x000036E5;
5189///Manifest Parse Error: Only one top-level element is allowed in an XML document.
5190pub const ERROR_SXS_XML_E_MULTIPLEROOTS: DWORD = 0x000036E6;
5191///Manifest Parse Error: Invalid at the top level of the document.
5192pub const ERROR_SXS_XML_E_INVALIDATROOTLEVEL: DWORD = 0x000036E7;
5193///Manifest Parse Error: Invalid XML declaration.
5194pub const ERROR_SXS_XML_E_BADXMLDECL: DWORD = 0x000036E8;
5195///Manifest Parse Error: XML document must have a top-level element.
5196pub const ERROR_SXS_XML_E_MISSINGROOT: DWORD = 0x000036E9;
5197///Manifest Parse Error: Unexpected end of file.
5198pub const ERROR_SXS_XML_E_UNEXPECTEDEOF: DWORD = 0x000036EA;
5199///Manifest Parse Error: Parameter entities cannot be used inside markup declarations in an internal subset.
5200pub const ERROR_SXS_XML_E_BADPEREFINSUBSET: DWORD = 0x000036EB;
5201///Manifest Parse Error: Element was not closed.
5202pub const ERROR_SXS_XML_E_UNCLOSEDSTARTTAG: DWORD = 0x000036EC;
5203///Manifest Parse Error: End element was missing the angle bracket (>) character.
5204pub const ERROR_SXS_XML_E_UNCLOSEDENDTAG: DWORD = 0x000036ED;
5205///Manifest Parse Error: A string literal was not closed.
5206pub const ERROR_SXS_XML_E_UNCLOSEDSTRING: DWORD = 0x000036EE;
5207///Manifest Parse Error: A comment was not closed.
5208pub const ERROR_SXS_XML_E_UNCLOSEDCOMMENT: DWORD = 0x000036EF;
5209///Manifest Parse Error: A declaration was not closed.
5210pub const ERROR_SXS_XML_E_UNCLOSEDDECL: DWORD = 0x000036F0;
5211///Manifest Parse Error: A CDATA section was not closed.
5212pub const ERROR_SXS_XML_E_UNCLOSEDCDATA: DWORD = 0x000036F1;
5213///Manifest Parse Error: The namespace prefix is not allowed to start with the reserved string xml"."
5214pub const ERROR_SXS_XML_E_RESERVEDNAMESPACE: DWORD = 0x000036F2;
5215///Manifest Parse Error: System does not support the specified encoding.
5216pub const ERROR_SXS_XML_E_INVALIDENCODING: DWORD = 0x000036F3;
5217///Manifest Parse Error: Switch from current encoding to specified encoding not supported.
5218pub const ERROR_SXS_XML_E_INVALIDSWITCH: DWORD = 0x000036F4;
5219///Manifest Parse Error: The name "xml" is reserved and must be lowercase.
5220pub const ERROR_SXS_XML_E_BADXMLCASE: DWORD = 0x000036F5;
5221///Manifest Parse Error: The stand-alone attribute must have the value "yes" or "no".
5222pub const ERROR_SXS_XML_E_INVALID_STANDALONE: DWORD = 0x000036F6;
5223///Manifest Parse Error: The stand-alone attribute cannot be used in external entities.
5224pub const ERROR_SXS_XML_E_UNEXPECTED_STANDALONE: DWORD = 0x000036F7;
5225///Manifest Parse Error: Invalid version number.
5226pub const ERROR_SXS_XML_E_INVALID_VERSION: DWORD = 0x000036F8;
5227///Manifest Parse Error: Missing equal sign (=) between the attribute and the attribute value.
5228pub const ERROR_SXS_XML_E_MISSINGEQUALS: DWORD = 0x000036F9;
5229///Assembly Protection Error: Unable to recover the specified assembly.
5230pub const ERROR_SXS_PROTECTION_RECOVERY_FAILED: DWORD = 0x000036FA;
5231///Assembly Protection Error: The public key for an assembly was too short to be allowed.
5232pub const ERROR_SXS_PROTECTION_PUBLIC_KEY_OO_SHORT: DWORD = 0x000036FB;
5233///Assembly Protection Error: The catalog for an assembly is not valid, or does not match the assembly's manifest.
5234pub const ERROR_SXS_PROTECTION_CATALOG_NOT_VALID: DWORD = 0x000036FC;
5235///An HRESULT could not be translated to a corresponding Win32 error code.
5236pub const ERROR_SXS_UNTRANSLATABLE_HRESULT: DWORD = 0x000036FD;
5237///Assembly Protection Error: The catalog for an assembly is missing.
5238pub const ERROR_SXS_PROTECTION_CATALOG_FILE_MISSING: DWORD = 0x000036FE;
5239///The supplied assembly identity is missing one or more attributes that must be present in this context.
5240pub const ERROR_SXS_MISSING_ASSEMBLY_IDENTITY_ATTRIBUTE: DWORD = 0x000036FF;
5241///The supplied assembly identity has one or more attribute names that contain characters not permitted in XML names.
5242pub const ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE_NAME: DWORD = 0x00003700;
5243///The referenced assembly could not be found.
5244pub const ERROR_SXS_ASSEMBLY_MISSING: DWORD = 0x00003701;
5245///The activation context activation stack for the running thread of execution is corrupt.
5246pub const ERROR_SXS_CORRUPT_ACTIVATION_STACK: DWORD = 0x00003702;
5247///The application isolation metadata for this process or thread has become corrupt.
5248pub const ERROR_SXS_CORRUPTION: DWORD = 0x00003703;
5249///The activation context being deactivated is not the most recently activated one.
5250pub const ERROR_SXS_EARLY_DEACTIVATION: DWORD = 0x00003704;
5251///The activation context being deactivated is not active for the current thread of execution.
5252pub const ERROR_SXS_INVALID_DEACTIVATION: DWORD = 0x00003705;
5253///The activation context being deactivated has already been deactivated.
5254pub const ERROR_SXS_MULTIPLE_DEACTIVATION: DWORD = 0x00003706;
5255///A component used by the isolation facility has requested to terminate the process.
5256pub const ERROR_SXS_PROCESS_TERMINATION_REQUESTED: DWORD = 0x00003707;
5257///A kernel mode component is releasing a reference on an activation context.
5258pub const ERROR_SXS_RELEASE_ACTIVATION_ONTEXT: DWORD = 0x00003708;
5259///The activation context of the system default assembly could not be generated.
5260pub const ERROR_SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY: DWORD = 0x00003709;
5261///The value of an attribute in an identity is not within the legal range.
5262pub const ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_VALUE: DWORD = 0x0000370A;
5263///The name of an attribute in an identity is not within the legal range.
5264pub const ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_NAME: DWORD = 0x0000370B;
5265///An identity contains two definitions for the same attribute.
5266pub const ERROR_SXS_IDENTITY_DUPLICATE_ATTRIBUTE: DWORD = 0x0000370C;
5267///The identity string is malformed. This might be due to a trailing comma, more than two unnamed attributes, a missing attribute name, or a missing attribute value.
5268pub const ERROR_SXS_IDENTITY_PARSE_ERROR: DWORD = 0x0000370D;
5269///A string containing localized substitutable content was malformed. Either a dollar sign ($) was followed by something other than a left parenthesis or another dollar sign, or a substitution's right parenthesis was not found.
5270pub const ERROR_MALFORMED_SUBSTITUTION_STRING: DWORD = 0x0000370E;
5271///The public key token does not correspond to the public key specified.
5272pub const ERROR_SXS_INCORRECT_PUBLIC_KEY_OKEN: DWORD = 0x0000370F;
5273///A substitution string had no mapping.
5274pub const ERROR_UNMAPPED_SUBSTITUTION_STRING: DWORD = 0x00003710;
5275///The component must be locked before making the request.
5276pub const ERROR_SXS_ASSEMBLY_NOT_LOCKED: DWORD = 0x00003711;
5277///The component store has been corrupted.
5278pub const ERROR_SXS_COMPONENT_STORE_CORRUPT: DWORD = 0x00003712;
5279///An advanced installer failed during setup or servicing.
5280pub const ERROR_ADVANCED_INSTALLER_FAILED: DWORD = 0x00003713;
5281///The character encoding in the XML declaration did not match the encoding used in the document.
5282pub const ERROR_XML_ENCODING_MISMATCH: DWORD = 0x00003714;
5283///The identities of the manifests are identical, but the contents are different.
5284pub const ERROR_SXS_MANIFEST_IDENTITY_SAME_BUT_CONTENTS_DIFFERENT: DWORD = 0x00003715;
5285///The component identities are different.
5286pub const ERROR_SXS_IDENTITIES_DIFFERENT: DWORD = 0x00003716;
5287///The assembly is not a deployment.
5288pub const ERROR_SXS_ASSEMBLY_IS_NOT_A_DEPLOYMENT: DWORD = 0x00003717;
5289///The file is not a part of the assembly.
5290pub const ERROR_SXS_FILE_NOT_PART_OF_ASSEMBLY: DWORD = 0x00003718;
5291///The size of the manifest exceeds the maximum allowed.
5292pub const ERROR_SXS_MANIFEST_TOO_BIG: DWORD = 0x00003719;
5293///The setting is not registered.
5294pub const ERROR_SXS_SETTING_NOT_REGISTERED: DWORD = 0x0000371A;
5295///One or more required members of the transaction are not present.
5296pub const ERROR_SXS_TRANSACTION_CLOSURE_INCOMPLETE: DWORD = 0x0000371B;
5297///The specified channel path is invalid.
5298pub const ERROR_EVT_INVALID_CHANNEL_PATH: DWORD = 0x00003A98;
5299///The specified query is invalid.
5300pub const ERROR_EVT_INVALID_QUERY: DWORD = 0x00003A99;
5301///The publisher metadata cannot be found in the resource.
5302pub const ERROR_EVT_PUBLISHER_METADATA_NOT_FOUND: DWORD = 0x00003A9A;
5303///The template for an event definition cannot be found in the resource (error = %1).
5304pub const ERROR_EVT_EVENT_TEMPLATE_NOT_FOUND: DWORD = 0x00003A9B;
5305///The specified publisher name is invalid.
5306pub const ERROR_EVT_INVALID_PUBLISHER_NAME: DWORD = 0x00003A9C;
5307///The event data raised by the publisher is not compatible with the event template definition in the publisher's manifest.
5308pub const ERROR_EVT_INVALID_EVENT_DATA: DWORD = 0x00003A9D;
5309///The specified channel could not be found. Check channel configuration.
5310pub const ERROR_EVT_CHANNEL_NOT_FOUND: DWORD = 0x00003A9F;
5311///The specified XML text was not well-formed. See extended error for more details.
5312pub const ERROR_EVT_MALFORMED_XML_TEXT: DWORD = 0x00003AA0;
5313///The caller is trying to subscribe to a direct channel which is not allowed. The events for a direct channel go directly to a log file and cannot be subscribed to.
5314pub const ERROR_EVT_SUBSCRIPTION_TO_DIRECT_CHANNEL: DWORD = 0x00003AA1;
5315///Configuration error.
5316pub const ERROR_EVT_CONFIGURATION_ERROR: DWORD = 0x00003AA2;
5317///The query result is stale or invalid. This might be due to the log being cleared or rolling over after the query result was created. Users should handle this code by releasing the query result object and reissuing the query.
5318pub const ERROR_EVT_QUERY_RESULT_STALE: DWORD = 0x00003AA3;
5319///Query result is currently at an invalid position.
5320pub const ERROR_EVT_QUERY_RESULT_INVALID_POSITION: DWORD = 0x00003AA4;
5321///Registered Microsoft XML (MSXML) does not support validation.
5322pub const ERROR_EVT_NON_VALIDATING_MSXML: DWORD = 0x00003AA5;
5323///An expression can only be followed by a change-of-scope operation if it itself evaluates to a node set and is not already part of some other change-of-scope operation.
5324pub const ERROR_EVT_FILTER_ALREADYSCOPED: DWORD = 0x00003AA6;
5325///Cannot perform a step operation from a term that does not represent an element set.
5326pub const ERROR_EVT_FILTER_NOTELTSET: DWORD = 0x00003AA7;
5327///Left side arguments to binary operators must be either attributes, nodes, or variables and right side arguments must be constants.
5328pub const ERROR_EVT_FILTER_INVARG: DWORD = 0x00003AA8;
5329///A step operation must involve either a node test or, in the case of a predicate, an algebraic expression against which to test each node in the node set identified by the preceding node set can be evaluated.
5330pub const ERROR_EVT_FILTER_INVTEST: DWORD = 0x00003AA9;
5331///This data type is currently unsupported.
5332pub const ERROR_EVT_FILTER_INVTYPE: DWORD = 0x00003AAA;
5333///A syntax error occurred at position %1!d!
5334pub const ERROR_EVT_FILTER_PARSEERR: DWORD = 0x00003AAB;
5335///This operator is unsupported by this implementation of the filter.
5336pub const ERROR_EVT_FILTER_UNSUPPORTEDOP: DWORD = 0x00003AAC;
5337///The token encountered was unexpected.
5338pub const ERROR_EVT_FILTER_UNEXPECTEDTOKEN: DWORD = 0x00003AAD;
5339///The requested operation cannot be performed over an enabled direct channel. The channel must first be disabled before performing the requested operation.
5340pub const ERROR_EVT_INVALID_OPERATION_OVER_ENABLED_DIRECT_CHANNEL: DWORD = 0x00003AAE;
5341///Channel property %1!s! contains an invalid value. The value has an invalid type, is outside the valid range, cannot be updated, or is not supported by this type of channel.
5342pub const ERROR_EVT_INVALID_CHANNEL_PROPERTY_VALUE: DWORD = 0x00003AAF;
5343///Publisher property %1!s! contains an invalid value. The value has an invalid type, is outside the valid range, cannot be updated, or is not supported by this type of publisher.
5344pub const ERROR_EVT_INVALID_PUBLISHER_PROPERTY_VALUE: DWORD = 0x00003AB0;
5345///The channel fails to activate.
5346pub const ERROR_EVT_CHANNEL_CANNOT_ACTIVATE: DWORD = 0x00003AB1;
5347///The xpath expression exceeded supported complexity. Simplify it or split it into two or more simple expressions.
5348pub const ERROR_EVT_FILTER_TOO_COMPLEX: DWORD = 0x00003AB2;
5349///The message resource is present but the message is not found in the string or message table.
5350pub const ERROR_EVT_MESSAGE_NOT_FOUND: DWORD = 0x00003AB3;
5351///The message ID for the desired message could not be found.
5352pub const ERROR_EVT_MESSAGE_ID_NOT_FOUND: DWORD = 0x00003AB4;
5353///The substitution string for the insert index (%1) could not be found.
5354pub const ERROR_EVT_UNRESOLVED_VALUE_INSERT: DWORD = 0x00003AB5;
5355///The description string for the parameter reference (%1) could not be found.
5356pub const ERROR_EVT_UNRESOLVED_PARAMETER_INSERT: DWORD = 0x00003AB6;
5357///The maximum number of replacements has been reached.
5358pub const ERROR_EVT_MAX_INSERTS_REACHED: DWORD = 0x00003AB7;
5359///The event definition could not be found for the event ID (%1).
5360pub const ERROR_EVT_EVENT_DEFINITION_NOT_OUND: DWORD = 0x00003AB8;
5361///The locale-specific resource for the desired message is not present.
5362pub const ERROR_EVT_MESSAGE_LOCALE_NOT_FOUND: DWORD = 0x00003AB9;
5363///The resource is too old to be compatible.
5364pub const ERROR_EVT_VERSION_TOO_OLD: DWORD = 0x00003ABA;
5365///The resource is too new to be compatible.
5366pub const ERROR_EVT_VERSION_TOO_NEW: DWORD = 0x00003ABB;
5367///The channel at index %1 of the query cannot be opened.
5368pub const ERROR_EVT_CANNOT_OPEN_CHANNEL_OF_QUERY: DWORD = 0x00003ABC;
5369///The publisher has been disabled and its resource is not available. This usually occurs when the publisher is in the process of being uninstalled or upgraded.
5370pub const ERROR_EVT_PUBLISHER_DISABLED: DWORD = 0x00003ABD;
5371///The subscription fails to activate.
5372pub const ERROR_EC_SUBSCRIPTION_CANNOT_ACTIVATE: DWORD = 0x00003AE8;
5373///The log of the subscription is in a disabled state and events cannot be forwarded to it. The log must first be enabled before the subscription can be activated.
5374pub const ERROR_EC_LOG_DISABLED: DWORD = 0x00003AE9;
5375///The resource loader failed to find the Multilingual User Interface (MUI) file.
5376pub const ERROR_MUI_FILE_NOT_FOUND: DWORD = 0x00003AFC;
5377///The resource loader failed to load the MUI file because the file failed to pass validation.
5378pub const ERROR_MUI_INVALID_FILE: DWORD = 0x00003AFD;
5379///The release candidate (RC) manifest is corrupted with garbage data, is an unsupported version, or is missing a required item.
5380pub const ERROR_MUI_INVALID_RC_CONFIG: DWORD = 0x00003AFE;
5381///The RC manifest has an invalid culture name.
5382pub const ERROR_MUI_INVALID_LOCALE_NAME: DWORD = 0x00003AFF;
5383///The RC Manifest has an invalid ultimate fallback name.
5384pub const ERROR_MUI_INVALID_ULTIMATEFALLBACK_NAME: DWORD = 0x00003B00;
5385///The resource loader cache does not have a loaded MUI entry.
5386pub const ERROR_MUI_FILE_NOT_LOADED: DWORD = 0x00003B01;
5387///The user stopped resource enumeration.
5388pub const ERROR_RESOURCE_ENUM_USER_STOP: DWORD = 0x00003B02;
5389///User interface language installation failed.
5390pub const ERROR_MUI_INTLSETTINGS_UILANG_NOT_INSTALLED: DWORD = 0x00003B03;
5391///Locale installation failed.
5392pub const ERROR_MUI_INTLSETTINGS_INVALID_LOCALE_NAME: DWORD = 0x00003B04;
5393///The monitor returned a DDC/CI capabilities string that did not comply with the ACCESS.bus 3.0, DDC/CI 1.1, or MCCS 2 Revision 1 specification.
5394pub const ERROR_MCA_INVALID_CAPABILITIES_STRING: DWORD = 0x00003B60;
5395///The monitor's VCP version (0xDF) VCP code returned an invalid version value.
5396pub const ERROR_MCA_INVALID_VCP_VERSION: DWORD = 0x00003B61;
5397///The monitor does not comply with the MCCS specification it claims to support.
5398pub const ERROR_MCA_MONITOR_VIOLATES_MCCS_SPECIFICATION: DWORD = 0x00003B62;
5399///The MCCS version in a monitor's mccs_ver capability does not match the MCCS version the monitor reports when the VCP version (0xDF) VCP code is used.
5400pub const ERROR_MCA_MCCS_VERSION_MISMATCH: DWORD = 0x00003B63;
5401///The monitor configuration API works only with monitors that support the MCCS 1.0, MCCS 2.0, or MCCS 2.0 Revision 1 specifications.
5402pub const ERROR_MCA_UNSUPPORTED_MCCS_VERSION: DWORD = 0x00003B64;
5403///An internal monitor configuration API error occurred.
5404pub const ERROR_MCA_INTERNAL_ERROR: DWORD = 0x00003B65;
5405///The monitor returned an invalid monitor technology type. CRT, plasma, and LCD (TFT) are examples of monitor technology types. This error implies that the monitor violated the MCCS 2.0 or MCCS 2.0 Revision 1 specification.
5406pub const ERROR_MCA_INVALID_TECHNOLOGY_TYPE_RETURNED: DWORD = 0x00003B66;
5407///The SetMonitorColorTemperature() caller passed a color temperature to it that the current monitor did not support. CRT, plasma, and LCD (TFT) are examples of monitor technology types. This error implies that the monitor violated the MCCS 2.0 or MCCS 2.0 Revision 1 specification.
5408pub const ERROR_MCA_UNSUPPORTED_COLOR_TEMPERATURE: DWORD = 0x00003B67;
5409///The requested system device cannot be identified due to multiple indistinguishable devices potentially matching the identification criteria.
5410pub const ERROR_AMBIGUOUS_SYSTEM_DEVICE: DWORD = 0x00003B92;
5411///The requested system device cannot be found.
5412pub const ERROR_SYSTEM_DEVICE_NOT_FOUND: DWORD = 0x00003BC3;