Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10326 lines
252 KiB

  1. /*++ BUILD Version: 0005 // Increment this if a change has global effects
  2. Copyright (c) Microsoft Corporation. All rights reserved.
  3. Module Name:
  4. ntstatus.h
  5. Abstract:
  6. Constant definitions for the NTSTATUS values.
  7. Author:
  8. Portable Systems Group 30-Mar-1989
  9. Revision History:
  10. Notes:
  11. This file is generated by the MC tool from the ntstatus.mc file.
  12. Please add new error values to the end of the file. To do otherwise
  13. will jumble the error values.
  14. --*/
  15. #ifndef _NTSTATUS_
  16. #define _NTSTATUS_
  17. #if defined (_MSC_VER) && (_MSC_VER >= 1020)
  18. #pragma once
  19. #endif
  20. #ifndef WIN32_NO_STATUS // winnt
  21. // begin_ntsecapi
  22. /*lint -save -e767 */ // Don't complain about different definitions // winnt
  23. /////////////////////////////////////////////////////////////////////////
  24. //
  25. // Standard Success values
  26. //
  27. //
  28. /////////////////////////////////////////////////////////////////////////
  29. //
  30. // The success status codes 0 - 63 are reserved for wait completion status.
  31. // FacilityCodes 0x5 - 0xF have been allocated by various drivers.
  32. //
  33. #define STATUS_SUCCESS ((NTSTATUS)0x00000000L) // ntsubauth
  34. //
  35. // Values are 32 bit values layed out as follows:
  36. //
  37. // 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
  38. // 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
  39. // +---+-+-+-----------------------+-------------------------------+
  40. // |Sev|C|R| Facility | Code |
  41. // +---+-+-+-----------------------+-------------------------------+
  42. //
  43. // where
  44. //
  45. // Sev - is the severity code
  46. //
  47. // 00 - Success
  48. // 01 - Informational
  49. // 10 - Warning
  50. // 11 - Error
  51. //
  52. // C - is the Customer code flag
  53. //
  54. // R - is a reserved bit
  55. //
  56. // Facility - is the facility code
  57. //
  58. // Code - is the facility's status code
  59. //
  60. //
  61. // Define the facility codes
  62. //
  63. #define FACILITY_USB_ERROR_CODE 0x10
  64. #define FACILITY_TERMINAL_SERVER 0xA
  65. #define FACILITY_SXS_ERROR_CODE 0x15
  66. #define FACILITY_RPC_STUBS 0x3
  67. #define FACILITY_RPC_RUNTIME 0x2
  68. #define FACILITY_IO_ERROR_CODE 0x4
  69. #define FACILITY_HID_ERROR_CODE 0x11
  70. #define FACILITY_FIREWIRE_ERROR_CODE 0x12
  71. #define FACILITY_DEBUGGER 0x1
  72. #define FACILITY_CLUSTER_ERROR_CODE 0x13
  73. #define FACILITY_ACPI_ERROR_CODE 0x14
  74. //
  75. // Define the severity codes
  76. //
  77. #define STATUS_SEVERITY_WARNING 0x2
  78. #define STATUS_SEVERITY_SUCCESS 0x0
  79. #define STATUS_SEVERITY_INFORMATIONAL 0x1
  80. #define STATUS_SEVERITY_ERROR 0x3
  81. //
  82. // MessageId: STATUS_WAIT_0
  83. //
  84. // MessageText:
  85. //
  86. // STATUS_WAIT_0
  87. //
  88. #define STATUS_WAIT_0 ((NTSTATUS)0x00000000L) // winnt
  89. //
  90. // MessageId: STATUS_WAIT_1
  91. //
  92. // MessageText:
  93. //
  94. // STATUS_WAIT_1
  95. //
  96. #define STATUS_WAIT_1 ((NTSTATUS)0x00000001L)
  97. //
  98. // MessageId: STATUS_WAIT_2
  99. //
  100. // MessageText:
  101. //
  102. // STATUS_WAIT_2
  103. //
  104. #define STATUS_WAIT_2 ((NTSTATUS)0x00000002L)
  105. //
  106. // MessageId: STATUS_WAIT_3
  107. //
  108. // MessageText:
  109. //
  110. // STATUS_WAIT_3
  111. //
  112. #define STATUS_WAIT_3 ((NTSTATUS)0x00000003L)
  113. //
  114. // MessageId: STATUS_WAIT_63
  115. //
  116. // MessageText:
  117. //
  118. // STATUS_WAIT_63
  119. //
  120. #define STATUS_WAIT_63 ((NTSTATUS)0x0000003FL)
  121. //
  122. // The success status codes 128 - 191 are reserved for wait completion
  123. // status with an abandoned mutant object.
  124. //
  125. #define STATUS_ABANDONED ((NTSTATUS)0x00000080L)
  126. //
  127. // MessageId: STATUS_ABANDONED_WAIT_0
  128. //
  129. // MessageText:
  130. //
  131. // STATUS_ABANDONED_WAIT_0
  132. //
  133. #define STATUS_ABANDONED_WAIT_0 ((NTSTATUS)0x00000080L) // winnt
  134. //
  135. // MessageId: STATUS_ABANDONED_WAIT_63
  136. //
  137. // MessageText:
  138. //
  139. // STATUS_ABANDONED_WAIT_63
  140. //
  141. #define STATUS_ABANDONED_WAIT_63 ((NTSTATUS)0x000000BFL)
  142. //
  143. // The success status codes 256, 257, 258, and 258 are reserved for
  144. // User APC, Kernel APC, Alerted, and Timeout.
  145. //
  146. //
  147. // MessageId: STATUS_USER_APC
  148. //
  149. // MessageText:
  150. //
  151. // STATUS_USER_APC
  152. //
  153. #define STATUS_USER_APC ((NTSTATUS)0x000000C0L) // winnt
  154. //
  155. // MessageId: STATUS_KERNEL_APC
  156. //
  157. // MessageText:
  158. //
  159. // STATUS_KERNEL_APC
  160. //
  161. #define STATUS_KERNEL_APC ((NTSTATUS)0x00000100L)
  162. //
  163. // MessageId: STATUS_ALERTED
  164. //
  165. // MessageText:
  166. //
  167. // STATUS_ALERTED
  168. //
  169. #define STATUS_ALERTED ((NTSTATUS)0x00000101L)
  170. //
  171. // MessageId: STATUS_TIMEOUT
  172. //
  173. // MessageText:
  174. //
  175. // STATUS_TIMEOUT
  176. //
  177. #define STATUS_TIMEOUT ((NTSTATUS)0x00000102L) // winnt
  178. //
  179. // MessageId: STATUS_PENDING
  180. //
  181. // MessageText:
  182. //
  183. // The operation that was requested is pending completion.
  184. //
  185. #define STATUS_PENDING ((NTSTATUS)0x00000103L) // winnt
  186. //
  187. // MessageId: STATUS_REPARSE
  188. //
  189. // MessageText:
  190. //
  191. // A reparse should be performed by the Object Manager since the name of the file resulted in a symbolic link.
  192. //
  193. #define STATUS_REPARSE ((NTSTATUS)0x00000104L)
  194. //
  195. // MessageId: STATUS_MORE_ENTRIES
  196. //
  197. // MessageText:
  198. //
  199. // Returned by enumeration APIs to indicate more information is available to successive calls.
  200. //
  201. #define STATUS_MORE_ENTRIES ((NTSTATUS)0x00000105L)
  202. //
  203. // MessageId: STATUS_NOT_ALL_ASSIGNED
  204. //
  205. // MessageText:
  206. //
  207. // Indicates not all privileges referenced are assigned to the caller.
  208. // This allows, for example, all privileges to be disabled without having to know exactly which privileges are assigned.
  209. //
  210. #define STATUS_NOT_ALL_ASSIGNED ((NTSTATUS)0x00000106L)
  211. //
  212. // MessageId: STATUS_SOME_NOT_MAPPED
  213. //
  214. // MessageText:
  215. //
  216. // Some of the information to be translated has not been translated.
  217. //
  218. #define STATUS_SOME_NOT_MAPPED ((NTSTATUS)0x00000107L)
  219. //
  220. // MessageId: STATUS_OPLOCK_BREAK_IN_PROGRESS
  221. //
  222. // MessageText:
  223. //
  224. // An open/create operation completed while an oplock break is underway.
  225. //
  226. #define STATUS_OPLOCK_BREAK_IN_PROGRESS ((NTSTATUS)0x00000108L)
  227. //
  228. // MessageId: STATUS_VOLUME_MOUNTED
  229. //
  230. // MessageText:
  231. //
  232. // A new volume has been mounted by a file system.
  233. //
  234. #define STATUS_VOLUME_MOUNTED ((NTSTATUS)0x00000109L)
  235. //
  236. // MessageId: STATUS_RXACT_COMMITTED
  237. //
  238. // MessageText:
  239. //
  240. // This success level status indicates that the transaction state already exists for the registry sub-tree, but that a transaction commit was previously aborted.
  241. // The commit has now been completed.
  242. //
  243. #define STATUS_RXACT_COMMITTED ((NTSTATUS)0x0000010AL)
  244. //
  245. // MessageId: STATUS_NOTIFY_CLEANUP
  246. //
  247. // MessageText:
  248. //
  249. // This indicates that a notify change request has been completed due to closing the handle which made the notify change request.
  250. //
  251. #define STATUS_NOTIFY_CLEANUP ((NTSTATUS)0x0000010BL)
  252. //
  253. // MessageId: STATUS_NOTIFY_ENUM_DIR
  254. //
  255. // MessageText:
  256. //
  257. // This indicates that a notify change request is being completed and that the information is not being returned in the caller's buffer.
  258. // The caller now needs to enumerate the files to find the changes.
  259. //
  260. #define STATUS_NOTIFY_ENUM_DIR ((NTSTATUS)0x0000010CL)
  261. //
  262. // MessageId: STATUS_NO_QUOTAS_FOR_ACCOUNT
  263. //
  264. // MessageText:
  265. //
  266. // {No Quotas}
  267. // No system quota limits are specifically set for this account.
  268. //
  269. #define STATUS_NO_QUOTAS_FOR_ACCOUNT ((NTSTATUS)0x0000010DL)
  270. //
  271. // MessageId: STATUS_PRIMARY_TRANSPORT_CONNECT_FAILED
  272. //
  273. // MessageText:
  274. //
  275. // {Connect Failure on Primary Transport}
  276. // An attempt was made to connect to the remote server %hs on the primary transport, but the connection failed.
  277. // The computer WAS able to connect on a secondary transport.
  278. //
  279. #define STATUS_PRIMARY_TRANSPORT_CONNECT_FAILED ((NTSTATUS)0x0000010EL)
  280. //
  281. // MessageId: STATUS_PAGE_FAULT_TRANSITION
  282. //
  283. // MessageText:
  284. //
  285. // Page fault was a transition fault.
  286. //
  287. #define STATUS_PAGE_FAULT_TRANSITION ((NTSTATUS)0x00000110L)
  288. //
  289. // MessageId: STATUS_PAGE_FAULT_DEMAND_ZERO
  290. //
  291. // MessageText:
  292. //
  293. // Page fault was a demand zero fault.
  294. //
  295. #define STATUS_PAGE_FAULT_DEMAND_ZERO ((NTSTATUS)0x00000111L)
  296. //
  297. // MessageId: STATUS_PAGE_FAULT_COPY_ON_WRITE
  298. //
  299. // MessageText:
  300. //
  301. // Page fault was a demand zero fault.
  302. //
  303. #define STATUS_PAGE_FAULT_COPY_ON_WRITE ((NTSTATUS)0x00000112L)
  304. //
  305. // MessageId: STATUS_PAGE_FAULT_GUARD_PAGE
  306. //
  307. // MessageText:
  308. //
  309. // Page fault was a demand zero fault.
  310. //
  311. #define STATUS_PAGE_FAULT_GUARD_PAGE ((NTSTATUS)0x00000113L)
  312. //
  313. // MessageId: STATUS_PAGE_FAULT_PAGING_FILE
  314. //
  315. // MessageText:
  316. //
  317. // Page fault was satisfied by reading from a secondary storage device.
  318. //
  319. #define STATUS_PAGE_FAULT_PAGING_FILE ((NTSTATUS)0x00000114L)
  320. //
  321. // MessageId: STATUS_CACHE_PAGE_LOCKED
  322. //
  323. // MessageText:
  324. //
  325. // Cached page was locked during operation.
  326. //
  327. #define STATUS_CACHE_PAGE_LOCKED ((NTSTATUS)0x00000115L)
  328. //
  329. // MessageId: STATUS_CRASH_DUMP
  330. //
  331. // MessageText:
  332. //
  333. // Crash dump exists in paging file.
  334. //
  335. #define STATUS_CRASH_DUMP ((NTSTATUS)0x00000116L)
  336. //
  337. // MessageId: STATUS_BUFFER_ALL_ZEROS
  338. //
  339. // MessageText:
  340. //
  341. // Specified buffer contains all zeros.
  342. //
  343. #define STATUS_BUFFER_ALL_ZEROS ((NTSTATUS)0x00000117L)
  344. //
  345. // MessageId: STATUS_REPARSE_OBJECT
  346. //
  347. // MessageText:
  348. //
  349. // A reparse should be performed by the Object Manager since the name of the file resulted in a symbolic link.
  350. //
  351. #define STATUS_REPARSE_OBJECT ((NTSTATUS)0x00000118L)
  352. //
  353. // MessageId: STATUS_RESOURCE_REQUIREMENTS_CHANGED
  354. //
  355. // MessageText:
  356. //
  357. // The device has succeeded a query-stop and its resource requirements have changed.
  358. //
  359. #define STATUS_RESOURCE_REQUIREMENTS_CHANGED ((NTSTATUS)0x00000119L)
  360. //
  361. // MessageId: STATUS_TRANSLATION_COMPLETE
  362. //
  363. // MessageText:
  364. //
  365. // The translator has translated these resources into the global space and no further translations should be performed.
  366. //
  367. #define STATUS_TRANSLATION_COMPLETE ((NTSTATUS)0x00000120L)
  368. //
  369. // MessageId: STATUS_DS_MEMBERSHIP_EVALUATED_LOCALLY
  370. //
  371. // MessageText:
  372. //
  373. // The directory service evaluated group memberships locally, as it was unable to contact a global catalog server.
  374. //
  375. #define STATUS_DS_MEMBERSHIP_EVALUATED_LOCALLY ((NTSTATUS)0x00000121L)
  376. //
  377. // MessageId: STATUS_NOTHING_TO_TERMINATE
  378. //
  379. // MessageText:
  380. //
  381. // A process being terminated has no threads to terminate.
  382. //
  383. #define STATUS_NOTHING_TO_TERMINATE ((NTSTATUS)0x00000122L)
  384. //
  385. // MessageId: STATUS_PROCESS_NOT_IN_JOB
  386. //
  387. // MessageText:
  388. //
  389. // The specified process is not part of a job.
  390. //
  391. #define STATUS_PROCESS_NOT_IN_JOB ((NTSTATUS)0x00000123L)
  392. //
  393. // MessageId: STATUS_PROCESS_IN_JOB
  394. //
  395. // MessageText:
  396. //
  397. // The specified process is part of a job.
  398. //
  399. #define STATUS_PROCESS_IN_JOB ((NTSTATUS)0x00000124L)
  400. //
  401. // MessageId: STATUS_VOLSNAP_HIBERNATE_READY
  402. //
  403. // MessageText:
  404. //
  405. // {Volume Shadow Copy Service}
  406. // The system is now ready for hibernation.
  407. //
  408. #define STATUS_VOLSNAP_HIBERNATE_READY ((NTSTATUS)0x00000125L)
  409. //
  410. // MessageId: STATUS_FSFILTER_OP_COMPLETED_SUCCESSFULLY
  411. //
  412. // MessageText:
  413. //
  414. // A file system or file system filter driver has successfully completed an FsFilter operation.
  415. //
  416. #define STATUS_FSFILTER_OP_COMPLETED_SUCCESSFULLY ((NTSTATUS)0x00000126L)
  417. //
  418. // MessageId: DBG_EXCEPTION_HANDLED
  419. //
  420. // MessageText:
  421. //
  422. // Debugger handled exception
  423. //
  424. #define DBG_EXCEPTION_HANDLED ((NTSTATUS)0x00010001L) // winnt
  425. //
  426. // MessageId: DBG_CONTINUE
  427. //
  428. // MessageText:
  429. //
  430. // Debugger continued
  431. //
  432. #define DBG_CONTINUE ((NTSTATUS)0x00010002L) // winnt
  433. /////////////////////////////////////////////////////////////////////////
  434. //
  435. // Standard Information values
  436. //
  437. /////////////////////////////////////////////////////////////////////////
  438. //
  439. // MessageId: STATUS_OBJECT_NAME_EXISTS
  440. //
  441. // MessageText:
  442. //
  443. // {Object Exists}
  444. // An attempt was made to create an object and the object name already existed.
  445. //
  446. #define STATUS_OBJECT_NAME_EXISTS ((NTSTATUS)0x40000000L)
  447. //
  448. // MessageId: STATUS_THREAD_WAS_SUSPENDED
  449. //
  450. // MessageText:
  451. //
  452. // {Thread Suspended}
  453. // A thread termination occurred while the thread was suspended. The thread was resumed, and termination proceeded.
  454. //
  455. #define STATUS_THREAD_WAS_SUSPENDED ((NTSTATUS)0x40000001L)
  456. //
  457. // MessageId: STATUS_WORKING_SET_LIMIT_RANGE
  458. //
  459. // MessageText:
  460. //
  461. // {Working Set Range Error}
  462. // An attempt was made to set the working set minimum or maximum to values which are outside of the allowable range.
  463. //
  464. #define STATUS_WORKING_SET_LIMIT_RANGE ((NTSTATUS)0x40000002L)
  465. //
  466. // MessageId: STATUS_IMAGE_NOT_AT_BASE
  467. //
  468. // MessageText:
  469. //
  470. // {Image Relocated}
  471. // An image file could not be mapped at the address specified in the image file. Local fixups must be performed on this image.
  472. //
  473. #define STATUS_IMAGE_NOT_AT_BASE ((NTSTATUS)0x40000003L)
  474. //
  475. // MessageId: STATUS_RXACT_STATE_CREATED
  476. //
  477. // MessageText:
  478. //
  479. // This informational level status indicates that a specified registry sub-tree transaction state did not yet exist and had to be created.
  480. //
  481. #define STATUS_RXACT_STATE_CREATED ((NTSTATUS)0x40000004L)
  482. //
  483. // MessageId: STATUS_SEGMENT_NOTIFICATION
  484. //
  485. // MessageText:
  486. //
  487. // {Segment Load}
  488. // A virtual DOS machine (VDM) is loading, unloading, or moving an MS-DOS or Win16 program segment image.
  489. // An exception is raised so a debugger can load, unload or track symbols and breakpoints within these 16-bit segments.
  490. //
  491. #define STATUS_SEGMENT_NOTIFICATION ((NTSTATUS)0x40000005L) // winnt
  492. //
  493. // MessageId: STATUS_LOCAL_USER_SESSION_KEY
  494. //
  495. // MessageText:
  496. //
  497. // {Local Session Key}
  498. // A user session key was requested for a local RPC connection. The session key returned is a constant value and not unique to this connection.
  499. //
  500. #define STATUS_LOCAL_USER_SESSION_KEY ((NTSTATUS)0x40000006L)
  501. //
  502. // MessageId: STATUS_BAD_CURRENT_DIRECTORY
  503. //
  504. // MessageText:
  505. //
  506. // {Invalid Current Directory}
  507. // The process cannot switch to the startup current directory %hs.
  508. // Select OK to set current directory to %hs, or select CANCEL to exit.
  509. //
  510. #define STATUS_BAD_CURRENT_DIRECTORY ((NTSTATUS)0x40000007L)
  511. //
  512. // MessageId: STATUS_SERIAL_MORE_WRITES
  513. //
  514. // MessageText:
  515. //
  516. // {Serial IOCTL Complete}
  517. // A serial I/O operation was completed by another write to a serial port.
  518. // (The IOCTL_SERIAL_XOFF_COUNTER reached zero.)
  519. //
  520. #define STATUS_SERIAL_MORE_WRITES ((NTSTATUS)0x40000008L)
  521. //
  522. // MessageId: STATUS_REGISTRY_RECOVERED
  523. //
  524. // MessageText:
  525. //
  526. // {Registry Recovery}
  527. // One of the files containing the system's Registry data had to be recovered by use of a log or alternate copy.
  528. // The recovery was successful.
  529. //
  530. #define STATUS_REGISTRY_RECOVERED ((NTSTATUS)0x40000009L)
  531. //
  532. // MessageId: STATUS_FT_READ_RECOVERY_FROM_BACKUP
  533. //
  534. // MessageText:
  535. //
  536. // {Redundant Read}
  537. // To satisfy a read request, the NT fault-tolerant file system successfully read the requested data from a redundant copy.
  538. // This was done because the file system encountered a failure on a member of the fault-tolerant volume, but was unable to reassign the failing area of the device.
  539. //
  540. #define STATUS_FT_READ_RECOVERY_FROM_BACKUP ((NTSTATUS)0x4000000AL)
  541. //
  542. // MessageId: STATUS_FT_WRITE_RECOVERY
  543. //
  544. // MessageText:
  545. //
  546. // {Redundant Write}
  547. // To satisfy a write request, the NT fault-tolerant file system successfully wrote a redundant copy of the information.
  548. // This was done because the file system encountered a failure on a member of the fault-tolerant volume, but was not able to reassign the failing area of the device.
  549. //
  550. #define STATUS_FT_WRITE_RECOVERY ((NTSTATUS)0x4000000BL)
  551. //
  552. // MessageId: STATUS_SERIAL_COUNTER_TIMEOUT
  553. //
  554. // MessageText:
  555. //
  556. // {Serial IOCTL Timeout}
  557. // A serial I/O operation completed because the time-out period expired.
  558. // (The IOCTL_SERIAL_XOFF_COUNTER had not reached zero.)
  559. //
  560. #define STATUS_SERIAL_COUNTER_TIMEOUT ((NTSTATUS)0x4000000CL)
  561. //
  562. // MessageId: STATUS_NULL_LM_PASSWORD
  563. //
  564. // MessageText:
  565. //
  566. // {Password Too Complex}
  567. // The Windows password is too complex to be converted to a LAN Manager password.
  568. // The LAN Manager password returned is a NULL string.
  569. //
  570. #define STATUS_NULL_LM_PASSWORD ((NTSTATUS)0x4000000DL)
  571. //
  572. // MessageId: STATUS_IMAGE_MACHINE_TYPE_MISMATCH
  573. //
  574. // MessageText:
  575. //
  576. // {Machine Type Mismatch}
  577. // 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.
  578. //
  579. #define STATUS_IMAGE_MACHINE_TYPE_MISMATCH ((NTSTATUS)0x4000000EL)
  580. //
  581. // MessageId: STATUS_RECEIVE_PARTIAL
  582. //
  583. // MessageText:
  584. //
  585. // {Partial Data Received}
  586. // The network transport returned partial data to its client. The remaining data will be sent later.
  587. //
  588. #define STATUS_RECEIVE_PARTIAL ((NTSTATUS)0x4000000FL)
  589. //
  590. // MessageId: STATUS_RECEIVE_EXPEDITED
  591. //
  592. // MessageText:
  593. //
  594. // {Expedited Data Received}
  595. // The network transport returned data to its client that was marked as expedited by the remote system.
  596. //
  597. #define STATUS_RECEIVE_EXPEDITED ((NTSTATUS)0x40000010L)
  598. //
  599. // MessageId: STATUS_RECEIVE_PARTIAL_EXPEDITED
  600. //
  601. // MessageText:
  602. //
  603. // {Partial Expedited Data Received}
  604. // 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.
  605. //
  606. #define STATUS_RECEIVE_PARTIAL_EXPEDITED ((NTSTATUS)0x40000011L)
  607. //
  608. // MessageId: STATUS_EVENT_DONE
  609. //
  610. // MessageText:
  611. //
  612. // {TDI Event Done}
  613. // The TDI indication has completed successfully.
  614. //
  615. #define STATUS_EVENT_DONE ((NTSTATUS)0x40000012L)
  616. //
  617. // MessageId: STATUS_EVENT_PENDING
  618. //
  619. // MessageText:
  620. //
  621. // {TDI Event Pending}
  622. // The TDI indication has entered the pending state.
  623. //
  624. #define STATUS_EVENT_PENDING ((NTSTATUS)0x40000013L)
  625. //
  626. // MessageId: STATUS_CHECKING_FILE_SYSTEM
  627. //
  628. // MessageText:
  629. //
  630. // Checking file system on %wZ
  631. //
  632. #define STATUS_CHECKING_FILE_SYSTEM ((NTSTATUS)0x40000014L)
  633. //
  634. // MessageId: STATUS_FATAL_APP_EXIT
  635. //
  636. // MessageText:
  637. //
  638. // {Fatal Application Exit}
  639. // %hs
  640. //
  641. #define STATUS_FATAL_APP_EXIT ((NTSTATUS)0x40000015L)
  642. //
  643. // MessageId: STATUS_PREDEFINED_HANDLE
  644. //
  645. // MessageText:
  646. //
  647. // The specified registry key is referenced by a predefined handle.
  648. //
  649. #define STATUS_PREDEFINED_HANDLE ((NTSTATUS)0x40000016L)
  650. //
  651. // MessageId: STATUS_WAS_UNLOCKED
  652. //
  653. // MessageText:
  654. //
  655. // {Page Unlocked}
  656. // The page protection of a locked page was changed to 'No Access' and the page was unlocked from memory and from the process.
  657. //
  658. #define STATUS_WAS_UNLOCKED ((NTSTATUS)0x40000017L)
  659. //
  660. // MessageId: STATUS_SERVICE_NOTIFICATION
  661. //
  662. // MessageText:
  663. //
  664. // %hs
  665. //
  666. #define STATUS_SERVICE_NOTIFICATION ((NTSTATUS)0x40000018L)
  667. //
  668. // MessageId: STATUS_WAS_LOCKED
  669. //
  670. // MessageText:
  671. //
  672. // {Page Locked}
  673. // One of the pages to lock was already locked.
  674. //
  675. #define STATUS_WAS_LOCKED ((NTSTATUS)0x40000019L)
  676. //
  677. // MessageId: STATUS_LOG_HARD_ERROR
  678. //
  679. // MessageText:
  680. //
  681. // Application popup: %1 : %2
  682. //
  683. #define STATUS_LOG_HARD_ERROR ((NTSTATUS)0x4000001AL)
  684. //
  685. // MessageId: STATUS_ALREADY_WIN32
  686. //
  687. // MessageText:
  688. //
  689. // STATUS_ALREADY_WIN32
  690. //
  691. #define STATUS_ALREADY_WIN32 ((NTSTATUS)0x4000001BL)
  692. //
  693. // MessageId: STATUS_WX86_UNSIMULATE
  694. //
  695. // MessageText:
  696. //
  697. // Exception status code used by Win32 x86 emulation subsystem.
  698. //
  699. #define STATUS_WX86_UNSIMULATE ((NTSTATUS)0x4000001CL)
  700. //
  701. // MessageId: STATUS_WX86_CONTINUE
  702. //
  703. // MessageText:
  704. //
  705. // Exception status code used by Win32 x86 emulation subsystem.
  706. //
  707. #define STATUS_WX86_CONTINUE ((NTSTATUS)0x4000001DL)
  708. //
  709. // MessageId: STATUS_WX86_SINGLE_STEP
  710. //
  711. // MessageText:
  712. //
  713. // Exception status code used by Win32 x86 emulation subsystem.
  714. //
  715. #define STATUS_WX86_SINGLE_STEP ((NTSTATUS)0x4000001EL)
  716. //
  717. // MessageId: STATUS_WX86_BREAKPOINT
  718. //
  719. // MessageText:
  720. //
  721. // Exception status code used by Win32 x86 emulation subsystem.
  722. //
  723. #define STATUS_WX86_BREAKPOINT ((NTSTATUS)0x4000001FL)
  724. //
  725. // MessageId: STATUS_WX86_EXCEPTION_CONTINUE
  726. //
  727. // MessageText:
  728. //
  729. // Exception status code used by Win32 x86 emulation subsystem.
  730. //
  731. #define STATUS_WX86_EXCEPTION_CONTINUE ((NTSTATUS)0x40000020L)
  732. //
  733. // MessageId: STATUS_WX86_EXCEPTION_LASTCHANCE
  734. //
  735. // MessageText:
  736. //
  737. // Exception status code used by Win32 x86 emulation subsystem.
  738. //
  739. #define STATUS_WX86_EXCEPTION_LASTCHANCE ((NTSTATUS)0x40000021L)
  740. //
  741. // MessageId: STATUS_WX86_EXCEPTION_CHAIN
  742. //
  743. // MessageText:
  744. //
  745. // Exception status code used by Win32 x86 emulation subsystem.
  746. //
  747. #define STATUS_WX86_EXCEPTION_CHAIN ((NTSTATUS)0x40000022L)
  748. //
  749. // MessageId: STATUS_IMAGE_MACHINE_TYPE_MISMATCH_EXE
  750. //
  751. // MessageText:
  752. //
  753. // {Machine Type Mismatch}
  754. // The image file %hs is valid, but is for a machine type other than the current machine.
  755. //
  756. #define STATUS_IMAGE_MACHINE_TYPE_MISMATCH_EXE ((NTSTATUS)0x40000023L)
  757. //
  758. // MessageId: STATUS_NO_YIELD_PERFORMED
  759. //
  760. // MessageText:
  761. //
  762. // A yield execution was performed and no thread was available to run.
  763. //
  764. #define STATUS_NO_YIELD_PERFORMED ((NTSTATUS)0x40000024L)
  765. //
  766. // MessageId: STATUS_TIMER_RESUME_IGNORED
  767. //
  768. // MessageText:
  769. //
  770. // The resumable flag to a timer API was ignored.
  771. //
  772. #define STATUS_TIMER_RESUME_IGNORED ((NTSTATUS)0x40000025L)
  773. //
  774. // MessageId: STATUS_ARBITRATION_UNHANDLED
  775. //
  776. // MessageText:
  777. //
  778. // The arbiter has deferred arbitration of these resources to its parent
  779. //
  780. #define STATUS_ARBITRATION_UNHANDLED ((NTSTATUS)0x40000026L)
  781. //
  782. // MessageId: STATUS_CARDBUS_NOT_SUPPORTED
  783. //
  784. // MessageText:
  785. //
  786. // The device "%hs" has detected a CardBus card in its slot, but the firmware on this system is not configured to allow the CardBus controller to be run in CardBus mode.
  787. // The operating system will currently accept only 16-bit (R2) pc-cards on this controller.
  788. //
  789. #define STATUS_CARDBUS_NOT_SUPPORTED ((NTSTATUS)0x40000027L)
  790. //
  791. // MessageId: STATUS_WX86_CREATEWX86TIB
  792. //
  793. // MessageText:
  794. //
  795. // Exception status code used by Win32 x86 emulation subsystem.
  796. //
  797. #define STATUS_WX86_CREATEWX86TIB ((NTSTATUS)0x40000028L)
  798. //
  799. // MessageId: STATUS_MP_PROCESSOR_MISMATCH
  800. //
  801. // MessageText:
  802. //
  803. // 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. Should problems occur with this system, contact
  804. // the CPU manufacturer to see if this mix of processors is supported.
  805. //
  806. #define STATUS_MP_PROCESSOR_MISMATCH ((NTSTATUS)0x40000029L)
  807. //
  808. // MessageId: STATUS_HIBERNATED
  809. //
  810. // MessageText:
  811. //
  812. // The system was put into hibernation.
  813. //
  814. #define STATUS_HIBERNATED ((NTSTATUS)0x4000002AL)
  815. //
  816. // MessageId: STATUS_RESUME_HIBERNATION
  817. //
  818. // MessageText:
  819. //
  820. // The system was resumed from hibernation.
  821. //
  822. #define STATUS_RESUME_HIBERNATION ((NTSTATUS)0x4000002BL)
  823. //
  824. // MessageId: STATUS_FIRMWARE_UPDATED
  825. //
  826. // MessageText:
  827. //
  828. // Windows has detected that the system firmware (BIOS) was updated [previous firmware date = %2, current firmware date %3].
  829. //
  830. #define STATUS_FIRMWARE_UPDATED ((NTSTATUS)0x4000002CL)
  831. //
  832. // MessageId: STATUS_DRIVERS_LEAKING_LOCKED_PAGES
  833. //
  834. // MessageText:
  835. //
  836. // A device driver is leaking locked I/O pages causing system degradation. The system has automatically enabled tracking code in order to try and catch the culprit.
  837. //
  838. #define STATUS_DRIVERS_LEAKING_LOCKED_PAGES ((NTSTATUS)0x4000002DL)
  839. //
  840. // MessageId: DBG_REPLY_LATER
  841. //
  842. // MessageText:
  843. //
  844. // Debugger will reply later.
  845. //
  846. #define DBG_REPLY_LATER ((NTSTATUS)0x40010001L)
  847. //
  848. // MessageId: DBG_UNABLE_TO_PROVIDE_HANDLE
  849. //
  850. // MessageText:
  851. //
  852. // Debugger can not provide handle.
  853. //
  854. #define DBG_UNABLE_TO_PROVIDE_HANDLE ((NTSTATUS)0x40010002L)
  855. //
  856. // MessageId: DBG_TERMINATE_THREAD
  857. //
  858. // MessageText:
  859. //
  860. // Debugger terminated thread.
  861. //
  862. #define DBG_TERMINATE_THREAD ((NTSTATUS)0x40010003L) // winnt
  863. //
  864. // MessageId: DBG_TERMINATE_PROCESS
  865. //
  866. // MessageText:
  867. //
  868. // Debugger terminated process.
  869. //
  870. #define DBG_TERMINATE_PROCESS ((NTSTATUS)0x40010004L) // winnt
  871. //
  872. // MessageId: DBG_CONTROL_C
  873. //
  874. // MessageText:
  875. //
  876. // Debugger got control C.
  877. //
  878. #define DBG_CONTROL_C ((NTSTATUS)0x40010005L) // winnt
  879. //
  880. // MessageId: DBG_PRINTEXCEPTION_C
  881. //
  882. // MessageText:
  883. //
  884. // Debugger printed exception on control C.
  885. //
  886. #define DBG_PRINTEXCEPTION_C ((NTSTATUS)0x40010006L)
  887. //
  888. // MessageId: DBG_RIPEXCEPTION
  889. //
  890. // MessageText:
  891. //
  892. // Debugger received RIP exception.
  893. //
  894. #define DBG_RIPEXCEPTION ((NTSTATUS)0x40010007L)
  895. //
  896. // MessageId: DBG_CONTROL_BREAK
  897. //
  898. // MessageText:
  899. //
  900. // Debugger received control break.
  901. //
  902. #define DBG_CONTROL_BREAK ((NTSTATUS)0x40010008L) // winnt
  903. //
  904. // MessageId: DBG_COMMAND_EXCEPTION
  905. //
  906. // MessageText:
  907. //
  908. // Debugger command communication exception.
  909. //
  910. #define DBG_COMMAND_EXCEPTION ((NTSTATUS)0x40010009L) // winnt
  911. /////////////////////////////////////////////////////////////////////////
  912. //
  913. // Standard Warning values
  914. //
  915. //
  916. // Note: Do NOT use the value 0x80000000L, as this is a non-portable value
  917. // for the NT_SUCCESS macro. Warning values start with a code of 1.
  918. //
  919. /////////////////////////////////////////////////////////////////////////
  920. //
  921. // MessageId: STATUS_GUARD_PAGE_VIOLATION
  922. //
  923. // MessageText:
  924. //
  925. // {EXCEPTION}
  926. // Guard Page Exception
  927. // A page of memory that marks the end of a data structure, such as a stack or an array, has been accessed.
  928. //
  929. #define STATUS_GUARD_PAGE_VIOLATION ((NTSTATUS)0x80000001L) // winnt
  930. //
  931. // MessageId: STATUS_DATATYPE_MISALIGNMENT
  932. //
  933. // MessageText:
  934. //
  935. // {EXCEPTION}
  936. // Alignment Fault
  937. // A datatype misalignment was detected in a load or store instruction.
  938. //
  939. #define STATUS_DATATYPE_MISALIGNMENT ((NTSTATUS)0x80000002L) // winnt
  940. //
  941. // MessageId: STATUS_BREAKPOINT
  942. //
  943. // MessageText:
  944. //
  945. // {EXCEPTION}
  946. // Breakpoint
  947. // A breakpoint has been reached.
  948. //
  949. #define STATUS_BREAKPOINT ((NTSTATUS)0x80000003L) // winnt
  950. //
  951. // MessageId: STATUS_SINGLE_STEP
  952. //
  953. // MessageText:
  954. //
  955. // {EXCEPTION}
  956. // Single Step
  957. // A single step or trace operation has just been completed.
  958. //
  959. #define STATUS_SINGLE_STEP ((NTSTATUS)0x80000004L) // winnt
  960. //
  961. // MessageId: STATUS_BUFFER_OVERFLOW
  962. //
  963. // MessageText:
  964. //
  965. // {Buffer Overflow}
  966. // The data was too large to fit into the specified buffer.
  967. //
  968. #define STATUS_BUFFER_OVERFLOW ((NTSTATUS)0x80000005L)
  969. //
  970. // MessageId: STATUS_NO_MORE_FILES
  971. //
  972. // MessageText:
  973. //
  974. // {No More Files}
  975. // No more files were found which match the file specification.
  976. //
  977. #define STATUS_NO_MORE_FILES ((NTSTATUS)0x80000006L)
  978. //
  979. // MessageId: STATUS_WAKE_SYSTEM_DEBUGGER
  980. //
  981. // MessageText:
  982. //
  983. // {Kernel Debugger Awakened}
  984. // the system debugger was awakened by an interrupt.
  985. //
  986. #define STATUS_WAKE_SYSTEM_DEBUGGER ((NTSTATUS)0x80000007L)
  987. //
  988. // MessageId: STATUS_HANDLES_CLOSED
  989. //
  990. // MessageText:
  991. //
  992. // {Handles Closed}
  993. // Handles to objects have been automatically closed as a result of the requested operation.
  994. //
  995. #define STATUS_HANDLES_CLOSED ((NTSTATUS)0x8000000AL)
  996. //
  997. // MessageId: STATUS_NO_INHERITANCE
  998. //
  999. // MessageText:
  1000. //
  1001. // {Non-Inheritable ACL}
  1002. // An access control list (ACL) contains no components that can be inherited.
  1003. //
  1004. #define STATUS_NO_INHERITANCE ((NTSTATUS)0x8000000BL)
  1005. //
  1006. // MessageId: STATUS_GUID_SUBSTITUTION_MADE
  1007. //
  1008. // MessageText:
  1009. //
  1010. // {GUID Substitution}
  1011. // During the translation of a global identifier (GUID) to a Windows security ID (SID), no administratively-defined GUID prefix was found.
  1012. // A substitute prefix was used, which will not compromise system security.
  1013. // However, this may provide a more restrictive access than intended.
  1014. //
  1015. #define STATUS_GUID_SUBSTITUTION_MADE ((NTSTATUS)0x8000000CL)
  1016. //
  1017. // MessageId: STATUS_PARTIAL_COPY
  1018. //
  1019. // MessageText:
  1020. //
  1021. // {Partial Copy}
  1022. // Due to protection conflicts not all the requested bytes could be copied.
  1023. //
  1024. #define STATUS_PARTIAL_COPY ((NTSTATUS)0x8000000DL)
  1025. //
  1026. // MessageId: STATUS_DEVICE_PAPER_EMPTY
  1027. //
  1028. // MessageText:
  1029. //
  1030. // {Out of Paper}
  1031. // The printer is out of paper.
  1032. //
  1033. #define STATUS_DEVICE_PAPER_EMPTY ((NTSTATUS)0x8000000EL)
  1034. //
  1035. // MessageId: STATUS_DEVICE_POWERED_OFF
  1036. //
  1037. // MessageText:
  1038. //
  1039. // {Device Power Is Off}
  1040. // The printer power has been turned off.
  1041. //
  1042. #define STATUS_DEVICE_POWERED_OFF ((NTSTATUS)0x8000000FL)
  1043. //
  1044. // MessageId: STATUS_DEVICE_OFF_LINE
  1045. //
  1046. // MessageText:
  1047. //
  1048. // {Device Offline}
  1049. // The printer has been taken offline.
  1050. //
  1051. #define STATUS_DEVICE_OFF_LINE ((NTSTATUS)0x80000010L)
  1052. //
  1053. // MessageId: STATUS_DEVICE_BUSY
  1054. //
  1055. // MessageText:
  1056. //
  1057. // {Device Busy}
  1058. // The device is currently busy.
  1059. //
  1060. #define STATUS_DEVICE_BUSY ((NTSTATUS)0x80000011L)
  1061. //
  1062. // MessageId: STATUS_NO_MORE_EAS
  1063. //
  1064. // MessageText:
  1065. //
  1066. // {No More EAs}
  1067. // No more extended attributes (EAs) were found for the file.
  1068. //
  1069. #define STATUS_NO_MORE_EAS ((NTSTATUS)0x80000012L)
  1070. //
  1071. // MessageId: STATUS_INVALID_EA_NAME
  1072. //
  1073. // MessageText:
  1074. //
  1075. // {Illegal EA}
  1076. // The specified extended attribute (EA) name contains at least one illegal character.
  1077. //
  1078. #define STATUS_INVALID_EA_NAME ((NTSTATUS)0x80000013L)
  1079. //
  1080. // MessageId: STATUS_EA_LIST_INCONSISTENT
  1081. //
  1082. // MessageText:
  1083. //
  1084. // {Inconsistent EA List}
  1085. // The extended attribute (EA) list is inconsistent.
  1086. //
  1087. #define STATUS_EA_LIST_INCONSISTENT ((NTSTATUS)0x80000014L)
  1088. //
  1089. // MessageId: STATUS_INVALID_EA_FLAG
  1090. //
  1091. // MessageText:
  1092. //
  1093. // {Invalid EA Flag}
  1094. // An invalid extended attribute (EA) flag was set.
  1095. //
  1096. #define STATUS_INVALID_EA_FLAG ((NTSTATUS)0x80000015L)
  1097. //
  1098. // MessageId: STATUS_VERIFY_REQUIRED
  1099. //
  1100. // MessageText:
  1101. //
  1102. // {Verifying Disk}
  1103. // The media has changed and a verify operation is in progress so no reads or writes may be performed to the device, except those used in the verify operation.
  1104. //
  1105. #define STATUS_VERIFY_REQUIRED ((NTSTATUS)0x80000016L)
  1106. //
  1107. // MessageId: STATUS_EXTRANEOUS_INFORMATION
  1108. //
  1109. // MessageText:
  1110. //
  1111. // {Too Much Information}
  1112. // The specified access control list (ACL) contained more information than was expected.
  1113. //
  1114. #define STATUS_EXTRANEOUS_INFORMATION ((NTSTATUS)0x80000017L)
  1115. //
  1116. // MessageId: STATUS_RXACT_COMMIT_NECESSARY
  1117. //
  1118. // MessageText:
  1119. //
  1120. // This warning level status indicates that the transaction state already exists for the registry sub-tree, but that a transaction commit was previously aborted.
  1121. // The commit has NOT been completed, but has not been rolled back either (so it may still be committed if desired).
  1122. //
  1123. #define STATUS_RXACT_COMMIT_NECESSARY ((NTSTATUS)0x80000018L)
  1124. //
  1125. // MessageId: STATUS_NO_MORE_ENTRIES
  1126. //
  1127. // MessageText:
  1128. //
  1129. // {No More Entries}
  1130. // No more entries are available from an enumeration operation.
  1131. //
  1132. #define STATUS_NO_MORE_ENTRIES ((NTSTATUS)0x8000001AL)
  1133. //
  1134. // MessageId: STATUS_FILEMARK_DETECTED
  1135. //
  1136. // MessageText:
  1137. //
  1138. // {Filemark Found}
  1139. // A filemark was detected.
  1140. //
  1141. #define STATUS_FILEMARK_DETECTED ((NTSTATUS)0x8000001BL)
  1142. //
  1143. // MessageId: STATUS_MEDIA_CHANGED
  1144. //
  1145. // MessageText:
  1146. //
  1147. // {Media Changed}
  1148. // The media may have changed.
  1149. //
  1150. #define STATUS_MEDIA_CHANGED ((NTSTATUS)0x8000001CL)
  1151. //
  1152. // MessageId: STATUS_BUS_RESET
  1153. //
  1154. // MessageText:
  1155. //
  1156. // {I/O Bus Reset}
  1157. // An I/O bus reset was detected.
  1158. //
  1159. #define STATUS_BUS_RESET ((NTSTATUS)0x8000001DL)
  1160. //
  1161. // MessageId: STATUS_END_OF_MEDIA
  1162. //
  1163. // MessageText:
  1164. //
  1165. // {End of Media}
  1166. // The end of the media was encountered.
  1167. //
  1168. #define STATUS_END_OF_MEDIA ((NTSTATUS)0x8000001EL)
  1169. //
  1170. // MessageId: STATUS_BEGINNING_OF_MEDIA
  1171. //
  1172. // MessageText:
  1173. //
  1174. // Beginning of tape or partition has been detected.
  1175. //
  1176. #define STATUS_BEGINNING_OF_MEDIA ((NTSTATUS)0x8000001FL)
  1177. //
  1178. // MessageId: STATUS_MEDIA_CHECK
  1179. //
  1180. // MessageText:
  1181. //
  1182. // {Media Changed}
  1183. // The media may have changed.
  1184. //
  1185. #define STATUS_MEDIA_CHECK ((NTSTATUS)0x80000020L)
  1186. //
  1187. // MessageId: STATUS_SETMARK_DETECTED
  1188. //
  1189. // MessageText:
  1190. //
  1191. // A tape access reached a setmark.
  1192. //
  1193. #define STATUS_SETMARK_DETECTED ((NTSTATUS)0x80000021L)
  1194. //
  1195. // MessageId: STATUS_NO_DATA_DETECTED
  1196. //
  1197. // MessageText:
  1198. //
  1199. // During a tape access, the end of the data written is reached.
  1200. //
  1201. #define STATUS_NO_DATA_DETECTED ((NTSTATUS)0x80000022L)
  1202. //
  1203. // MessageId: STATUS_REDIRECTOR_HAS_OPEN_HANDLES
  1204. //
  1205. // MessageText:
  1206. //
  1207. // The redirector is in use and cannot be unloaded.
  1208. //
  1209. #define STATUS_REDIRECTOR_HAS_OPEN_HANDLES ((NTSTATUS)0x80000023L)
  1210. //
  1211. // MessageId: STATUS_SERVER_HAS_OPEN_HANDLES
  1212. //
  1213. // MessageText:
  1214. //
  1215. // The server is in use and cannot be unloaded.
  1216. //
  1217. #define STATUS_SERVER_HAS_OPEN_HANDLES ((NTSTATUS)0x80000024L)
  1218. //
  1219. // MessageId: STATUS_ALREADY_DISCONNECTED
  1220. //
  1221. // MessageText:
  1222. //
  1223. // The specified connection has already been disconnected.
  1224. //
  1225. #define STATUS_ALREADY_DISCONNECTED ((NTSTATUS)0x80000025L)
  1226. //
  1227. // MessageId: STATUS_LONGJUMP
  1228. //
  1229. // MessageText:
  1230. //
  1231. // A long jump has been executed.
  1232. //
  1233. #define STATUS_LONGJUMP ((NTSTATUS)0x80000026L)
  1234. //
  1235. // MessageId: STATUS_CLEANER_CARTRIDGE_INSTALLED
  1236. //
  1237. // MessageText:
  1238. //
  1239. // A cleaner cartridge is present in the tape library.
  1240. //
  1241. #define STATUS_CLEANER_CARTRIDGE_INSTALLED ((NTSTATUS)0x80000027L)
  1242. //
  1243. // MessageId: STATUS_PLUGPLAY_QUERY_VETOED
  1244. //
  1245. // MessageText:
  1246. //
  1247. // The Plug and Play query operation was not successful.
  1248. //
  1249. #define STATUS_PLUGPLAY_QUERY_VETOED ((NTSTATUS)0x80000028L)
  1250. //
  1251. // MessageId: STATUS_UNWIND_CONSOLIDATE
  1252. //
  1253. // MessageText:
  1254. //
  1255. // A frame consolidation has been executed.
  1256. //
  1257. #define STATUS_UNWIND_CONSOLIDATE ((NTSTATUS)0x80000029L)
  1258. //
  1259. // MessageId: STATUS_REGISTRY_HIVE_RECOVERED
  1260. //
  1261. // MessageText:
  1262. //
  1263. // {Registry Hive Recovered}
  1264. // Registry hive (file):
  1265. // %hs
  1266. // was corrupted and it has been recovered. Some data might have been lost.
  1267. //
  1268. #define STATUS_REGISTRY_HIVE_RECOVERED ((NTSTATUS)0x8000002AL)
  1269. //
  1270. // MessageId: STATUS_DLL_MIGHT_BE_INSECURE
  1271. //
  1272. // MessageText:
  1273. //
  1274. // The application is attempting to run executable code from the module %hs. This may be insecure. An alternative, %hs, is available. Should the application use the secure module %hs?
  1275. //
  1276. #define STATUS_DLL_MIGHT_BE_INSECURE ((NTSTATUS)0x8000002BL)
  1277. //
  1278. // MessageId: STATUS_DLL_MIGHT_BE_INCOMPATIBLE
  1279. //
  1280. // MessageText:
  1281. //
  1282. // The application is loading executable code from the module %hs. This is secure, but may be incompatible with previous releases of the operating system. An alternative, %hs, is available. Should the application use the secure module %hs?
  1283. //
  1284. #define STATUS_DLL_MIGHT_BE_INCOMPATIBLE ((NTSTATUS)0x8000002CL)
  1285. //
  1286. // MessageId: DBG_EXCEPTION_NOT_HANDLED
  1287. //
  1288. // MessageText:
  1289. //
  1290. // Debugger did not handle the exception.
  1291. //
  1292. #define DBG_EXCEPTION_NOT_HANDLED ((NTSTATUS)0x80010001L) // winnt
  1293. //
  1294. // MessageId: STATUS_CLUSTER_NODE_ALREADY_UP
  1295. //
  1296. // MessageText:
  1297. //
  1298. // The cluster node is already up.
  1299. //
  1300. #define STATUS_CLUSTER_NODE_ALREADY_UP ((NTSTATUS)0x80130001L)
  1301. //
  1302. // MessageId: STATUS_CLUSTER_NODE_ALREADY_DOWN
  1303. //
  1304. // MessageText:
  1305. //
  1306. // The cluster node is already down.
  1307. //
  1308. #define STATUS_CLUSTER_NODE_ALREADY_DOWN ((NTSTATUS)0x80130002L)
  1309. //
  1310. // MessageId: STATUS_CLUSTER_NETWORK_ALREADY_ONLINE
  1311. //
  1312. // MessageText:
  1313. //
  1314. // The cluster network is already online.
  1315. //
  1316. #define STATUS_CLUSTER_NETWORK_ALREADY_ONLINE ((NTSTATUS)0x80130003L)
  1317. //
  1318. // MessageId: STATUS_CLUSTER_NETWORK_ALREADY_OFFLINE
  1319. //
  1320. // MessageText:
  1321. //
  1322. // The cluster network is already offline.
  1323. //
  1324. #define STATUS_CLUSTER_NETWORK_ALREADY_OFFLINE ((NTSTATUS)0x80130004L)
  1325. //
  1326. // MessageId: STATUS_CLUSTER_NODE_ALREADY_MEMBER
  1327. //
  1328. // MessageText:
  1329. //
  1330. // The cluster node is already a member of the cluster.
  1331. //
  1332. #define STATUS_CLUSTER_NODE_ALREADY_MEMBER ((NTSTATUS)0x80130005L)
  1333. /////////////////////////////////////////////////////////////////////////
  1334. //
  1335. // Standard Error values
  1336. //
  1337. /////////////////////////////////////////////////////////////////////////
  1338. //
  1339. // MessageId: STATUS_UNSUCCESSFUL
  1340. //
  1341. // MessageText:
  1342. //
  1343. // {Operation Failed}
  1344. // The requested operation was unsuccessful.
  1345. //
  1346. #define STATUS_UNSUCCESSFUL ((NTSTATUS)0xC0000001L)
  1347. //
  1348. // MessageId: STATUS_NOT_IMPLEMENTED
  1349. //
  1350. // MessageText:
  1351. //
  1352. // {Not Implemented}
  1353. // The requested operation is not implemented.
  1354. //
  1355. #define STATUS_NOT_IMPLEMENTED ((NTSTATUS)0xC0000002L)
  1356. //
  1357. // MessageId: STATUS_INVALID_INFO_CLASS
  1358. //
  1359. // MessageText:
  1360. //
  1361. // {Invalid Parameter}
  1362. // The specified information class is not a valid information class for the specified object.
  1363. //
  1364. #define STATUS_INVALID_INFO_CLASS ((NTSTATUS)0xC0000003L) // ntsubauth
  1365. //
  1366. // MessageId: STATUS_INFO_LENGTH_MISMATCH
  1367. //
  1368. // MessageText:
  1369. //
  1370. // The specified information record length does not match the length required for the specified information class.
  1371. //
  1372. #define STATUS_INFO_LENGTH_MISMATCH ((NTSTATUS)0xC0000004L)
  1373. //
  1374. // MessageId: STATUS_ACCESS_VIOLATION
  1375. //
  1376. // MessageText:
  1377. //
  1378. // The instruction at "0x%08lx" referenced memory at "0x%08lx". The memory could not be "%s".
  1379. //
  1380. #define STATUS_ACCESS_VIOLATION ((NTSTATUS)0xC0000005L) // winnt
  1381. //
  1382. // MessageId: STATUS_IN_PAGE_ERROR
  1383. //
  1384. // MessageText:
  1385. //
  1386. // The instruction at "0x%08lx" referenced memory at "0x%08lx". The required data was not placed into memory because of an I/O error status of "0x%08lx".
  1387. //
  1388. #define STATUS_IN_PAGE_ERROR ((NTSTATUS)0xC0000006L) // winnt
  1389. //
  1390. // MessageId: STATUS_PAGEFILE_QUOTA
  1391. //
  1392. // MessageText:
  1393. //
  1394. // The pagefile quota for the process has been exhausted.
  1395. //
  1396. #define STATUS_PAGEFILE_QUOTA ((NTSTATUS)0xC0000007L)
  1397. //
  1398. // MessageId: STATUS_INVALID_HANDLE
  1399. //
  1400. // MessageText:
  1401. //
  1402. // An invalid HANDLE was specified.
  1403. //
  1404. #define STATUS_INVALID_HANDLE ((NTSTATUS)0xC0000008L) // winnt
  1405. //
  1406. // MessageId: STATUS_BAD_INITIAL_STACK
  1407. //
  1408. // MessageText:
  1409. //
  1410. // An invalid initial stack was specified in a call to NtCreateThread.
  1411. //
  1412. #define STATUS_BAD_INITIAL_STACK ((NTSTATUS)0xC0000009L)
  1413. //
  1414. // MessageId: STATUS_BAD_INITIAL_PC
  1415. //
  1416. // MessageText:
  1417. //
  1418. // An invalid initial start address was specified in a call to NtCreateThread.
  1419. //
  1420. #define STATUS_BAD_INITIAL_PC ((NTSTATUS)0xC000000AL)
  1421. //
  1422. // MessageId: STATUS_INVALID_CID
  1423. //
  1424. // MessageText:
  1425. //
  1426. // An invalid Client ID was specified.
  1427. //
  1428. #define STATUS_INVALID_CID ((NTSTATUS)0xC000000BL)
  1429. //
  1430. // MessageId: STATUS_TIMER_NOT_CANCELED
  1431. //
  1432. // MessageText:
  1433. //
  1434. // An attempt was made to cancel or set a timer that has an associated APC and the subject thread is not the thread that originally set the timer with an associated APC routine.
  1435. //
  1436. #define STATUS_TIMER_NOT_CANCELED ((NTSTATUS)0xC000000CL)
  1437. //
  1438. // MessageId: STATUS_INVALID_PARAMETER
  1439. //
  1440. // MessageText:
  1441. //
  1442. // An invalid parameter was passed to a service or function.
  1443. //
  1444. #define STATUS_INVALID_PARAMETER ((NTSTATUS)0xC000000DL)
  1445. //
  1446. // MessageId: STATUS_NO_SUCH_DEVICE
  1447. //
  1448. // MessageText:
  1449. //
  1450. // A device which does not exist was specified.
  1451. //
  1452. #define STATUS_NO_SUCH_DEVICE ((NTSTATUS)0xC000000EL)
  1453. //
  1454. // MessageId: STATUS_NO_SUCH_FILE
  1455. //
  1456. // MessageText:
  1457. //
  1458. // {File Not Found}
  1459. // The file %hs does not exist.
  1460. //
  1461. #define STATUS_NO_SUCH_FILE ((NTSTATUS)0xC000000FL)
  1462. //
  1463. // MessageId: STATUS_INVALID_DEVICE_REQUEST
  1464. //
  1465. // MessageText:
  1466. //
  1467. // The specified request is not a valid operation for the target device.
  1468. //
  1469. #define STATUS_INVALID_DEVICE_REQUEST ((NTSTATUS)0xC0000010L)
  1470. //
  1471. // MessageId: STATUS_END_OF_FILE
  1472. //
  1473. // MessageText:
  1474. //
  1475. // The end-of-file marker has been reached. There is no valid data in the file beyond this marker.
  1476. //
  1477. #define STATUS_END_OF_FILE ((NTSTATUS)0xC0000011L)
  1478. //
  1479. // MessageId: STATUS_WRONG_VOLUME
  1480. //
  1481. // MessageText:
  1482. //
  1483. // {Wrong Volume}
  1484. // The wrong volume is in the drive.
  1485. // Please insert volume %hs into drive %hs.
  1486. //
  1487. #define STATUS_WRONG_VOLUME ((NTSTATUS)0xC0000012L)
  1488. //
  1489. // MessageId: STATUS_NO_MEDIA_IN_DEVICE
  1490. //
  1491. // MessageText:
  1492. //
  1493. // {No Disk}
  1494. // There is no disk in the drive.
  1495. // Please insert a disk into drive %hs.
  1496. //
  1497. #define STATUS_NO_MEDIA_IN_DEVICE ((NTSTATUS)0xC0000013L)
  1498. //
  1499. // MessageId: STATUS_UNRECOGNIZED_MEDIA
  1500. //
  1501. // MessageText:
  1502. //
  1503. // {Unknown Disk Format}
  1504. // The disk in drive %hs is not formatted properly.
  1505. // Please check the disk, and reformat if necessary.
  1506. //
  1507. #define STATUS_UNRECOGNIZED_MEDIA ((NTSTATUS)0xC0000014L)
  1508. //
  1509. // MessageId: STATUS_NONEXISTENT_SECTOR
  1510. //
  1511. // MessageText:
  1512. //
  1513. // {Sector Not Found}
  1514. // The specified sector does not exist.
  1515. //
  1516. #define STATUS_NONEXISTENT_SECTOR ((NTSTATUS)0xC0000015L)
  1517. //
  1518. // MessageId: STATUS_MORE_PROCESSING_REQUIRED
  1519. //
  1520. // MessageText:
  1521. //
  1522. // {Still Busy}
  1523. // The specified I/O request packet (IRP) cannot be disposed of because the I/O operation is not complete.
  1524. //
  1525. #define STATUS_MORE_PROCESSING_REQUIRED ((NTSTATUS)0xC0000016L)
  1526. //
  1527. // MessageId: STATUS_NO_MEMORY
  1528. //
  1529. // MessageText:
  1530. //
  1531. // {Not Enough Quota}
  1532. // Not enough virtual memory or paging file quota is available to complete the specified operation.
  1533. //
  1534. #define STATUS_NO_MEMORY ((NTSTATUS)0xC0000017L) // winnt
  1535. //
  1536. // MessageId: STATUS_CONFLICTING_ADDRESSES
  1537. //
  1538. // MessageText:
  1539. //
  1540. // {Conflicting Address Range}
  1541. // The specified address range conflicts with the address space.
  1542. //
  1543. #define STATUS_CONFLICTING_ADDRESSES ((NTSTATUS)0xC0000018L)
  1544. //
  1545. // MessageId: STATUS_NOT_MAPPED_VIEW
  1546. //
  1547. // MessageText:
  1548. //
  1549. // Address range to unmap is not a mapped view.
  1550. //
  1551. #define STATUS_NOT_MAPPED_VIEW ((NTSTATUS)0xC0000019L)
  1552. //
  1553. // MessageId: STATUS_UNABLE_TO_FREE_VM
  1554. //
  1555. // MessageText:
  1556. //
  1557. // Virtual memory cannot be freed.
  1558. //
  1559. #define STATUS_UNABLE_TO_FREE_VM ((NTSTATUS)0xC000001AL)
  1560. //
  1561. // MessageId: STATUS_UNABLE_TO_DELETE_SECTION
  1562. //
  1563. // MessageText:
  1564. //
  1565. // Specified section cannot be deleted.
  1566. //
  1567. #define STATUS_UNABLE_TO_DELETE_SECTION ((NTSTATUS)0xC000001BL)
  1568. //
  1569. // MessageId: STATUS_INVALID_SYSTEM_SERVICE
  1570. //
  1571. // MessageText:
  1572. //
  1573. // An invalid system service was specified in a system service call.
  1574. //
  1575. #define STATUS_INVALID_SYSTEM_SERVICE ((NTSTATUS)0xC000001CL)
  1576. //
  1577. // MessageId: STATUS_ILLEGAL_INSTRUCTION
  1578. //
  1579. // MessageText:
  1580. //
  1581. // {EXCEPTION}
  1582. // Illegal Instruction
  1583. // An attempt was made to execute an illegal instruction.
  1584. //
  1585. #define STATUS_ILLEGAL_INSTRUCTION ((NTSTATUS)0xC000001DL) // winnt
  1586. //
  1587. // MessageId: STATUS_INVALID_LOCK_SEQUENCE
  1588. //
  1589. // MessageText:
  1590. //
  1591. // {Invalid Lock Sequence}
  1592. // An attempt was made to execute an invalid lock sequence.
  1593. //
  1594. #define STATUS_INVALID_LOCK_SEQUENCE ((NTSTATUS)0xC000001EL)
  1595. //
  1596. // MessageId: STATUS_INVALID_VIEW_SIZE
  1597. //
  1598. // MessageText:
  1599. //
  1600. // {Invalid Mapping}
  1601. // An attempt was made to create a view for a section which is bigger than the section.
  1602. //
  1603. #define STATUS_INVALID_VIEW_SIZE ((NTSTATUS)0xC000001FL)
  1604. //
  1605. // MessageId: STATUS_INVALID_FILE_FOR_SECTION
  1606. //
  1607. // MessageText:
  1608. //
  1609. // {Bad File}
  1610. // The attributes of the specified mapping file for a section of memory cannot be read.
  1611. //
  1612. #define STATUS_INVALID_FILE_FOR_SECTION ((NTSTATUS)0xC0000020L)
  1613. //
  1614. // MessageId: STATUS_ALREADY_COMMITTED
  1615. //
  1616. // MessageText:
  1617. //
  1618. // {Already Committed}
  1619. // The specified address range is already committed.
  1620. //
  1621. #define STATUS_ALREADY_COMMITTED ((NTSTATUS)0xC0000021L)
  1622. //
  1623. // MessageId: STATUS_ACCESS_DENIED
  1624. //
  1625. // MessageText:
  1626. //
  1627. // {Access Denied}
  1628. // A process has requested access to an object, but has not been granted those access rights.
  1629. //
  1630. #define STATUS_ACCESS_DENIED ((NTSTATUS)0xC0000022L)
  1631. //
  1632. // MessageId: STATUS_BUFFER_TOO_SMALL
  1633. //
  1634. // MessageText:
  1635. //
  1636. // {Buffer Too Small}
  1637. // The buffer is too small to contain the entry. No information has been written to the buffer.
  1638. //
  1639. #define STATUS_BUFFER_TOO_SMALL ((NTSTATUS)0xC0000023L)
  1640. //
  1641. // MessageId: STATUS_OBJECT_TYPE_MISMATCH
  1642. //
  1643. // MessageText:
  1644. //
  1645. // {Wrong Type}
  1646. // There is a mismatch between the type of object required by the requested operation and the type of object that is specified in the request.
  1647. //
  1648. #define STATUS_OBJECT_TYPE_MISMATCH ((NTSTATUS)0xC0000024L)
  1649. //
  1650. // MessageId: STATUS_NONCONTINUABLE_EXCEPTION
  1651. //
  1652. // MessageText:
  1653. //
  1654. // {EXCEPTION}
  1655. // Cannot Continue
  1656. // Windows cannot continue from this exception.
  1657. //
  1658. #define STATUS_NONCONTINUABLE_EXCEPTION ((NTSTATUS)0xC0000025L) // winnt
  1659. //
  1660. // MessageId: STATUS_INVALID_DISPOSITION
  1661. //
  1662. // MessageText:
  1663. //
  1664. // An invalid exception disposition was returned by an exception handler.
  1665. //
  1666. #define STATUS_INVALID_DISPOSITION ((NTSTATUS)0xC0000026L) // winnt
  1667. //
  1668. // MessageId: STATUS_UNWIND
  1669. //
  1670. // MessageText:
  1671. //
  1672. // Unwind exception code.
  1673. //
  1674. #define STATUS_UNWIND ((NTSTATUS)0xC0000027L)
  1675. //
  1676. // MessageId: STATUS_BAD_STACK
  1677. //
  1678. // MessageText:
  1679. //
  1680. // An invalid or unaligned stack was encountered during an unwind operation.
  1681. //
  1682. #define STATUS_BAD_STACK ((NTSTATUS)0xC0000028L)
  1683. //
  1684. // MessageId: STATUS_INVALID_UNWIND_TARGET
  1685. //
  1686. // MessageText:
  1687. //
  1688. // An invalid unwind target was encountered during an unwind operation.
  1689. //
  1690. #define STATUS_INVALID_UNWIND_TARGET ((NTSTATUS)0xC0000029L)
  1691. //
  1692. // MessageId: STATUS_NOT_LOCKED
  1693. //
  1694. // MessageText:
  1695. //
  1696. // An attempt was made to unlock a page of memory which was not locked.
  1697. //
  1698. #define STATUS_NOT_LOCKED ((NTSTATUS)0xC000002AL)
  1699. //
  1700. // MessageId: STATUS_PARITY_ERROR
  1701. //
  1702. // MessageText:
  1703. //
  1704. // Device parity error on I/O operation.
  1705. //
  1706. #define STATUS_PARITY_ERROR ((NTSTATUS)0xC000002BL)
  1707. //
  1708. // MessageId: STATUS_UNABLE_TO_DECOMMIT_VM
  1709. //
  1710. // MessageText:
  1711. //
  1712. // An attempt was made to decommit uncommitted virtual memory.
  1713. //
  1714. #define STATUS_UNABLE_TO_DECOMMIT_VM ((NTSTATUS)0xC000002CL)
  1715. //
  1716. // MessageId: STATUS_NOT_COMMITTED
  1717. //
  1718. // MessageText:
  1719. //
  1720. // An attempt was made to change the attributes on memory that has not been committed.
  1721. //
  1722. #define STATUS_NOT_COMMITTED ((NTSTATUS)0xC000002DL)
  1723. //
  1724. // MessageId: STATUS_INVALID_PORT_ATTRIBUTES
  1725. //
  1726. // MessageText:
  1727. //
  1728. // Invalid Object Attributes specified to NtCreatePort or invalid Port Attributes specified to NtConnectPort
  1729. //
  1730. #define STATUS_INVALID_PORT_ATTRIBUTES ((NTSTATUS)0xC000002EL)
  1731. //
  1732. // MessageId: STATUS_PORT_MESSAGE_TOO_LONG
  1733. //
  1734. // MessageText:
  1735. //
  1736. // Length of message passed to NtRequestPort or NtRequestWaitReplyPort was longer than the maximum message allowed by the port.
  1737. //
  1738. #define STATUS_PORT_MESSAGE_TOO_LONG ((NTSTATUS)0xC000002FL)
  1739. //
  1740. // MessageId: STATUS_INVALID_PARAMETER_MIX
  1741. //
  1742. // MessageText:
  1743. //
  1744. // An invalid combination of parameters was specified.
  1745. //
  1746. #define STATUS_INVALID_PARAMETER_MIX ((NTSTATUS)0xC0000030L)
  1747. //
  1748. // MessageId: STATUS_INVALID_QUOTA_LOWER
  1749. //
  1750. // MessageText:
  1751. //
  1752. // An attempt was made to lower a quota limit below the current usage.
  1753. //
  1754. #define STATUS_INVALID_QUOTA_LOWER ((NTSTATUS)0xC0000031L)
  1755. //
  1756. // MessageId: STATUS_DISK_CORRUPT_ERROR
  1757. //
  1758. // MessageText:
  1759. //
  1760. // {Corrupt Disk}
  1761. // The file system structure on the disk is corrupt and unusable.
  1762. // Please run the Chkdsk utility on the volume %hs.
  1763. //
  1764. #define STATUS_DISK_CORRUPT_ERROR ((NTSTATUS)0xC0000032L)
  1765. //
  1766. // MessageId: STATUS_OBJECT_NAME_INVALID
  1767. //
  1768. // MessageText:
  1769. //
  1770. // Object Name invalid.
  1771. //
  1772. #define STATUS_OBJECT_NAME_INVALID ((NTSTATUS)0xC0000033L)
  1773. //
  1774. // MessageId: STATUS_OBJECT_NAME_NOT_FOUND
  1775. //
  1776. // MessageText:
  1777. //
  1778. // Object Name not found.
  1779. //
  1780. #define STATUS_OBJECT_NAME_NOT_FOUND ((NTSTATUS)0xC0000034L)
  1781. //
  1782. // MessageId: STATUS_OBJECT_NAME_COLLISION
  1783. //
  1784. // MessageText:
  1785. //
  1786. // Object Name already exists.
  1787. //
  1788. #define STATUS_OBJECT_NAME_COLLISION ((NTSTATUS)0xC0000035L)
  1789. //
  1790. // MessageId: STATUS_PORT_DISCONNECTED
  1791. //
  1792. // MessageText:
  1793. //
  1794. // Attempt to send a message to a disconnected communication port.
  1795. //
  1796. #define STATUS_PORT_DISCONNECTED ((NTSTATUS)0xC0000037L)
  1797. //
  1798. // MessageId: STATUS_DEVICE_ALREADY_ATTACHED
  1799. //
  1800. // MessageText:
  1801. //
  1802. // An attempt was made to attach to a device that was already attached to another device.
  1803. //
  1804. #define STATUS_DEVICE_ALREADY_ATTACHED ((NTSTATUS)0xC0000038L)
  1805. //
  1806. // MessageId: STATUS_OBJECT_PATH_INVALID
  1807. //
  1808. // MessageText:
  1809. //
  1810. // Object Path Component was not a directory object.
  1811. //
  1812. #define STATUS_OBJECT_PATH_INVALID ((NTSTATUS)0xC0000039L)
  1813. //
  1814. // MessageId: STATUS_OBJECT_PATH_NOT_FOUND
  1815. //
  1816. // MessageText:
  1817. //
  1818. // {Path Not Found}
  1819. // The path %hs does not exist.
  1820. //
  1821. #define STATUS_OBJECT_PATH_NOT_FOUND ((NTSTATUS)0xC000003AL)
  1822. //
  1823. // MessageId: STATUS_OBJECT_PATH_SYNTAX_BAD
  1824. //
  1825. // MessageText:
  1826. //
  1827. // Object Path Component was not a directory object.
  1828. //
  1829. #define STATUS_OBJECT_PATH_SYNTAX_BAD ((NTSTATUS)0xC000003BL)
  1830. //
  1831. // MessageId: STATUS_DATA_OVERRUN
  1832. //
  1833. // MessageText:
  1834. //
  1835. // {Data Overrun}
  1836. // A data overrun error occurred.
  1837. //
  1838. #define STATUS_DATA_OVERRUN ((NTSTATUS)0xC000003CL)
  1839. //
  1840. // MessageId: STATUS_DATA_LATE_ERROR
  1841. //
  1842. // MessageText:
  1843. //
  1844. // {Data Late}
  1845. // A data late error occurred.
  1846. //
  1847. #define STATUS_DATA_LATE_ERROR ((NTSTATUS)0xC000003DL)
  1848. //
  1849. // MessageId: STATUS_DATA_ERROR
  1850. //
  1851. // MessageText:
  1852. //
  1853. // {Data Error}
  1854. // An error in reading or writing data occurred.
  1855. //
  1856. #define STATUS_DATA_ERROR ((NTSTATUS)0xC000003EL)
  1857. //
  1858. // MessageId: STATUS_CRC_ERROR
  1859. //
  1860. // MessageText:
  1861. //
  1862. // {Bad CRC}
  1863. // A cyclic redundancy check (CRC) checksum error occurred.
  1864. //
  1865. #define STATUS_CRC_ERROR ((NTSTATUS)0xC000003FL)
  1866. //
  1867. // MessageId: STATUS_SECTION_TOO_BIG
  1868. //
  1869. // MessageText:
  1870. //
  1871. // {Section Too Large}
  1872. // The specified section is too big to map the file.
  1873. //
  1874. #define STATUS_SECTION_TOO_BIG ((NTSTATUS)0xC0000040L)
  1875. //
  1876. // MessageId: STATUS_PORT_CONNECTION_REFUSED
  1877. //
  1878. // MessageText:
  1879. //
  1880. // The NtConnectPort request is refused.
  1881. //
  1882. #define STATUS_PORT_CONNECTION_REFUSED ((NTSTATUS)0xC0000041L)
  1883. //
  1884. // MessageId: STATUS_INVALID_PORT_HANDLE
  1885. //
  1886. // MessageText:
  1887. //
  1888. // The type of port handle is invalid for the operation requested.
  1889. //
  1890. #define STATUS_INVALID_PORT_HANDLE ((NTSTATUS)0xC0000042L)
  1891. //
  1892. // MessageId: STATUS_SHARING_VIOLATION
  1893. //
  1894. // MessageText:
  1895. //
  1896. // A file cannot be opened because the share access flags are incompatible.
  1897. //
  1898. #define STATUS_SHARING_VIOLATION ((NTSTATUS)0xC0000043L)
  1899. //
  1900. // MessageId: STATUS_QUOTA_EXCEEDED
  1901. //
  1902. // MessageText:
  1903. //
  1904. // Insufficient quota exists to complete the operation
  1905. //
  1906. #define STATUS_QUOTA_EXCEEDED ((NTSTATUS)0xC0000044L)
  1907. //
  1908. // MessageId: STATUS_INVALID_PAGE_PROTECTION
  1909. //
  1910. // MessageText:
  1911. //
  1912. // The specified page protection was not valid.
  1913. //
  1914. #define STATUS_INVALID_PAGE_PROTECTION ((NTSTATUS)0xC0000045L)
  1915. //
  1916. // MessageId: STATUS_MUTANT_NOT_OWNED
  1917. //
  1918. // MessageText:
  1919. //
  1920. // An attempt to release a mutant object was made by a thread that was not the owner of the mutant object.
  1921. //
  1922. #define STATUS_MUTANT_NOT_OWNED ((NTSTATUS)0xC0000046L)
  1923. //
  1924. // MessageId: STATUS_SEMAPHORE_LIMIT_EXCEEDED
  1925. //
  1926. // MessageText:
  1927. //
  1928. // An attempt was made to release a semaphore such that its maximum count would have been exceeded.
  1929. //
  1930. #define STATUS_SEMAPHORE_LIMIT_EXCEEDED ((NTSTATUS)0xC0000047L)
  1931. //
  1932. // MessageId: STATUS_PORT_ALREADY_SET
  1933. //
  1934. // MessageText:
  1935. //
  1936. // An attempt to set a processes DebugPort or ExceptionPort was made, but a port already exists in the process or
  1937. // an attempt to set a file's CompletionPort made, but a port was already set in the file.
  1938. //
  1939. #define STATUS_PORT_ALREADY_SET ((NTSTATUS)0xC0000048L)
  1940. //
  1941. // MessageId: STATUS_SECTION_NOT_IMAGE
  1942. //
  1943. // MessageText:
  1944. //
  1945. // An attempt was made to query image information on a section which does not map an image.
  1946. //
  1947. #define STATUS_SECTION_NOT_IMAGE ((NTSTATUS)0xC0000049L)
  1948. //
  1949. // MessageId: STATUS_SUSPEND_COUNT_EXCEEDED
  1950. //
  1951. // MessageText:
  1952. //
  1953. // An attempt was made to suspend a thread whose suspend count was at its maximum.
  1954. //
  1955. #define STATUS_SUSPEND_COUNT_EXCEEDED ((NTSTATUS)0xC000004AL)
  1956. //
  1957. // MessageId: STATUS_THREAD_IS_TERMINATING
  1958. //
  1959. // MessageText:
  1960. //
  1961. // An attempt was made to suspend a thread that has begun termination.
  1962. //
  1963. #define STATUS_THREAD_IS_TERMINATING ((NTSTATUS)0xC000004BL)
  1964. //
  1965. // MessageId: STATUS_BAD_WORKING_SET_LIMIT
  1966. //
  1967. // MessageText:
  1968. //
  1969. // An attempt was made to set the working set limit to an invalid value (minimum greater than maximum, etc).
  1970. //
  1971. #define STATUS_BAD_WORKING_SET_LIMIT ((NTSTATUS)0xC000004CL)
  1972. //
  1973. // MessageId: STATUS_INCOMPATIBLE_FILE_MAP
  1974. //
  1975. // MessageText:
  1976. //
  1977. // A section was created to map a file which is not compatible to an already existing section which maps the same file.
  1978. //
  1979. #define STATUS_INCOMPATIBLE_FILE_MAP ((NTSTATUS)0xC000004DL)
  1980. //
  1981. // MessageId: STATUS_SECTION_PROTECTION
  1982. //
  1983. // MessageText:
  1984. //
  1985. // A view to a section specifies a protection which is incompatible with the initial view's protection.
  1986. //
  1987. #define STATUS_SECTION_PROTECTION ((NTSTATUS)0xC000004EL)
  1988. //
  1989. // MessageId: STATUS_EAS_NOT_SUPPORTED
  1990. //
  1991. // MessageText:
  1992. //
  1993. // An operation involving EAs failed because the file system does not support EAs.
  1994. //
  1995. #define STATUS_EAS_NOT_SUPPORTED ((NTSTATUS)0xC000004FL)
  1996. //
  1997. // MessageId: STATUS_EA_TOO_LARGE
  1998. //
  1999. // MessageText:
  2000. //
  2001. // An EA operation failed because EA set is too large.
  2002. //
  2003. #define STATUS_EA_TOO_LARGE ((NTSTATUS)0xC0000050L)
  2004. //
  2005. // MessageId: STATUS_NONEXISTENT_EA_ENTRY
  2006. //
  2007. // MessageText:
  2008. //
  2009. // An EA operation failed because the name or EA index is invalid.
  2010. //
  2011. #define STATUS_NONEXISTENT_EA_ENTRY ((NTSTATUS)0xC0000051L)
  2012. //
  2013. // MessageId: STATUS_NO_EAS_ON_FILE
  2014. //
  2015. // MessageText:
  2016. //
  2017. // The file for which EAs were requested has no EAs.
  2018. //
  2019. #define STATUS_NO_EAS_ON_FILE ((NTSTATUS)0xC0000052L)
  2020. //
  2021. // MessageId: STATUS_EA_CORRUPT_ERROR
  2022. //
  2023. // MessageText:
  2024. //
  2025. // The EA is corrupt and non-readable.
  2026. //
  2027. #define STATUS_EA_CORRUPT_ERROR ((NTSTATUS)0xC0000053L)
  2028. //
  2029. // MessageId: STATUS_FILE_LOCK_CONFLICT
  2030. //
  2031. // MessageText:
  2032. //
  2033. // A requested read/write cannot be granted due to a conflicting file lock.
  2034. //
  2035. #define STATUS_FILE_LOCK_CONFLICT ((NTSTATUS)0xC0000054L)
  2036. //
  2037. // MessageId: STATUS_LOCK_NOT_GRANTED
  2038. //
  2039. // MessageText:
  2040. //
  2041. // A requested file lock cannot be granted due to other existing locks.
  2042. //
  2043. #define STATUS_LOCK_NOT_GRANTED ((NTSTATUS)0xC0000055L)
  2044. //
  2045. // MessageId: STATUS_DELETE_PENDING
  2046. //
  2047. // MessageText:
  2048. //
  2049. // A non close operation has been requested of a file object with a delete pending.
  2050. //
  2051. #define STATUS_DELETE_PENDING ((NTSTATUS)0xC0000056L)
  2052. //
  2053. // MessageId: STATUS_CTL_FILE_NOT_SUPPORTED
  2054. //
  2055. // MessageText:
  2056. //
  2057. // An attempt was made to set the control attribute on a file. This attribute is not supported in the target file system.
  2058. //
  2059. #define STATUS_CTL_FILE_NOT_SUPPORTED ((NTSTATUS)0xC0000057L)
  2060. //
  2061. // MessageId: STATUS_UNKNOWN_REVISION
  2062. //
  2063. // MessageText:
  2064. //
  2065. // Indicates a revision number encountered or specified is not one known by the service. It may be a more recent revision than the service is aware of.
  2066. //
  2067. #define STATUS_UNKNOWN_REVISION ((NTSTATUS)0xC0000058L)
  2068. //
  2069. // MessageId: STATUS_REVISION_MISMATCH
  2070. //
  2071. // MessageText:
  2072. //
  2073. // Indicates two revision levels are incompatible.
  2074. //
  2075. #define STATUS_REVISION_MISMATCH ((NTSTATUS)0xC0000059L)
  2076. //
  2077. // MessageId: STATUS_INVALID_OWNER
  2078. //
  2079. // MessageText:
  2080. //
  2081. // Indicates a particular Security ID may not be assigned as the owner of an object.
  2082. //
  2083. #define STATUS_INVALID_OWNER ((NTSTATUS)0xC000005AL)
  2084. //
  2085. // MessageId: STATUS_INVALID_PRIMARY_GROUP
  2086. //
  2087. // MessageText:
  2088. //
  2089. // Indicates a particular Security ID may not be assigned as the primary group of an object.
  2090. //
  2091. #define STATUS_INVALID_PRIMARY_GROUP ((NTSTATUS)0xC000005BL)
  2092. //
  2093. // MessageId: STATUS_NO_IMPERSONATION_TOKEN
  2094. //
  2095. // MessageText:
  2096. //
  2097. // An attempt has been made to operate on an impersonation token by a thread that is not currently impersonating a client.
  2098. //
  2099. #define STATUS_NO_IMPERSONATION_TOKEN ((NTSTATUS)0xC000005CL)
  2100. //
  2101. // MessageId: STATUS_CANT_DISABLE_MANDATORY
  2102. //
  2103. // MessageText:
  2104. //
  2105. // A mandatory group may not be disabled.
  2106. //
  2107. #define STATUS_CANT_DISABLE_MANDATORY ((NTSTATUS)0xC000005DL)
  2108. //
  2109. // MessageId: STATUS_NO_LOGON_SERVERS
  2110. //
  2111. // MessageText:
  2112. //
  2113. // There are currently no logon servers available to service the logon request.
  2114. //
  2115. #define STATUS_NO_LOGON_SERVERS ((NTSTATUS)0xC000005EL)
  2116. //
  2117. // MessageId: STATUS_NO_SUCH_LOGON_SESSION
  2118. //
  2119. // MessageText:
  2120. //
  2121. // A specified logon session does not exist. It may already have been terminated.
  2122. //
  2123. #define STATUS_NO_SUCH_LOGON_SESSION ((NTSTATUS)0xC000005FL)
  2124. //
  2125. // MessageId: STATUS_NO_SUCH_PRIVILEGE
  2126. //
  2127. // MessageText:
  2128. //
  2129. // A specified privilege does not exist.
  2130. //
  2131. #define STATUS_NO_SUCH_PRIVILEGE ((NTSTATUS)0xC0000060L)
  2132. //
  2133. // MessageId: STATUS_PRIVILEGE_NOT_HELD
  2134. //
  2135. // MessageText:
  2136. //
  2137. // A required privilege is not held by the client.
  2138. //
  2139. #define STATUS_PRIVILEGE_NOT_HELD ((NTSTATUS)0xC0000061L)
  2140. //
  2141. // MessageId: STATUS_INVALID_ACCOUNT_NAME
  2142. //
  2143. // MessageText:
  2144. //
  2145. // The name provided is not a properly formed account name.
  2146. //
  2147. #define STATUS_INVALID_ACCOUNT_NAME ((NTSTATUS)0xC0000062L)
  2148. //
  2149. // MessageId: STATUS_USER_EXISTS
  2150. //
  2151. // MessageText:
  2152. //
  2153. // The specified user already exists.
  2154. //
  2155. #define STATUS_USER_EXISTS ((NTSTATUS)0xC0000063L)
  2156. //
  2157. // MessageId: STATUS_NO_SUCH_USER
  2158. //
  2159. // MessageText:
  2160. //
  2161. // The specified user does not exist.
  2162. //
  2163. #define STATUS_NO_SUCH_USER ((NTSTATUS)0xC0000064L) // ntsubauth
  2164. //
  2165. // MessageId: STATUS_GROUP_EXISTS
  2166. //
  2167. // MessageText:
  2168. //
  2169. // The specified group already exists.
  2170. //
  2171. #define STATUS_GROUP_EXISTS ((NTSTATUS)0xC0000065L)
  2172. //
  2173. // MessageId: STATUS_NO_SUCH_GROUP
  2174. //
  2175. // MessageText:
  2176. //
  2177. // The specified group does not exist.
  2178. //
  2179. #define STATUS_NO_SUCH_GROUP ((NTSTATUS)0xC0000066L)
  2180. //
  2181. // MessageId: STATUS_MEMBER_IN_GROUP
  2182. //
  2183. // MessageText:
  2184. //
  2185. // The specified user account is already in the specified group account.
  2186. // Also used to indicate a group cannot be deleted because it contains a member.
  2187. //
  2188. #define STATUS_MEMBER_IN_GROUP ((NTSTATUS)0xC0000067L)
  2189. //
  2190. // MessageId: STATUS_MEMBER_NOT_IN_GROUP
  2191. //
  2192. // MessageText:
  2193. //
  2194. // The specified user account is not a member of the specified group account.
  2195. //
  2196. #define STATUS_MEMBER_NOT_IN_GROUP ((NTSTATUS)0xC0000068L)
  2197. //
  2198. // MessageId: STATUS_LAST_ADMIN
  2199. //
  2200. // MessageText:
  2201. //
  2202. // Indicates the requested operation would disable or delete the last remaining administration account.
  2203. // This is not allowed to prevent creating a situation in which the system cannot be administrated.
  2204. //
  2205. #define STATUS_LAST_ADMIN ((NTSTATUS)0xC0000069L)
  2206. //
  2207. // MessageId: STATUS_WRONG_PASSWORD
  2208. //
  2209. // MessageText:
  2210. //
  2211. // When trying to update a password, this return status indicates that the value provided as the current password is not correct.
  2212. //
  2213. #define STATUS_WRONG_PASSWORD ((NTSTATUS)0xC000006AL) // ntsubauth
  2214. //
  2215. // MessageId: STATUS_ILL_FORMED_PASSWORD
  2216. //
  2217. // MessageText:
  2218. //
  2219. // When trying to update a password, this return status indicates that the value provided for the new password contains values that are not allowed in passwords.
  2220. //
  2221. #define STATUS_ILL_FORMED_PASSWORD ((NTSTATUS)0xC000006BL)
  2222. //
  2223. // MessageId: STATUS_PASSWORD_RESTRICTION
  2224. //
  2225. // MessageText:
  2226. //
  2227. // When trying to update a password, this status indicates that some password update rule has been violated. For example, the password may not meet length criteria.
  2228. //
  2229. #define STATUS_PASSWORD_RESTRICTION ((NTSTATUS)0xC000006CL) // ntsubauth
  2230. //
  2231. // MessageId: STATUS_LOGON_FAILURE
  2232. //
  2233. // MessageText:
  2234. //
  2235. // The attempted logon is invalid. This is either due to a bad username or authentication information.
  2236. //
  2237. #define STATUS_LOGON_FAILURE ((NTSTATUS)0xC000006DL) // ntsubauth
  2238. //
  2239. // MessageId: STATUS_ACCOUNT_RESTRICTION
  2240. //
  2241. // MessageText:
  2242. //
  2243. // Indicates a referenced user name and authentication information are valid, but some user account restriction has prevented successful authentication (such as time-of-day restrictions).
  2244. //
  2245. #define STATUS_ACCOUNT_RESTRICTION ((NTSTATUS)0xC000006EL) // ntsubauth
  2246. //
  2247. // MessageId: STATUS_INVALID_LOGON_HOURS
  2248. //
  2249. // MessageText:
  2250. //
  2251. // The user account has time restrictions and may not be logged onto at this time.
  2252. //
  2253. #define STATUS_INVALID_LOGON_HOURS ((NTSTATUS)0xC000006FL) // ntsubauth
  2254. //
  2255. // MessageId: STATUS_INVALID_WORKSTATION
  2256. //
  2257. // MessageText:
  2258. //
  2259. // The user account is restricted such that it may not be used to log on from the source workstation.
  2260. //
  2261. #define STATUS_INVALID_WORKSTATION ((NTSTATUS)0xC0000070L) // ntsubauth
  2262. //
  2263. // MessageId: STATUS_PASSWORD_EXPIRED
  2264. //
  2265. // MessageText:
  2266. //
  2267. // The user account's password has expired.
  2268. //
  2269. #define STATUS_PASSWORD_EXPIRED ((NTSTATUS)0xC0000071L) // ntsubauth
  2270. //
  2271. // MessageId: STATUS_ACCOUNT_DISABLED
  2272. //
  2273. // MessageText:
  2274. //
  2275. // The referenced account is currently disabled and may not be logged on to.
  2276. //
  2277. #define STATUS_ACCOUNT_DISABLED ((NTSTATUS)0xC0000072L) // ntsubauth
  2278. //
  2279. // MessageId: STATUS_NONE_MAPPED
  2280. //
  2281. // MessageText:
  2282. //
  2283. // None of the information to be translated has been translated.
  2284. //
  2285. #define STATUS_NONE_MAPPED ((NTSTATUS)0xC0000073L)
  2286. //
  2287. // MessageId: STATUS_TOO_MANY_LUIDS_REQUESTED
  2288. //
  2289. // MessageText:
  2290. //
  2291. // The number of LUIDs requested may not be allocated with a single allocation.
  2292. //
  2293. #define STATUS_TOO_MANY_LUIDS_REQUESTED ((NTSTATUS)0xC0000074L)
  2294. //
  2295. // MessageId: STATUS_LUIDS_EXHAUSTED
  2296. //
  2297. // MessageText:
  2298. //
  2299. // Indicates there are no more LUIDs to allocate.
  2300. //
  2301. #define STATUS_LUIDS_EXHAUSTED ((NTSTATUS)0xC0000075L)
  2302. //
  2303. // MessageId: STATUS_INVALID_SUB_AUTHORITY
  2304. //
  2305. // MessageText:
  2306. //
  2307. // Indicates the sub-authority value is invalid for the particular use.
  2308. //
  2309. #define STATUS_INVALID_SUB_AUTHORITY ((NTSTATUS)0xC0000076L)
  2310. //
  2311. // MessageId: STATUS_INVALID_ACL
  2312. //
  2313. // MessageText:
  2314. //
  2315. // Indicates the ACL structure is not valid.
  2316. //
  2317. #define STATUS_INVALID_ACL ((NTSTATUS)0xC0000077L)
  2318. //
  2319. // MessageId: STATUS_INVALID_SID
  2320. //
  2321. // MessageText:
  2322. //
  2323. // Indicates the SID structure is not valid.
  2324. //
  2325. #define STATUS_INVALID_SID ((NTSTATUS)0xC0000078L)
  2326. //
  2327. // MessageId: STATUS_INVALID_SECURITY_DESCR
  2328. //
  2329. // MessageText:
  2330. //
  2331. // Indicates the SECURITY_DESCRIPTOR structure is not valid.
  2332. //
  2333. #define STATUS_INVALID_SECURITY_DESCR ((NTSTATUS)0xC0000079L)
  2334. //
  2335. // MessageId: STATUS_PROCEDURE_NOT_FOUND
  2336. //
  2337. // MessageText:
  2338. //
  2339. // Indicates the specified procedure address cannot be found in the DLL.
  2340. //
  2341. #define STATUS_PROCEDURE_NOT_FOUND ((NTSTATUS)0xC000007AL)
  2342. //
  2343. // MessageId: STATUS_INVALID_IMAGE_FORMAT
  2344. //
  2345. // MessageText:
  2346. //
  2347. // {Bad Image}
  2348. // The application or DLL %hs is not a valid Windows image. Please check this against your installation diskette.
  2349. //
  2350. #define STATUS_INVALID_IMAGE_FORMAT ((NTSTATUS)0xC000007BL)
  2351. //
  2352. // MessageId: STATUS_NO_TOKEN
  2353. //
  2354. // MessageText:
  2355. //
  2356. // An attempt was made to reference a token that doesn't exist.
  2357. // This is typically done by referencing the token associated with a thread when the thread is not impersonating a client.
  2358. //
  2359. #define STATUS_NO_TOKEN ((NTSTATUS)0xC000007CL)
  2360. //
  2361. // MessageId: STATUS_BAD_INHERITANCE_ACL
  2362. //
  2363. // MessageText:
  2364. //
  2365. // Indicates that an attempt to build either an inherited ACL or ACE was not successful.
  2366. // This can be caused by a number of things. One of the more probable causes is the replacement of a CreatorId with an SID that didn't fit into the ACE or ACL.
  2367. //
  2368. #define STATUS_BAD_INHERITANCE_ACL ((NTSTATUS)0xC000007DL)
  2369. //
  2370. // MessageId: STATUS_RANGE_NOT_LOCKED
  2371. //
  2372. // MessageText:
  2373. //
  2374. // The range specified in NtUnlockFile was not locked.
  2375. //
  2376. #define STATUS_RANGE_NOT_LOCKED ((NTSTATUS)0xC000007EL)
  2377. //
  2378. // MessageId: STATUS_DISK_FULL
  2379. //
  2380. // MessageText:
  2381. //
  2382. // An operation failed because the disk was full.
  2383. //
  2384. #define STATUS_DISK_FULL ((NTSTATUS)0xC000007FL)
  2385. //
  2386. // MessageId: STATUS_SERVER_DISABLED
  2387. //
  2388. // MessageText:
  2389. //
  2390. // The GUID allocation server is [already] disabled at the moment.
  2391. //
  2392. #define STATUS_SERVER_DISABLED ((NTSTATUS)0xC0000080L)
  2393. //
  2394. // MessageId: STATUS_SERVER_NOT_DISABLED
  2395. //
  2396. // MessageText:
  2397. //
  2398. // The GUID allocation server is [already] enabled at the moment.
  2399. //
  2400. #define STATUS_SERVER_NOT_DISABLED ((NTSTATUS)0xC0000081L)
  2401. //
  2402. // MessageId: STATUS_TOO_MANY_GUIDS_REQUESTED
  2403. //
  2404. // MessageText:
  2405. //
  2406. // Too many GUIDs were requested from the allocation server at once.
  2407. //
  2408. #define STATUS_TOO_MANY_GUIDS_REQUESTED ((NTSTATUS)0xC0000082L)
  2409. //
  2410. // MessageId: STATUS_GUIDS_EXHAUSTED
  2411. //
  2412. // MessageText:
  2413. //
  2414. // The GUIDs could not be allocated because the Authority Agent was exhausted.
  2415. //
  2416. #define STATUS_GUIDS_EXHAUSTED ((NTSTATUS)0xC0000083L)
  2417. //
  2418. // MessageId: STATUS_INVALID_ID_AUTHORITY
  2419. //
  2420. // MessageText:
  2421. //
  2422. // The value provided was an invalid value for an identifier authority.
  2423. //
  2424. #define STATUS_INVALID_ID_AUTHORITY ((NTSTATUS)0xC0000084L)
  2425. //
  2426. // MessageId: STATUS_AGENTS_EXHAUSTED
  2427. //
  2428. // MessageText:
  2429. //
  2430. // There are no more authority agent values available for the given identifier authority value.
  2431. //
  2432. #define STATUS_AGENTS_EXHAUSTED ((NTSTATUS)0xC0000085L)
  2433. //
  2434. // MessageId: STATUS_INVALID_VOLUME_LABEL
  2435. //
  2436. // MessageText:
  2437. //
  2438. // An invalid volume label has been specified.
  2439. //
  2440. #define STATUS_INVALID_VOLUME_LABEL ((NTSTATUS)0xC0000086L)
  2441. //
  2442. // MessageId: STATUS_SECTION_NOT_EXTENDED
  2443. //
  2444. // MessageText:
  2445. //
  2446. // A mapped section could not be extended.
  2447. //
  2448. #define STATUS_SECTION_NOT_EXTENDED ((NTSTATUS)0xC0000087L)
  2449. //
  2450. // MessageId: STATUS_NOT_MAPPED_DATA
  2451. //
  2452. // MessageText:
  2453. //
  2454. // Specified section to flush does not map a data file.
  2455. //
  2456. #define STATUS_NOT_MAPPED_DATA ((NTSTATUS)0xC0000088L)
  2457. //
  2458. // MessageId: STATUS_RESOURCE_DATA_NOT_FOUND
  2459. //
  2460. // MessageText:
  2461. //
  2462. // Indicates the specified image file did not contain a resource section.
  2463. //
  2464. #define STATUS_RESOURCE_DATA_NOT_FOUND ((NTSTATUS)0xC0000089L)
  2465. //
  2466. // MessageId: STATUS_RESOURCE_TYPE_NOT_FOUND
  2467. //
  2468. // MessageText:
  2469. //
  2470. // Indicates the specified resource type cannot be found in the image file.
  2471. //
  2472. #define STATUS_RESOURCE_TYPE_NOT_FOUND ((NTSTATUS)0xC000008AL)
  2473. //
  2474. // MessageId: STATUS_RESOURCE_NAME_NOT_FOUND
  2475. //
  2476. // MessageText:
  2477. //
  2478. // Indicates the specified resource name cannot be found in the image file.
  2479. //
  2480. #define STATUS_RESOURCE_NAME_NOT_FOUND ((NTSTATUS)0xC000008BL)
  2481. //
  2482. // MessageId: STATUS_ARRAY_BOUNDS_EXCEEDED
  2483. //
  2484. // MessageText:
  2485. //
  2486. // {EXCEPTION}
  2487. // Array bounds exceeded.
  2488. //
  2489. #define STATUS_ARRAY_BOUNDS_EXCEEDED ((NTSTATUS)0xC000008CL) // winnt
  2490. //
  2491. // MessageId: STATUS_FLOAT_DENORMAL_OPERAND
  2492. //
  2493. // MessageText:
  2494. //
  2495. // {EXCEPTION}
  2496. // Floating-point denormal operand.
  2497. //
  2498. #define STATUS_FLOAT_DENORMAL_OPERAND ((NTSTATUS)0xC000008DL) // winnt
  2499. //
  2500. // MessageId: STATUS_FLOAT_DIVIDE_BY_ZERO
  2501. //
  2502. // MessageText:
  2503. //
  2504. // {EXCEPTION}
  2505. // Floating-point division by zero.
  2506. //
  2507. #define STATUS_FLOAT_DIVIDE_BY_ZERO ((NTSTATUS)0xC000008EL) // winnt
  2508. //
  2509. // MessageId: STATUS_FLOAT_INEXACT_RESULT
  2510. //
  2511. // MessageText:
  2512. //
  2513. // {EXCEPTION}
  2514. // Floating-point inexact result.
  2515. //
  2516. #define STATUS_FLOAT_INEXACT_RESULT ((NTSTATUS)0xC000008FL) // winnt
  2517. //
  2518. // MessageId: STATUS_FLOAT_INVALID_OPERATION
  2519. //
  2520. // MessageText:
  2521. //
  2522. // {EXCEPTION}
  2523. // Floating-point invalid operation.
  2524. //
  2525. #define STATUS_FLOAT_INVALID_OPERATION ((NTSTATUS)0xC0000090L) // winnt
  2526. //
  2527. // MessageId: STATUS_FLOAT_OVERFLOW
  2528. //
  2529. // MessageText:
  2530. //
  2531. // {EXCEPTION}
  2532. // Floating-point overflow.
  2533. //
  2534. #define STATUS_FLOAT_OVERFLOW ((NTSTATUS)0xC0000091L) // winnt
  2535. //
  2536. // MessageId: STATUS_FLOAT_STACK_CHECK
  2537. //
  2538. // MessageText:
  2539. //
  2540. // {EXCEPTION}
  2541. // Floating-point stack check.
  2542. //
  2543. #define STATUS_FLOAT_STACK_CHECK ((NTSTATUS)0xC0000092L) // winnt
  2544. //
  2545. // MessageId: STATUS_FLOAT_UNDERFLOW
  2546. //
  2547. // MessageText:
  2548. //
  2549. // {EXCEPTION}
  2550. // Floating-point underflow.
  2551. //
  2552. #define STATUS_FLOAT_UNDERFLOW ((NTSTATUS)0xC0000093L) // winnt
  2553. //
  2554. // MessageId: STATUS_INTEGER_DIVIDE_BY_ZERO
  2555. //
  2556. // MessageText:
  2557. //
  2558. // {EXCEPTION}
  2559. // Integer division by zero.
  2560. //
  2561. #define STATUS_INTEGER_DIVIDE_BY_ZERO ((NTSTATUS)0xC0000094L) // winnt
  2562. //
  2563. // MessageId: STATUS_INTEGER_OVERFLOW
  2564. //
  2565. // MessageText:
  2566. //
  2567. // {EXCEPTION}
  2568. // Integer overflow.
  2569. //
  2570. #define STATUS_INTEGER_OVERFLOW ((NTSTATUS)0xC0000095L) // winnt
  2571. //
  2572. // MessageId: STATUS_PRIVILEGED_INSTRUCTION
  2573. //
  2574. // MessageText:
  2575. //
  2576. // {EXCEPTION}
  2577. // Privileged instruction.
  2578. //
  2579. #define STATUS_PRIVILEGED_INSTRUCTION ((NTSTATUS)0xC0000096L) // winnt
  2580. //
  2581. // MessageId: STATUS_TOO_MANY_PAGING_FILES
  2582. //
  2583. // MessageText:
  2584. //
  2585. // An attempt was made to install more paging files than the system supports.
  2586. //
  2587. #define STATUS_TOO_MANY_PAGING_FILES ((NTSTATUS)0xC0000097L)
  2588. //
  2589. // MessageId: STATUS_FILE_INVALID
  2590. //
  2591. // MessageText:
  2592. //
  2593. // The volume for a file has been externally altered such that the opened file is no longer valid.
  2594. //
  2595. #define STATUS_FILE_INVALID ((NTSTATUS)0xC0000098L)
  2596. //
  2597. // MessageId: STATUS_ALLOTTED_SPACE_EXCEEDED
  2598. //
  2599. // MessageText:
  2600. //
  2601. // When a block of memory is allotted for future updates, such as the memory allocated to hold discretionary access control and primary group information, successive updates may exceed the amount of memory originally allotted.
  2602. // Since quota may already have been charged to several processes which have handles to the object, it is not reasonable to alter the size of the allocated memory.
  2603. // Instead, a request that requires more memory than has been allotted must fail and the STATUS_ALLOTED_SPACE_EXCEEDED error returned.
  2604. //
  2605. #define STATUS_ALLOTTED_SPACE_EXCEEDED ((NTSTATUS)0xC0000099L)
  2606. //
  2607. // MessageId: STATUS_INSUFFICIENT_RESOURCES
  2608. //
  2609. // MessageText:
  2610. //
  2611. // Insufficient system resources exist to complete the API.
  2612. //
  2613. #define STATUS_INSUFFICIENT_RESOURCES ((NTSTATUS)0xC000009AL) // ntsubauth
  2614. //
  2615. // MessageId: STATUS_DFS_EXIT_PATH_FOUND
  2616. //
  2617. // MessageText:
  2618. //
  2619. // An attempt has been made to open a DFS exit path control file.
  2620. //
  2621. #define STATUS_DFS_EXIT_PATH_FOUND ((NTSTATUS)0xC000009BL)
  2622. //
  2623. // MessageId: STATUS_DEVICE_DATA_ERROR
  2624. //
  2625. // MessageText:
  2626. //
  2627. // STATUS_DEVICE_DATA_ERROR
  2628. //
  2629. #define STATUS_DEVICE_DATA_ERROR ((NTSTATUS)0xC000009CL)
  2630. //
  2631. // MessageId: STATUS_DEVICE_NOT_CONNECTED
  2632. //
  2633. // MessageText:
  2634. //
  2635. // STATUS_DEVICE_NOT_CONNECTED
  2636. //
  2637. #define STATUS_DEVICE_NOT_CONNECTED ((NTSTATUS)0xC000009DL)
  2638. //
  2639. // MessageId: STATUS_DEVICE_POWER_FAILURE
  2640. //
  2641. // MessageText:
  2642. //
  2643. // STATUS_DEVICE_POWER_FAILURE
  2644. //
  2645. #define STATUS_DEVICE_POWER_FAILURE ((NTSTATUS)0xC000009EL)
  2646. //
  2647. // MessageId: STATUS_FREE_VM_NOT_AT_BASE
  2648. //
  2649. // MessageText:
  2650. //
  2651. // Virtual memory cannot be freed as base address is not the base of the region and a region size of zero was specified.
  2652. //
  2653. #define STATUS_FREE_VM_NOT_AT_BASE ((NTSTATUS)0xC000009FL)
  2654. //
  2655. // MessageId: STATUS_MEMORY_NOT_ALLOCATED
  2656. //
  2657. // MessageText:
  2658. //
  2659. // An attempt was made to free virtual memory which is not allocated.
  2660. //
  2661. #define STATUS_MEMORY_NOT_ALLOCATED ((NTSTATUS)0xC00000A0L)
  2662. //
  2663. // MessageId: STATUS_WORKING_SET_QUOTA
  2664. //
  2665. // MessageText:
  2666. //
  2667. // The working set is not big enough to allow the requested pages to be locked.
  2668. //
  2669. #define STATUS_WORKING_SET_QUOTA ((NTSTATUS)0xC00000A1L)
  2670. //
  2671. // MessageId: STATUS_MEDIA_WRITE_PROTECTED
  2672. //
  2673. // MessageText:
  2674. //
  2675. // {Write Protect Error}
  2676. // The disk cannot be written to because it is write protected.
  2677. // Please remove the write protection from the volume %hs in drive %hs.
  2678. //
  2679. #define STATUS_MEDIA_WRITE_PROTECTED ((NTSTATUS)0xC00000A2L)
  2680. //
  2681. // MessageId: STATUS_DEVICE_NOT_READY
  2682. //
  2683. // MessageText:
  2684. //
  2685. // {Drive Not Ready}
  2686. // The drive is not ready for use; its door may be open.
  2687. // Please check drive %hs and make sure that a disk is inserted and that the drive door is closed.
  2688. //
  2689. #define STATUS_DEVICE_NOT_READY ((NTSTATUS)0xC00000A3L)
  2690. //
  2691. // MessageId: STATUS_INVALID_GROUP_ATTRIBUTES
  2692. //
  2693. // MessageText:
  2694. //
  2695. // The specified attributes are invalid, or incompatible with the attributes for the group as a whole.
  2696. //
  2697. #define STATUS_INVALID_GROUP_ATTRIBUTES ((NTSTATUS)0xC00000A4L)
  2698. //
  2699. // MessageId: STATUS_BAD_IMPERSONATION_LEVEL
  2700. //
  2701. // MessageText:
  2702. //
  2703. // A specified impersonation level is invalid.
  2704. // Also used to indicate a required impersonation level was not provided.
  2705. //
  2706. #define STATUS_BAD_IMPERSONATION_LEVEL ((NTSTATUS)0xC00000A5L)
  2707. //
  2708. // MessageId: STATUS_CANT_OPEN_ANONYMOUS
  2709. //
  2710. // MessageText:
  2711. //
  2712. // An attempt was made to open an Anonymous level token.
  2713. // Anonymous tokens may not be opened.
  2714. //
  2715. #define STATUS_CANT_OPEN_ANONYMOUS ((NTSTATUS)0xC00000A6L)
  2716. //
  2717. // MessageId: STATUS_BAD_VALIDATION_CLASS
  2718. //
  2719. // MessageText:
  2720. //
  2721. // The validation information class requested was invalid.
  2722. //
  2723. #define STATUS_BAD_VALIDATION_CLASS ((NTSTATUS)0xC00000A7L)
  2724. //
  2725. // MessageId: STATUS_BAD_TOKEN_TYPE
  2726. //
  2727. // MessageText:
  2728. //
  2729. // The type of a token object is inappropriate for its attempted use.
  2730. //
  2731. #define STATUS_BAD_TOKEN_TYPE ((NTSTATUS)0xC00000A8L)
  2732. //
  2733. // MessageId: STATUS_BAD_MASTER_BOOT_RECORD
  2734. //
  2735. // MessageText:
  2736. //
  2737. // The type of a token object is inappropriate for its attempted use.
  2738. //
  2739. #define STATUS_BAD_MASTER_BOOT_RECORD ((NTSTATUS)0xC00000A9L)
  2740. //
  2741. // MessageId: STATUS_INSTRUCTION_MISALIGNMENT
  2742. //
  2743. // MessageText:
  2744. //
  2745. // An attempt was made to execute an instruction at an unaligned address and the host system does not support unaligned instruction references.
  2746. //
  2747. #define STATUS_INSTRUCTION_MISALIGNMENT ((NTSTATUS)0xC00000AAL)
  2748. //
  2749. // MessageId: STATUS_INSTANCE_NOT_AVAILABLE
  2750. //
  2751. // MessageText:
  2752. //
  2753. // The maximum named pipe instance count has been reached.
  2754. //
  2755. #define STATUS_INSTANCE_NOT_AVAILABLE ((NTSTATUS)0xC00000ABL)
  2756. //
  2757. // MessageId: STATUS_PIPE_NOT_AVAILABLE
  2758. //
  2759. // MessageText:
  2760. //
  2761. // An instance of a named pipe cannot be found in the listening state.
  2762. //
  2763. #define STATUS_PIPE_NOT_AVAILABLE ((NTSTATUS)0xC00000ACL)
  2764. //
  2765. // MessageId: STATUS_INVALID_PIPE_STATE
  2766. //
  2767. // MessageText:
  2768. //
  2769. // The named pipe is not in the connected or closing state.
  2770. //
  2771. #define STATUS_INVALID_PIPE_STATE ((NTSTATUS)0xC00000ADL)
  2772. //
  2773. // MessageId: STATUS_PIPE_BUSY
  2774. //
  2775. // MessageText:
  2776. //
  2777. // The specified pipe is set to complete operations and there are current I/O operations queued so it cannot be changed to queue operations.
  2778. //
  2779. #define STATUS_PIPE_BUSY ((NTSTATUS)0xC00000AEL)
  2780. //
  2781. // MessageId: STATUS_ILLEGAL_FUNCTION
  2782. //
  2783. // MessageText:
  2784. //
  2785. // The specified handle is not open to the server end of the named pipe.
  2786. //
  2787. #define STATUS_ILLEGAL_FUNCTION ((NTSTATUS)0xC00000AFL)
  2788. //
  2789. // MessageId: STATUS_PIPE_DISCONNECTED
  2790. //
  2791. // MessageText:
  2792. //
  2793. // The specified named pipe is in the disconnected state.
  2794. //
  2795. #define STATUS_PIPE_DISCONNECTED ((NTSTATUS)0xC00000B0L)
  2796. //
  2797. // MessageId: STATUS_PIPE_CLOSING
  2798. //
  2799. // MessageText:
  2800. //
  2801. // The specified named pipe is in the closing state.
  2802. //
  2803. #define STATUS_PIPE_CLOSING ((NTSTATUS)0xC00000B1L)
  2804. //
  2805. // MessageId: STATUS_PIPE_CONNECTED
  2806. //
  2807. // MessageText:
  2808. //
  2809. // The specified named pipe is in the connected state.
  2810. //
  2811. #define STATUS_PIPE_CONNECTED ((NTSTATUS)0xC00000B2L)
  2812. //
  2813. // MessageId: STATUS_PIPE_LISTENING
  2814. //
  2815. // MessageText:
  2816. //
  2817. // The specified named pipe is in the listening state.
  2818. //
  2819. #define STATUS_PIPE_LISTENING ((NTSTATUS)0xC00000B3L)
  2820. //
  2821. // MessageId: STATUS_INVALID_READ_MODE
  2822. //
  2823. // MessageText:
  2824. //
  2825. // The specified named pipe is not in message mode.
  2826. //
  2827. #define STATUS_INVALID_READ_MODE ((NTSTATUS)0xC00000B4L)
  2828. //
  2829. // MessageId: STATUS_IO_TIMEOUT
  2830. //
  2831. // MessageText:
  2832. //
  2833. // {Device Timeout}
  2834. // The specified I/O operation on %hs was not completed before the time-out period expired.
  2835. //
  2836. #define STATUS_IO_TIMEOUT ((NTSTATUS)0xC00000B5L)
  2837. //
  2838. // MessageId: STATUS_FILE_FORCED_CLOSED
  2839. //
  2840. // MessageText:
  2841. //
  2842. // The specified file has been closed by another process.
  2843. //
  2844. #define STATUS_FILE_FORCED_CLOSED ((NTSTATUS)0xC00000B6L)
  2845. //
  2846. // MessageId: STATUS_PROFILING_NOT_STARTED
  2847. //
  2848. // MessageText:
  2849. //
  2850. // Profiling not started.
  2851. //
  2852. #define STATUS_PROFILING_NOT_STARTED ((NTSTATUS)0xC00000B7L)
  2853. //
  2854. // MessageId: STATUS_PROFILING_NOT_STOPPED
  2855. //
  2856. // MessageText:
  2857. //
  2858. // Profiling not stopped.
  2859. //
  2860. #define STATUS_PROFILING_NOT_STOPPED ((NTSTATUS)0xC00000B8L)
  2861. //
  2862. // MessageId: STATUS_COULD_NOT_INTERPRET
  2863. //
  2864. // MessageText:
  2865. //
  2866. // The passed ACL did not contain the minimum required information.
  2867. //
  2868. #define STATUS_COULD_NOT_INTERPRET ((NTSTATUS)0xC00000B9L)
  2869. //
  2870. // MessageId: STATUS_FILE_IS_A_DIRECTORY
  2871. //
  2872. // MessageText:
  2873. //
  2874. // The file that was specified as a target is a directory and the caller specified that it could be anything but a directory.
  2875. //
  2876. #define STATUS_FILE_IS_A_DIRECTORY ((NTSTATUS)0xC00000BAL)
  2877. //
  2878. // Network specific errors.
  2879. //
  2880. //
  2881. //
  2882. // MessageId: STATUS_NOT_SUPPORTED
  2883. //
  2884. // MessageText:
  2885. //
  2886. // The request is not supported.
  2887. //
  2888. #define STATUS_NOT_SUPPORTED ((NTSTATUS)0xC00000BBL)
  2889. //
  2890. // MessageId: STATUS_REMOTE_NOT_LISTENING
  2891. //
  2892. // MessageText:
  2893. //
  2894. // This remote computer is not listening.
  2895. //
  2896. #define STATUS_REMOTE_NOT_LISTENING ((NTSTATUS)0xC00000BCL)
  2897. //
  2898. // MessageId: STATUS_DUPLICATE_NAME
  2899. //
  2900. // MessageText:
  2901. //
  2902. // A duplicate name exists on the network.
  2903. //
  2904. #define STATUS_DUPLICATE_NAME ((NTSTATUS)0xC00000BDL)
  2905. //
  2906. // MessageId: STATUS_BAD_NETWORK_PATH
  2907. //
  2908. // MessageText:
  2909. //
  2910. // The network path cannot be located.
  2911. //
  2912. #define STATUS_BAD_NETWORK_PATH ((NTSTATUS)0xC00000BEL)
  2913. //
  2914. // MessageId: STATUS_NETWORK_BUSY
  2915. //
  2916. // MessageText:
  2917. //
  2918. // The network is busy.
  2919. //
  2920. #define STATUS_NETWORK_BUSY ((NTSTATUS)0xC00000BFL)
  2921. //
  2922. // MessageId: STATUS_DEVICE_DOES_NOT_EXIST
  2923. //
  2924. // MessageText:
  2925. //
  2926. // This device does not exist.
  2927. //
  2928. #define STATUS_DEVICE_DOES_NOT_EXIST ((NTSTATUS)0xC00000C0L)
  2929. //
  2930. // MessageId: STATUS_TOO_MANY_COMMANDS
  2931. //
  2932. // MessageText:
  2933. //
  2934. // The network BIOS command limit has been reached.
  2935. //
  2936. #define STATUS_TOO_MANY_COMMANDS ((NTSTATUS)0xC00000C1L)
  2937. //
  2938. // MessageId: STATUS_ADAPTER_HARDWARE_ERROR
  2939. //
  2940. // MessageText:
  2941. //
  2942. // An I/O adapter hardware error has occurred.
  2943. //
  2944. #define STATUS_ADAPTER_HARDWARE_ERROR ((NTSTATUS)0xC00000C2L)
  2945. //
  2946. // MessageId: STATUS_INVALID_NETWORK_RESPONSE
  2947. //
  2948. // MessageText:
  2949. //
  2950. // The network responded incorrectly.
  2951. //
  2952. #define STATUS_INVALID_NETWORK_RESPONSE ((NTSTATUS)0xC00000C3L)
  2953. //
  2954. // MessageId: STATUS_UNEXPECTED_NETWORK_ERROR
  2955. //
  2956. // MessageText:
  2957. //
  2958. // An unexpected network error occurred.
  2959. //
  2960. #define STATUS_UNEXPECTED_NETWORK_ERROR ((NTSTATUS)0xC00000C4L)
  2961. //
  2962. // MessageId: STATUS_BAD_REMOTE_ADAPTER
  2963. //
  2964. // MessageText:
  2965. //
  2966. // The remote adapter is not compatible.
  2967. //
  2968. #define STATUS_BAD_REMOTE_ADAPTER ((NTSTATUS)0xC00000C5L)
  2969. //
  2970. // MessageId: STATUS_PRINT_QUEUE_FULL
  2971. //
  2972. // MessageText:
  2973. //
  2974. // The printer queue is full.
  2975. //
  2976. #define STATUS_PRINT_QUEUE_FULL ((NTSTATUS)0xC00000C6L)
  2977. //
  2978. // MessageId: STATUS_NO_SPOOL_SPACE
  2979. //
  2980. // MessageText:
  2981. //
  2982. // Space to store the file waiting to be printed is not available on the server.
  2983. //
  2984. #define STATUS_NO_SPOOL_SPACE ((NTSTATUS)0xC00000C7L)
  2985. //
  2986. // MessageId: STATUS_PRINT_CANCELLED
  2987. //
  2988. // MessageText:
  2989. //
  2990. // The requested print file has been canceled.
  2991. //
  2992. #define STATUS_PRINT_CANCELLED ((NTSTATUS)0xC00000C8L)
  2993. //
  2994. // MessageId: STATUS_NETWORK_NAME_DELETED
  2995. //
  2996. // MessageText:
  2997. //
  2998. // The network name was deleted.
  2999. //
  3000. #define STATUS_NETWORK_NAME_DELETED ((NTSTATUS)0xC00000C9L)
  3001. //
  3002. // MessageId: STATUS_NETWORK_ACCESS_DENIED
  3003. //
  3004. // MessageText:
  3005. //
  3006. // Network access is denied.
  3007. //
  3008. #define STATUS_NETWORK_ACCESS_DENIED ((NTSTATUS)0xC00000CAL)
  3009. //
  3010. // MessageId: STATUS_BAD_DEVICE_TYPE
  3011. //
  3012. // MessageText:
  3013. //
  3014. // {Incorrect Network Resource Type}
  3015. // The specified device type (LPT, for example) conflicts with the actual device type on the remote resource.
  3016. //
  3017. #define STATUS_BAD_DEVICE_TYPE ((NTSTATUS)0xC00000CBL)
  3018. //
  3019. // MessageId: STATUS_BAD_NETWORK_NAME
  3020. //
  3021. // MessageText:
  3022. //
  3023. // {Network Name Not Found}
  3024. // The specified share name cannot be found on the remote server.
  3025. //
  3026. #define STATUS_BAD_NETWORK_NAME ((NTSTATUS)0xC00000CCL)
  3027. //
  3028. // MessageId: STATUS_TOO_MANY_NAMES
  3029. //
  3030. // MessageText:
  3031. //
  3032. // The name limit for the local computer network adapter card was exceeded.
  3033. //
  3034. #define STATUS_TOO_MANY_NAMES ((NTSTATUS)0xC00000CDL)
  3035. //
  3036. // MessageId: STATUS_TOO_MANY_SESSIONS
  3037. //
  3038. // MessageText:
  3039. //
  3040. // The network BIOS session limit was exceeded.
  3041. //
  3042. #define STATUS_TOO_MANY_SESSIONS ((NTSTATUS)0xC00000CEL)
  3043. //
  3044. // MessageId: STATUS_SHARING_PAUSED
  3045. //
  3046. // MessageText:
  3047. //
  3048. // File sharing has been temporarily paused.
  3049. //
  3050. #define STATUS_SHARING_PAUSED ((NTSTATUS)0xC00000CFL)
  3051. //
  3052. // MessageId: STATUS_REQUEST_NOT_ACCEPTED
  3053. //
  3054. // MessageText:
  3055. //
  3056. // No more connections can be made to this remote computer at this time because there are already as many connections as the computer can accept.
  3057. //
  3058. #define STATUS_REQUEST_NOT_ACCEPTED ((NTSTATUS)0xC00000D0L)
  3059. //
  3060. // MessageId: STATUS_REDIRECTOR_PAUSED
  3061. //
  3062. // MessageText:
  3063. //
  3064. // Print or disk redirection is temporarily paused.
  3065. //
  3066. #define STATUS_REDIRECTOR_PAUSED ((NTSTATUS)0xC00000D1L)
  3067. //
  3068. // MessageId: STATUS_NET_WRITE_FAULT
  3069. //
  3070. // MessageText:
  3071. //
  3072. // A network data fault occurred.
  3073. //
  3074. #define STATUS_NET_WRITE_FAULT ((NTSTATUS)0xC00000D2L)
  3075. //
  3076. // MessageId: STATUS_PROFILING_AT_LIMIT
  3077. //
  3078. // MessageText:
  3079. //
  3080. // The number of active profiling objects is at the maximum and no more may be started.
  3081. //
  3082. #define STATUS_PROFILING_AT_LIMIT ((NTSTATUS)0xC00000D3L)
  3083. //
  3084. // MessageId: STATUS_NOT_SAME_DEVICE
  3085. //
  3086. // MessageText:
  3087. //
  3088. // {Incorrect Volume}
  3089. // The target file of a rename request is located on a different device than the source of the rename request.
  3090. //
  3091. #define STATUS_NOT_SAME_DEVICE ((NTSTATUS)0xC00000D4L)
  3092. //
  3093. // MessageId: STATUS_FILE_RENAMED
  3094. //
  3095. // MessageText:
  3096. //
  3097. // The file specified has been renamed and thus cannot be modified.
  3098. //
  3099. #define STATUS_FILE_RENAMED ((NTSTATUS)0xC00000D5L)
  3100. //
  3101. // MessageId: STATUS_VIRTUAL_CIRCUIT_CLOSED
  3102. //
  3103. // MessageText:
  3104. //
  3105. // {Network Request Timeout}
  3106. // The session with a remote server has been disconnected because the time-out interval for a request has expired.
  3107. //
  3108. #define STATUS_VIRTUAL_CIRCUIT_CLOSED ((NTSTATUS)0xC00000D6L)
  3109. //
  3110. // MessageId: STATUS_NO_SECURITY_ON_OBJECT
  3111. //
  3112. // MessageText:
  3113. //
  3114. // Indicates an attempt was made to operate on the security of an object that does not have security associated with it.
  3115. //
  3116. #define STATUS_NO_SECURITY_ON_OBJECT ((NTSTATUS)0xC00000D7L)
  3117. //
  3118. // MessageId: STATUS_CANT_WAIT
  3119. //
  3120. // MessageText:
  3121. //
  3122. // Used to indicate that an operation cannot continue without blocking for I/O.
  3123. //
  3124. #define STATUS_CANT_WAIT ((NTSTATUS)0xC00000D8L)
  3125. //
  3126. // MessageId: STATUS_PIPE_EMPTY
  3127. //
  3128. // MessageText:
  3129. //
  3130. // Used to indicate that a read operation was done on an empty pipe.
  3131. //
  3132. #define STATUS_PIPE_EMPTY ((NTSTATUS)0xC00000D9L)
  3133. //
  3134. // MessageId: STATUS_CANT_ACCESS_DOMAIN_INFO
  3135. //
  3136. // MessageText:
  3137. //
  3138. // Configuration information could not be read from the domain controller, either because the machine is unavailable, or access has been denied.
  3139. //
  3140. #define STATUS_CANT_ACCESS_DOMAIN_INFO ((NTSTATUS)0xC00000DAL)
  3141. //
  3142. // MessageId: STATUS_CANT_TERMINATE_SELF
  3143. //
  3144. // MessageText:
  3145. //
  3146. // Indicates that a thread attempted to terminate itself by default (called NtTerminateThread with NULL) and it was the last thread in the current process.
  3147. //
  3148. #define STATUS_CANT_TERMINATE_SELF ((NTSTATUS)0xC00000DBL)
  3149. //
  3150. // MessageId: STATUS_INVALID_SERVER_STATE
  3151. //
  3152. // MessageText:
  3153. //
  3154. // Indicates the Sam Server was in the wrong state to perform the desired operation.
  3155. //
  3156. #define STATUS_INVALID_SERVER_STATE ((NTSTATUS)0xC00000DCL)
  3157. //
  3158. // MessageId: STATUS_INVALID_DOMAIN_STATE
  3159. //
  3160. // MessageText:
  3161. //
  3162. // Indicates the Domain was in the wrong state to perform the desired operation.
  3163. //
  3164. #define STATUS_INVALID_DOMAIN_STATE ((NTSTATUS)0xC00000DDL)
  3165. //
  3166. // MessageId: STATUS_INVALID_DOMAIN_ROLE
  3167. //
  3168. // MessageText:
  3169. //
  3170. // This operation is only allowed for the Primary Domain Controller of the domain.
  3171. //
  3172. #define STATUS_INVALID_DOMAIN_ROLE ((NTSTATUS)0xC00000DEL)
  3173. //
  3174. // MessageId: STATUS_NO_SUCH_DOMAIN
  3175. //
  3176. // MessageText:
  3177. //
  3178. // The specified Domain did not exist.
  3179. //
  3180. #define STATUS_NO_SUCH_DOMAIN ((NTSTATUS)0xC00000DFL)
  3181. //
  3182. // MessageId: STATUS_DOMAIN_EXISTS
  3183. //
  3184. // MessageText:
  3185. //
  3186. // The specified Domain already exists.
  3187. //
  3188. #define STATUS_DOMAIN_EXISTS ((NTSTATUS)0xC00000E0L)
  3189. //
  3190. // MessageId: STATUS_DOMAIN_LIMIT_EXCEEDED
  3191. //
  3192. // MessageText:
  3193. //
  3194. // An attempt was made to exceed the limit on the number of domains per server for this release.
  3195. //
  3196. #define STATUS_DOMAIN_LIMIT_EXCEEDED ((NTSTATUS)0xC00000E1L)
  3197. //
  3198. // MessageId: STATUS_OPLOCK_NOT_GRANTED
  3199. //
  3200. // MessageText:
  3201. //
  3202. // Error status returned when oplock request is denied.
  3203. //
  3204. #define STATUS_OPLOCK_NOT_GRANTED ((NTSTATUS)0xC00000E2L)
  3205. //
  3206. // MessageId: STATUS_INVALID_OPLOCK_PROTOCOL
  3207. //
  3208. // MessageText:
  3209. //
  3210. // Error status returned when an invalid oplock acknowledgment is received by a file system.
  3211. //
  3212. #define STATUS_INVALID_OPLOCK_PROTOCOL ((NTSTATUS)0xC00000E3L)
  3213. //
  3214. // MessageId: STATUS_INTERNAL_DB_CORRUPTION
  3215. //
  3216. // MessageText:
  3217. //
  3218. // This error indicates that the requested operation cannot be completed due to a catastrophic media failure or on-disk data structure corruption.
  3219. //
  3220. #define STATUS_INTERNAL_DB_CORRUPTION ((NTSTATUS)0xC00000E4L)
  3221. //
  3222. // MessageId: STATUS_INTERNAL_ERROR
  3223. //
  3224. // MessageText:
  3225. //
  3226. // An internal error occurred.
  3227. //
  3228. #define STATUS_INTERNAL_ERROR ((NTSTATUS)0xC00000E5L)
  3229. //
  3230. // MessageId: STATUS_GENERIC_NOT_MAPPED
  3231. //
  3232. // MessageText:
  3233. //
  3234. // Indicates generic access types were contained in an access mask which should already be mapped to non-generic access types.
  3235. //
  3236. #define STATUS_GENERIC_NOT_MAPPED ((NTSTATUS)0xC00000E6L)
  3237. //
  3238. // MessageId: STATUS_BAD_DESCRIPTOR_FORMAT
  3239. //
  3240. // MessageText:
  3241. //
  3242. // Indicates a security descriptor is not in the necessary format (absolute or self-relative).
  3243. //
  3244. #define STATUS_BAD_DESCRIPTOR_FORMAT ((NTSTATUS)0xC00000E7L)
  3245. //
  3246. // Status codes raised by the Cache Manager which must be considered as
  3247. // "expected" by its callers.
  3248. //
  3249. //
  3250. // MessageId: STATUS_INVALID_USER_BUFFER
  3251. //
  3252. // MessageText:
  3253. //
  3254. // An access to a user buffer failed at an "expected" point in time.
  3255. // This code is defined since the caller does not want to accept STATUS_ACCESS_VIOLATION in its filter.
  3256. //
  3257. #define STATUS_INVALID_USER_BUFFER ((NTSTATUS)0xC00000E8L)
  3258. //
  3259. // MessageId: STATUS_UNEXPECTED_IO_ERROR
  3260. //
  3261. // MessageText:
  3262. //
  3263. // If an I/O error is returned which is not defined in the standard FsRtl filter, it is converted to the following error which is guaranteed to be in the filter.
  3264. // In this case information is lost, however, the filter correctly handles the exception.
  3265. //
  3266. #define STATUS_UNEXPECTED_IO_ERROR ((NTSTATUS)0xC00000E9L)
  3267. //
  3268. // MessageId: STATUS_UNEXPECTED_MM_CREATE_ERR
  3269. //
  3270. // MessageText:
  3271. //
  3272. // If an MM error is returned which is not defined in the standard FsRtl filter, it is converted to one of the following errors which is guaranteed to be in the filter.
  3273. // In this case information is lost, however, the filter correctly handles the exception.
  3274. //
  3275. #define STATUS_UNEXPECTED_MM_CREATE_ERR ((NTSTATUS)0xC00000EAL)
  3276. //
  3277. // MessageId: STATUS_UNEXPECTED_MM_MAP_ERROR
  3278. //
  3279. // MessageText:
  3280. //
  3281. // If an MM error is returned which is not defined in the standard FsRtl filter, it is converted to one of the following errors which is guaranteed to be in the filter.
  3282. // In this case information is lost, however, the filter correctly handles the exception.
  3283. //
  3284. #define STATUS_UNEXPECTED_MM_MAP_ERROR ((NTSTATUS)0xC00000EBL)
  3285. //
  3286. // MessageId: STATUS_UNEXPECTED_MM_EXTEND_ERR
  3287. //
  3288. // MessageText:
  3289. //
  3290. // If an MM error is returned which is not defined in the standard FsRtl filter, it is converted to one of the following errors which is guaranteed to be in the filter.
  3291. // In this case information is lost, however, the filter correctly handles the exception.
  3292. //
  3293. #define STATUS_UNEXPECTED_MM_EXTEND_ERR ((NTSTATUS)0xC00000ECL)
  3294. //
  3295. // MessageId: STATUS_NOT_LOGON_PROCESS
  3296. //
  3297. // MessageText:
  3298. //
  3299. // The requested action is restricted for use by logon processes only. The calling process has not registered as a logon process.
  3300. //
  3301. #define STATUS_NOT_LOGON_PROCESS ((NTSTATUS)0xC00000EDL)
  3302. //
  3303. // MessageId: STATUS_LOGON_SESSION_EXISTS
  3304. //
  3305. // MessageText:
  3306. //
  3307. // An attempt has been made to start a new session manager or LSA logon session with an ID that is already in use.
  3308. //
  3309. #define STATUS_LOGON_SESSION_EXISTS ((NTSTATUS)0xC00000EEL)
  3310. //
  3311. // MessageId: STATUS_INVALID_PARAMETER_1
  3312. //
  3313. // MessageText:
  3314. //
  3315. // An invalid parameter was passed to a service or function as the first argument.
  3316. //
  3317. #define STATUS_INVALID_PARAMETER_1 ((NTSTATUS)0xC00000EFL)
  3318. //
  3319. // MessageId: STATUS_INVALID_PARAMETER_2
  3320. //
  3321. // MessageText:
  3322. //
  3323. // An invalid parameter was passed to a service or function as the second argument.
  3324. //
  3325. #define STATUS_INVALID_PARAMETER_2 ((NTSTATUS)0xC00000F0L)
  3326. //
  3327. // MessageId: STATUS_INVALID_PARAMETER_3
  3328. //
  3329. // MessageText:
  3330. //
  3331. // An invalid parameter was passed to a service or function as the third argument.
  3332. //
  3333. #define STATUS_INVALID_PARAMETER_3 ((NTSTATUS)0xC00000F1L)
  3334. //
  3335. // MessageId: STATUS_INVALID_PARAMETER_4
  3336. //
  3337. // MessageText:
  3338. //
  3339. // An invalid parameter was passed to a service or function as the fourth argument.
  3340. //
  3341. #define STATUS_INVALID_PARAMETER_4 ((NTSTATUS)0xC00000F2L)
  3342. //
  3343. // MessageId: STATUS_INVALID_PARAMETER_5
  3344. //
  3345. // MessageText:
  3346. //
  3347. // An invalid parameter was passed to a service or function as the fifth argument.
  3348. //
  3349. #define STATUS_INVALID_PARAMETER_5 ((NTSTATUS)0xC00000F3L)
  3350. //
  3351. // MessageId: STATUS_INVALID_PARAMETER_6
  3352. //
  3353. // MessageText:
  3354. //
  3355. // An invalid parameter was passed to a service or function as the sixth argument.
  3356. //
  3357. #define STATUS_INVALID_PARAMETER_6 ((NTSTATUS)0xC00000F4L)
  3358. //
  3359. // MessageId: STATUS_INVALID_PARAMETER_7
  3360. //
  3361. // MessageText:
  3362. //
  3363. // An invalid parameter was passed to a service or function as the seventh argument.
  3364. //
  3365. #define STATUS_INVALID_PARAMETER_7 ((NTSTATUS)0xC00000F5L)
  3366. //
  3367. // MessageId: STATUS_INVALID_PARAMETER_8
  3368. //
  3369. // MessageText:
  3370. //
  3371. // An invalid parameter was passed to a service or function as the eighth argument.
  3372. //
  3373. #define STATUS_INVALID_PARAMETER_8 ((NTSTATUS)0xC00000F6L)
  3374. //
  3375. // MessageId: STATUS_INVALID_PARAMETER_9
  3376. //
  3377. // MessageText:
  3378. //
  3379. // An invalid parameter was passed to a service or function as the ninth argument.
  3380. //
  3381. #define STATUS_INVALID_PARAMETER_9 ((NTSTATUS)0xC00000F7L)
  3382. //
  3383. // MessageId: STATUS_INVALID_PARAMETER_10
  3384. //
  3385. // MessageText:
  3386. //
  3387. // An invalid parameter was passed to a service or function as the tenth argument.
  3388. //
  3389. #define STATUS_INVALID_PARAMETER_10 ((NTSTATUS)0xC00000F8L)
  3390. //
  3391. // MessageId: STATUS_INVALID_PARAMETER_11
  3392. //
  3393. // MessageText:
  3394. //
  3395. // An invalid parameter was passed to a service or function as the eleventh argument.
  3396. //
  3397. #define STATUS_INVALID_PARAMETER_11 ((NTSTATUS)0xC00000F9L)
  3398. //
  3399. // MessageId: STATUS_INVALID_PARAMETER_12
  3400. //
  3401. // MessageText:
  3402. //
  3403. // An invalid parameter was passed to a service or function as the twelfth argument.
  3404. //
  3405. #define STATUS_INVALID_PARAMETER_12 ((NTSTATUS)0xC00000FAL)
  3406. //
  3407. // MessageId: STATUS_REDIRECTOR_NOT_STARTED
  3408. //
  3409. // MessageText:
  3410. //
  3411. // An attempt was made to access a network file, but the network software was not yet started.
  3412. //
  3413. #define STATUS_REDIRECTOR_NOT_STARTED ((NTSTATUS)0xC00000FBL)
  3414. //
  3415. // MessageId: STATUS_REDIRECTOR_STARTED
  3416. //
  3417. // MessageText:
  3418. //
  3419. // An attempt was made to start the redirector, but the redirector has already been started.
  3420. //
  3421. #define STATUS_REDIRECTOR_STARTED ((NTSTATUS)0xC00000FCL)
  3422. //
  3423. // MessageId: STATUS_STACK_OVERFLOW
  3424. //
  3425. // MessageText:
  3426. //
  3427. // A new guard page for the stack cannot be created.
  3428. //
  3429. #define STATUS_STACK_OVERFLOW ((NTSTATUS)0xC00000FDL) // winnt
  3430. //
  3431. // MessageId: STATUS_NO_SUCH_PACKAGE
  3432. //
  3433. // MessageText:
  3434. //
  3435. // A specified authentication package is unknown.
  3436. //
  3437. #define STATUS_NO_SUCH_PACKAGE ((NTSTATUS)0xC00000FEL)
  3438. //
  3439. // MessageId: STATUS_BAD_FUNCTION_TABLE
  3440. //
  3441. // MessageText:
  3442. //
  3443. // A malformed function table was encountered during an unwind operation.
  3444. //
  3445. #define STATUS_BAD_FUNCTION_TABLE ((NTSTATUS)0xC00000FFL)
  3446. //
  3447. // MessageId: STATUS_VARIABLE_NOT_FOUND
  3448. //
  3449. // MessageText:
  3450. //
  3451. // Indicates the specified environment variable name was not found in the specified environment block.
  3452. //
  3453. #define STATUS_VARIABLE_NOT_FOUND ((NTSTATUS)0xC0000100L)
  3454. //
  3455. // MessageId: STATUS_DIRECTORY_NOT_EMPTY
  3456. //
  3457. // MessageText:
  3458. //
  3459. // Indicates that the directory trying to be deleted is not empty.
  3460. //
  3461. #define STATUS_DIRECTORY_NOT_EMPTY ((NTSTATUS)0xC0000101L)
  3462. //
  3463. // MessageId: STATUS_FILE_CORRUPT_ERROR
  3464. //
  3465. // MessageText:
  3466. //
  3467. // {Corrupt File}
  3468. // The file or directory %hs is corrupt and unreadable.
  3469. // Please run the Chkdsk utility.
  3470. //
  3471. #define STATUS_FILE_CORRUPT_ERROR ((NTSTATUS)0xC0000102L)
  3472. //
  3473. // MessageId: STATUS_NOT_A_DIRECTORY
  3474. //
  3475. // MessageText:
  3476. //
  3477. // A requested opened file is not a directory.
  3478. //
  3479. #define STATUS_NOT_A_DIRECTORY ((NTSTATUS)0xC0000103L)
  3480. //
  3481. // MessageId: STATUS_BAD_LOGON_SESSION_STATE
  3482. //
  3483. // MessageText:
  3484. //
  3485. // The logon session is not in a state that is consistent with the requested operation.
  3486. //
  3487. #define STATUS_BAD_LOGON_SESSION_STATE ((NTSTATUS)0xC0000104L)
  3488. //
  3489. // MessageId: STATUS_LOGON_SESSION_COLLISION
  3490. //
  3491. // MessageText:
  3492. //
  3493. // An internal LSA error has occurred. An authentication package has requested the creation of a Logon Session but the ID of an already existing Logon Session has been specified.
  3494. //
  3495. #define STATUS_LOGON_SESSION_COLLISION ((NTSTATUS)0xC0000105L)
  3496. //
  3497. // MessageId: STATUS_NAME_TOO_LONG
  3498. //
  3499. // MessageText:
  3500. //
  3501. // A specified name string is too long for its intended use.
  3502. //
  3503. #define STATUS_NAME_TOO_LONG ((NTSTATUS)0xC0000106L)
  3504. //
  3505. // MessageId: STATUS_FILES_OPEN
  3506. //
  3507. // MessageText:
  3508. //
  3509. // The user attempted to force close the files on a redirected drive, but there were opened files on the drive, and the user did not specify a sufficient level of force.
  3510. //
  3511. #define STATUS_FILES_OPEN ((NTSTATUS)0xC0000107L)
  3512. //
  3513. // MessageId: STATUS_CONNECTION_IN_USE
  3514. //
  3515. // MessageText:
  3516. //
  3517. // The user attempted to force close the files on a redirected drive, but there were opened directories on the drive, and the user did not specify a sufficient level of force.
  3518. //
  3519. #define STATUS_CONNECTION_IN_USE ((NTSTATUS)0xC0000108L)
  3520. //
  3521. // MessageId: STATUS_MESSAGE_NOT_FOUND
  3522. //
  3523. // MessageText:
  3524. //
  3525. // RtlFindMessage could not locate the requested message ID in the message table resource.
  3526. //
  3527. #define STATUS_MESSAGE_NOT_FOUND ((NTSTATUS)0xC0000109L)
  3528. //
  3529. // MessageId: STATUS_PROCESS_IS_TERMINATING
  3530. //
  3531. // MessageText:
  3532. //
  3533. // An attempt was made to duplicate an object handle into or out of an exiting process.
  3534. //
  3535. #define STATUS_PROCESS_IS_TERMINATING ((NTSTATUS)0xC000010AL)
  3536. //
  3537. // MessageId: STATUS_INVALID_LOGON_TYPE
  3538. //
  3539. // MessageText:
  3540. //
  3541. // Indicates an invalid value has been provided for the LogonType requested.
  3542. //
  3543. #define STATUS_INVALID_LOGON_TYPE ((NTSTATUS)0xC000010BL)
  3544. //
  3545. // MessageId: STATUS_NO_GUID_TRANSLATION
  3546. //
  3547. // MessageText:
  3548. //
  3549. // 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.
  3550. // This causes the protection attempt to fail, which may cause a file creation attempt to fail.
  3551. //
  3552. #define STATUS_NO_GUID_TRANSLATION ((NTSTATUS)0xC000010CL)
  3553. //
  3554. // MessageId: STATUS_CANNOT_IMPERSONATE
  3555. //
  3556. // MessageText:
  3557. //
  3558. // Indicates that an attempt has been made to impersonate via a named pipe that has not yet been read from.
  3559. //
  3560. #define STATUS_CANNOT_IMPERSONATE ((NTSTATUS)0xC000010DL)
  3561. //
  3562. // MessageId: STATUS_IMAGE_ALREADY_LOADED
  3563. //
  3564. // MessageText:
  3565. //
  3566. // Indicates that the specified image is already loaded.
  3567. //
  3568. #define STATUS_IMAGE_ALREADY_LOADED ((NTSTATUS)0xC000010EL)
  3569. //
  3570. // ============================================================
  3571. // NOTE: The following ABIOS error code should be reserved on
  3572. // non ABIOS kernel. Eventually, I will remove the ifdef
  3573. // ABIOS.
  3574. // ============================================================
  3575. //
  3576. //
  3577. // MessageId: STATUS_ABIOS_NOT_PRESENT
  3578. //
  3579. // MessageText:
  3580. //
  3581. // STATUS_ABIOS_NOT_PRESENT
  3582. //
  3583. #define STATUS_ABIOS_NOT_PRESENT ((NTSTATUS)0xC000010FL)
  3584. //
  3585. // MessageId: STATUS_ABIOS_LID_NOT_EXIST
  3586. //
  3587. // MessageText:
  3588. //
  3589. // STATUS_ABIOS_LID_NOT_EXIST
  3590. //
  3591. #define STATUS_ABIOS_LID_NOT_EXIST ((NTSTATUS)0xC0000110L)
  3592. //
  3593. // MessageId: STATUS_ABIOS_LID_ALREADY_OWNED
  3594. //
  3595. // MessageText:
  3596. //
  3597. // STATUS_ABIOS_LID_ALREADY_OWNED
  3598. //
  3599. #define STATUS_ABIOS_LID_ALREADY_OWNED ((NTSTATUS)0xC0000111L)
  3600. //
  3601. // MessageId: STATUS_ABIOS_NOT_LID_OWNER
  3602. //
  3603. // MessageText:
  3604. //
  3605. // STATUS_ABIOS_NOT_LID_OWNER
  3606. //
  3607. #define STATUS_ABIOS_NOT_LID_OWNER ((NTSTATUS)0xC0000112L)
  3608. //
  3609. // MessageId: STATUS_ABIOS_INVALID_COMMAND
  3610. //
  3611. // MessageText:
  3612. //
  3613. // STATUS_ABIOS_INVALID_COMMAND
  3614. //
  3615. #define STATUS_ABIOS_INVALID_COMMAND ((NTSTATUS)0xC0000113L)
  3616. //
  3617. // MessageId: STATUS_ABIOS_INVALID_LID
  3618. //
  3619. // MessageText:
  3620. //
  3621. // STATUS_ABIOS_INVALID_LID
  3622. //
  3623. #define STATUS_ABIOS_INVALID_LID ((NTSTATUS)0xC0000114L)
  3624. //
  3625. // MessageId: STATUS_ABIOS_SELECTOR_NOT_AVAILABLE
  3626. //
  3627. // MessageText:
  3628. //
  3629. // STATUS_ABIOS_SELECTOR_NOT_AVAILABLE
  3630. //
  3631. #define STATUS_ABIOS_SELECTOR_NOT_AVAILABLE ((NTSTATUS)0xC0000115L)
  3632. //
  3633. // MessageId: STATUS_ABIOS_INVALID_SELECTOR
  3634. //
  3635. // MessageText:
  3636. //
  3637. // STATUS_ABIOS_INVALID_SELECTOR
  3638. //
  3639. #define STATUS_ABIOS_INVALID_SELECTOR ((NTSTATUS)0xC0000116L)
  3640. //
  3641. // MessageId: STATUS_NO_LDT
  3642. //
  3643. // MessageText:
  3644. //
  3645. // Indicates that an attempt was made to change the size of the LDT for a process that has no LDT.
  3646. //
  3647. #define STATUS_NO_LDT ((NTSTATUS)0xC0000117L)
  3648. //
  3649. // MessageId: STATUS_INVALID_LDT_SIZE
  3650. //
  3651. // MessageText:
  3652. //
  3653. // Indicates that an attempt was made to grow an LDT by setting its size, or that the size was not an even number of selectors.
  3654. //
  3655. #define STATUS_INVALID_LDT_SIZE ((NTSTATUS)0xC0000118L)
  3656. //
  3657. // MessageId: STATUS_INVALID_LDT_OFFSET
  3658. //
  3659. // MessageText:
  3660. //
  3661. // Indicates that the starting value for the LDT information was not an integral multiple of the selector size.
  3662. //
  3663. #define STATUS_INVALID_LDT_OFFSET ((NTSTATUS)0xC0000119L)
  3664. //
  3665. // MessageId: STATUS_INVALID_LDT_DESCRIPTOR
  3666. //
  3667. // MessageText:
  3668. //
  3669. // Indicates that the user supplied an invalid descriptor when trying to set up Ldt descriptors.
  3670. //
  3671. #define STATUS_INVALID_LDT_DESCRIPTOR ((NTSTATUS)0xC000011AL)
  3672. //
  3673. // MessageId: STATUS_INVALID_IMAGE_NE_FORMAT
  3674. //
  3675. // MessageText:
  3676. //
  3677. // The specified image file did not have the correct format. It appears to be NE format.
  3678. //
  3679. #define STATUS_INVALID_IMAGE_NE_FORMAT ((NTSTATUS)0xC000011BL)
  3680. //
  3681. // MessageId: STATUS_RXACT_INVALID_STATE
  3682. //
  3683. // MessageText:
  3684. //
  3685. // Indicates that the transaction state of a registry sub-tree is incompatible with the requested operation.
  3686. // For example, a request has been made to start a new transaction with one already in progress,
  3687. // or a request has been made to apply a transaction when one is not currently in progress.
  3688. //
  3689. #define STATUS_RXACT_INVALID_STATE ((NTSTATUS)0xC000011CL)
  3690. //
  3691. // MessageId: STATUS_RXACT_COMMIT_FAILURE
  3692. //
  3693. // MessageText:
  3694. //
  3695. // Indicates an error has occurred during a registry transaction commit.
  3696. // The database has been left in an unknown, but probably inconsistent, state.
  3697. // The state of the registry transaction is left as COMMITTING.
  3698. //
  3699. #define STATUS_RXACT_COMMIT_FAILURE ((NTSTATUS)0xC000011DL)
  3700. //
  3701. // MessageId: STATUS_MAPPED_FILE_SIZE_ZERO
  3702. //
  3703. // MessageText:
  3704. //
  3705. // An attempt was made to map a file of size zero with the maximum size specified as zero.
  3706. //
  3707. #define STATUS_MAPPED_FILE_SIZE_ZERO ((NTSTATUS)0xC000011EL)
  3708. //
  3709. // MessageId: STATUS_TOO_MANY_OPENED_FILES
  3710. //
  3711. // MessageText:
  3712. //
  3713. // Too many files are opened on a remote server.
  3714. // This error should only be returned by the Windows redirector on a remote drive.
  3715. //
  3716. #define STATUS_TOO_MANY_OPENED_FILES ((NTSTATUS)0xC000011FL)
  3717. //
  3718. // MessageId: STATUS_CANCELLED
  3719. //
  3720. // MessageText:
  3721. //
  3722. // The I/O request was canceled.
  3723. //
  3724. #define STATUS_CANCELLED ((NTSTATUS)0xC0000120L)
  3725. //
  3726. // MessageId: STATUS_CANNOT_DELETE
  3727. //
  3728. // MessageText:
  3729. //
  3730. // An attempt has been made to remove a file or directory that cannot be deleted.
  3731. //
  3732. #define STATUS_CANNOT_DELETE ((NTSTATUS)0xC0000121L)
  3733. //
  3734. // MessageId: STATUS_INVALID_COMPUTER_NAME
  3735. //
  3736. // MessageText:
  3737. //
  3738. // Indicates a name specified as a remote computer name is syntactically invalid.
  3739. //
  3740. #define STATUS_INVALID_COMPUTER_NAME ((NTSTATUS)0xC0000122L)
  3741. //
  3742. // MessageId: STATUS_FILE_DELETED
  3743. //
  3744. // MessageText:
  3745. //
  3746. // An I/O request other than close was performed on a file after it has been deleted,
  3747. // which can only happen to a request which did not complete before the last handle was closed via NtClose.
  3748. //
  3749. #define STATUS_FILE_DELETED ((NTSTATUS)0xC0000123L)
  3750. //
  3751. // MessageId: STATUS_SPECIAL_ACCOUNT
  3752. //
  3753. // MessageText:
  3754. //
  3755. // Indicates an operation has been attempted on a built-in (special) SAM account which is incompatible with built-in accounts.
  3756. // For example, built-in accounts cannot be deleted.
  3757. //
  3758. #define STATUS_SPECIAL_ACCOUNT ((NTSTATUS)0xC0000124L)
  3759. //
  3760. // MessageId: STATUS_SPECIAL_GROUP
  3761. //
  3762. // MessageText:
  3763. //
  3764. // The operation requested may not be performed on the specified group because it is a built-in special group.
  3765. //
  3766. #define STATUS_SPECIAL_GROUP ((NTSTATUS)0xC0000125L)
  3767. //
  3768. // MessageId: STATUS_SPECIAL_USER
  3769. //
  3770. // MessageText:
  3771. //
  3772. // The operation requested may not be performed on the specified user because it is a built-in special user.
  3773. //
  3774. #define STATUS_SPECIAL_USER ((NTSTATUS)0xC0000126L)
  3775. //
  3776. // MessageId: STATUS_MEMBERS_PRIMARY_GROUP
  3777. //
  3778. // MessageText:
  3779. //
  3780. // Indicates a member cannot be removed from a group because the group is currently the member's primary group.
  3781. //
  3782. #define STATUS_MEMBERS_PRIMARY_GROUP ((NTSTATUS)0xC0000127L)
  3783. //
  3784. // MessageId: STATUS_FILE_CLOSED
  3785. //
  3786. // MessageText:
  3787. //
  3788. // An I/O request other than close and several other special case operations was attempted using a file object that had already been closed.
  3789. //
  3790. #define STATUS_FILE_CLOSED ((NTSTATUS)0xC0000128L)
  3791. //
  3792. // MessageId: STATUS_TOO_MANY_THREADS
  3793. //
  3794. // MessageText:
  3795. //
  3796. // Indicates a process has too many threads to perform the requested action. For example, assignment of a primary token may only be performed when a process has zero or one threads.
  3797. //
  3798. #define STATUS_TOO_MANY_THREADS ((NTSTATUS)0xC0000129L)
  3799. //
  3800. // MessageId: STATUS_THREAD_NOT_IN_PROCESS
  3801. //
  3802. // MessageText:
  3803. //
  3804. // An attempt was made to operate on a thread within a specific process, but the thread specified is not in the process specified.
  3805. //
  3806. #define STATUS_THREAD_NOT_IN_PROCESS ((NTSTATUS)0xC000012AL)
  3807. //
  3808. // MessageId: STATUS_TOKEN_ALREADY_IN_USE
  3809. //
  3810. // MessageText:
  3811. //
  3812. // An attempt was made to establish a token for use as a primary token but the token is already in use. A token can only be the primary token of one process at a time.
  3813. //
  3814. #define STATUS_TOKEN_ALREADY_IN_USE ((NTSTATUS)0xC000012BL)
  3815. //
  3816. // MessageId: STATUS_PAGEFILE_QUOTA_EXCEEDED
  3817. //
  3818. // MessageText:
  3819. //
  3820. // Page file quota was exceeded.
  3821. //
  3822. #define STATUS_PAGEFILE_QUOTA_EXCEEDED ((NTSTATUS)0xC000012CL)
  3823. //
  3824. // MessageId: STATUS_COMMITMENT_LIMIT
  3825. //
  3826. // MessageText:
  3827. //
  3828. // {Out of Virtual Memory}
  3829. // Your system is low on virtual memory. To ensure that Windows runs properly, increase the size of your virtual memory paging file. For more information, see Help.
  3830. //
  3831. #define STATUS_COMMITMENT_LIMIT ((NTSTATUS)0xC000012DL)
  3832. //
  3833. // MessageId: STATUS_INVALID_IMAGE_LE_FORMAT
  3834. //
  3835. // MessageText:
  3836. //
  3837. // The specified image file did not have the correct format, it appears to be LE format.
  3838. //
  3839. #define STATUS_INVALID_IMAGE_LE_FORMAT ((NTSTATUS)0xC000012EL)
  3840. //
  3841. // MessageId: STATUS_INVALID_IMAGE_NOT_MZ
  3842. //
  3843. // MessageText:
  3844. //
  3845. // The specified image file did not have the correct format, it did not have an initial MZ.
  3846. //
  3847. #define STATUS_INVALID_IMAGE_NOT_MZ ((NTSTATUS)0xC000012FL)
  3848. //
  3849. // MessageId: STATUS_INVALID_IMAGE_PROTECT
  3850. //
  3851. // MessageText:
  3852. //
  3853. // The specified image file did not have the correct format, it did not have a proper e_lfarlc in the MZ header.
  3854. //
  3855. #define STATUS_INVALID_IMAGE_PROTECT ((NTSTATUS)0xC0000130L)
  3856. //
  3857. // MessageId: STATUS_INVALID_IMAGE_WIN_16
  3858. //
  3859. // MessageText:
  3860. //
  3861. // The specified image file did not have the correct format, it appears to be a 16-bit Windows image.
  3862. //
  3863. #define STATUS_INVALID_IMAGE_WIN_16 ((NTSTATUS)0xC0000131L)
  3864. //
  3865. // MessageId: STATUS_LOGON_SERVER_CONFLICT
  3866. //
  3867. // MessageText:
  3868. //
  3869. // The Netlogon service cannot start because another Netlogon service running in the domain conflicts with the specified role.
  3870. //
  3871. #define STATUS_LOGON_SERVER_CONFLICT ((NTSTATUS)0xC0000132L)
  3872. //
  3873. // MessageId: STATUS_TIME_DIFFERENCE_AT_DC
  3874. //
  3875. // MessageText:
  3876. //
  3877. // The time at the Primary Domain Controller is different than the time at the Backup Domain Controller or member server by too large an amount.
  3878. //
  3879. #define STATUS_TIME_DIFFERENCE_AT_DC ((NTSTATUS)0xC0000133L)
  3880. //
  3881. // MessageId: STATUS_SYNCHRONIZATION_REQUIRED
  3882. //
  3883. // MessageText:
  3884. //
  3885. // The SAM database on a Windows Server is significantly out of synchronization with the copy on the Domain Controller. A complete synchronization is required.
  3886. //
  3887. #define STATUS_SYNCHRONIZATION_REQUIRED ((NTSTATUS)0xC0000134L)
  3888. //
  3889. // MessageId: STATUS_DLL_NOT_FOUND
  3890. //
  3891. // MessageText:
  3892. //
  3893. // {Unable To Locate Component}
  3894. // This application has failed to start because %hs was not found. Re-installing the application may fix this problem.
  3895. //
  3896. #define STATUS_DLL_NOT_FOUND ((NTSTATUS)0xC0000135L)
  3897. //
  3898. // MessageId: STATUS_OPEN_FAILED
  3899. //
  3900. // MessageText:
  3901. //
  3902. // 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.
  3903. //
  3904. #define STATUS_OPEN_FAILED ((NTSTATUS)0xC0000136L)
  3905. //
  3906. // MessageId: STATUS_IO_PRIVILEGE_FAILED
  3907. //
  3908. // MessageText:
  3909. //
  3910. // {Privilege Failed}
  3911. // The I/O permissions for the process could not be changed.
  3912. //
  3913. #define STATUS_IO_PRIVILEGE_FAILED ((NTSTATUS)0xC0000137L)
  3914. //
  3915. // MessageId: STATUS_ORDINAL_NOT_FOUND
  3916. //
  3917. // MessageText:
  3918. //
  3919. // {Ordinal Not Found}
  3920. // The ordinal %ld could not be located in the dynamic link library %hs.
  3921. //
  3922. #define STATUS_ORDINAL_NOT_FOUND ((NTSTATUS)0xC0000138L)
  3923. //
  3924. // MessageId: STATUS_ENTRYPOINT_NOT_FOUND
  3925. //
  3926. // MessageText:
  3927. //
  3928. // {Entry Point Not Found}
  3929. // The procedure entry point %hs could not be located in the dynamic link library %hs.
  3930. //
  3931. #define STATUS_ENTRYPOINT_NOT_FOUND ((NTSTATUS)0xC0000139L)
  3932. //
  3933. // MessageId: STATUS_CONTROL_C_EXIT
  3934. //
  3935. // MessageText:
  3936. //
  3937. // {Application Exit by CTRL+C}
  3938. // The application terminated as a result of a CTRL+C.
  3939. //
  3940. #define STATUS_CONTROL_C_EXIT ((NTSTATUS)0xC000013AL) // winnt
  3941. //
  3942. // MessageId: STATUS_LOCAL_DISCONNECT
  3943. //
  3944. // MessageText:
  3945. //
  3946. // {Virtual Circuit Closed}
  3947. // The network transport on your computer has closed a network connection. There may or may not be I/O requests outstanding.
  3948. //
  3949. #define STATUS_LOCAL_DISCONNECT ((NTSTATUS)0xC000013BL)
  3950. //
  3951. // MessageId: STATUS_REMOTE_DISCONNECT
  3952. //
  3953. // MessageText:
  3954. //
  3955. // {Virtual Circuit Closed}
  3956. // The network transport on a remote computer has closed a network connection. There may or may not be I/O requests outstanding.
  3957. //
  3958. #define STATUS_REMOTE_DISCONNECT ((NTSTATUS)0xC000013CL)
  3959. //
  3960. // MessageId: STATUS_REMOTE_RESOURCES
  3961. //
  3962. // MessageText:
  3963. //
  3964. // {Insufficient Resources on Remote Computer}
  3965. // The remote computer has insufficient resources to complete the network request. For instance, there may not be enough memory available on the remote computer to carry out the request at this time.
  3966. //
  3967. #define STATUS_REMOTE_RESOURCES ((NTSTATUS)0xC000013DL)
  3968. //
  3969. // MessageId: STATUS_LINK_FAILED
  3970. //
  3971. // MessageText:
  3972. //
  3973. // {Virtual Circuit Closed}
  3974. // An existing connection (virtual circuit) has been broken at the remote computer. There is probably something wrong with the network software protocol or the network hardware on the remote computer.
  3975. //
  3976. #define STATUS_LINK_FAILED ((NTSTATUS)0xC000013EL)
  3977. //
  3978. // MessageId: STATUS_LINK_TIMEOUT
  3979. //
  3980. // MessageText:
  3981. //
  3982. // {Virtual Circuit Closed}
  3983. // The network transport on your computer has closed a network connection because it had to wait too long for a response from the remote computer.
  3984. //
  3985. #define STATUS_LINK_TIMEOUT ((NTSTATUS)0xC000013FL)
  3986. //
  3987. // MessageId: STATUS_INVALID_CONNECTION
  3988. //
  3989. // MessageText:
  3990. //
  3991. // The connection handle given to the transport was invalid.
  3992. //
  3993. #define STATUS_INVALID_CONNECTION ((NTSTATUS)0xC0000140L)
  3994. //
  3995. // MessageId: STATUS_INVALID_ADDRESS
  3996. //
  3997. // MessageText:
  3998. //
  3999. // The address handle given to the transport was invalid.
  4000. //
  4001. #define STATUS_INVALID_ADDRESS ((NTSTATUS)0xC0000141L)
  4002. //
  4003. // MessageId: STATUS_DLL_INIT_FAILED
  4004. //
  4005. // MessageText:
  4006. //
  4007. // {DLL Initialization Failed}
  4008. // Initialization of the dynamic link library %hs failed. The process is terminating abnormally.
  4009. //
  4010. #define STATUS_DLL_INIT_FAILED ((NTSTATUS)0xC0000142L)
  4011. //
  4012. // MessageId: STATUS_MISSING_SYSTEMFILE
  4013. //
  4014. // MessageText:
  4015. //
  4016. // {Missing System File}
  4017. // The required system file %hs is bad or missing.
  4018. //
  4019. #define STATUS_MISSING_SYSTEMFILE ((NTSTATUS)0xC0000143L)
  4020. //
  4021. // MessageId: STATUS_UNHANDLED_EXCEPTION
  4022. //
  4023. // MessageText:
  4024. //
  4025. // {Application Error}
  4026. // The exception %s (0x%08lx) occurred in the application at location 0x%08lx.
  4027. //
  4028. #define STATUS_UNHANDLED_EXCEPTION ((NTSTATUS)0xC0000144L)
  4029. //
  4030. // MessageId: STATUS_APP_INIT_FAILURE
  4031. //
  4032. // MessageText:
  4033. //
  4034. // {Application Error}
  4035. // The application failed to initialize properly (0x%lx). Click on OK to terminate the application.
  4036. //
  4037. #define STATUS_APP_INIT_FAILURE ((NTSTATUS)0xC0000145L)
  4038. //
  4039. // MessageId: STATUS_PAGEFILE_CREATE_FAILED
  4040. //
  4041. // MessageText:
  4042. //
  4043. // {Unable to Create Paging File}
  4044. // The creation of the paging file %hs failed (%lx). The requested size was %ld.
  4045. //
  4046. #define STATUS_PAGEFILE_CREATE_FAILED ((NTSTATUS)0xC0000146L)
  4047. //
  4048. // MessageId: STATUS_NO_PAGEFILE
  4049. //
  4050. // MessageText:
  4051. //
  4052. // {No Paging File Specified}
  4053. // No paging file was specified in the system configuration.
  4054. //
  4055. #define STATUS_NO_PAGEFILE ((NTSTATUS)0xC0000147L)
  4056. //
  4057. // MessageId: STATUS_INVALID_LEVEL
  4058. //
  4059. // MessageText:
  4060. //
  4061. // {Incorrect System Call Level}
  4062. // An invalid level was passed into the specified system call.
  4063. //
  4064. #define STATUS_INVALID_LEVEL ((NTSTATUS)0xC0000148L)
  4065. //
  4066. // MessageId: STATUS_WRONG_PASSWORD_CORE
  4067. //
  4068. // MessageText:
  4069. //
  4070. // {Incorrect Password to LAN Manager Server}
  4071. // You specified an incorrect password to a LAN Manager 2.x or MS-NET server.
  4072. //
  4073. #define STATUS_WRONG_PASSWORD_CORE ((NTSTATUS)0xC0000149L)
  4074. //
  4075. // MessageId: STATUS_ILLEGAL_FLOAT_CONTEXT
  4076. //
  4077. // MessageText:
  4078. //
  4079. // {EXCEPTION}
  4080. // A real-mode application issued a floating-point instruction and floating-point hardware is not present.
  4081. //
  4082. #define STATUS_ILLEGAL_FLOAT_CONTEXT ((NTSTATUS)0xC000014AL)
  4083. //
  4084. // MessageId: STATUS_PIPE_BROKEN
  4085. //
  4086. // MessageText:
  4087. //
  4088. // The pipe operation has failed because the other end of the pipe has been closed.
  4089. //
  4090. #define STATUS_PIPE_BROKEN ((NTSTATUS)0xC000014BL)
  4091. //
  4092. // MessageId: STATUS_REGISTRY_CORRUPT
  4093. //
  4094. // MessageText:
  4095. //
  4096. // {The Registry Is Corrupt}
  4097. // The structure of one of the files that contains Registry data is corrupt, or the image of the file in memory is corrupt, or the file could not be recovered because the alternate copy or log was absent or corrupt.
  4098. //
  4099. #define STATUS_REGISTRY_CORRUPT ((NTSTATUS)0xC000014CL)
  4100. //
  4101. // MessageId: STATUS_REGISTRY_IO_FAILED
  4102. //
  4103. // MessageText:
  4104. //
  4105. // An I/O operation initiated by the Registry failed unrecoverably.
  4106. // The Registry could not read in, or write out, or flush, one of the files that contain the system's image of the Registry.
  4107. //
  4108. #define STATUS_REGISTRY_IO_FAILED ((NTSTATUS)0xC000014DL)
  4109. //
  4110. // MessageId: STATUS_NO_EVENT_PAIR
  4111. //
  4112. // MessageText:
  4113. //
  4114. // 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.
  4115. //
  4116. #define STATUS_NO_EVENT_PAIR ((NTSTATUS)0xC000014EL)
  4117. //
  4118. // MessageId: STATUS_UNRECOGNIZED_VOLUME
  4119. //
  4120. // MessageText:
  4121. //
  4122. // The volume does not contain a recognized file system.
  4123. // Please make sure that all required file system drivers are loaded and that the volume is not corrupt.
  4124. //
  4125. #define STATUS_UNRECOGNIZED_VOLUME ((NTSTATUS)0xC000014FL)
  4126. //
  4127. // MessageId: STATUS_SERIAL_NO_DEVICE_INITED
  4128. //
  4129. // MessageText:
  4130. //
  4131. // No serial device was successfully initialized. The serial driver will unload.
  4132. //
  4133. #define STATUS_SERIAL_NO_DEVICE_INITED ((NTSTATUS)0xC0000150L)
  4134. //
  4135. // MessageId: STATUS_NO_SUCH_ALIAS
  4136. //
  4137. // MessageText:
  4138. //
  4139. // The specified local group does not exist.
  4140. //
  4141. #define STATUS_NO_SUCH_ALIAS ((NTSTATUS)0xC0000151L)
  4142. //
  4143. // MessageId: STATUS_MEMBER_NOT_IN_ALIAS
  4144. //
  4145. // MessageText:
  4146. //
  4147. // The specified account name is not a member of the local group.
  4148. //
  4149. #define STATUS_MEMBER_NOT_IN_ALIAS ((NTSTATUS)0xC0000152L)
  4150. //
  4151. // MessageId: STATUS_MEMBER_IN_ALIAS
  4152. //
  4153. // MessageText:
  4154. //
  4155. // The specified account name is already a member of the local group.
  4156. //
  4157. #define STATUS_MEMBER_IN_ALIAS ((NTSTATUS)0xC0000153L)
  4158. //
  4159. // MessageId: STATUS_ALIAS_EXISTS
  4160. //
  4161. // MessageText:
  4162. //
  4163. // The specified local group already exists.
  4164. //
  4165. #define STATUS_ALIAS_EXISTS ((NTSTATUS)0xC0000154L)
  4166. //
  4167. // MessageId: STATUS_LOGON_NOT_GRANTED
  4168. //
  4169. // MessageText:
  4170. //
  4171. // A requested type of logon (e.g., Interactive, Network, Service) is not granted by the target system's local security policy.
  4172. // Please ask the system administrator to grant the necessary form of logon.
  4173. //
  4174. #define STATUS_LOGON_NOT_GRANTED ((NTSTATUS)0xC0000155L)
  4175. //
  4176. // MessageId: STATUS_TOO_MANY_SECRETS
  4177. //
  4178. // MessageText:
  4179. //
  4180. // The maximum number of secrets that may be stored in a single system has been exceeded. The length and number of secrets is limited to satisfy United States State Department export restrictions.
  4181. //
  4182. #define STATUS_TOO_MANY_SECRETS ((NTSTATUS)0xC0000156L)
  4183. //
  4184. // MessageId: STATUS_SECRET_TOO_LONG
  4185. //
  4186. // MessageText:
  4187. //
  4188. // The length of a secret exceeds the maximum length allowed. The length and number of secrets is limited to satisfy United States State Department export restrictions.
  4189. //
  4190. #define STATUS_SECRET_TOO_LONG ((NTSTATUS)0xC0000157L)
  4191. //
  4192. // MessageId: STATUS_INTERNAL_DB_ERROR
  4193. //
  4194. // MessageText:
  4195. //
  4196. // The Local Security Authority (LSA) database contains an internal inconsistency.
  4197. //
  4198. #define STATUS_INTERNAL_DB_ERROR ((NTSTATUS)0xC0000158L)
  4199. //
  4200. // MessageId: STATUS_FULLSCREEN_MODE
  4201. //
  4202. // MessageText:
  4203. //
  4204. // The requested operation cannot be performed in fullscreen mode.
  4205. //
  4206. #define STATUS_FULLSCREEN_MODE ((NTSTATUS)0xC0000159L)
  4207. //
  4208. // MessageId: STATUS_TOO_MANY_CONTEXT_IDS
  4209. //
  4210. // MessageText:
  4211. //
  4212. // During a logon attempt, the user's security context accumulated too many security IDs. This is a very unusual situation.
  4213. // Remove the user from some global or local groups to reduce the number of security ids to incorporate into the security context.
  4214. //
  4215. #define STATUS_TOO_MANY_CONTEXT_IDS ((NTSTATUS)0xC000015AL)
  4216. //
  4217. // MessageId: STATUS_LOGON_TYPE_NOT_GRANTED
  4218. //
  4219. // MessageText:
  4220. //
  4221. // A user has requested a type of logon (e.g., interactive or network) that has not been granted. An administrator has control over who may logon interactively and through the network.
  4222. //
  4223. #define STATUS_LOGON_TYPE_NOT_GRANTED ((NTSTATUS)0xC000015BL)
  4224. //
  4225. // MessageId: STATUS_NOT_REGISTRY_FILE
  4226. //
  4227. // MessageText:
  4228. //
  4229. // The system has attempted to load or restore a file into the registry, and the specified file is not in the format of a registry file.
  4230. //
  4231. #define STATUS_NOT_REGISTRY_FILE ((NTSTATUS)0xC000015CL)
  4232. //
  4233. // MessageId: STATUS_NT_CROSS_ENCRYPTION_REQUIRED
  4234. //
  4235. // MessageText:
  4236. //
  4237. // An attempt was made to change a user password in the security account manager without providing the necessary Windows cross-encrypted password.
  4238. //
  4239. #define STATUS_NT_CROSS_ENCRYPTION_REQUIRED ((NTSTATUS)0xC000015DL)
  4240. //
  4241. // MessageId: STATUS_DOMAIN_CTRLR_CONFIG_ERROR
  4242. //
  4243. // MessageText:
  4244. //
  4245. // A Windows Server has an incorrect configuration.
  4246. //
  4247. #define STATUS_DOMAIN_CTRLR_CONFIG_ERROR ((NTSTATUS)0xC000015EL)
  4248. //
  4249. // MessageId: STATUS_FT_MISSING_MEMBER
  4250. //
  4251. // MessageText:
  4252. //
  4253. // An attempt was made to explicitly access the secondary copy of information via a device control to the Fault Tolerance driver and the secondary copy is not present in the system.
  4254. //
  4255. #define STATUS_FT_MISSING_MEMBER ((NTSTATUS)0xC000015FL)
  4256. //
  4257. // MessageId: STATUS_ILL_FORMED_SERVICE_ENTRY
  4258. //
  4259. // MessageText:
  4260. //
  4261. // A configuration registry node representing a driver service entry was ill-formed and did not contain required value entries.
  4262. //
  4263. #define STATUS_ILL_FORMED_SERVICE_ENTRY ((NTSTATUS)0xC0000160L)
  4264. //
  4265. // MessageId: STATUS_ILLEGAL_CHARACTER
  4266. //
  4267. // MessageText:
  4268. //
  4269. // An illegal character was encountered. For a multi-byte character set this includes a lead byte without a succeeding trail byte. For the Unicode character set this includes the characters 0xFFFF and 0xFFFE.
  4270. //
  4271. #define STATUS_ILLEGAL_CHARACTER ((NTSTATUS)0xC0000161L)
  4272. //
  4273. // MessageId: STATUS_UNMAPPABLE_CHARACTER
  4274. //
  4275. // MessageText:
  4276. //
  4277. // No mapping for the Unicode character exists in the target multi-byte code page.
  4278. //
  4279. #define STATUS_UNMAPPABLE_CHARACTER ((NTSTATUS)0xC0000162L)
  4280. //
  4281. // MessageId: STATUS_UNDEFINED_CHARACTER
  4282. //
  4283. // MessageText:
  4284. //
  4285. // The Unicode character is not defined in the Unicode character set installed on the system.
  4286. //
  4287. #define STATUS_UNDEFINED_CHARACTER ((NTSTATUS)0xC0000163L)
  4288. //
  4289. // MessageId: STATUS_FLOPPY_VOLUME
  4290. //
  4291. // MessageText:
  4292. //
  4293. // The paging file cannot be created on a floppy diskette.
  4294. //
  4295. #define STATUS_FLOPPY_VOLUME ((NTSTATUS)0xC0000164L)
  4296. //
  4297. // MessageId: STATUS_FLOPPY_ID_MARK_NOT_FOUND
  4298. //
  4299. // MessageText:
  4300. //
  4301. // {Floppy Disk Error}
  4302. // While accessing a floppy disk, an ID address mark was not found.
  4303. //
  4304. #define STATUS_FLOPPY_ID_MARK_NOT_FOUND ((NTSTATUS)0xC0000165L)
  4305. //
  4306. // MessageId: STATUS_FLOPPY_WRONG_CYLINDER
  4307. //
  4308. // MessageText:
  4309. //
  4310. // {Floppy Disk Error}
  4311. // While accessing a floppy disk, the track address from the sector ID field was found to be different than the track address maintained by the controller.
  4312. //
  4313. #define STATUS_FLOPPY_WRONG_CYLINDER ((NTSTATUS)0xC0000166L)
  4314. //
  4315. // MessageId: STATUS_FLOPPY_UNKNOWN_ERROR
  4316. //
  4317. // MessageText:
  4318. //
  4319. // {Floppy Disk Error}
  4320. // The floppy disk controller reported an error that is not recognized by the floppy disk driver.
  4321. //
  4322. #define STATUS_FLOPPY_UNKNOWN_ERROR ((NTSTATUS)0xC0000167L)
  4323. //
  4324. // MessageId: STATUS_FLOPPY_BAD_REGISTERS
  4325. //
  4326. // MessageText:
  4327. //
  4328. // {Floppy Disk Error}
  4329. // While accessing a floppy-disk, the controller returned inconsistent results via its registers.
  4330. //
  4331. #define STATUS_FLOPPY_BAD_REGISTERS ((NTSTATUS)0xC0000168L)
  4332. //
  4333. // MessageId: STATUS_DISK_RECALIBRATE_FAILED
  4334. //
  4335. // MessageText:
  4336. //
  4337. // {Hard Disk Error}
  4338. // While accessing the hard disk, a recalibrate operation failed, even after retries.
  4339. //
  4340. #define STATUS_DISK_RECALIBRATE_FAILED ((NTSTATUS)0xC0000169L)
  4341. //
  4342. // MessageId: STATUS_DISK_OPERATION_FAILED
  4343. //
  4344. // MessageText:
  4345. //
  4346. // {Hard Disk Error}
  4347. // While accessing the hard disk, a disk operation failed even after retries.
  4348. //
  4349. #define STATUS_DISK_OPERATION_FAILED ((NTSTATUS)0xC000016AL)
  4350. //
  4351. // MessageId: STATUS_DISK_RESET_FAILED
  4352. //
  4353. // MessageText:
  4354. //
  4355. // {Hard Disk Error}
  4356. // While accessing the hard disk, a disk controller reset was needed, but even that failed.
  4357. //
  4358. #define STATUS_DISK_RESET_FAILED ((NTSTATUS)0xC000016BL)
  4359. //
  4360. // MessageId: STATUS_SHARED_IRQ_BUSY
  4361. //
  4362. // MessageText:
  4363. //
  4364. // An attempt was made to open a device that was sharing an IRQ with other devices.
  4365. // At least one other device that uses that IRQ was already opened.
  4366. // Two concurrent opens of devices that share an IRQ and only work via interrupts is not supported for the particular bus type that the devices use.
  4367. //
  4368. #define STATUS_SHARED_IRQ_BUSY ((NTSTATUS)0xC000016CL)
  4369. //
  4370. // MessageId: STATUS_FT_ORPHANING
  4371. //
  4372. // MessageText:
  4373. //
  4374. // {FT Orphaning}
  4375. // A disk that is part of a fault-tolerant volume can no longer be accessed.
  4376. //
  4377. #define STATUS_FT_ORPHANING ((NTSTATUS)0xC000016DL)
  4378. //
  4379. // MessageId: STATUS_BIOS_FAILED_TO_CONNECT_INTERRUPT
  4380. //
  4381. // MessageText:
  4382. //
  4383. // The system bios failed to connect a system interrupt to the device or bus for
  4384. // which the device is connected.
  4385. //
  4386. #define STATUS_BIOS_FAILED_TO_CONNECT_INTERRUPT ((NTSTATUS)0xC000016EL)
  4387. //
  4388. // MessageId: STATUS_PARTITION_FAILURE
  4389. //
  4390. // MessageText:
  4391. //
  4392. // Tape could not be partitioned.
  4393. //
  4394. #define STATUS_PARTITION_FAILURE ((NTSTATUS)0xC0000172L)
  4395. //
  4396. // MessageId: STATUS_INVALID_BLOCK_LENGTH
  4397. //
  4398. // MessageText:
  4399. //
  4400. // When accessing a new tape of a multivolume partition, the current blocksize is incorrect.
  4401. //
  4402. #define STATUS_INVALID_BLOCK_LENGTH ((NTSTATUS)0xC0000173L)
  4403. //
  4404. // MessageId: STATUS_DEVICE_NOT_PARTITIONED
  4405. //
  4406. // MessageText:
  4407. //
  4408. // Tape partition information could not be found when loading a tape.
  4409. //
  4410. #define STATUS_DEVICE_NOT_PARTITIONED ((NTSTATUS)0xC0000174L)
  4411. //
  4412. // MessageId: STATUS_UNABLE_TO_LOCK_MEDIA
  4413. //
  4414. // MessageText:
  4415. //
  4416. // Attempt to lock the eject media mechanism fails.
  4417. //
  4418. #define STATUS_UNABLE_TO_LOCK_MEDIA ((NTSTATUS)0xC0000175L)
  4419. //
  4420. // MessageId: STATUS_UNABLE_TO_UNLOAD_MEDIA
  4421. //
  4422. // MessageText:
  4423. //
  4424. // Unload media fails.
  4425. //
  4426. #define STATUS_UNABLE_TO_UNLOAD_MEDIA ((NTSTATUS)0xC0000176L)
  4427. //
  4428. // MessageId: STATUS_EOM_OVERFLOW
  4429. //
  4430. // MessageText:
  4431. //
  4432. // Physical end of tape was detected.
  4433. //
  4434. #define STATUS_EOM_OVERFLOW ((NTSTATUS)0xC0000177L)
  4435. //
  4436. // MessageId: STATUS_NO_MEDIA
  4437. //
  4438. // MessageText:
  4439. //
  4440. // {No Media}
  4441. // There is no media in the drive.
  4442. // Please insert media into drive %hs.
  4443. //
  4444. #define STATUS_NO_MEDIA ((NTSTATUS)0xC0000178L)
  4445. //
  4446. // MessageId: STATUS_NO_SUCH_MEMBER
  4447. //
  4448. // MessageText:
  4449. //
  4450. // A member could not be added to or removed from the local group because the member does not exist.
  4451. //
  4452. #define STATUS_NO_SUCH_MEMBER ((NTSTATUS)0xC000017AL)
  4453. //
  4454. // MessageId: STATUS_INVALID_MEMBER
  4455. //
  4456. // MessageText:
  4457. //
  4458. // A new member could not be added to a local group because the member has the wrong account type.
  4459. //
  4460. #define STATUS_INVALID_MEMBER ((NTSTATUS)0xC000017BL)
  4461. //
  4462. // MessageId: STATUS_KEY_DELETED
  4463. //
  4464. // MessageText:
  4465. //
  4466. // Illegal operation attempted on a registry key which has been marked for deletion.
  4467. //
  4468. #define STATUS_KEY_DELETED ((NTSTATUS)0xC000017CL)
  4469. //
  4470. // MessageId: STATUS_NO_LOG_SPACE
  4471. //
  4472. // MessageText:
  4473. //
  4474. // System could not allocate required space in a registry log.
  4475. //
  4476. #define STATUS_NO_LOG_SPACE ((NTSTATUS)0xC000017DL)
  4477. //
  4478. // MessageId: STATUS_TOO_MANY_SIDS
  4479. //
  4480. // MessageText:
  4481. //
  4482. // Too many Sids have been specified.
  4483. //
  4484. #define STATUS_TOO_MANY_SIDS ((NTSTATUS)0xC000017EL)
  4485. //
  4486. // MessageId: STATUS_LM_CROSS_ENCRYPTION_REQUIRED
  4487. //
  4488. // MessageText:
  4489. //
  4490. // An attempt was made to change a user password in the security account manager without providing the necessary LM cross-encrypted password.
  4491. //
  4492. #define STATUS_LM_CROSS_ENCRYPTION_REQUIRED ((NTSTATUS)0xC000017FL)
  4493. //
  4494. // MessageId: STATUS_KEY_HAS_CHILDREN
  4495. //
  4496. // MessageText:
  4497. //
  4498. // An attempt was made to create a symbolic link in a registry key that already has subkeys or values.
  4499. //
  4500. #define STATUS_KEY_HAS_CHILDREN ((NTSTATUS)0xC0000180L)
  4501. //
  4502. // MessageId: STATUS_CHILD_MUST_BE_VOLATILE
  4503. //
  4504. // MessageText:
  4505. //
  4506. // An attempt was made to create a Stable subkey under a Volatile parent key.
  4507. //
  4508. #define STATUS_CHILD_MUST_BE_VOLATILE ((NTSTATUS)0xC0000181L)
  4509. //
  4510. // MessageId: STATUS_DEVICE_CONFIGURATION_ERROR
  4511. //
  4512. // MessageText:
  4513. //
  4514. // The I/O device is configured incorrectly or the configuration parameters to the driver are incorrect.
  4515. //
  4516. #define STATUS_DEVICE_CONFIGURATION_ERROR ((NTSTATUS)0xC0000182L)
  4517. //
  4518. // MessageId: STATUS_DRIVER_INTERNAL_ERROR
  4519. //
  4520. // MessageText:
  4521. //
  4522. // An error was detected between two drivers or within an I/O driver.
  4523. //
  4524. #define STATUS_DRIVER_INTERNAL_ERROR ((NTSTATUS)0xC0000183L)
  4525. //
  4526. // MessageId: STATUS_INVALID_DEVICE_STATE
  4527. //
  4528. // MessageText:
  4529. //
  4530. // The device is not in a valid state to perform this request.
  4531. //
  4532. #define STATUS_INVALID_DEVICE_STATE ((NTSTATUS)0xC0000184L)
  4533. //
  4534. // MessageId: STATUS_IO_DEVICE_ERROR
  4535. //
  4536. // MessageText:
  4537. //
  4538. // The I/O device reported an I/O error.
  4539. //
  4540. #define STATUS_IO_DEVICE_ERROR ((NTSTATUS)0xC0000185L)
  4541. //
  4542. // MessageId: STATUS_DEVICE_PROTOCOL_ERROR
  4543. //
  4544. // MessageText:
  4545. //
  4546. // A protocol error was detected between the driver and the device.
  4547. //
  4548. #define STATUS_DEVICE_PROTOCOL_ERROR ((NTSTATUS)0xC0000186L)
  4549. //
  4550. // MessageId: STATUS_BACKUP_CONTROLLER
  4551. //
  4552. // MessageText:
  4553. //
  4554. // This operation is only allowed for the Primary Domain Controller of the domain.
  4555. //
  4556. #define STATUS_BACKUP_CONTROLLER ((NTSTATUS)0xC0000187L)
  4557. //
  4558. // MessageId: STATUS_LOG_FILE_FULL
  4559. //
  4560. // MessageText:
  4561. //
  4562. // Log file space is insufficient to support this operation.
  4563. //
  4564. #define STATUS_LOG_FILE_FULL ((NTSTATUS)0xC0000188L)
  4565. //
  4566. // MessageId: STATUS_TOO_LATE
  4567. //
  4568. // MessageText:
  4569. //
  4570. // A write operation was attempted to a volume after it was dismounted.
  4571. //
  4572. #define STATUS_TOO_LATE ((NTSTATUS)0xC0000189L)
  4573. //
  4574. // MessageId: STATUS_NO_TRUST_LSA_SECRET
  4575. //
  4576. // MessageText:
  4577. //
  4578. // The workstation does not have a trust secret for the primary domain in the local LSA database.
  4579. //
  4580. #define STATUS_NO_TRUST_LSA_SECRET ((NTSTATUS)0xC000018AL)
  4581. //
  4582. // MessageId: STATUS_NO_TRUST_SAM_ACCOUNT
  4583. //
  4584. // MessageText:
  4585. //
  4586. // The SAM database on the Windows Server does not have a computer account for this workstation trust relationship.
  4587. //
  4588. #define STATUS_NO_TRUST_SAM_ACCOUNT ((NTSTATUS)0xC000018BL)
  4589. //
  4590. // MessageId: STATUS_TRUSTED_DOMAIN_FAILURE
  4591. //
  4592. // MessageText:
  4593. //
  4594. // The logon request failed because the trust relationship between the primary domain and the trusted domain failed.
  4595. //
  4596. #define STATUS_TRUSTED_DOMAIN_FAILURE ((NTSTATUS)0xC000018CL)
  4597. //
  4598. // MessageId: STATUS_TRUSTED_RELATIONSHIP_FAILURE
  4599. //
  4600. // MessageText:
  4601. //
  4602. // The logon request failed because the trust relationship between this workstation and the primary domain failed.
  4603. //
  4604. #define STATUS_TRUSTED_RELATIONSHIP_FAILURE ((NTSTATUS)0xC000018DL)
  4605. //
  4606. // MessageId: STATUS_EVENTLOG_FILE_CORRUPT
  4607. //
  4608. // MessageText:
  4609. //
  4610. // The Eventlog log file is corrupt.
  4611. //
  4612. #define STATUS_EVENTLOG_FILE_CORRUPT ((NTSTATUS)0xC000018EL)
  4613. //
  4614. // MessageId: STATUS_EVENTLOG_CANT_START
  4615. //
  4616. // MessageText:
  4617. //
  4618. // No Eventlog log file could be opened. The Eventlog service did not start.
  4619. //
  4620. #define STATUS_EVENTLOG_CANT_START ((NTSTATUS)0xC000018FL)
  4621. //
  4622. // MessageId: STATUS_TRUST_FAILURE
  4623. //
  4624. // MessageText:
  4625. //
  4626. // The network logon failed. This may be because the validation authority can't be reached.
  4627. //
  4628. #define STATUS_TRUST_FAILURE ((NTSTATUS)0xC0000190L)
  4629. //
  4630. // MessageId: STATUS_MUTANT_LIMIT_EXCEEDED
  4631. //
  4632. // MessageText:
  4633. //
  4634. // An attempt was made to acquire a mutant such that its maximum count would have been exceeded.
  4635. //
  4636. #define STATUS_MUTANT_LIMIT_EXCEEDED ((NTSTATUS)0xC0000191L)
  4637. //
  4638. // MessageId: STATUS_NETLOGON_NOT_STARTED
  4639. //
  4640. // MessageText:
  4641. //
  4642. // An attempt was made to logon, but the netlogon service was not started.
  4643. //
  4644. #define STATUS_NETLOGON_NOT_STARTED ((NTSTATUS)0xC0000192L)
  4645. //
  4646. // MessageId: STATUS_ACCOUNT_EXPIRED
  4647. //
  4648. // MessageText:
  4649. //
  4650. // The user's account has expired.
  4651. //
  4652. #define STATUS_ACCOUNT_EXPIRED ((NTSTATUS)0xC0000193L) // ntsubauth
  4653. //
  4654. // MessageId: STATUS_POSSIBLE_DEADLOCK
  4655. //
  4656. // MessageText:
  4657. //
  4658. // {EXCEPTION}
  4659. // Possible deadlock condition.
  4660. //
  4661. #define STATUS_POSSIBLE_DEADLOCK ((NTSTATUS)0xC0000194L)
  4662. //
  4663. // MessageId: STATUS_NETWORK_CREDENTIAL_CONFLICT
  4664. //
  4665. // MessageText:
  4666. //
  4667. // 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.
  4668. //
  4669. #define STATUS_NETWORK_CREDENTIAL_CONFLICT ((NTSTATUS)0xC0000195L)
  4670. //
  4671. // MessageId: STATUS_REMOTE_SESSION_LIMIT
  4672. //
  4673. // MessageText:
  4674. //
  4675. // An attempt was made to establish a session to a network server, but there are already too many sessions established to that server.
  4676. //
  4677. #define STATUS_REMOTE_SESSION_LIMIT ((NTSTATUS)0xC0000196L)
  4678. //
  4679. // MessageId: STATUS_EVENTLOG_FILE_CHANGED
  4680. //
  4681. // MessageText:
  4682. //
  4683. // The log file has changed between reads.
  4684. //
  4685. #define STATUS_EVENTLOG_FILE_CHANGED ((NTSTATUS)0xC0000197L)
  4686. //
  4687. // MessageId: STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT
  4688. //
  4689. // MessageText:
  4690. //
  4691. // The account used is an Interdomain Trust account. Use your global user account or local user account to access this server.
  4692. //
  4693. #define STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT ((NTSTATUS)0xC0000198L)
  4694. //
  4695. // MessageId: STATUS_NOLOGON_WORKSTATION_TRUST_ACCOUNT
  4696. //
  4697. // MessageText:
  4698. //
  4699. // The account used is a Computer Account. Use your global user account or local user account to access this server.
  4700. //
  4701. #define STATUS_NOLOGON_WORKSTATION_TRUST_ACCOUNT ((NTSTATUS)0xC0000199L)
  4702. //
  4703. // MessageId: STATUS_NOLOGON_SERVER_TRUST_ACCOUNT
  4704. //
  4705. // MessageText:
  4706. //
  4707. // The account used is an Server Trust account. Use your global user account or local user account to access this server.
  4708. //
  4709. #define STATUS_NOLOGON_SERVER_TRUST_ACCOUNT ((NTSTATUS)0xC000019AL)
  4710. //
  4711. // MessageId: STATUS_DOMAIN_TRUST_INCONSISTENT
  4712. //
  4713. // MessageText:
  4714. //
  4715. // The name or SID of the domain specified is inconsistent with the trust information for that domain.
  4716. //
  4717. #define STATUS_DOMAIN_TRUST_INCONSISTENT ((NTSTATUS)0xC000019BL)
  4718. //
  4719. // MessageId: STATUS_FS_DRIVER_REQUIRED
  4720. //
  4721. // MessageText:
  4722. //
  4723. // A volume has been accessed for which a file system driver is required that has not yet been loaded.
  4724. //
  4725. #define STATUS_FS_DRIVER_REQUIRED ((NTSTATUS)0xC000019CL)
  4726. //
  4727. // MessageId: STATUS_NO_USER_SESSION_KEY
  4728. //
  4729. // MessageText:
  4730. //
  4731. // There is no user session key for the specified logon session.
  4732. //
  4733. #define STATUS_NO_USER_SESSION_KEY ((NTSTATUS)0xC0000202L)
  4734. //
  4735. // MessageId: STATUS_USER_SESSION_DELETED
  4736. //
  4737. // MessageText:
  4738. //
  4739. // The remote user session has been deleted.
  4740. //
  4741. #define STATUS_USER_SESSION_DELETED ((NTSTATUS)0xC0000203L)
  4742. //
  4743. // MessageId: STATUS_RESOURCE_LANG_NOT_FOUND
  4744. //
  4745. // MessageText:
  4746. //
  4747. // Indicates the specified resource language ID cannot be found in the
  4748. // image file.
  4749. //
  4750. #define STATUS_RESOURCE_LANG_NOT_FOUND ((NTSTATUS)0xC0000204L)
  4751. //
  4752. // MessageId: STATUS_INSUFF_SERVER_RESOURCES
  4753. //
  4754. // MessageText:
  4755. //
  4756. // Insufficient server resources exist to complete the request.
  4757. //
  4758. #define STATUS_INSUFF_SERVER_RESOURCES ((NTSTATUS)0xC0000205L)
  4759. //
  4760. // MessageId: STATUS_INVALID_BUFFER_SIZE
  4761. //
  4762. // MessageText:
  4763. //
  4764. // The size of the buffer is invalid for the specified operation.
  4765. //
  4766. #define STATUS_INVALID_BUFFER_SIZE ((NTSTATUS)0xC0000206L)
  4767. //
  4768. // MessageId: STATUS_INVALID_ADDRESS_COMPONENT
  4769. //
  4770. // MessageText:
  4771. //
  4772. // The transport rejected the network address specified as invalid.
  4773. //
  4774. #define STATUS_INVALID_ADDRESS_COMPONENT ((NTSTATUS)0xC0000207L)
  4775. //
  4776. // MessageId: STATUS_INVALID_ADDRESS_WILDCARD
  4777. //
  4778. // MessageText:
  4779. //
  4780. // The transport rejected the network address specified due to an invalid use of a wildcard.
  4781. //
  4782. #define STATUS_INVALID_ADDRESS_WILDCARD ((NTSTATUS)0xC0000208L)
  4783. //
  4784. // MessageId: STATUS_TOO_MANY_ADDRESSES
  4785. //
  4786. // MessageText:
  4787. //
  4788. // The transport address could not be opened because all the available addresses are in use.
  4789. //
  4790. #define STATUS_TOO_MANY_ADDRESSES ((NTSTATUS)0xC0000209L)
  4791. //
  4792. // MessageId: STATUS_ADDRESS_ALREADY_EXISTS
  4793. //
  4794. // MessageText:
  4795. //
  4796. // The transport address could not be opened because it already exists.
  4797. //
  4798. #define STATUS_ADDRESS_ALREADY_EXISTS ((NTSTATUS)0xC000020AL)
  4799. //
  4800. // MessageId: STATUS_ADDRESS_CLOSED
  4801. //
  4802. // MessageText:
  4803. //
  4804. // The transport address is now closed.
  4805. //
  4806. #define STATUS_ADDRESS_CLOSED ((NTSTATUS)0xC000020BL)
  4807. //
  4808. // MessageId: STATUS_CONNECTION_DISCONNECTED
  4809. //
  4810. // MessageText:
  4811. //
  4812. // The transport connection is now disconnected.
  4813. //
  4814. #define STATUS_CONNECTION_DISCONNECTED ((NTSTATUS)0xC000020CL)
  4815. //
  4816. // MessageId: STATUS_CONNECTION_RESET
  4817. //
  4818. // MessageText:
  4819. //
  4820. // The transport connection has been reset.
  4821. //
  4822. #define STATUS_CONNECTION_RESET ((NTSTATUS)0xC000020DL)
  4823. //
  4824. // MessageId: STATUS_TOO_MANY_NODES
  4825. //
  4826. // MessageText:
  4827. //
  4828. // The transport cannot dynamically acquire any more nodes.
  4829. //
  4830. #define STATUS_TOO_MANY_NODES ((NTSTATUS)0xC000020EL)
  4831. //
  4832. // MessageId: STATUS_TRANSACTION_ABORTED
  4833. //
  4834. // MessageText:
  4835. //
  4836. // The transport aborted a pending transaction.
  4837. //
  4838. #define STATUS_TRANSACTION_ABORTED ((NTSTATUS)0xC000020FL)
  4839. //
  4840. // MessageId: STATUS_TRANSACTION_TIMED_OUT
  4841. //
  4842. // MessageText:
  4843. //
  4844. // The transport timed out a request waiting for a response.
  4845. //
  4846. #define STATUS_TRANSACTION_TIMED_OUT ((NTSTATUS)0xC0000210L)
  4847. //
  4848. // MessageId: STATUS_TRANSACTION_NO_RELEASE
  4849. //
  4850. // MessageText:
  4851. //
  4852. // The transport did not receive a release for a pending response.
  4853. //
  4854. #define STATUS_TRANSACTION_NO_RELEASE ((NTSTATUS)0xC0000211L)
  4855. //
  4856. // MessageId: STATUS_TRANSACTION_NO_MATCH
  4857. //
  4858. // MessageText:
  4859. //
  4860. // The transport did not find a transaction matching the specific
  4861. // token.
  4862. //
  4863. #define STATUS_TRANSACTION_NO_MATCH ((NTSTATUS)0xC0000212L)
  4864. //
  4865. // MessageId: STATUS_TRANSACTION_RESPONDED
  4866. //
  4867. // MessageText:
  4868. //
  4869. // The transport had previously responded to a transaction request.
  4870. //
  4871. #define STATUS_TRANSACTION_RESPONDED ((NTSTATUS)0xC0000213L)
  4872. //
  4873. // MessageId: STATUS_TRANSACTION_INVALID_ID
  4874. //
  4875. // MessageText:
  4876. //
  4877. // The transport does not recognized the transaction request identifier specified.
  4878. //
  4879. #define STATUS_TRANSACTION_INVALID_ID ((NTSTATUS)0xC0000214L)
  4880. //
  4881. // MessageId: STATUS_TRANSACTION_INVALID_TYPE
  4882. //
  4883. // MessageText:
  4884. //
  4885. // The transport does not recognize the transaction request type specified.
  4886. //
  4887. #define STATUS_TRANSACTION_INVALID_TYPE ((NTSTATUS)0xC0000215L)
  4888. //
  4889. // MessageId: STATUS_NOT_SERVER_SESSION
  4890. //
  4891. // MessageText:
  4892. //
  4893. // The transport can only process the specified request on the server side of a session.
  4894. //
  4895. #define STATUS_NOT_SERVER_SESSION ((NTSTATUS)0xC0000216L)
  4896. //
  4897. // MessageId: STATUS_NOT_CLIENT_SESSION
  4898. //
  4899. // MessageText:
  4900. //
  4901. // The transport can only process the specified request on the client side of a session.
  4902. //
  4903. #define STATUS_NOT_CLIENT_SESSION ((NTSTATUS)0xC0000217L)
  4904. //
  4905. // MessageId: STATUS_CANNOT_LOAD_REGISTRY_FILE
  4906. //
  4907. // MessageText:
  4908. //
  4909. // {Registry File Failure}
  4910. // The registry cannot load the hive (file):
  4911. // %hs
  4912. // or its log or alternate.
  4913. // It is corrupt, absent, or not writable.
  4914. //
  4915. #define STATUS_CANNOT_LOAD_REGISTRY_FILE ((NTSTATUS)0xC0000218L)
  4916. //
  4917. // MessageId: STATUS_DEBUG_ATTACH_FAILED
  4918. //
  4919. // MessageText:
  4920. //
  4921. // {Unexpected Failure in DebugActiveProcess}
  4922. // An unexpected failure occurred while processing a DebugActiveProcess API request. You may choose OK to terminate the process, or Cancel to ignore the error.
  4923. //
  4924. #define STATUS_DEBUG_ATTACH_FAILED ((NTSTATUS)0xC0000219L)
  4925. //
  4926. // MessageId: STATUS_SYSTEM_PROCESS_TERMINATED
  4927. //
  4928. // MessageText:
  4929. //
  4930. // {Fatal System Error}
  4931. // The %hs system process terminated unexpectedly with a status of 0x%08x (0x%08x 0x%08x).
  4932. // The system has been shut down.
  4933. //
  4934. #define STATUS_SYSTEM_PROCESS_TERMINATED ((NTSTATUS)0xC000021AL)
  4935. //
  4936. // MessageId: STATUS_DATA_NOT_ACCEPTED
  4937. //
  4938. // MessageText:
  4939. //
  4940. // {Data Not Accepted}
  4941. // The TDI client could not handle the data received during an indication.
  4942. //
  4943. #define STATUS_DATA_NOT_ACCEPTED ((NTSTATUS)0xC000021BL)
  4944. //
  4945. // MessageId: STATUS_NO_BROWSER_SERVERS_FOUND
  4946. //
  4947. // MessageText:
  4948. //
  4949. // {Unable to Retrieve Browser Server List}
  4950. // The list of servers for this workgroup is not currently available.
  4951. //
  4952. #define STATUS_NO_BROWSER_SERVERS_FOUND ((NTSTATUS)0xC000021CL)
  4953. //
  4954. // MessageId: STATUS_VDM_HARD_ERROR
  4955. //
  4956. // MessageText:
  4957. //
  4958. // NTVDM encountered a hard error.
  4959. //
  4960. #define STATUS_VDM_HARD_ERROR ((NTSTATUS)0xC000021DL)
  4961. //
  4962. // MessageId: STATUS_DRIVER_CANCEL_TIMEOUT
  4963. //
  4964. // MessageText:
  4965. //
  4966. // {Cancel Timeout}
  4967. // The driver %hs failed to complete a cancelled I/O request in the allotted time.
  4968. //
  4969. #define STATUS_DRIVER_CANCEL_TIMEOUT ((NTSTATUS)0xC000021EL)
  4970. //
  4971. // MessageId: STATUS_REPLY_MESSAGE_MISMATCH
  4972. //
  4973. // MessageText:
  4974. //
  4975. // {Reply Message Mismatch}
  4976. // An attempt was made to reply to an LPC message, but the thread specified by the client ID in the message was not waiting on that message.
  4977. //
  4978. #define STATUS_REPLY_MESSAGE_MISMATCH ((NTSTATUS)0xC000021FL)
  4979. //
  4980. // MessageId: STATUS_MAPPED_ALIGNMENT
  4981. //
  4982. // MessageText:
  4983. //
  4984. // {Mapped View Alignment Incorrect}
  4985. // An attempt was made to map a view of a file, but either the specified base address or the offset into the file were not aligned on the proper allocation granularity.
  4986. //
  4987. #define STATUS_MAPPED_ALIGNMENT ((NTSTATUS)0xC0000220L)
  4988. //
  4989. // MessageId: STATUS_IMAGE_CHECKSUM_MISMATCH
  4990. //
  4991. // MessageText:
  4992. //
  4993. // {Bad Image Checksum}
  4994. // The image %hs is possibly corrupt. The header checksum does not match the computed checksum.
  4995. //
  4996. #define STATUS_IMAGE_CHECKSUM_MISMATCH ((NTSTATUS)0xC0000221L)
  4997. //
  4998. // MessageId: STATUS_LOST_WRITEBEHIND_DATA
  4999. //
  5000. // MessageText:
  5001. //
  5002. // {Delayed Write Failed}
  5003. // Windows was unable to save all the data for the file %hs. The data has been lost.
  5004. // This error may be caused by a failure of your computer hardware or network connection. Please try to save this file elsewhere.
  5005. //
  5006. #define STATUS_LOST_WRITEBEHIND_DATA ((NTSTATUS)0xC0000222L)
  5007. //
  5008. // MessageId: STATUS_CLIENT_SERVER_PARAMETERS_INVALID
  5009. //
  5010. // MessageText:
  5011. //
  5012. // The parameter(s) passed to the server in the client/server shared memory window were invalid. Too much data may have been put in the shared memory window.
  5013. //
  5014. #define STATUS_CLIENT_SERVER_PARAMETERS_INVALID ((NTSTATUS)0xC0000223L)
  5015. //
  5016. // MessageId: STATUS_PASSWORD_MUST_CHANGE
  5017. //
  5018. // MessageText:
  5019. //
  5020. // The user's password must be changed before logging on the first time.
  5021. //
  5022. #define STATUS_PASSWORD_MUST_CHANGE ((NTSTATUS)0xC0000224L) // ntsubauth
  5023. //
  5024. // MessageId: STATUS_NOT_FOUND
  5025. //
  5026. // MessageText:
  5027. //
  5028. // The object was not found.
  5029. //
  5030. #define STATUS_NOT_FOUND ((NTSTATUS)0xC0000225L)
  5031. //
  5032. // MessageId: STATUS_NOT_TINY_STREAM
  5033. //
  5034. // MessageText:
  5035. //
  5036. // The stream is not a tiny stream.
  5037. //
  5038. #define STATUS_NOT_TINY_STREAM ((NTSTATUS)0xC0000226L)
  5039. //
  5040. // MessageId: STATUS_RECOVERY_FAILURE
  5041. //
  5042. // MessageText:
  5043. //
  5044. // A transaction recover failed.
  5045. //
  5046. #define STATUS_RECOVERY_FAILURE ((NTSTATUS)0xC0000227L)
  5047. //
  5048. // MessageId: STATUS_STACK_OVERFLOW_READ
  5049. //
  5050. // MessageText:
  5051. //
  5052. // The request must be handled by the stack overflow code.
  5053. //
  5054. #define STATUS_STACK_OVERFLOW_READ ((NTSTATUS)0xC0000228L)
  5055. //
  5056. // MessageId: STATUS_FAIL_CHECK
  5057. //
  5058. // MessageText:
  5059. //
  5060. // A consistency check failed.
  5061. //
  5062. #define STATUS_FAIL_CHECK ((NTSTATUS)0xC0000229L)
  5063. //
  5064. // MessageId: STATUS_DUPLICATE_OBJECTID
  5065. //
  5066. // MessageText:
  5067. //
  5068. // The attempt to insert the ID in the index failed because the ID is already in the index.
  5069. //
  5070. #define STATUS_DUPLICATE_OBJECTID ((NTSTATUS)0xC000022AL)
  5071. //
  5072. // MessageId: STATUS_OBJECTID_EXISTS
  5073. //
  5074. // MessageText:
  5075. //
  5076. // The attempt to set the object's ID failed because the object already has an ID.
  5077. //
  5078. #define STATUS_OBJECTID_EXISTS ((NTSTATUS)0xC000022BL)
  5079. //
  5080. // MessageId: STATUS_CONVERT_TO_LARGE
  5081. //
  5082. // MessageText:
  5083. //
  5084. // 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.
  5085. //
  5086. #define STATUS_CONVERT_TO_LARGE ((NTSTATUS)0xC000022CL)
  5087. //
  5088. // MessageId: STATUS_RETRY
  5089. //
  5090. // MessageText:
  5091. //
  5092. // The request needs to be retried.
  5093. //
  5094. #define STATUS_RETRY ((NTSTATUS)0xC000022DL)
  5095. //
  5096. // MessageId: STATUS_FOUND_OUT_OF_SCOPE
  5097. //
  5098. // MessageText:
  5099. //
  5100. // 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.
  5101. //
  5102. #define STATUS_FOUND_OUT_OF_SCOPE ((NTSTATUS)0xC000022EL)
  5103. //
  5104. // MessageId: STATUS_ALLOCATE_BUCKET
  5105. //
  5106. // MessageText:
  5107. //
  5108. // The bucket array must be grown. Retry transaction after doing so.
  5109. //
  5110. #define STATUS_ALLOCATE_BUCKET ((NTSTATUS)0xC000022FL)
  5111. //
  5112. // MessageId: STATUS_PROPSET_NOT_FOUND
  5113. //
  5114. // MessageText:
  5115. //
  5116. // The property set specified does not exist on the object.
  5117. //
  5118. #define STATUS_PROPSET_NOT_FOUND ((NTSTATUS)0xC0000230L)
  5119. //
  5120. // MessageId: STATUS_MARSHALL_OVERFLOW
  5121. //
  5122. // MessageText:
  5123. //
  5124. // The user/kernel marshalling buffer has overflowed.
  5125. //
  5126. #define STATUS_MARSHALL_OVERFLOW ((NTSTATUS)0xC0000231L)
  5127. //
  5128. // MessageId: STATUS_INVALID_VARIANT
  5129. //
  5130. // MessageText:
  5131. //
  5132. // The supplied variant structure contains invalid data.
  5133. //
  5134. #define STATUS_INVALID_VARIANT ((NTSTATUS)0xC0000232L)
  5135. //
  5136. // MessageId: STATUS_DOMAIN_CONTROLLER_NOT_FOUND
  5137. //
  5138. // MessageText:
  5139. //
  5140. // Could not find a domain controller for this domain.
  5141. //
  5142. #define STATUS_DOMAIN_CONTROLLER_NOT_FOUND ((NTSTATUS)0xC0000233L)
  5143. //
  5144. // MessageId: STATUS_ACCOUNT_LOCKED_OUT
  5145. //
  5146. // MessageText:
  5147. //
  5148. // The user account has been automatically locked because too many invalid logon attempts or password change attempts have been requested.
  5149. //
  5150. #define STATUS_ACCOUNT_LOCKED_OUT ((NTSTATUS)0xC0000234L) // ntsubauth
  5151. //
  5152. // MessageId: STATUS_HANDLE_NOT_CLOSABLE
  5153. //
  5154. // MessageText:
  5155. //
  5156. // NtClose was called on a handle that was protected from close via NtSetInformationObject.
  5157. //
  5158. #define STATUS_HANDLE_NOT_CLOSABLE ((NTSTATUS)0xC0000235L)
  5159. //
  5160. // MessageId: STATUS_CONNECTION_REFUSED
  5161. //
  5162. // MessageText:
  5163. //
  5164. // The transport connection attempt was refused by the remote system.
  5165. //
  5166. #define STATUS_CONNECTION_REFUSED ((NTSTATUS)0xC0000236L)
  5167. //
  5168. // MessageId: STATUS_GRACEFUL_DISCONNECT
  5169. //
  5170. // MessageText:
  5171. //
  5172. // The transport connection was gracefully closed.
  5173. //
  5174. #define STATUS_GRACEFUL_DISCONNECT ((NTSTATUS)0xC0000237L)
  5175. //
  5176. // MessageId: STATUS_ADDRESS_ALREADY_ASSOCIATED
  5177. //
  5178. // MessageText:
  5179. //
  5180. // The transport endpoint already has an address associated with it.
  5181. //
  5182. #define STATUS_ADDRESS_ALREADY_ASSOCIATED ((NTSTATUS)0xC0000238L)
  5183. //
  5184. // MessageId: STATUS_ADDRESS_NOT_ASSOCIATED
  5185. //
  5186. // MessageText:
  5187. //
  5188. // An address has not yet been associated with the transport endpoint.
  5189. //
  5190. #define STATUS_ADDRESS_NOT_ASSOCIATED ((NTSTATUS)0xC0000239L)
  5191. //
  5192. // MessageId: STATUS_CONNECTION_INVALID
  5193. //
  5194. // MessageText:
  5195. //
  5196. // An operation was attempted on a nonexistent transport connection.
  5197. //
  5198. #define STATUS_CONNECTION_INVALID ((NTSTATUS)0xC000023AL)
  5199. //
  5200. // MessageId: STATUS_CONNECTION_ACTIVE
  5201. //
  5202. // MessageText:
  5203. //
  5204. // An invalid operation was attempted on an active transport connection.
  5205. //
  5206. #define STATUS_CONNECTION_ACTIVE ((NTSTATUS)0xC000023BL)
  5207. //
  5208. // MessageId: STATUS_NETWORK_UNREACHABLE
  5209. //
  5210. // MessageText:
  5211. //
  5212. // The remote network is not reachable by the transport.
  5213. //
  5214. #define STATUS_NETWORK_UNREACHABLE ((NTSTATUS)0xC000023CL)
  5215. //
  5216. // MessageId: STATUS_HOST_UNREACHABLE
  5217. //
  5218. // MessageText:
  5219. //
  5220. // The remote system is not reachable by the transport.
  5221. //
  5222. #define STATUS_HOST_UNREACHABLE ((NTSTATUS)0xC000023DL)
  5223. //
  5224. // MessageId: STATUS_PROTOCOL_UNREACHABLE
  5225. //
  5226. // MessageText:
  5227. //
  5228. // The remote system does not support the transport protocol.
  5229. //
  5230. #define STATUS_PROTOCOL_UNREACHABLE ((NTSTATUS)0xC000023EL)
  5231. //
  5232. // MessageId: STATUS_PORT_UNREACHABLE
  5233. //
  5234. // MessageText:
  5235. //
  5236. // No service is operating at the destination port of the transport on the remote system.
  5237. //
  5238. #define STATUS_PORT_UNREACHABLE ((NTSTATUS)0xC000023FL)
  5239. //
  5240. // MessageId: STATUS_REQUEST_ABORTED
  5241. //
  5242. // MessageText:
  5243. //
  5244. // The request was aborted.
  5245. //
  5246. #define STATUS_REQUEST_ABORTED ((NTSTATUS)0xC0000240L)
  5247. //
  5248. // MessageId: STATUS_CONNECTION_ABORTED
  5249. //
  5250. // MessageText:
  5251. //
  5252. // The transport connection was aborted by the local system.
  5253. //
  5254. #define STATUS_CONNECTION_ABORTED ((NTSTATUS)0xC0000241L)
  5255. //
  5256. // MessageId: STATUS_BAD_COMPRESSION_BUFFER
  5257. //
  5258. // MessageText:
  5259. //
  5260. // The specified buffer contains ill-formed data.
  5261. //
  5262. #define STATUS_BAD_COMPRESSION_BUFFER ((NTSTATUS)0xC0000242L)
  5263. //
  5264. // MessageId: STATUS_USER_MAPPED_FILE
  5265. //
  5266. // MessageText:
  5267. //
  5268. // The requested operation cannot be performed on a file with a user mapped section open.
  5269. //
  5270. #define STATUS_USER_MAPPED_FILE ((NTSTATUS)0xC0000243L)
  5271. //
  5272. // MessageId: STATUS_AUDIT_FAILED
  5273. //
  5274. // MessageText:
  5275. //
  5276. // {Audit Failed}
  5277. // An attempt to generate a security audit failed.
  5278. //
  5279. #define STATUS_AUDIT_FAILED ((NTSTATUS)0xC0000244L)
  5280. //
  5281. // MessageId: STATUS_TIMER_RESOLUTION_NOT_SET
  5282. //
  5283. // MessageText:
  5284. //
  5285. // The timer resolution was not previously set by the current process.
  5286. //
  5287. #define STATUS_TIMER_RESOLUTION_NOT_SET ((NTSTATUS)0xC0000245L)
  5288. //
  5289. // MessageId: STATUS_CONNECTION_COUNT_LIMIT
  5290. //
  5291. // MessageText:
  5292. //
  5293. // A connection to the server could not be made because the limit on the number of concurrent connections for this account has been reached.
  5294. //
  5295. #define STATUS_CONNECTION_COUNT_LIMIT ((NTSTATUS)0xC0000246L)
  5296. //
  5297. // MessageId: STATUS_LOGIN_TIME_RESTRICTION
  5298. //
  5299. // MessageText:
  5300. //
  5301. // Attempting to login during an unauthorized time of day for this account.
  5302. //
  5303. #define STATUS_LOGIN_TIME_RESTRICTION ((NTSTATUS)0xC0000247L)
  5304. //
  5305. // MessageId: STATUS_LOGIN_WKSTA_RESTRICTION
  5306. //
  5307. // MessageText:
  5308. //
  5309. // The account is not authorized to login from this station.
  5310. //
  5311. #define STATUS_LOGIN_WKSTA_RESTRICTION ((NTSTATUS)0xC0000248L)
  5312. //
  5313. // MessageId: STATUS_IMAGE_MP_UP_MISMATCH
  5314. //
  5315. // MessageText:
  5316. //
  5317. // {UP/MP Image Mismatch}
  5318. // The image %hs has been modified for use on a uniprocessor system, but you are running it on a multiprocessor machine.
  5319. // Please reinstall the image file.
  5320. //
  5321. #define STATUS_IMAGE_MP_UP_MISMATCH ((NTSTATUS)0xC0000249L)
  5322. //
  5323. // MessageId: STATUS_INSUFFICIENT_LOGON_INFO
  5324. //
  5325. // MessageText:
  5326. //
  5327. // There is insufficient account information to log you on.
  5328. //
  5329. #define STATUS_INSUFFICIENT_LOGON_INFO ((NTSTATUS)0xC0000250L)
  5330. //
  5331. // MessageId: STATUS_BAD_DLL_ENTRYPOINT
  5332. //
  5333. // MessageText:
  5334. //
  5335. // {Invalid DLL Entrypoint}
  5336. // The dynamic link library %hs is not written correctly. The stack pointer has been left in an inconsistent state.
  5337. // The entrypoint should be declared as WINAPI or STDCALL. Select YES to fail the DLL load. Select NO to continue execution. Selecting NO may cause the application to operate incorrectly.
  5338. //
  5339. #define STATUS_BAD_DLL_ENTRYPOINT ((NTSTATUS)0xC0000251L)
  5340. //
  5341. // MessageId: STATUS_BAD_SERVICE_ENTRYPOINT
  5342. //
  5343. // MessageText:
  5344. //
  5345. // {Invalid Service Callback Entrypoint}
  5346. // The %hs service is not written correctly. The stack pointer has been left in an inconsistent state.
  5347. // The callback entrypoint should be declared as WINAPI or STDCALL. Selecting OK will cause the service to continue operation. However, the service process may operate incorrectly.
  5348. //
  5349. #define STATUS_BAD_SERVICE_ENTRYPOINT ((NTSTATUS)0xC0000252L)
  5350. //
  5351. // MessageId: STATUS_LPC_REPLY_LOST
  5352. //
  5353. // MessageText:
  5354. //
  5355. // The server received the messages but did not send a reply.
  5356. //
  5357. #define STATUS_LPC_REPLY_LOST ((NTSTATUS)0xC0000253L)
  5358. //
  5359. // MessageId: STATUS_IP_ADDRESS_CONFLICT1
  5360. //
  5361. // MessageText:
  5362. //
  5363. // There is an IP address conflict with another system on the network
  5364. //
  5365. #define STATUS_IP_ADDRESS_CONFLICT1 ((NTSTATUS)0xC0000254L)
  5366. //
  5367. // MessageId: STATUS_IP_ADDRESS_CONFLICT2
  5368. //
  5369. // MessageText:
  5370. //
  5371. // There is an IP address conflict with another system on the network
  5372. //
  5373. #define STATUS_IP_ADDRESS_CONFLICT2 ((NTSTATUS)0xC0000255L)
  5374. //
  5375. // MessageId: STATUS_REGISTRY_QUOTA_LIMIT
  5376. //
  5377. // MessageText:
  5378. //
  5379. // {Low On Registry Space}
  5380. // The system has reached the maximum size allowed for the system part of the registry. Additional storage requests will be ignored.
  5381. //
  5382. #define STATUS_REGISTRY_QUOTA_LIMIT ((NTSTATUS)0xC0000256L)
  5383. //
  5384. // MessageId: STATUS_PATH_NOT_COVERED
  5385. //
  5386. // MessageText:
  5387. //
  5388. // The contacted server does not support the indicated part of the DFS namespace.
  5389. //
  5390. #define STATUS_PATH_NOT_COVERED ((NTSTATUS)0xC0000257L)
  5391. //
  5392. // MessageId: STATUS_NO_CALLBACK_ACTIVE
  5393. //
  5394. // MessageText:
  5395. //
  5396. // A callback return system service cannot be executed when no callback is active.
  5397. //
  5398. #define STATUS_NO_CALLBACK_ACTIVE ((NTSTATUS)0xC0000258L)
  5399. //
  5400. // MessageId: STATUS_LICENSE_QUOTA_EXCEEDED
  5401. //
  5402. // MessageText:
  5403. //
  5404. // The service being accessed is licensed for a particular number of connections.
  5405. // No more connections can be made to the service at this time because there are already as many connections as the service can accept.
  5406. //
  5407. #define STATUS_LICENSE_QUOTA_EXCEEDED ((NTSTATUS)0xC0000259L)
  5408. //
  5409. // MessageId: STATUS_PWD_TOO_SHORT
  5410. //
  5411. // MessageText:
  5412. //
  5413. // The password provided is too short to meet the policy of your user account.
  5414. // Please choose a longer password.
  5415. //
  5416. #define STATUS_PWD_TOO_SHORT ((NTSTATUS)0xC000025AL)
  5417. //
  5418. // MessageId: STATUS_PWD_TOO_RECENT
  5419. //
  5420. // MessageText:
  5421. //
  5422. // The policy of your user account does not allow you to change passwords too frequently.
  5423. // This is done to prevent users from changing back to a familiar, but potentially discovered, password.
  5424. // If you feel your password has been compromised then please contact your administrator immediately to have a new one assigned.
  5425. //
  5426. #define STATUS_PWD_TOO_RECENT ((NTSTATUS)0xC000025BL)
  5427. //
  5428. // MessageId: STATUS_PWD_HISTORY_CONFLICT
  5429. //
  5430. // MessageText:
  5431. //
  5432. // You have attempted to change your password to one that you have used in the past.
  5433. // The policy of your user account does not allow this. Please select a password that you have not previously used.
  5434. //
  5435. #define STATUS_PWD_HISTORY_CONFLICT ((NTSTATUS)0xC000025CL)
  5436. //
  5437. // MessageId: STATUS_PLUGPLAY_NO_DEVICE
  5438. //
  5439. // MessageText:
  5440. //
  5441. // You have attempted to load a legacy device driver while its device instance had been disabled.
  5442. //
  5443. #define STATUS_PLUGPLAY_NO_DEVICE ((NTSTATUS)0xC000025EL)
  5444. //
  5445. // MessageId: STATUS_UNSUPPORTED_COMPRESSION
  5446. //
  5447. // MessageText:
  5448. //
  5449. // The specified compression format is unsupported.
  5450. //
  5451. #define STATUS_UNSUPPORTED_COMPRESSION ((NTSTATUS)0xC000025FL)
  5452. //
  5453. // MessageId: STATUS_INVALID_HW_PROFILE
  5454. //
  5455. // MessageText:
  5456. //
  5457. // The specified hardware profile configuration is invalid.
  5458. //
  5459. #define STATUS_INVALID_HW_PROFILE ((NTSTATUS)0xC0000260L)
  5460. //
  5461. // MessageId: STATUS_INVALID_PLUGPLAY_DEVICE_PATH
  5462. //
  5463. // MessageText:
  5464. //
  5465. // The specified Plug and Play registry device path is invalid.
  5466. //
  5467. #define STATUS_INVALID_PLUGPLAY_DEVICE_PATH ((NTSTATUS)0xC0000261L)
  5468. //
  5469. // MessageId: STATUS_DRIVER_ORDINAL_NOT_FOUND
  5470. //
  5471. // MessageText:
  5472. //
  5473. // {Driver Entry Point Not Found}
  5474. // The %hs device driver could not locate the ordinal %ld in driver %hs.
  5475. //
  5476. #define STATUS_DRIVER_ORDINAL_NOT_FOUND ((NTSTATUS)0xC0000262L)
  5477. //
  5478. // MessageId: STATUS_DRIVER_ENTRYPOINT_NOT_FOUND
  5479. //
  5480. // MessageText:
  5481. //
  5482. // {Driver Entry Point Not Found}
  5483. // The %hs device driver could not locate the entry point %hs in driver %hs.
  5484. //
  5485. #define STATUS_DRIVER_ENTRYPOINT_NOT_FOUND ((NTSTATUS)0xC0000263L)
  5486. //
  5487. // MessageId: STATUS_RESOURCE_NOT_OWNED
  5488. //
  5489. // MessageText:
  5490. //
  5491. // {Application Error}
  5492. // The application attempted to release a resource it did not own. Click on OK to terminate the application.
  5493. //
  5494. #define STATUS_RESOURCE_NOT_OWNED ((NTSTATUS)0xC0000264L)
  5495. //
  5496. // MessageId: STATUS_TOO_MANY_LINKS
  5497. //
  5498. // MessageText:
  5499. //
  5500. // An attempt was made to create more links on a file than the file system supports.
  5501. //
  5502. #define STATUS_TOO_MANY_LINKS ((NTSTATUS)0xC0000265L)
  5503. //
  5504. // MessageId: STATUS_QUOTA_LIST_INCONSISTENT
  5505. //
  5506. // MessageText:
  5507. //
  5508. // The specified quota list is internally inconsistent with its descriptor.
  5509. //
  5510. #define STATUS_QUOTA_LIST_INCONSISTENT ((NTSTATUS)0xC0000266L)
  5511. //
  5512. // MessageId: STATUS_FILE_IS_OFFLINE
  5513. //
  5514. // MessageText:
  5515. //
  5516. // The specified file has been relocated to offline storage.
  5517. //
  5518. #define STATUS_FILE_IS_OFFLINE ((NTSTATUS)0xC0000267L)
  5519. //
  5520. // MessageId: STATUS_EVALUATION_EXPIRATION
  5521. //
  5522. // MessageText:
  5523. //
  5524. // {Windows Evaluation Notification}
  5525. // The evaluation period for this installation of Windows has expired. This system will shutdown in 1 hour. To restore access to this installation of Windows, please upgrade this installation using a licensed distribution of this product.
  5526. //
  5527. #define STATUS_EVALUATION_EXPIRATION ((NTSTATUS)0xC0000268L)
  5528. //
  5529. // MessageId: STATUS_ILLEGAL_DLL_RELOCATION
  5530. //
  5531. // MessageText:
  5532. //
  5533. // {Illegal System DLL Relocation}
  5534. // The system DLL %hs was relocated in memory. The application will not run properly.
  5535. // 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.
  5536. //
  5537. #define STATUS_ILLEGAL_DLL_RELOCATION ((NTSTATUS)0xC0000269L)
  5538. //
  5539. // MessageId: STATUS_LICENSE_VIOLATION
  5540. //
  5541. // MessageText:
  5542. //
  5543. // {License Violation}
  5544. // The system has detected tampering with your registered product type. This is a violation of your software license. Tampering with product type is not permitted.
  5545. //
  5546. #define STATUS_LICENSE_VIOLATION ((NTSTATUS)0xC000026AL)
  5547. //
  5548. // MessageId: STATUS_DLL_INIT_FAILED_LOGOFF
  5549. //
  5550. // MessageText:
  5551. //
  5552. // {DLL Initialization Failed}
  5553. // The application failed to initialize because the window station is shutting down.
  5554. //
  5555. #define STATUS_DLL_INIT_FAILED_LOGOFF ((NTSTATUS)0xC000026BL)
  5556. //
  5557. // MessageId: STATUS_DRIVER_UNABLE_TO_LOAD
  5558. //
  5559. // MessageText:
  5560. //
  5561. // {Unable to Load Device Driver}
  5562. // %hs device driver could not be loaded.
  5563. // Error Status was 0x%x
  5564. //
  5565. #define STATUS_DRIVER_UNABLE_TO_LOAD ((NTSTATUS)0xC000026CL)
  5566. //
  5567. // MessageId: STATUS_DFS_UNAVAILABLE
  5568. //
  5569. // MessageText:
  5570. //
  5571. // DFS is unavailable on the contacted server.
  5572. //
  5573. #define STATUS_DFS_UNAVAILABLE ((NTSTATUS)0xC000026DL)
  5574. //
  5575. // MessageId: STATUS_VOLUME_DISMOUNTED
  5576. //
  5577. // MessageText:
  5578. //
  5579. // An operation was attempted to a volume after it was dismounted.
  5580. //
  5581. #define STATUS_VOLUME_DISMOUNTED ((NTSTATUS)0xC000026EL)
  5582. //
  5583. // MessageId: STATUS_WX86_INTERNAL_ERROR
  5584. //
  5585. // MessageText:
  5586. //
  5587. // An internal error occurred in the Win32 x86 emulation subsystem.
  5588. //
  5589. #define STATUS_WX86_INTERNAL_ERROR ((NTSTATUS)0xC000026FL)
  5590. //
  5591. // MessageId: STATUS_WX86_FLOAT_STACK_CHECK
  5592. //
  5593. // MessageText:
  5594. //
  5595. // Win32 x86 emulation subsystem Floating-point stack check.
  5596. //
  5597. #define STATUS_WX86_FLOAT_STACK_CHECK ((NTSTATUS)0xC0000270L)
  5598. //
  5599. // MessageId: STATUS_VALIDATE_CONTINUE
  5600. //
  5601. // MessageText:
  5602. //
  5603. // The validation process needs to continue on to the next step.
  5604. //
  5605. #define STATUS_VALIDATE_CONTINUE ((NTSTATUS)0xC0000271L)
  5606. //
  5607. // MessageId: STATUS_NO_MATCH
  5608. //
  5609. // MessageText:
  5610. //
  5611. // There was no match for the specified key in the index.
  5612. //
  5613. #define STATUS_NO_MATCH ((NTSTATUS)0xC0000272L)
  5614. //
  5615. // MessageId: STATUS_NO_MORE_MATCHES
  5616. //
  5617. // MessageText:
  5618. //
  5619. // There are no more matches for the current index enumeration.
  5620. //
  5621. #define STATUS_NO_MORE_MATCHES ((NTSTATUS)0xC0000273L)
  5622. //
  5623. // MessageId: STATUS_NOT_A_REPARSE_POINT
  5624. //
  5625. // MessageText:
  5626. //
  5627. // The NTFS file or directory is not a reparse point.
  5628. //
  5629. #define STATUS_NOT_A_REPARSE_POINT ((NTSTATUS)0xC0000275L)
  5630. //
  5631. // MessageId: STATUS_IO_REPARSE_TAG_INVALID
  5632. //
  5633. // MessageText:
  5634. //
  5635. // The Windows I/O reparse tag passed for the NTFS reparse point is invalid.
  5636. //
  5637. #define STATUS_IO_REPARSE_TAG_INVALID ((NTSTATUS)0xC0000276L)
  5638. //
  5639. // MessageId: STATUS_IO_REPARSE_TAG_MISMATCH
  5640. //
  5641. // MessageText:
  5642. //
  5643. // The Windows I/O reparse tag does not match the one present in the NTFS reparse point.
  5644. //
  5645. #define STATUS_IO_REPARSE_TAG_MISMATCH ((NTSTATUS)0xC0000277L)
  5646. //
  5647. // MessageId: STATUS_IO_REPARSE_DATA_INVALID
  5648. //
  5649. // MessageText:
  5650. //
  5651. // The user data passed for the NTFS reparse point is invalid.
  5652. //
  5653. #define STATUS_IO_REPARSE_DATA_INVALID ((NTSTATUS)0xC0000278L)
  5654. //
  5655. // MessageId: STATUS_IO_REPARSE_TAG_NOT_HANDLED
  5656. //
  5657. // MessageText:
  5658. //
  5659. // The layered file system driver for this IO tag did not handle it when needed.
  5660. //
  5661. #define STATUS_IO_REPARSE_TAG_NOT_HANDLED ((NTSTATUS)0xC0000279L)
  5662. //
  5663. // MessageId: STATUS_REPARSE_POINT_NOT_RESOLVED
  5664. //
  5665. // MessageText:
  5666. //
  5667. // The NTFS symbolic link could not be resolved even though the initial file name is valid.
  5668. //
  5669. #define STATUS_REPARSE_POINT_NOT_RESOLVED ((NTSTATUS)0xC0000280L)
  5670. //
  5671. // MessageId: STATUS_DIRECTORY_IS_A_REPARSE_POINT
  5672. //
  5673. // MessageText:
  5674. //
  5675. // The NTFS directory is a reparse point.
  5676. //
  5677. #define STATUS_DIRECTORY_IS_A_REPARSE_POINT ((NTSTATUS)0xC0000281L)
  5678. //
  5679. // MessageId: STATUS_RANGE_LIST_CONFLICT
  5680. //
  5681. // MessageText:
  5682. //
  5683. // The range could not be added to the range list because of a conflict.
  5684. //
  5685. #define STATUS_RANGE_LIST_CONFLICT ((NTSTATUS)0xC0000282L)
  5686. //
  5687. // MessageId: STATUS_SOURCE_ELEMENT_EMPTY
  5688. //
  5689. // MessageText:
  5690. //
  5691. // The specified medium changer source element contains no media.
  5692. //
  5693. #define STATUS_SOURCE_ELEMENT_EMPTY ((NTSTATUS)0xC0000283L)
  5694. //
  5695. // MessageId: STATUS_DESTINATION_ELEMENT_FULL
  5696. //
  5697. // MessageText:
  5698. //
  5699. // The specified medium changer destination element already contains media.
  5700. //
  5701. #define STATUS_DESTINATION_ELEMENT_FULL ((NTSTATUS)0xC0000284L)
  5702. //
  5703. // MessageId: STATUS_ILLEGAL_ELEMENT_ADDRESS
  5704. //
  5705. // MessageText:
  5706. //
  5707. // The specified medium changer element does not exist.
  5708. //
  5709. #define STATUS_ILLEGAL_ELEMENT_ADDRESS ((NTSTATUS)0xC0000285L)
  5710. //
  5711. // MessageId: STATUS_MAGAZINE_NOT_PRESENT
  5712. //
  5713. // MessageText:
  5714. //
  5715. // The specified element is contained within a magazine that is no longer present.
  5716. //
  5717. #define STATUS_MAGAZINE_NOT_PRESENT ((NTSTATUS)0xC0000286L)
  5718. //
  5719. // MessageId: STATUS_REINITIALIZATION_NEEDED
  5720. //
  5721. // MessageText:
  5722. //
  5723. // The device requires reinitialization due to hardware errors.
  5724. //
  5725. #define STATUS_REINITIALIZATION_NEEDED ((NTSTATUS)0xC0000287L)
  5726. //
  5727. // MessageId: STATUS_DEVICE_REQUIRES_CLEANING
  5728. //
  5729. // MessageText:
  5730. //
  5731. // The device has indicated that cleaning is necessary.
  5732. //
  5733. #define STATUS_DEVICE_REQUIRES_CLEANING ((NTSTATUS)0x80000288L)
  5734. //
  5735. // MessageId: STATUS_DEVICE_DOOR_OPEN
  5736. //
  5737. // MessageText:
  5738. //
  5739. // The device has indicated that it's door is open. Further operations require it closed and secured.
  5740. //
  5741. #define STATUS_DEVICE_DOOR_OPEN ((NTSTATUS)0x80000289L)
  5742. //
  5743. // MessageId: STATUS_ENCRYPTION_FAILED
  5744. //
  5745. // MessageText:
  5746. //
  5747. // The file encryption attempt failed.
  5748. //
  5749. #define STATUS_ENCRYPTION_FAILED ((NTSTATUS)0xC000028AL)
  5750. //
  5751. // MessageId: STATUS_DECRYPTION_FAILED
  5752. //
  5753. // MessageText:
  5754. //
  5755. // The file decryption attempt failed.
  5756. //
  5757. #define STATUS_DECRYPTION_FAILED ((NTSTATUS)0xC000028BL)
  5758. //
  5759. // MessageId: STATUS_RANGE_NOT_FOUND
  5760. //
  5761. // MessageText:
  5762. //
  5763. // The specified range could not be found in the range list.
  5764. //
  5765. #define STATUS_RANGE_NOT_FOUND ((NTSTATUS)0xC000028CL)
  5766. //
  5767. // MessageId: STATUS_NO_RECOVERY_POLICY
  5768. //
  5769. // MessageText:
  5770. //
  5771. // There is no encryption recovery policy configured for this system.
  5772. //
  5773. #define STATUS_NO_RECOVERY_POLICY ((NTSTATUS)0xC000028DL)
  5774. //
  5775. // MessageId: STATUS_NO_EFS
  5776. //
  5777. // MessageText:
  5778. //
  5779. // The required encryption driver is not loaded for this system.
  5780. //
  5781. #define STATUS_NO_EFS ((NTSTATUS)0xC000028EL)
  5782. //
  5783. // MessageId: STATUS_WRONG_EFS
  5784. //
  5785. // MessageText:
  5786. //
  5787. // The file was encrypted with a different encryption driver than is currently loaded.
  5788. //
  5789. #define STATUS_WRONG_EFS ((NTSTATUS)0xC000028FL)
  5790. //
  5791. // MessageId: STATUS_NO_USER_KEYS
  5792. //
  5793. // MessageText:
  5794. //
  5795. // There are no EFS keys defined for the user.
  5796. //
  5797. #define STATUS_NO_USER_KEYS ((NTSTATUS)0xC0000290L)
  5798. //
  5799. // MessageId: STATUS_FILE_NOT_ENCRYPTED
  5800. //
  5801. // MessageText:
  5802. //
  5803. // The specified file is not encrypted.
  5804. //
  5805. #define STATUS_FILE_NOT_ENCRYPTED ((NTSTATUS)0xC0000291L)
  5806. //
  5807. // MessageId: STATUS_NOT_EXPORT_FORMAT
  5808. //
  5809. // MessageText:
  5810. //
  5811. // The specified file is not in the defined EFS export format.
  5812. //
  5813. #define STATUS_NOT_EXPORT_FORMAT ((NTSTATUS)0xC0000292L)
  5814. //
  5815. // MessageId: STATUS_FILE_ENCRYPTED
  5816. //
  5817. // MessageText:
  5818. //
  5819. // The specified file is encrypted and the user does not have the ability to decrypt it.
  5820. //
  5821. #define STATUS_FILE_ENCRYPTED ((NTSTATUS)0xC0000293L)
  5822. //
  5823. // MessageId: STATUS_WAKE_SYSTEM
  5824. //
  5825. // MessageText:
  5826. //
  5827. // The system has awoken
  5828. //
  5829. #define STATUS_WAKE_SYSTEM ((NTSTATUS)0x40000294L)
  5830. //
  5831. // MessageId: STATUS_WMI_GUID_NOT_FOUND
  5832. //
  5833. // MessageText:
  5834. //
  5835. // The guid passed was not recognized as valid by a WMI data provider.
  5836. //
  5837. #define STATUS_WMI_GUID_NOT_FOUND ((NTSTATUS)0xC0000295L)
  5838. //
  5839. // MessageId: STATUS_WMI_INSTANCE_NOT_FOUND
  5840. //
  5841. // MessageText:
  5842. //
  5843. // The instance name passed was not recognized as valid by a WMI data provider.
  5844. //
  5845. #define STATUS_WMI_INSTANCE_NOT_FOUND ((NTSTATUS)0xC0000296L)
  5846. //
  5847. // MessageId: STATUS_WMI_ITEMID_NOT_FOUND
  5848. //
  5849. // MessageText:
  5850. //
  5851. // The data item id passed was not recognized as valid by a WMI data provider.
  5852. //
  5853. #define STATUS_WMI_ITEMID_NOT_FOUND ((NTSTATUS)0xC0000297L)
  5854. //
  5855. // MessageId: STATUS_WMI_TRY_AGAIN
  5856. //
  5857. // MessageText:
  5858. //
  5859. // The WMI request could not be completed and should be retried.
  5860. //
  5861. #define STATUS_WMI_TRY_AGAIN ((NTSTATUS)0xC0000298L)
  5862. //
  5863. // MessageId: STATUS_SHARED_POLICY
  5864. //
  5865. // MessageText:
  5866. //
  5867. // The policy object is shared and can only be modified at the root
  5868. //
  5869. #define STATUS_SHARED_POLICY ((NTSTATUS)0xC0000299L)
  5870. //
  5871. // MessageId: STATUS_POLICY_OBJECT_NOT_FOUND
  5872. //
  5873. // MessageText:
  5874. //
  5875. // The policy object does not exist when it should
  5876. //
  5877. #define STATUS_POLICY_OBJECT_NOT_FOUND ((NTSTATUS)0xC000029AL)
  5878. //
  5879. // MessageId: STATUS_POLICY_ONLY_IN_DS
  5880. //
  5881. // MessageText:
  5882. //
  5883. // The requested policy information only lives in the Ds
  5884. //
  5885. #define STATUS_POLICY_ONLY_IN_DS ((NTSTATUS)0xC000029BL)
  5886. //
  5887. // MessageId: STATUS_VOLUME_NOT_UPGRADED
  5888. //
  5889. // MessageText:
  5890. //
  5891. // The volume must be upgraded to enable this feature
  5892. //
  5893. #define STATUS_VOLUME_NOT_UPGRADED ((NTSTATUS)0xC000029CL)
  5894. //
  5895. // MessageId: STATUS_REMOTE_STORAGE_NOT_ACTIVE
  5896. //
  5897. // MessageText:
  5898. //
  5899. // The remote storage service is not operational at this time.
  5900. //
  5901. #define STATUS_REMOTE_STORAGE_NOT_ACTIVE ((NTSTATUS)0xC000029DL)
  5902. //
  5903. // MessageId: STATUS_REMOTE_STORAGE_MEDIA_ERROR
  5904. //
  5905. // MessageText:
  5906. //
  5907. // The remote storage service encountered a media error.
  5908. //
  5909. #define STATUS_REMOTE_STORAGE_MEDIA_ERROR ((NTSTATUS)0xC000029EL)
  5910. //
  5911. // MessageId: STATUS_NO_TRACKING_SERVICE
  5912. //
  5913. // MessageText:
  5914. //
  5915. // The tracking (workstation) service is not running.
  5916. //
  5917. #define STATUS_NO_TRACKING_SERVICE ((NTSTATUS)0xC000029FL)
  5918. //
  5919. // MessageId: STATUS_SERVER_SID_MISMATCH
  5920. //
  5921. // MessageText:
  5922. //
  5923. // The server process is running under a SID different than that required by client.
  5924. //
  5925. #define STATUS_SERVER_SID_MISMATCH ((NTSTATUS)0xC00002A0L)
  5926. //
  5927. // Directory Service specific Errors
  5928. //
  5929. //
  5930. // MessageId: STATUS_DS_NO_ATTRIBUTE_OR_VALUE
  5931. //
  5932. // MessageText:
  5933. //
  5934. // The specified directory service attribute or value does not exist.
  5935. //
  5936. #define STATUS_DS_NO_ATTRIBUTE_OR_VALUE ((NTSTATUS)0xC00002A1L)
  5937. //
  5938. // MessageId: STATUS_DS_INVALID_ATTRIBUTE_SYNTAX
  5939. //
  5940. // MessageText:
  5941. //
  5942. // The attribute syntax specified to the directory service is invalid.
  5943. //
  5944. #define STATUS_DS_INVALID_ATTRIBUTE_SYNTAX ((NTSTATUS)0xC00002A2L)
  5945. //
  5946. // MessageId: STATUS_DS_ATTRIBUTE_TYPE_UNDEFINED
  5947. //
  5948. // MessageText:
  5949. //
  5950. // The attribute type specified to the directory service is not defined.
  5951. //
  5952. #define STATUS_DS_ATTRIBUTE_TYPE_UNDEFINED ((NTSTATUS)0xC00002A3L)
  5953. //
  5954. // MessageId: STATUS_DS_ATTRIBUTE_OR_VALUE_EXISTS
  5955. //
  5956. // MessageText:
  5957. //
  5958. // The specified directory service attribute or value already exists.
  5959. //
  5960. #define STATUS_DS_ATTRIBUTE_OR_VALUE_EXISTS ((NTSTATUS)0xC00002A4L)
  5961. //
  5962. // MessageId: STATUS_DS_BUSY
  5963. //
  5964. // MessageText:
  5965. //
  5966. // The directory service is busy.
  5967. //
  5968. #define STATUS_DS_BUSY ((NTSTATUS)0xC00002A5L)
  5969. //
  5970. // MessageId: STATUS_DS_UNAVAILABLE
  5971. //
  5972. // MessageText:
  5973. //
  5974. // The directory service is not available.
  5975. //
  5976. #define STATUS_DS_UNAVAILABLE ((NTSTATUS)0xC00002A6L)
  5977. //
  5978. // MessageId: STATUS_DS_NO_RIDS_ALLOCATED
  5979. //
  5980. // MessageText:
  5981. //
  5982. // The directory service was unable to allocate a relative identifier.
  5983. //
  5984. #define STATUS_DS_NO_RIDS_ALLOCATED ((NTSTATUS)0xC00002A7L)
  5985. //
  5986. // MessageId: STATUS_DS_NO_MORE_RIDS
  5987. //
  5988. // MessageText:
  5989. //
  5990. // The directory service has exhausted the pool of relative identifiers.
  5991. //
  5992. #define STATUS_DS_NO_MORE_RIDS ((NTSTATUS)0xC00002A8L)
  5993. //
  5994. // MessageId: STATUS_DS_INCORRECT_ROLE_OWNER
  5995. //
  5996. // MessageText:
  5997. //
  5998. // The requested operation could not be performed because the directory service is not the master for that type of operation.
  5999. //
  6000. #define STATUS_DS_INCORRECT_ROLE_OWNER ((NTSTATUS)0xC00002A9L)
  6001. //
  6002. // MessageId: STATUS_DS_RIDMGR_INIT_ERROR
  6003. //
  6004. // MessageText:
  6005. //
  6006. // The directory service was unable to initialize the subsystem that allocates relative identifiers.
  6007. //
  6008. #define STATUS_DS_RIDMGR_INIT_ERROR ((NTSTATUS)0xC00002AAL)
  6009. //
  6010. // MessageId: STATUS_DS_OBJ_CLASS_VIOLATION
  6011. //
  6012. // MessageText:
  6013. //
  6014. // The requested operation did not satisfy one or more constraints associated with the class of the object.
  6015. //
  6016. #define STATUS_DS_OBJ_CLASS_VIOLATION ((NTSTATUS)0xC00002ABL)
  6017. //
  6018. // MessageId: STATUS_DS_CANT_ON_NON_LEAF
  6019. //
  6020. // MessageText:
  6021. //
  6022. // The directory service can perform the requested operation only on a leaf object.
  6023. //
  6024. #define STATUS_DS_CANT_ON_NON_LEAF ((NTSTATUS)0xC00002ACL)
  6025. //
  6026. // MessageId: STATUS_DS_CANT_ON_RDN
  6027. //
  6028. // MessageText:
  6029. //
  6030. // The directory service cannot perform the requested operation on the Relatively Defined Name (RDN) attribute of an object.
  6031. //
  6032. #define STATUS_DS_CANT_ON_RDN ((NTSTATUS)0xC00002ADL)
  6033. //
  6034. // MessageId: STATUS_DS_CANT_MOD_OBJ_CLASS
  6035. //
  6036. // MessageText:
  6037. //
  6038. // The directory service detected an attempt to modify the object class of an object.
  6039. //
  6040. #define STATUS_DS_CANT_MOD_OBJ_CLASS ((NTSTATUS)0xC00002AEL)
  6041. //
  6042. // MessageId: STATUS_DS_CROSS_DOM_MOVE_FAILED
  6043. //
  6044. // MessageText:
  6045. //
  6046. // An error occurred while performing a cross domain move operation.
  6047. //
  6048. #define STATUS_DS_CROSS_DOM_MOVE_FAILED ((NTSTATUS)0xC00002AFL)
  6049. //
  6050. // MessageId: STATUS_DS_GC_NOT_AVAILABLE
  6051. //
  6052. // MessageText:
  6053. //
  6054. // Unable to Contact the Global Catalog Server.
  6055. //
  6056. #define STATUS_DS_GC_NOT_AVAILABLE ((NTSTATUS)0xC00002B0L)
  6057. //
  6058. // MessageId: STATUS_DIRECTORY_SERVICE_REQUIRED
  6059. //
  6060. // MessageText:
  6061. //
  6062. // The requested operation requires a directory service, and none was available.
  6063. //
  6064. #define STATUS_DIRECTORY_SERVICE_REQUIRED ((NTSTATUS)0xC00002B1L)
  6065. //
  6066. // MessageId: STATUS_REPARSE_ATTRIBUTE_CONFLICT
  6067. //
  6068. // MessageText:
  6069. //
  6070. // The reparse attribute cannot be set as it is incompatible with an existing attribute.
  6071. //
  6072. #define STATUS_REPARSE_ATTRIBUTE_CONFLICT ((NTSTATUS)0xC00002B2L)
  6073. //
  6074. // MessageId: STATUS_CANT_ENABLE_DENY_ONLY
  6075. //
  6076. // MessageText:
  6077. //
  6078. // A group marked use for deny only can not be enabled.
  6079. //
  6080. #define STATUS_CANT_ENABLE_DENY_ONLY ((NTSTATUS)0xC00002B3L)
  6081. //
  6082. // MessageId: STATUS_FLOAT_MULTIPLE_FAULTS
  6083. //
  6084. // MessageText:
  6085. //
  6086. // {EXCEPTION}
  6087. // Multiple floating point faults.
  6088. //
  6089. #define STATUS_FLOAT_MULTIPLE_FAULTS ((NTSTATUS)0xC00002B4L) // winnt
  6090. //
  6091. // MessageId: STATUS_FLOAT_MULTIPLE_TRAPS
  6092. //
  6093. // MessageText:
  6094. //
  6095. // {EXCEPTION}
  6096. // Multiple floating point traps.
  6097. //
  6098. #define STATUS_FLOAT_MULTIPLE_TRAPS ((NTSTATUS)0xC00002B5L) // winnt
  6099. //
  6100. // MessageId: STATUS_DEVICE_REMOVED
  6101. //
  6102. // MessageText:
  6103. //
  6104. // The device has been removed.
  6105. //
  6106. #define STATUS_DEVICE_REMOVED ((NTSTATUS)0xC00002B6L)
  6107. //
  6108. // MessageId: STATUS_JOURNAL_DELETE_IN_PROGRESS
  6109. //
  6110. // MessageText:
  6111. //
  6112. // The volume change journal is being deleted.
  6113. //
  6114. #define STATUS_JOURNAL_DELETE_IN_PROGRESS ((NTSTATUS)0xC00002B7L)
  6115. //
  6116. // MessageId: STATUS_JOURNAL_NOT_ACTIVE
  6117. //
  6118. // MessageText:
  6119. //
  6120. // The volume change journal is not active.
  6121. //
  6122. #define STATUS_JOURNAL_NOT_ACTIVE ((NTSTATUS)0xC00002B8L)
  6123. //
  6124. // MessageId: STATUS_NOINTERFACE
  6125. //
  6126. // MessageText:
  6127. //
  6128. // The requested interface is not supported.
  6129. //
  6130. #define STATUS_NOINTERFACE ((NTSTATUS)0xC00002B9L)
  6131. //
  6132. // MessageId: STATUS_DS_ADMIN_LIMIT_EXCEEDED
  6133. //
  6134. // MessageText:
  6135. //
  6136. // A directory service resource limit has been exceeded.
  6137. //
  6138. #define STATUS_DS_ADMIN_LIMIT_EXCEEDED ((NTSTATUS)0xC00002C1L)
  6139. //
  6140. // MessageId: STATUS_DRIVER_FAILED_SLEEP
  6141. //
  6142. // MessageText:
  6143. //
  6144. // {System Standby Failed}
  6145. // The driver %hs does not support standby mode. Updating this driver may allow the system to go to standby mode.
  6146. //
  6147. #define STATUS_DRIVER_FAILED_SLEEP ((NTSTATUS)0xC00002C2L)
  6148. //
  6149. // MessageId: STATUS_MUTUAL_AUTHENTICATION_FAILED
  6150. //
  6151. // MessageText:
  6152. //
  6153. // Mutual Authentication failed. The server's password is out of date at the domain controller.
  6154. //
  6155. #define STATUS_MUTUAL_AUTHENTICATION_FAILED ((NTSTATUS)0xC00002C3L)
  6156. //
  6157. // MessageId: STATUS_CORRUPT_SYSTEM_FILE
  6158. //
  6159. // MessageText:
  6160. //
  6161. // The system file %1 has become corrupt and has been replaced.
  6162. //
  6163. #define STATUS_CORRUPT_SYSTEM_FILE ((NTSTATUS)0xC00002C4L)
  6164. //
  6165. // MessageId: STATUS_DATATYPE_MISALIGNMENT_ERROR
  6166. //
  6167. // MessageText:
  6168. //
  6169. // {EXCEPTION}
  6170. // Alignment Error
  6171. // A datatype misalignment error was detected in a load or store instruction.
  6172. //
  6173. #define STATUS_DATATYPE_MISALIGNMENT_ERROR ((NTSTATUS)0xC00002C5L)
  6174. //
  6175. // MessageId: STATUS_WMI_READ_ONLY
  6176. //
  6177. // MessageText:
  6178. //
  6179. // The WMI data item or data block is read only.
  6180. //
  6181. #define STATUS_WMI_READ_ONLY ((NTSTATUS)0xC00002C6L)
  6182. //
  6183. // MessageId: STATUS_WMI_SET_FAILURE
  6184. //
  6185. // MessageText:
  6186. //
  6187. // The WMI data item or data block could not be changed.
  6188. //
  6189. #define STATUS_WMI_SET_FAILURE ((NTSTATUS)0xC00002C7L)
  6190. //
  6191. // MessageId: STATUS_COMMITMENT_MINIMUM
  6192. //
  6193. // MessageText:
  6194. //
  6195. // {Virtual Memory Minimum Too Low}
  6196. // Your system is low on virtual memory. Windows is increasing the size of your virtual memory paging file.
  6197. // During this process, memory requests for some applications may be denied. For more information, see Help.
  6198. //
  6199. #define STATUS_COMMITMENT_MINIMUM ((NTSTATUS)0xC00002C8L)
  6200. //
  6201. // MessageId: STATUS_REG_NAT_CONSUMPTION
  6202. //
  6203. // MessageText:
  6204. //
  6205. // {EXCEPTION}
  6206. // Register NaT consumption faults.
  6207. // A NaT value is consumed on a non speculative instruction.
  6208. //
  6209. #define STATUS_REG_NAT_CONSUMPTION ((NTSTATUS)0xC00002C9L) // winnt
  6210. //
  6211. // MessageId: STATUS_TRANSPORT_FULL
  6212. //
  6213. // MessageText:
  6214. //
  6215. // The medium changer's transport element contains media, which is causing the operation to fail.
  6216. //
  6217. #define STATUS_TRANSPORT_FULL ((NTSTATUS)0xC00002CAL)
  6218. //
  6219. // MessageId: STATUS_DS_SAM_INIT_FAILURE
  6220. //
  6221. // MessageText:
  6222. //
  6223. // Security Accounts Manager initialization failed because of the following error:
  6224. // %hs
  6225. // Error Status: 0x%x.
  6226. // Please click OK to shutdown this system and reboot into Directory Services Restore Mode, check the event log for more detailed information.
  6227. //
  6228. #define STATUS_DS_SAM_INIT_FAILURE ((NTSTATUS)0xC00002CBL)
  6229. //
  6230. // MessageId: STATUS_ONLY_IF_CONNECTED
  6231. //
  6232. // MessageText:
  6233. //
  6234. // This operation is supported only when you are connected to the server.
  6235. //
  6236. #define STATUS_ONLY_IF_CONNECTED ((NTSTATUS)0xC00002CCL)
  6237. //
  6238. // MessageId: STATUS_DS_SENSITIVE_GROUP_VIOLATION
  6239. //
  6240. // MessageText:
  6241. //
  6242. // Only an administrator can modify the membership list of an administrative group.
  6243. //
  6244. #define STATUS_DS_SENSITIVE_GROUP_VIOLATION ((NTSTATUS)0xC00002CDL)
  6245. //
  6246. // MessageId: STATUS_PNP_RESTART_ENUMERATION
  6247. //
  6248. // MessageText:
  6249. //
  6250. // A device was removed so enumeration must be restarted.
  6251. //
  6252. #define STATUS_PNP_RESTART_ENUMERATION ((NTSTATUS)0xC00002CEL)
  6253. //
  6254. // MessageId: STATUS_JOURNAL_ENTRY_DELETED
  6255. //
  6256. // MessageText:
  6257. //
  6258. // The journal entry has been deleted from the journal.
  6259. //
  6260. #define STATUS_JOURNAL_ENTRY_DELETED ((NTSTATUS)0xC00002CFL)
  6261. //
  6262. // MessageId: STATUS_DS_CANT_MOD_PRIMARYGROUPID
  6263. //
  6264. // MessageText:
  6265. //
  6266. // Cannot change the primary group ID of a domain controller account.
  6267. //
  6268. #define STATUS_DS_CANT_MOD_PRIMARYGROUPID ((NTSTATUS)0xC00002D0L)
  6269. //
  6270. // MessageId: STATUS_SYSTEM_IMAGE_BAD_SIGNATURE
  6271. //
  6272. // MessageText:
  6273. //
  6274. // {Fatal System Error}
  6275. // The system image %s is not properly signed.
  6276. // The file has been replaced with the signed file.
  6277. // The system has been shut down.
  6278. //
  6279. #define STATUS_SYSTEM_IMAGE_BAD_SIGNATURE ((NTSTATUS)0xC00002D1L)
  6280. //
  6281. // MessageId: STATUS_PNP_REBOOT_REQUIRED
  6282. //
  6283. // MessageText:
  6284. //
  6285. // Device will not start without a reboot.
  6286. //
  6287. #define STATUS_PNP_REBOOT_REQUIRED ((NTSTATUS)0xC00002D2L)
  6288. //
  6289. // MessageId: STATUS_POWER_STATE_INVALID
  6290. //
  6291. // MessageText:
  6292. //
  6293. // Current device power state cannot support this request.
  6294. //
  6295. #define STATUS_POWER_STATE_INVALID ((NTSTATUS)0xC00002D3L)
  6296. //
  6297. // MessageId: STATUS_DS_INVALID_GROUP_TYPE
  6298. //
  6299. // MessageText:
  6300. //
  6301. // The specified group type is invalid.
  6302. //
  6303. #define STATUS_DS_INVALID_GROUP_TYPE ((NTSTATUS)0xC00002D4L)
  6304. //
  6305. // MessageId: STATUS_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN
  6306. //
  6307. // MessageText:
  6308. //
  6309. // In mixed domain no nesting of global group if group is security enabled.
  6310. //
  6311. #define STATUS_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN ((NTSTATUS)0xC00002D5L)
  6312. //
  6313. // MessageId: STATUS_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN
  6314. //
  6315. // MessageText:
  6316. //
  6317. // In mixed domain, cannot nest local groups with other local groups, if the group is security enabled.
  6318. //
  6319. #define STATUS_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN ((NTSTATUS)0xC00002D6L)
  6320. //
  6321. // MessageId: STATUS_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER
  6322. //
  6323. // MessageText:
  6324. //
  6325. // A global group cannot have a local group as a member.
  6326. //
  6327. #define STATUS_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER ((NTSTATUS)0xC00002D7L)
  6328. //
  6329. // MessageId: STATUS_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER
  6330. //
  6331. // MessageText:
  6332. //
  6333. // A global group cannot have a universal group as a member.
  6334. //
  6335. #define STATUS_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER ((NTSTATUS)0xC00002D8L)
  6336. //
  6337. // MessageId: STATUS_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER
  6338. //
  6339. // MessageText:
  6340. //
  6341. // A universal group cannot have a local group as a member.
  6342. //
  6343. #define STATUS_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER ((NTSTATUS)0xC00002D9L)
  6344. //
  6345. // MessageId: STATUS_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER
  6346. //
  6347. // MessageText:
  6348. //
  6349. // A global group cannot have a cross domain member.
  6350. //
  6351. #define STATUS_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER ((NTSTATUS)0xC00002DAL)
  6352. //
  6353. // MessageId: STATUS_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER
  6354. //
  6355. // MessageText:
  6356. //
  6357. // A local group cannot have another cross domain local group as a member.
  6358. //
  6359. #define STATUS_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER ((NTSTATUS)0xC00002DBL)
  6360. //
  6361. // MessageId: STATUS_DS_HAVE_PRIMARY_MEMBERS
  6362. //
  6363. // MessageText:
  6364. //
  6365. // Can not change to security disabled group because of having primary members in this group.
  6366. //
  6367. #define STATUS_DS_HAVE_PRIMARY_MEMBERS ((NTSTATUS)0xC00002DCL)
  6368. //
  6369. // MessageId: STATUS_WMI_NOT_SUPPORTED
  6370. //
  6371. // MessageText:
  6372. //
  6373. // The WMI operation is not supported by the data block or method.
  6374. //
  6375. #define STATUS_WMI_NOT_SUPPORTED ((NTSTATUS)0xC00002DDL)
  6376. //
  6377. // MessageId: STATUS_INSUFFICIENT_POWER
  6378. //
  6379. // MessageText:
  6380. //
  6381. // There is not enough power to complete the requested operation.
  6382. //
  6383. #define STATUS_INSUFFICIENT_POWER ((NTSTATUS)0xC00002DEL)
  6384. //
  6385. // MessageId: STATUS_SAM_NEED_BOOTKEY_PASSWORD
  6386. //
  6387. // MessageText:
  6388. //
  6389. // Security Account Manager needs to get the boot password.
  6390. //
  6391. #define STATUS_SAM_NEED_BOOTKEY_PASSWORD ((NTSTATUS)0xC00002DFL)
  6392. //
  6393. // MessageId: STATUS_SAM_NEED_BOOTKEY_FLOPPY
  6394. //
  6395. // MessageText:
  6396. //
  6397. // Security Account Manager needs to get the boot key from floppy disk.
  6398. //
  6399. #define STATUS_SAM_NEED_BOOTKEY_FLOPPY ((NTSTATUS)0xC00002E0L)
  6400. //
  6401. // MessageId: STATUS_DS_CANT_START
  6402. //
  6403. // MessageText:
  6404. //
  6405. // Directory Service can not start.
  6406. //
  6407. #define STATUS_DS_CANT_START ((NTSTATUS)0xC00002E1L)
  6408. //
  6409. // MessageId: STATUS_DS_INIT_FAILURE
  6410. //
  6411. // MessageText:
  6412. //
  6413. // Directory Services could not start because of the following error:
  6414. // %hs
  6415. // Error Status: 0x%x.
  6416. // Please click OK to shutdown this system and reboot into Directory Services Restore Mode, check the event log for more detailed information.
  6417. //
  6418. #define STATUS_DS_INIT_FAILURE ((NTSTATUS)0xC00002E2L)
  6419. //
  6420. // MessageId: STATUS_SAM_INIT_FAILURE
  6421. //
  6422. // MessageText:
  6423. //
  6424. // Security Accounts Manager initialization failed because of the following error:
  6425. // %hs
  6426. // Error Status: 0x%x.
  6427. // Please click OK to shutdown this system and reboot into Safe Mode, check the event log for more detailed information.
  6428. //
  6429. #define STATUS_SAM_INIT_FAILURE ((NTSTATUS)0xC00002E3L)
  6430. //
  6431. // MessageId: STATUS_DS_GC_REQUIRED
  6432. //
  6433. // MessageText:
  6434. //
  6435. // The requested operation can be performed only on a global catalog server.
  6436. //
  6437. #define STATUS_DS_GC_REQUIRED ((NTSTATUS)0xC00002E4L)
  6438. //
  6439. // MessageId: STATUS_DS_LOCAL_MEMBER_OF_LOCAL_ONLY
  6440. //
  6441. // MessageText:
  6442. //
  6443. // A local group can only be a member of other local groups in the same domain.
  6444. //
  6445. #define STATUS_DS_LOCAL_MEMBER_OF_LOCAL_ONLY ((NTSTATUS)0xC00002E5L)
  6446. //
  6447. // MessageId: STATUS_DS_NO_FPO_IN_UNIVERSAL_GROUPS
  6448. //
  6449. // MessageText:
  6450. //
  6451. // Foreign security principals cannot be members of universal groups.
  6452. //
  6453. #define STATUS_DS_NO_FPO_IN_UNIVERSAL_GROUPS ((NTSTATUS)0xC00002E6L)
  6454. //
  6455. // MessageId: STATUS_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED
  6456. //
  6457. // MessageText:
  6458. //
  6459. // 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.
  6460. //
  6461. #define STATUS_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED ((NTSTATUS)0xC00002E7L)
  6462. //
  6463. // MessageId: STATUS_MULTIPLE_FAULT_VIOLATION
  6464. //
  6465. // MessageText:
  6466. //
  6467. // STATUS_MULTIPLE_FAULT_VIOLATION
  6468. //
  6469. #define STATUS_MULTIPLE_FAULT_VIOLATION ((NTSTATUS)0xC00002E8L)
  6470. //
  6471. // MessageId: STATUS_CURRENT_DOMAIN_NOT_ALLOWED
  6472. //
  6473. // MessageText:
  6474. //
  6475. // This operation can not be performed on the current domain.
  6476. //
  6477. #define STATUS_CURRENT_DOMAIN_NOT_ALLOWED ((NTSTATUS)0xC00002E9L)
  6478. //
  6479. // MessageId: STATUS_CANNOT_MAKE
  6480. //
  6481. // MessageText:
  6482. //
  6483. // The directory or file cannot be created.
  6484. //
  6485. #define STATUS_CANNOT_MAKE ((NTSTATUS)0xC00002EAL)
  6486. //
  6487. // MessageId: STATUS_SYSTEM_SHUTDOWN
  6488. //
  6489. // MessageText:
  6490. //
  6491. // The system is in the process of shutting down.
  6492. //
  6493. #define STATUS_SYSTEM_SHUTDOWN ((NTSTATUS)0xC00002EBL)
  6494. //
  6495. // MessageId: STATUS_DS_INIT_FAILURE_CONSOLE
  6496. //
  6497. // MessageText:
  6498. //
  6499. // Directory Services could not start because of the following error:
  6500. // %hs
  6501. // Error Status: 0x%x.
  6502. // Please click OK to shutdown the system. You can use the recovery console to diagnose the system further.
  6503. //
  6504. #define STATUS_DS_INIT_FAILURE_CONSOLE ((NTSTATUS)0xC00002ECL)
  6505. //
  6506. // MessageId: STATUS_DS_SAM_INIT_FAILURE_CONSOLE
  6507. //
  6508. // MessageText:
  6509. //
  6510. // Security Accounts Manager initialization failed because of the following error:
  6511. // %hs
  6512. // Error Status: 0x%x.
  6513. // Please click OK to shutdown the system. You can use the recovery console to diagnose the system further.
  6514. //
  6515. #define STATUS_DS_SAM_INIT_FAILURE_CONSOLE ((NTSTATUS)0xC00002EDL)
  6516. //
  6517. // MessageId: STATUS_UNFINISHED_CONTEXT_DELETED
  6518. //
  6519. // MessageText:
  6520. //
  6521. // A security context was deleted before the context was completed. This is considered a logon failure.
  6522. //
  6523. #define STATUS_UNFINISHED_CONTEXT_DELETED ((NTSTATUS)0xC00002EEL)
  6524. //
  6525. // MessageId: STATUS_NO_TGT_REPLY
  6526. //
  6527. // MessageText:
  6528. //
  6529. // The client is trying to negotiate a context and the server requires user-to-user but didn't send a TGT reply.
  6530. //
  6531. #define STATUS_NO_TGT_REPLY ((NTSTATUS)0xC00002EFL)
  6532. //
  6533. // MessageId: STATUS_OBJECTID_NOT_FOUND
  6534. //
  6535. // MessageText:
  6536. //
  6537. // An object ID was not found in the file.
  6538. //
  6539. #define STATUS_OBJECTID_NOT_FOUND ((NTSTATUS)0xC00002F0L)
  6540. //
  6541. // MessageId: STATUS_NO_IP_ADDRESSES
  6542. //
  6543. // MessageText:
  6544. //
  6545. // Unable to accomplish the requested task because the local machine does not have any IP addresses.
  6546. //
  6547. #define STATUS_NO_IP_ADDRESSES ((NTSTATUS)0xC00002F1L)
  6548. //
  6549. // MessageId: STATUS_WRONG_CREDENTIAL_HANDLE
  6550. //
  6551. // MessageText:
  6552. //
  6553. // The supplied credential handle does not match the credential associated with the security context.
  6554. //
  6555. #define STATUS_WRONG_CREDENTIAL_HANDLE ((NTSTATUS)0xC00002F2L)
  6556. //
  6557. // MessageId: STATUS_CRYPTO_SYSTEM_INVALID
  6558. //
  6559. // MessageText:
  6560. //
  6561. // The crypto system or checksum function is invalid because a required function is unavailable.
  6562. //
  6563. #define STATUS_CRYPTO_SYSTEM_INVALID ((NTSTATUS)0xC00002F3L)
  6564. //
  6565. // MessageId: STATUS_MAX_REFERRALS_EXCEEDED
  6566. //
  6567. // MessageText:
  6568. //
  6569. // The number of maximum ticket referrals has been exceeded.
  6570. //
  6571. #define STATUS_MAX_REFERRALS_EXCEEDED ((NTSTATUS)0xC00002F4L)
  6572. //
  6573. // MessageId: STATUS_MUST_BE_KDC
  6574. //
  6575. // MessageText:
  6576. //
  6577. // The local machine must be a Kerberos KDC (domain controller) and it is not.
  6578. //
  6579. #define STATUS_MUST_BE_KDC ((NTSTATUS)0xC00002F5L)
  6580. //
  6581. // MessageId: STATUS_STRONG_CRYPTO_NOT_SUPPORTED
  6582. //
  6583. // MessageText:
  6584. //
  6585. // The other end of the security negotiation is requires strong crypto but it is not supported on the local machine.
  6586. //
  6587. #define STATUS_STRONG_CRYPTO_NOT_SUPPORTED ((NTSTATUS)0xC00002F6L)
  6588. //
  6589. // MessageId: STATUS_TOO_MANY_PRINCIPALS
  6590. //
  6591. // MessageText:
  6592. //
  6593. // The KDC reply contained more than one principal name.
  6594. //
  6595. #define STATUS_TOO_MANY_PRINCIPALS ((NTSTATUS)0xC00002F7L)
  6596. //
  6597. // MessageId: STATUS_NO_PA_DATA
  6598. //
  6599. // MessageText:
  6600. //
  6601. // Expected to find PA data for a hint of what etype to use, but it was not found.
  6602. //
  6603. #define STATUS_NO_PA_DATA ((NTSTATUS)0xC00002F8L)
  6604. //
  6605. // MessageId: STATUS_PKINIT_NAME_MISMATCH
  6606. //
  6607. // MessageText:
  6608. //
  6609. // The client certificate does not contain a valid UPN, or does not match the client name
  6610. // in the logon request. Please contact your administrator.
  6611. //
  6612. #define STATUS_PKINIT_NAME_MISMATCH ((NTSTATUS)0xC00002F9L)
  6613. //
  6614. // MessageId: STATUS_SMARTCARD_LOGON_REQUIRED
  6615. //
  6616. // MessageText:
  6617. //
  6618. // Smartcard logon is required and was not used.
  6619. //
  6620. #define STATUS_SMARTCARD_LOGON_REQUIRED ((NTSTATUS)0xC00002FAL)
  6621. //
  6622. // MessageId: STATUS_KDC_INVALID_REQUEST
  6623. //
  6624. // MessageText:
  6625. //
  6626. // An invalid request was sent to the KDC.
  6627. //
  6628. #define STATUS_KDC_INVALID_REQUEST ((NTSTATUS)0xC00002FBL)
  6629. //
  6630. // MessageId: STATUS_KDC_UNABLE_TO_REFER
  6631. //
  6632. // MessageText:
  6633. //
  6634. // The KDC was unable to generate a referral for the service requested.
  6635. //
  6636. #define STATUS_KDC_UNABLE_TO_REFER ((NTSTATUS)0xC00002FCL)
  6637. //
  6638. // MessageId: STATUS_KDC_UNKNOWN_ETYPE
  6639. //
  6640. // MessageText:
  6641. //
  6642. // The encryption type requested is not supported by the KDC.
  6643. //
  6644. #define STATUS_KDC_UNKNOWN_ETYPE ((NTSTATUS)0xC00002FDL)
  6645. //
  6646. // MessageId: STATUS_SHUTDOWN_IN_PROGRESS
  6647. //
  6648. // MessageText:
  6649. //
  6650. // A system shutdown is in progress.
  6651. //
  6652. #define STATUS_SHUTDOWN_IN_PROGRESS ((NTSTATUS)0xC00002FEL)
  6653. //
  6654. // MessageId: STATUS_SERVER_SHUTDOWN_IN_PROGRESS
  6655. //
  6656. // MessageText:
  6657. //
  6658. // The server machine is shutting down.
  6659. //
  6660. #define STATUS_SERVER_SHUTDOWN_IN_PROGRESS ((NTSTATUS)0xC00002FFL)
  6661. //
  6662. // MessageId: STATUS_NOT_SUPPORTED_ON_SBS
  6663. //
  6664. // MessageText:
  6665. //
  6666. // This operation is not supported on a computer running Windows Server 2003 for Small Business Server
  6667. //
  6668. #define STATUS_NOT_SUPPORTED_ON_SBS ((NTSTATUS)0xC0000300L)
  6669. //
  6670. // MessageId: STATUS_WMI_GUID_DISCONNECTED
  6671. //
  6672. // MessageText:
  6673. //
  6674. // The WMI GUID is no longer available
  6675. //
  6676. #define STATUS_WMI_GUID_DISCONNECTED ((NTSTATUS)0xC0000301L)
  6677. //
  6678. // MessageId: STATUS_WMI_ALREADY_DISABLED
  6679. //
  6680. // MessageText:
  6681. //
  6682. // Collection or events for the WMI GUID is already disabled.
  6683. //
  6684. #define STATUS_WMI_ALREADY_DISABLED ((NTSTATUS)0xC0000302L)
  6685. //
  6686. // MessageId: STATUS_WMI_ALREADY_ENABLED
  6687. //
  6688. // MessageText:
  6689. //
  6690. // Collection or events for the WMI GUID is already enabled.
  6691. //
  6692. #define STATUS_WMI_ALREADY_ENABLED ((NTSTATUS)0xC0000303L)
  6693. //
  6694. // MessageId: STATUS_MFT_TOO_FRAGMENTED
  6695. //
  6696. // MessageText:
  6697. //
  6698. // The Master File Table on the volume is too fragmented to complete this operation.
  6699. //
  6700. #define STATUS_MFT_TOO_FRAGMENTED ((NTSTATUS)0xC0000304L)
  6701. //
  6702. // MessageId: STATUS_COPY_PROTECTION_FAILURE
  6703. //
  6704. // MessageText:
  6705. //
  6706. // Copy protection failure.
  6707. //
  6708. #define STATUS_COPY_PROTECTION_FAILURE ((NTSTATUS)0xC0000305L)
  6709. //
  6710. // MessageId: STATUS_CSS_AUTHENTICATION_FAILURE
  6711. //
  6712. // MessageText:
  6713. //
  6714. // Copy protection error - DVD CSS Authentication failed.
  6715. //
  6716. #define STATUS_CSS_AUTHENTICATION_FAILURE ((NTSTATUS)0xC0000306L)
  6717. //
  6718. // MessageId: STATUS_CSS_KEY_NOT_PRESENT
  6719. //
  6720. // MessageText:
  6721. //
  6722. // Copy protection error - The given sector does not contain a valid key.
  6723. //
  6724. #define STATUS_CSS_KEY_NOT_PRESENT ((NTSTATUS)0xC0000307L)
  6725. //
  6726. // MessageId: STATUS_CSS_KEY_NOT_ESTABLISHED
  6727. //
  6728. // MessageText:
  6729. //
  6730. // Copy protection error - DVD session key not established.
  6731. //
  6732. #define STATUS_CSS_KEY_NOT_ESTABLISHED ((NTSTATUS)0xC0000308L)
  6733. //
  6734. // MessageId: STATUS_CSS_SCRAMBLED_SECTOR
  6735. //
  6736. // MessageText:
  6737. //
  6738. // Copy protection error - The read failed because the sector is encrypted.
  6739. //
  6740. #define STATUS_CSS_SCRAMBLED_SECTOR ((NTSTATUS)0xC0000309L)
  6741. //
  6742. // MessageId: STATUS_CSS_REGION_MISMATCH
  6743. //
  6744. // MessageText:
  6745. //
  6746. // Copy protection error - The given DVD's region does not correspond to the
  6747. // region setting of the drive.
  6748. //
  6749. #define STATUS_CSS_REGION_MISMATCH ((NTSTATUS)0xC000030AL)
  6750. //
  6751. // MessageId: STATUS_CSS_RESETS_EXHAUSTED
  6752. //
  6753. // MessageText:
  6754. //
  6755. // Copy protection error - The drive's region setting may be permanent.
  6756. //
  6757. #define STATUS_CSS_RESETS_EXHAUSTED ((NTSTATUS)0xC000030BL)
  6758. /*++
  6759. MessageId's 0x030c - 0x031f (inclusive) are reserved for future **STORAGE**
  6760. copy protection errors.
  6761. --*/
  6762. //
  6763. // MessageId: STATUS_PKINIT_FAILURE
  6764. //
  6765. // MessageText:
  6766. //
  6767. // The kerberos protocol encountered an error while validating the KDC certificate during smartcard Logon. There
  6768. // is more information in the system event log.
  6769. //
  6770. #define STATUS_PKINIT_FAILURE ((NTSTATUS)0xC0000320L)
  6771. //
  6772. // MessageId: STATUS_SMARTCARD_SUBSYSTEM_FAILURE
  6773. //
  6774. // MessageText:
  6775. //
  6776. // The kerberos protocol encountered an error while attempting to utilize the smartcard subsystem.
  6777. //
  6778. #define STATUS_SMARTCARD_SUBSYSTEM_FAILURE ((NTSTATUS)0xC0000321L)
  6779. //
  6780. // MessageId: STATUS_NO_KERB_KEY
  6781. //
  6782. // MessageText:
  6783. //
  6784. // The target server does not have acceptable kerberos credentials.
  6785. //
  6786. #define STATUS_NO_KERB_KEY ((NTSTATUS)0xC0000322L)
  6787. /*++
  6788. MessageId's 0x0323 - 0x034f (inclusive) are reserved for other future copy
  6789. protection errors.
  6790. --*/
  6791. //
  6792. // MessageId: STATUS_HOST_DOWN
  6793. //
  6794. // MessageText:
  6795. //
  6796. // The transport determined that the remote system is down.
  6797. //
  6798. #define STATUS_HOST_DOWN ((NTSTATUS)0xC0000350L)
  6799. //
  6800. // MessageId: STATUS_UNSUPPORTED_PREAUTH
  6801. //
  6802. // MessageText:
  6803. //
  6804. // An unsupported preauthentication mechanism was presented to the kerberos package.
  6805. //
  6806. #define STATUS_UNSUPPORTED_PREAUTH ((NTSTATUS)0xC0000351L)
  6807. //
  6808. // MessageId: STATUS_EFS_ALG_BLOB_TOO_BIG
  6809. //
  6810. // MessageText:
  6811. //
  6812. // The encryption algorithm used on the source file needs a bigger key buffer than the one used on the destination file.
  6813. //
  6814. #define STATUS_EFS_ALG_BLOB_TOO_BIG ((NTSTATUS)0xC0000352L)
  6815. //
  6816. // MessageId: STATUS_PORT_NOT_SET
  6817. //
  6818. // MessageText:
  6819. //
  6820. // An attempt to remove a processes DebugPort was made, but a port was not already associated with the process.
  6821. //
  6822. #define STATUS_PORT_NOT_SET ((NTSTATUS)0xC0000353L)
  6823. //
  6824. // MessageId: STATUS_DEBUGGER_INACTIVE
  6825. //
  6826. // MessageText:
  6827. //
  6828. // An attempt to do an operation on a debug port failed because the port is in the process of being deleted.
  6829. //
  6830. #define STATUS_DEBUGGER_INACTIVE ((NTSTATUS)0xC0000354L)
  6831. //
  6832. // MessageId: STATUS_DS_VERSION_CHECK_FAILURE
  6833. //
  6834. // MessageText:
  6835. //
  6836. // This version of Windows is not compatible with the behavior version of directory forest, domain or domain controller.
  6837. //
  6838. #define STATUS_DS_VERSION_CHECK_FAILURE ((NTSTATUS)0xC0000355L)
  6839. //
  6840. // MessageId: STATUS_AUDITING_DISABLED
  6841. //
  6842. // MessageText:
  6843. //
  6844. // The specified event is currently not being audited.
  6845. //
  6846. #define STATUS_AUDITING_DISABLED ((NTSTATUS)0xC0000356L)
  6847. //
  6848. // MessageId: STATUS_PRENT4_MACHINE_ACCOUNT
  6849. //
  6850. // MessageText:
  6851. //
  6852. // The machine account was created pre-NT4. The account needs to be recreated.
  6853. //
  6854. #define STATUS_PRENT4_MACHINE_ACCOUNT ((NTSTATUS)0xC0000357L)
  6855. //
  6856. // MessageId: STATUS_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER
  6857. //
  6858. // MessageText:
  6859. //
  6860. // A account group can not have a universal group as a member.
  6861. //
  6862. #define STATUS_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER ((NTSTATUS)0xC0000358L)
  6863. //
  6864. // MessageId: STATUS_INVALID_IMAGE_WIN_32
  6865. //
  6866. // MessageText:
  6867. //
  6868. // The specified image file did not have the correct format, it appears to be a 32-bit Windows image.
  6869. //
  6870. #define STATUS_INVALID_IMAGE_WIN_32 ((NTSTATUS)0xC0000359L)
  6871. //
  6872. // MessageId: STATUS_INVALID_IMAGE_WIN_64
  6873. //
  6874. // MessageText:
  6875. //
  6876. // The specified image file did not have the correct format, it appears to be a 64-bit Windows image.
  6877. //
  6878. #define STATUS_INVALID_IMAGE_WIN_64 ((NTSTATUS)0xC000035AL)
  6879. //
  6880. // MessageId: STATUS_BAD_BINDINGS
  6881. //
  6882. // MessageText:
  6883. //
  6884. // Client's supplied SSPI channel bindings were incorrect.
  6885. //
  6886. #define STATUS_BAD_BINDINGS ((NTSTATUS)0xC000035BL)
  6887. //
  6888. // MessageId: STATUS_NETWORK_SESSION_EXPIRED
  6889. //
  6890. // MessageText:
  6891. //
  6892. // The client's session has expired, so the client must reauthenticate to continue accessing the remote resources.
  6893. //
  6894. #define STATUS_NETWORK_SESSION_EXPIRED ((NTSTATUS)0xC000035CL)
  6895. //
  6896. // MessageId: STATUS_APPHELP_BLOCK
  6897. //
  6898. // MessageText:
  6899. //
  6900. // AppHelp dialog canceled thus preventing the application from starting.
  6901. //
  6902. #define STATUS_APPHELP_BLOCK ((NTSTATUS)0xC000035DL)
  6903. //
  6904. // MessageId: STATUS_ALL_SIDS_FILTERED
  6905. //
  6906. // MessageText:
  6907. //
  6908. // The SID filtering operation removed all SIDs.
  6909. //
  6910. #define STATUS_ALL_SIDS_FILTERED ((NTSTATUS)0xC000035EL)
  6911. //
  6912. // MessageId: STATUS_NOT_SAFE_MODE_DRIVER
  6913. //
  6914. // MessageText:
  6915. //
  6916. // The driver was not loaded because the system is booting into safe mode.
  6917. //
  6918. #define STATUS_NOT_SAFE_MODE_DRIVER ((NTSTATUS)0xC000035FL)
  6919. //
  6920. // MessageId: STATUS_ACCESS_DISABLED_BY_POLICY_DEFAULT
  6921. //
  6922. // MessageText:
  6923. //
  6924. // Access to %1 has been restricted by your Administrator by the default software restriction policy level.
  6925. //
  6926. #define STATUS_ACCESS_DISABLED_BY_POLICY_DEFAULT ((NTSTATUS)0xC0000361L)
  6927. //
  6928. // MessageId: STATUS_ACCESS_DISABLED_BY_POLICY_PATH
  6929. //
  6930. // MessageText:
  6931. //
  6932. // Access to %1 has been restricted by your Administrator by location with policy rule %2 placed on path %3
  6933. //
  6934. #define STATUS_ACCESS_DISABLED_BY_POLICY_PATH ((NTSTATUS)0xC0000362L)
  6935. //
  6936. // MessageId: STATUS_ACCESS_DISABLED_BY_POLICY_PUBLISHER
  6937. //
  6938. // MessageText:
  6939. //
  6940. // Access to %1 has been restricted by your Administrator by software publisher policy.
  6941. //
  6942. #define STATUS_ACCESS_DISABLED_BY_POLICY_PUBLISHER ((NTSTATUS)0xC0000363L)
  6943. //
  6944. // MessageId: STATUS_ACCESS_DISABLED_BY_POLICY_OTHER
  6945. //
  6946. // MessageText:
  6947. //
  6948. // Access to %1 has been restricted by your Administrator by policy rule %2.
  6949. //
  6950. #define STATUS_ACCESS_DISABLED_BY_POLICY_OTHER ((NTSTATUS)0xC0000364L)
  6951. //
  6952. // MessageId: STATUS_FAILED_DRIVER_ENTRY
  6953. //
  6954. // MessageText:
  6955. //
  6956. // The driver was not loaded because it failed it's initialization call.
  6957. //
  6958. #define STATUS_FAILED_DRIVER_ENTRY ((NTSTATUS)0xC0000365L)
  6959. //
  6960. // MessageId: STATUS_DEVICE_ENUMERATION_ERROR
  6961. //
  6962. // MessageText:
  6963. //
  6964. // The "%hs" encountered an error while applying power or reading the device configuration.
  6965. // This may be caused by a failure of your hardware or by a poor connection.
  6966. //
  6967. #define STATUS_DEVICE_ENUMERATION_ERROR ((NTSTATUS)0xC0000366L)
  6968. //
  6969. // MessageId: STATUS_WAIT_FOR_OPLOCK
  6970. //
  6971. // MessageText:
  6972. //
  6973. // An operation is blocked waiting for an oplock.
  6974. //
  6975. #define STATUS_WAIT_FOR_OPLOCK ((NTSTATUS)0x00000367L)
  6976. //
  6977. // MessageId: STATUS_MOUNT_POINT_NOT_RESOLVED
  6978. //
  6979. // MessageText:
  6980. //
  6981. // The create operation failed because the name contained at least one mount point which resolves to a volume to which the specified device object is not attached.
  6982. //
  6983. #define STATUS_MOUNT_POINT_NOT_RESOLVED ((NTSTATUS)0xC0000368L)
  6984. //
  6985. // MessageId: STATUS_INVALID_DEVICE_OBJECT_PARAMETER
  6986. //
  6987. // MessageText:
  6988. //
  6989. // The device object parameter is either not a valid device object or is not attached to the volume specified by the file name.
  6990. //
  6991. #define STATUS_INVALID_DEVICE_OBJECT_PARAMETER ((NTSTATUS)0xC0000369L)
  6992. //
  6993. // MessageId: STATUS_MCA_OCCURED
  6994. //
  6995. // MessageText:
  6996. //
  6997. // A Machine Check Error has occurred. Please check the system eventlog for additional information.
  6998. //
  6999. #define STATUS_MCA_OCCURED ((NTSTATUS)0xC000036AL)
  7000. //
  7001. // MessageId: STATUS_DRIVER_BLOCKED_CRITICAL
  7002. //
  7003. // MessageText:
  7004. //
  7005. // Driver %2 has been blocked from loading.
  7006. //
  7007. #define STATUS_DRIVER_BLOCKED_CRITICAL ((NTSTATUS)0xC000036BL)
  7008. //
  7009. // MessageId: STATUS_DRIVER_BLOCKED
  7010. //
  7011. // MessageText:
  7012. //
  7013. // Driver %2 has been blocked from loading.
  7014. //
  7015. #define STATUS_DRIVER_BLOCKED ((NTSTATUS)0xC000036CL)
  7016. //
  7017. // MessageId: STATUS_DRIVER_DATABASE_ERROR
  7018. //
  7019. // MessageText:
  7020. //
  7021. // There was error [%2] processing the driver database.
  7022. //
  7023. #define STATUS_DRIVER_DATABASE_ERROR ((NTSTATUS)0xC000036DL)
  7024. //
  7025. // MessageId: STATUS_SYSTEM_HIVE_TOO_LARGE
  7026. //
  7027. // MessageText:
  7028. //
  7029. // System hive size has exceeded its limit.
  7030. //
  7031. #define STATUS_SYSTEM_HIVE_TOO_LARGE ((NTSTATUS)0xC000036EL)
  7032. //
  7033. // MessageId: STATUS_INVALID_IMPORT_OF_NON_DLL
  7034. //
  7035. // MessageText:
  7036. //
  7037. // A dynamic link library (DLL) referenced a module that was neither a DLL nor the process's executable image.
  7038. //
  7039. #define STATUS_INVALID_IMPORT_OF_NON_DLL ((NTSTATUS)0xC000036FL)
  7040. //
  7041. // MessageId: STATUS_DS_SHUTTING_DOWN
  7042. //
  7043. // MessageText:
  7044. //
  7045. // The Directory Service is shuting down.
  7046. //
  7047. #define STATUS_DS_SHUTTING_DOWN ((NTSTATUS)0x40000370L)
  7048. //
  7049. // MessageId: STATUS_SMARTCARD_WRONG_PIN
  7050. //
  7051. // MessageText:
  7052. //
  7053. // An incorrect PIN was presented to the smart card
  7054. //
  7055. #define STATUS_SMARTCARD_WRONG_PIN ((NTSTATUS)0xC0000380L)
  7056. //
  7057. // MessageId: STATUS_SMARTCARD_CARD_BLOCKED
  7058. //
  7059. // MessageText:
  7060. //
  7061. // The smart card is blocked
  7062. //
  7063. #define STATUS_SMARTCARD_CARD_BLOCKED ((NTSTATUS)0xC0000381L)
  7064. //
  7065. // MessageId: STATUS_SMARTCARD_CARD_NOT_AUTHENTICATED
  7066. //
  7067. // MessageText:
  7068. //
  7069. // No PIN was presented to the smart card
  7070. //
  7071. #define STATUS_SMARTCARD_CARD_NOT_AUTHENTICATED ((NTSTATUS)0xC0000382L)
  7072. //
  7073. // MessageId: STATUS_SMARTCARD_NO_CARD
  7074. //
  7075. // MessageText:
  7076. //
  7077. // No smart card available
  7078. //
  7079. #define STATUS_SMARTCARD_NO_CARD ((NTSTATUS)0xC0000383L)
  7080. //
  7081. // MessageId: STATUS_SMARTCARD_NO_KEY_CONTAINER
  7082. //
  7083. // MessageText:
  7084. //
  7085. // The requested key container does not exist on the smart card
  7086. //
  7087. #define STATUS_SMARTCARD_NO_KEY_CONTAINER ((NTSTATUS)0xC0000384L)
  7088. //
  7089. // MessageId: STATUS_SMARTCARD_NO_CERTIFICATE
  7090. //
  7091. // MessageText:
  7092. //
  7093. // The requested certificate does not exist on the smart card
  7094. //
  7095. #define STATUS_SMARTCARD_NO_CERTIFICATE ((NTSTATUS)0xC0000385L)
  7096. //
  7097. // MessageId: STATUS_SMARTCARD_NO_KEYSET
  7098. //
  7099. // MessageText:
  7100. //
  7101. // The requested keyset does not exist
  7102. //
  7103. #define STATUS_SMARTCARD_NO_KEYSET ((NTSTATUS)0xC0000386L)
  7104. //
  7105. // MessageId: STATUS_SMARTCARD_IO_ERROR
  7106. //
  7107. // MessageText:
  7108. //
  7109. // A communication error with the smart card has been detected.
  7110. //
  7111. #define STATUS_SMARTCARD_IO_ERROR ((NTSTATUS)0xC0000387L)
  7112. //
  7113. // MessageId: STATUS_DOWNGRADE_DETECTED
  7114. //
  7115. // MessageText:
  7116. //
  7117. // The system detected a possible attempt to compromise security. Please ensure that you can contact the server that authenticated you.
  7118. //
  7119. #define STATUS_DOWNGRADE_DETECTED ((NTSTATUS)0xC0000388L)
  7120. //
  7121. // MessageId: STATUS_SMARTCARD_CERT_REVOKED
  7122. //
  7123. // MessageText:
  7124. //
  7125. // The smartcard certificate used for authentication has been revoked.
  7126. // Please contact your system administrator. There may be additional information in the
  7127. // event log.
  7128. //
  7129. #define STATUS_SMARTCARD_CERT_REVOKED ((NTSTATUS)0xC0000389L)
  7130. //
  7131. // MessageId: STATUS_ISSUING_CA_UNTRUSTED
  7132. //
  7133. // MessageText:
  7134. //
  7135. // An untrusted certificate authority was detected While processing the
  7136. // smartcard certificate used for authentication. Please contact your system
  7137. // administrator.
  7138. //
  7139. #define STATUS_ISSUING_CA_UNTRUSTED ((NTSTATUS)0xC000038AL)
  7140. //
  7141. // MessageId: STATUS_REVOCATION_OFFLINE_C
  7142. //
  7143. // MessageText:
  7144. //
  7145. // The revocation status of the smartcard certificate used for
  7146. // authentication could not be determined. Please contact your system administrator.
  7147. //
  7148. #define STATUS_REVOCATION_OFFLINE_C ((NTSTATUS)0xC000038BL)
  7149. //
  7150. // MessageId: STATUS_PKINIT_CLIENT_FAILURE
  7151. //
  7152. // MessageText:
  7153. //
  7154. // The smartcard certificate used for authentication was not trusted. Please
  7155. // contact your system administrator.
  7156. //
  7157. #define STATUS_PKINIT_CLIENT_FAILURE ((NTSTATUS)0xC000038CL)
  7158. //
  7159. // MessageId: STATUS_SMARTCARD_CERT_EXPIRED
  7160. //
  7161. // MessageText:
  7162. //
  7163. // The smartcard certificate used for authentication has expired. Please
  7164. // contact your system administrator.
  7165. //
  7166. #define STATUS_SMARTCARD_CERT_EXPIRED ((NTSTATUS)0xC000038DL)
  7167. //
  7168. // MessageId: STATUS_DRIVER_FAILED_PRIOR_UNLOAD
  7169. //
  7170. // MessageText:
  7171. //
  7172. // The driver could not be loaded because a previous version of the driver is still in memory.
  7173. //
  7174. #define STATUS_DRIVER_FAILED_PRIOR_UNLOAD ((NTSTATUS)0xC000038EL)
  7175. //
  7176. // MessageId: STATUS_SMARTCARD_SILENT_CONTEXT
  7177. //
  7178. // MessageText:
  7179. //
  7180. // The smartcard provider could not perform the action since the context was acquired as silent.
  7181. //
  7182. #define STATUS_SMARTCARD_SILENT_CONTEXT ((NTSTATUS)0xC000038FL)
  7183. /* MessageId up to 0x400 is reserved for smart cards */
  7184. //
  7185. // MessageId: STATUS_PER_USER_TRUST_QUOTA_EXCEEDED
  7186. //
  7187. // MessageText:
  7188. //
  7189. // The current user's delegated trust creation quota has been exceeded.
  7190. //
  7191. #define STATUS_PER_USER_TRUST_QUOTA_EXCEEDED ((NTSTATUS)0xC0000401L)
  7192. //
  7193. // MessageId: STATUS_ALL_USER_TRUST_QUOTA_EXCEEDED
  7194. //
  7195. // MessageText:
  7196. //
  7197. // The total delegated trust creation quota has been exceeded.
  7198. //
  7199. #define STATUS_ALL_USER_TRUST_QUOTA_EXCEEDED ((NTSTATUS)0xC0000402L)
  7200. //
  7201. // MessageId: STATUS_USER_DELETE_TRUST_QUOTA_EXCEEDED
  7202. //
  7203. // MessageText:
  7204. //
  7205. // The current user's delegated trust deletion quota has been exceeded.
  7206. //
  7207. #define STATUS_USER_DELETE_TRUST_QUOTA_EXCEEDED ((NTSTATUS)0xC0000403L)
  7208. //
  7209. // MessageId: STATUS_DS_NAME_NOT_UNIQUE
  7210. //
  7211. // MessageText:
  7212. //
  7213. // The requested name already exists as a unique identifier.
  7214. //
  7215. #define STATUS_DS_NAME_NOT_UNIQUE ((NTSTATUS)0xC0000404L)
  7216. //
  7217. // MessageId: STATUS_DS_DUPLICATE_ID_FOUND
  7218. //
  7219. // MessageText:
  7220. //
  7221. // The requested object has a non-unique identifier and cannot be retrieved.
  7222. //
  7223. #define STATUS_DS_DUPLICATE_ID_FOUND ((NTSTATUS)0xC0000405L)
  7224. //
  7225. // MessageId: STATUS_DS_GROUP_CONVERSION_ERROR
  7226. //
  7227. // MessageText:
  7228. //
  7229. // The group cannot be converted due to attribute restrictions on the requested group type.
  7230. //
  7231. #define STATUS_DS_GROUP_CONVERSION_ERROR ((NTSTATUS)0xC0000406L)
  7232. //
  7233. // MessageId: STATUS_VOLSNAP_PREPARE_HIBERNATE
  7234. //
  7235. // MessageText:
  7236. //
  7237. // {Volume Shadow Copy Service}
  7238. // Please wait while the Volume Shadow Copy Service prepares volume %hs for hibernation.
  7239. //
  7240. #define STATUS_VOLSNAP_PREPARE_HIBERNATE ((NTSTATUS)0xC0000407L)
  7241. //
  7242. // MessageId: STATUS_USER2USER_REQUIRED
  7243. //
  7244. // MessageText:
  7245. //
  7246. // Kerberos sub-protocol User2User is required.
  7247. //
  7248. #define STATUS_USER2USER_REQUIRED ((NTSTATUS)0xC0000408L)
  7249. //
  7250. // MessageId: STATUS_STACK_BUFFER_OVERRUN
  7251. //
  7252. // MessageText:
  7253. //
  7254. // The system detected an overrun of a stack-based buffer in this application. This
  7255. // overrun could potentially allow a malicious user to gain control of this application.
  7256. //
  7257. #define STATUS_STACK_BUFFER_OVERRUN ((NTSTATUS)0xC0000409L)
  7258. //
  7259. // MessageId: STATUS_NO_S4U_PROT_SUPPORT
  7260. //
  7261. // MessageText:
  7262. //
  7263. // The Kerberos subsystem encountered an error. A service for user protocol request was made
  7264. // against a domain controller which does not support service for user.
  7265. //
  7266. #define STATUS_NO_S4U_PROT_SUPPORT ((NTSTATUS)0xC000040AL)
  7267. //
  7268. // MessageId: STATUS_CROSSREALM_DELEGATION_FAILURE
  7269. //
  7270. // MessageText:
  7271. //
  7272. // An attempt was made by this server to make a Kerberos constrained delegation request for a target
  7273. // outside of the server's realm. This is not supported, and indicates a misconfiguration on this
  7274. // server's allowed to delegate to list. Please contact your administrator.
  7275. //
  7276. #define STATUS_CROSSREALM_DELEGATION_FAILURE ((NTSTATUS)0xC000040BL)
  7277. //
  7278. // MessageId: STATUS_REVOCATION_OFFLINE_KDC
  7279. //
  7280. // MessageText:
  7281. //
  7282. // The revocation status of the domain controller certificate used for smartcard
  7283. // authentication could not be determined. There is additional information in the system event
  7284. // log. Please contact your system administrator.
  7285. //
  7286. #define STATUS_REVOCATION_OFFLINE_KDC ((NTSTATUS)0xC000040CL)
  7287. //
  7288. // MessageId: STATUS_ISSUING_CA_UNTRUSTED_KDC
  7289. //
  7290. // MessageText:
  7291. //
  7292. // An untrusted certificate authority was detected while processing the
  7293. // domain controller certificate used for authentication. There is additional information in
  7294. // the system event log. Please contact your system administrator.
  7295. //
  7296. #define STATUS_ISSUING_CA_UNTRUSTED_KDC ((NTSTATUS)0xC000040DL)
  7297. //
  7298. // MessageId: STATUS_KDC_CERT_EXPIRED
  7299. //
  7300. // MessageText:
  7301. //
  7302. // The domain controller certificate used for smartcard logon has expired.
  7303. // Please contact your system administrator with the contents of your system event log.
  7304. //
  7305. #define STATUS_KDC_CERT_EXPIRED ((NTSTATUS)0xC000040EL)
  7306. //
  7307. // MessageId: STATUS_KDC_CERT_REVOKED
  7308. //
  7309. // MessageText:
  7310. //
  7311. // The domain controller certificate used for smartcard logon has been revoked.
  7312. // Please contact your system administrator with the contents of your system event log.
  7313. //
  7314. #define STATUS_KDC_CERT_REVOKED ((NTSTATUS)0xC000040FL)
  7315. //
  7316. // MessageId: STATUS_PARAMETER_QUOTA_EXCEEDED
  7317. //
  7318. // MessageText:
  7319. //
  7320. // Data present in one of the parameters is more than the function can operate on.
  7321. //
  7322. #define STATUS_PARAMETER_QUOTA_EXCEEDED ((NTSTATUS)0xC0000410L)
  7323. //
  7324. // MessageId: STATUS_HIBERNATION_FAILURE
  7325. //
  7326. // MessageText:
  7327. //
  7328. // The system has failed to hibernate (The error code is %hs). Hibernation will be disabled until the system is restarted.
  7329. //
  7330. #define STATUS_HIBERNATION_FAILURE ((NTSTATUS)0xC0000411L)
  7331. //
  7332. // MessageId: STATUS_DELAY_LOAD_FAILED
  7333. //
  7334. // MessageText:
  7335. //
  7336. // An attempt to delay-load a .dll or get a function address in a delay-loaded .dll failed.
  7337. //
  7338. #define STATUS_DELAY_LOAD_FAILED ((NTSTATUS)0xC0000412L)
  7339. //
  7340. // MessageId: STATUS_AUTHENTICATION_FIREWALL_FAILED
  7341. //
  7342. // MessageText:
  7343. //
  7344. // Logon Failure: The machine you are logging onto is protected by an authentication firewall. The specified account is not allowed to authenticate to the machine.
  7345. //
  7346. #define STATUS_AUTHENTICATION_FIREWALL_FAILED ((NTSTATUS)0xC0000413L)
  7347. //
  7348. // MessageId: STATUS_VDM_DISALLOWED
  7349. //
  7350. // MessageText:
  7351. //
  7352. // %hs is a 16-bit application. You do not have permissions to execute 16-bit applications. Check your permissions with your system administrator.
  7353. //
  7354. #define STATUS_VDM_DISALLOWED ((NTSTATUS)0xC0000414L)
  7355. //
  7356. // MessageId: STATUS_HUNG_DISPLAY_DRIVER_THREAD
  7357. //
  7358. // MessageText:
  7359. //
  7360. // {Display Driver Stopped Responding}
  7361. // The %hs display driver has stopped working normally. Save your work and reboot the system to restore full display functionality.
  7362. // The next time you reboot the machine a dialog will be displayed giving you a chance to report this failure to Microsoft.
  7363. //
  7364. #define STATUS_HUNG_DISPLAY_DRIVER_THREAD ((NTSTATUS)0xC0000415L)
  7365. //
  7366. // MessageId: STATUS_WOW_ASSERTION
  7367. //
  7368. // MessageText:
  7369. //
  7370. // WOW Assertion Error.
  7371. //
  7372. #define STATUS_WOW_ASSERTION ((NTSTATUS)0xC0009898L)
  7373. //
  7374. // MessageId: DBG_NO_STATE_CHANGE
  7375. //
  7376. // MessageText:
  7377. //
  7378. // Debugger did not perform a state change.
  7379. //
  7380. #define DBG_NO_STATE_CHANGE ((NTSTATUS)0xC0010001L)
  7381. //
  7382. // MessageId: DBG_APP_NOT_IDLE
  7383. //
  7384. // MessageText:
  7385. //
  7386. // Debugger has found the application is not idle.
  7387. //
  7388. #define DBG_APP_NOT_IDLE ((NTSTATUS)0xC0010002L)
  7389. //
  7390. // MessageId: RPC_NT_INVALID_STRING_BINDING
  7391. //
  7392. // MessageText:
  7393. //
  7394. // The string binding is invalid.
  7395. //
  7396. #define RPC_NT_INVALID_STRING_BINDING ((NTSTATUS)0xC0020001L)
  7397. //
  7398. // MessageId: RPC_NT_WRONG_KIND_OF_BINDING
  7399. //
  7400. // MessageText:
  7401. //
  7402. // The binding handle is not the correct type.
  7403. //
  7404. #define RPC_NT_WRONG_KIND_OF_BINDING ((NTSTATUS)0xC0020002L)
  7405. //
  7406. // MessageId: RPC_NT_INVALID_BINDING
  7407. //
  7408. // MessageText:
  7409. //
  7410. // The binding handle is invalid.
  7411. //
  7412. #define RPC_NT_INVALID_BINDING ((NTSTATUS)0xC0020003L)
  7413. //
  7414. // MessageId: RPC_NT_PROTSEQ_NOT_SUPPORTED
  7415. //
  7416. // MessageText:
  7417. //
  7418. // The RPC protocol sequence is not supported.
  7419. //
  7420. #define RPC_NT_PROTSEQ_NOT_SUPPORTED ((NTSTATUS)0xC0020004L)
  7421. //
  7422. // MessageId: RPC_NT_INVALID_RPC_PROTSEQ
  7423. //
  7424. // MessageText:
  7425. //
  7426. // The RPC protocol sequence is invalid.
  7427. //
  7428. #define RPC_NT_INVALID_RPC_PROTSEQ ((NTSTATUS)0xC0020005L)
  7429. //
  7430. // MessageId: RPC_NT_INVALID_STRING_UUID
  7431. //
  7432. // MessageText:
  7433. //
  7434. // The string UUID is invalid.
  7435. //
  7436. #define RPC_NT_INVALID_STRING_UUID ((NTSTATUS)0xC0020006L)
  7437. //
  7438. // MessageId: RPC_NT_INVALID_ENDPOINT_FORMAT
  7439. //
  7440. // MessageText:
  7441. //
  7442. // The endpoint format is invalid.
  7443. //
  7444. #define RPC_NT_INVALID_ENDPOINT_FORMAT ((NTSTATUS)0xC0020007L)
  7445. //
  7446. // MessageId: RPC_NT_INVALID_NET_ADDR
  7447. //
  7448. // MessageText:
  7449. //
  7450. // The network address is invalid.
  7451. //
  7452. #define RPC_NT_INVALID_NET_ADDR ((NTSTATUS)0xC0020008L)
  7453. //
  7454. // MessageId: RPC_NT_NO_ENDPOINT_FOUND
  7455. //
  7456. // MessageText:
  7457. //
  7458. // No endpoint was found.
  7459. //
  7460. #define RPC_NT_NO_ENDPOINT_FOUND ((NTSTATUS)0xC0020009L)
  7461. //
  7462. // MessageId: RPC_NT_INVALID_TIMEOUT
  7463. //
  7464. // MessageText:
  7465. //
  7466. // The timeout value is invalid.
  7467. //
  7468. #define RPC_NT_INVALID_TIMEOUT ((NTSTATUS)0xC002000AL)
  7469. //
  7470. // MessageId: RPC_NT_OBJECT_NOT_FOUND
  7471. //
  7472. // MessageText:
  7473. //
  7474. // The object UUID was not found.
  7475. //
  7476. #define RPC_NT_OBJECT_NOT_FOUND ((NTSTATUS)0xC002000BL)
  7477. //
  7478. // MessageId: RPC_NT_ALREADY_REGISTERED
  7479. //
  7480. // MessageText:
  7481. //
  7482. // The object UUID has already been registered.
  7483. //
  7484. #define RPC_NT_ALREADY_REGISTERED ((NTSTATUS)0xC002000CL)
  7485. //
  7486. // MessageId: RPC_NT_TYPE_ALREADY_REGISTERED
  7487. //
  7488. // MessageText:
  7489. //
  7490. // The type UUID has already been registered.
  7491. //
  7492. #define RPC_NT_TYPE_ALREADY_REGISTERED ((NTSTATUS)0xC002000DL)
  7493. //
  7494. // MessageId: RPC_NT_ALREADY_LISTENING
  7495. //
  7496. // MessageText:
  7497. //
  7498. // The RPC server is already listening.
  7499. //
  7500. #define RPC_NT_ALREADY_LISTENING ((NTSTATUS)0xC002000EL)
  7501. //
  7502. // MessageId: RPC_NT_NO_PROTSEQS_REGISTERED
  7503. //
  7504. // MessageText:
  7505. //
  7506. // No protocol sequences have been registered.
  7507. //
  7508. #define RPC_NT_NO_PROTSEQS_REGISTERED ((NTSTATUS)0xC002000FL)
  7509. //
  7510. // MessageId: RPC_NT_NOT_LISTENING
  7511. //
  7512. // MessageText:
  7513. //
  7514. // The RPC server is not listening.
  7515. //
  7516. #define RPC_NT_NOT_LISTENING ((NTSTATUS)0xC0020010L)
  7517. //
  7518. // MessageId: RPC_NT_UNKNOWN_MGR_TYPE
  7519. //
  7520. // MessageText:
  7521. //
  7522. // The manager type is unknown.
  7523. //
  7524. #define RPC_NT_UNKNOWN_MGR_TYPE ((NTSTATUS)0xC0020011L)
  7525. //
  7526. // MessageId: RPC_NT_UNKNOWN_IF
  7527. //
  7528. // MessageText:
  7529. //
  7530. // The interface is unknown.
  7531. //
  7532. #define RPC_NT_UNKNOWN_IF ((NTSTATUS)0xC0020012L)
  7533. //
  7534. // MessageId: RPC_NT_NO_BINDINGS
  7535. //
  7536. // MessageText:
  7537. //
  7538. // There are no bindings.
  7539. //
  7540. #define RPC_NT_NO_BINDINGS ((NTSTATUS)0xC0020013L)
  7541. //
  7542. // MessageId: RPC_NT_NO_PROTSEQS
  7543. //
  7544. // MessageText:
  7545. //
  7546. // There are no protocol sequences.
  7547. //
  7548. #define RPC_NT_NO_PROTSEQS ((NTSTATUS)0xC0020014L)
  7549. //
  7550. // MessageId: RPC_NT_CANT_CREATE_ENDPOINT
  7551. //
  7552. // MessageText:
  7553. //
  7554. // The endpoint cannot be created.
  7555. //
  7556. #define RPC_NT_CANT_CREATE_ENDPOINT ((NTSTATUS)0xC0020015L)
  7557. //
  7558. // MessageId: RPC_NT_OUT_OF_RESOURCES
  7559. //
  7560. // MessageText:
  7561. //
  7562. // Not enough resources are available to complete this operation.
  7563. //
  7564. #define RPC_NT_OUT_OF_RESOURCES ((NTSTATUS)0xC0020016L)
  7565. //
  7566. // MessageId: RPC_NT_SERVER_UNAVAILABLE
  7567. //
  7568. // MessageText:
  7569. //
  7570. // The RPC server is unavailable.
  7571. //
  7572. #define RPC_NT_SERVER_UNAVAILABLE ((NTSTATUS)0xC0020017L)
  7573. //
  7574. // MessageId: RPC_NT_SERVER_TOO_BUSY
  7575. //
  7576. // MessageText:
  7577. //
  7578. // The RPC server is too busy to complete this operation.
  7579. //
  7580. #define RPC_NT_SERVER_TOO_BUSY ((NTSTATUS)0xC0020018L)
  7581. //
  7582. // MessageId: RPC_NT_INVALID_NETWORK_OPTIONS
  7583. //
  7584. // MessageText:
  7585. //
  7586. // The network options are invalid.
  7587. //
  7588. #define RPC_NT_INVALID_NETWORK_OPTIONS ((NTSTATUS)0xC0020019L)
  7589. //
  7590. // MessageId: RPC_NT_NO_CALL_ACTIVE
  7591. //
  7592. // MessageText:
  7593. //
  7594. // There are no remote procedure calls active on this thread.
  7595. //
  7596. #define RPC_NT_NO_CALL_ACTIVE ((NTSTATUS)0xC002001AL)
  7597. //
  7598. // MessageId: RPC_NT_CALL_FAILED
  7599. //
  7600. // MessageText:
  7601. //
  7602. // The remote procedure call failed.
  7603. //
  7604. #define RPC_NT_CALL_FAILED ((NTSTATUS)0xC002001BL)
  7605. //
  7606. // MessageId: RPC_NT_CALL_FAILED_DNE
  7607. //
  7608. // MessageText:
  7609. //
  7610. // The remote procedure call failed and did not execute.
  7611. //
  7612. #define RPC_NT_CALL_FAILED_DNE ((NTSTATUS)0xC002001CL)
  7613. //
  7614. // MessageId: RPC_NT_PROTOCOL_ERROR
  7615. //
  7616. // MessageText:
  7617. //
  7618. // An RPC protocol error occurred.
  7619. //
  7620. #define RPC_NT_PROTOCOL_ERROR ((NTSTATUS)0xC002001DL)
  7621. //
  7622. // MessageId: RPC_NT_UNSUPPORTED_TRANS_SYN
  7623. //
  7624. // MessageText:
  7625. //
  7626. // The transfer syntax is not supported by the RPC server.
  7627. //
  7628. #define RPC_NT_UNSUPPORTED_TRANS_SYN ((NTSTATUS)0xC002001FL)
  7629. //
  7630. // MessageId: RPC_NT_UNSUPPORTED_TYPE
  7631. //
  7632. // MessageText:
  7633. //
  7634. // The type UUID is not supported.
  7635. //
  7636. #define RPC_NT_UNSUPPORTED_TYPE ((NTSTATUS)0xC0020021L)
  7637. //
  7638. // MessageId: RPC_NT_INVALID_TAG
  7639. //
  7640. // MessageText:
  7641. //
  7642. // The tag is invalid.
  7643. //
  7644. #define RPC_NT_INVALID_TAG ((NTSTATUS)0xC0020022L)
  7645. //
  7646. // MessageId: RPC_NT_INVALID_BOUND
  7647. //
  7648. // MessageText:
  7649. //
  7650. // The array bounds are invalid.
  7651. //
  7652. #define RPC_NT_INVALID_BOUND ((NTSTATUS)0xC0020023L)
  7653. //
  7654. // MessageId: RPC_NT_NO_ENTRY_NAME
  7655. //
  7656. // MessageText:
  7657. //
  7658. // The binding does not contain an entry name.
  7659. //
  7660. #define RPC_NT_NO_ENTRY_NAME ((NTSTATUS)0xC0020024L)
  7661. //
  7662. // MessageId: RPC_NT_INVALID_NAME_SYNTAX
  7663. //
  7664. // MessageText:
  7665. //
  7666. // The name syntax is invalid.
  7667. //
  7668. #define RPC_NT_INVALID_NAME_SYNTAX ((NTSTATUS)0xC0020025L)
  7669. //
  7670. // MessageId: RPC_NT_UNSUPPORTED_NAME_SYNTAX
  7671. //
  7672. // MessageText:
  7673. //
  7674. // The name syntax is not supported.
  7675. //
  7676. #define RPC_NT_UNSUPPORTED_NAME_SYNTAX ((NTSTATUS)0xC0020026L)
  7677. //
  7678. // MessageId: RPC_NT_UUID_NO_ADDRESS
  7679. //
  7680. // MessageText:
  7681. //
  7682. // No network address is available to use to construct a UUID.
  7683. //
  7684. #define RPC_NT_UUID_NO_ADDRESS ((NTSTATUS)0xC0020028L)
  7685. //
  7686. // MessageId: RPC_NT_DUPLICATE_ENDPOINT
  7687. //
  7688. // MessageText:
  7689. //
  7690. // The endpoint is a duplicate.
  7691. //
  7692. #define RPC_NT_DUPLICATE_ENDPOINT ((NTSTATUS)0xC0020029L)
  7693. //
  7694. // MessageId: RPC_NT_UNKNOWN_AUTHN_TYPE
  7695. //
  7696. // MessageText:
  7697. //
  7698. // The authentication type is unknown.
  7699. //
  7700. #define RPC_NT_UNKNOWN_AUTHN_TYPE ((NTSTATUS)0xC002002AL)
  7701. //
  7702. // MessageId: RPC_NT_MAX_CALLS_TOO_SMALL
  7703. //
  7704. // MessageText:
  7705. //
  7706. // The maximum number of calls is too small.
  7707. //
  7708. #define RPC_NT_MAX_CALLS_TOO_SMALL ((NTSTATUS)0xC002002BL)
  7709. //
  7710. // MessageId: RPC_NT_STRING_TOO_LONG
  7711. //
  7712. // MessageText:
  7713. //
  7714. // The string is too long.
  7715. //
  7716. #define RPC_NT_STRING_TOO_LONG ((NTSTATUS)0xC002002CL)
  7717. //
  7718. // MessageId: RPC_NT_PROTSEQ_NOT_FOUND
  7719. //
  7720. // MessageText:
  7721. //
  7722. // The RPC protocol sequence was not found.
  7723. //
  7724. #define RPC_NT_PROTSEQ_NOT_FOUND ((NTSTATUS)0xC002002DL)
  7725. //
  7726. // MessageId: RPC_NT_PROCNUM_OUT_OF_RANGE
  7727. //
  7728. // MessageText:
  7729. //
  7730. // The procedure number is out of range.
  7731. //
  7732. #define RPC_NT_PROCNUM_OUT_OF_RANGE ((NTSTATUS)0xC002002EL)
  7733. //
  7734. // MessageId: RPC_NT_BINDING_HAS_NO_AUTH
  7735. //
  7736. // MessageText:
  7737. //
  7738. // The binding does not contain any authentication information.
  7739. //
  7740. #define RPC_NT_BINDING_HAS_NO_AUTH ((NTSTATUS)0xC002002FL)
  7741. //
  7742. // MessageId: RPC_NT_UNKNOWN_AUTHN_SERVICE
  7743. //
  7744. // MessageText:
  7745. //
  7746. // The authentication service is unknown.
  7747. //
  7748. #define RPC_NT_UNKNOWN_AUTHN_SERVICE ((NTSTATUS)0xC0020030L)
  7749. //
  7750. // MessageId: RPC_NT_UNKNOWN_AUTHN_LEVEL
  7751. //
  7752. // MessageText:
  7753. //
  7754. // The authentication level is unknown.
  7755. //
  7756. #define RPC_NT_UNKNOWN_AUTHN_LEVEL ((NTSTATUS)0xC0020031L)
  7757. //
  7758. // MessageId: RPC_NT_INVALID_AUTH_IDENTITY
  7759. //
  7760. // MessageText:
  7761. //
  7762. // The security context is invalid.
  7763. //
  7764. #define RPC_NT_INVALID_AUTH_IDENTITY ((NTSTATUS)0xC0020032L)
  7765. //
  7766. // MessageId: RPC_NT_UNKNOWN_AUTHZ_SERVICE
  7767. //
  7768. // MessageText:
  7769. //
  7770. // The authorization service is unknown.
  7771. //
  7772. #define RPC_NT_UNKNOWN_AUTHZ_SERVICE ((NTSTATUS)0xC0020033L)
  7773. //
  7774. // MessageId: EPT_NT_INVALID_ENTRY
  7775. //
  7776. // MessageText:
  7777. //
  7778. // The entry is invalid.
  7779. //
  7780. #define EPT_NT_INVALID_ENTRY ((NTSTATUS)0xC0020034L)
  7781. //
  7782. // MessageId: EPT_NT_CANT_PERFORM_OP
  7783. //
  7784. // MessageText:
  7785. //
  7786. // The operation cannot be performed.
  7787. //
  7788. #define EPT_NT_CANT_PERFORM_OP ((NTSTATUS)0xC0020035L)
  7789. //
  7790. // MessageId: EPT_NT_NOT_REGISTERED
  7791. //
  7792. // MessageText:
  7793. //
  7794. // There are no more endpoints available from the endpoint mapper.
  7795. //
  7796. #define EPT_NT_NOT_REGISTERED ((NTSTATUS)0xC0020036L)
  7797. //
  7798. // MessageId: RPC_NT_NOTHING_TO_EXPORT
  7799. //
  7800. // MessageText:
  7801. //
  7802. // No interfaces have been exported.
  7803. //
  7804. #define RPC_NT_NOTHING_TO_EXPORT ((NTSTATUS)0xC0020037L)
  7805. //
  7806. // MessageId: RPC_NT_INCOMPLETE_NAME
  7807. //
  7808. // MessageText:
  7809. //
  7810. // The entry name is incomplete.
  7811. //
  7812. #define RPC_NT_INCOMPLETE_NAME ((NTSTATUS)0xC0020038L)
  7813. //
  7814. // MessageId: RPC_NT_INVALID_VERS_OPTION
  7815. //
  7816. // MessageText:
  7817. //
  7818. // The version option is invalid.
  7819. //
  7820. #define RPC_NT_INVALID_VERS_OPTION ((NTSTATUS)0xC0020039L)
  7821. //
  7822. // MessageId: RPC_NT_NO_MORE_MEMBERS
  7823. //
  7824. // MessageText:
  7825. //
  7826. // There are no more members.
  7827. //
  7828. #define RPC_NT_NO_MORE_MEMBERS ((NTSTATUS)0xC002003AL)
  7829. //
  7830. // MessageId: RPC_NT_NOT_ALL_OBJS_UNEXPORTED
  7831. //
  7832. // MessageText:
  7833. //
  7834. // There is nothing to unexport.
  7835. //
  7836. #define RPC_NT_NOT_ALL_OBJS_UNEXPORTED ((NTSTATUS)0xC002003BL)
  7837. //
  7838. // MessageId: RPC_NT_INTERFACE_NOT_FOUND
  7839. //
  7840. // MessageText:
  7841. //
  7842. // The interface was not found.
  7843. //
  7844. #define RPC_NT_INTERFACE_NOT_FOUND ((NTSTATUS)0xC002003CL)
  7845. //
  7846. // MessageId: RPC_NT_ENTRY_ALREADY_EXISTS
  7847. //
  7848. // MessageText:
  7849. //
  7850. // The entry already exists.
  7851. //
  7852. #define RPC_NT_ENTRY_ALREADY_EXISTS ((NTSTATUS)0xC002003DL)
  7853. //
  7854. // MessageId: RPC_NT_ENTRY_NOT_FOUND
  7855. //
  7856. // MessageText:
  7857. //
  7858. // The entry is not found.
  7859. //
  7860. #define RPC_NT_ENTRY_NOT_FOUND ((NTSTATUS)0xC002003EL)
  7861. //
  7862. // MessageId: RPC_NT_NAME_SERVICE_UNAVAILABLE
  7863. //
  7864. // MessageText:
  7865. //
  7866. // The name service is unavailable.
  7867. //
  7868. #define RPC_NT_NAME_SERVICE_UNAVAILABLE ((NTSTATUS)0xC002003FL)
  7869. //
  7870. // MessageId: RPC_NT_INVALID_NAF_ID
  7871. //
  7872. // MessageText:
  7873. //
  7874. // The network address family is invalid.
  7875. //
  7876. #define RPC_NT_INVALID_NAF_ID ((NTSTATUS)0xC0020040L)
  7877. //
  7878. // MessageId: RPC_NT_CANNOT_SUPPORT
  7879. //
  7880. // MessageText:
  7881. //
  7882. // The requested operation is not supported.
  7883. //
  7884. #define RPC_NT_CANNOT_SUPPORT ((NTSTATUS)0xC0020041L)
  7885. //
  7886. // MessageId: RPC_NT_NO_CONTEXT_AVAILABLE
  7887. //
  7888. // MessageText:
  7889. //
  7890. // No security context is available to allow impersonation.
  7891. //
  7892. #define RPC_NT_NO_CONTEXT_AVAILABLE ((NTSTATUS)0xC0020042L)
  7893. //
  7894. // MessageId: RPC_NT_INTERNAL_ERROR
  7895. //
  7896. // MessageText:
  7897. //
  7898. // An internal error occurred in RPC.
  7899. //
  7900. #define RPC_NT_INTERNAL_ERROR ((NTSTATUS)0xC0020043L)
  7901. //
  7902. // MessageId: RPC_NT_ZERO_DIVIDE
  7903. //
  7904. // MessageText:
  7905. //
  7906. // The RPC server attempted an integer divide by zero.
  7907. //
  7908. #define RPC_NT_ZERO_DIVIDE ((NTSTATUS)0xC0020044L)
  7909. //
  7910. // MessageId: RPC_NT_ADDRESS_ERROR
  7911. //
  7912. // MessageText:
  7913. //
  7914. // An addressing error occurred in the RPC server.
  7915. //
  7916. #define RPC_NT_ADDRESS_ERROR ((NTSTATUS)0xC0020045L)
  7917. //
  7918. // MessageId: RPC_NT_FP_DIV_ZERO
  7919. //
  7920. // MessageText:
  7921. //
  7922. // A floating point operation at the RPC server caused a divide by zero.
  7923. //
  7924. #define RPC_NT_FP_DIV_ZERO ((NTSTATUS)0xC0020046L)
  7925. //
  7926. // MessageId: RPC_NT_FP_UNDERFLOW
  7927. //
  7928. // MessageText:
  7929. //
  7930. // A floating point underflow occurred at the RPC server.
  7931. //
  7932. #define RPC_NT_FP_UNDERFLOW ((NTSTATUS)0xC0020047L)
  7933. //
  7934. // MessageId: RPC_NT_FP_OVERFLOW
  7935. //
  7936. // MessageText:
  7937. //
  7938. // A floating point overflow occurred at the RPC server.
  7939. //
  7940. #define RPC_NT_FP_OVERFLOW ((NTSTATUS)0xC0020048L)
  7941. //
  7942. // MessageId: RPC_NT_NO_MORE_ENTRIES
  7943. //
  7944. // MessageText:
  7945. //
  7946. // The list of RPC servers available for auto-handle binding has been exhausted.
  7947. //
  7948. #define RPC_NT_NO_MORE_ENTRIES ((NTSTATUS)0xC0030001L)
  7949. //
  7950. // MessageId: RPC_NT_SS_CHAR_TRANS_OPEN_FAIL
  7951. //
  7952. // MessageText:
  7953. //
  7954. // The file designated by DCERPCCHARTRANS cannot be opened.
  7955. //
  7956. #define RPC_NT_SS_CHAR_TRANS_OPEN_FAIL ((NTSTATUS)0xC0030002L)
  7957. //
  7958. // MessageId: RPC_NT_SS_CHAR_TRANS_SHORT_FILE
  7959. //
  7960. // MessageText:
  7961. //
  7962. // The file containing the character translation table has fewer than 512 bytes.
  7963. //
  7964. #define RPC_NT_SS_CHAR_TRANS_SHORT_FILE ((NTSTATUS)0xC0030003L)
  7965. //
  7966. // MessageId: RPC_NT_SS_IN_NULL_CONTEXT
  7967. //
  7968. // MessageText:
  7969. //
  7970. // A null context handle is passed as an [in] parameter.
  7971. //
  7972. #define RPC_NT_SS_IN_NULL_CONTEXT ((NTSTATUS)0xC0030004L)
  7973. //
  7974. // MessageId: RPC_NT_SS_CONTEXT_MISMATCH
  7975. //
  7976. // MessageText:
  7977. //
  7978. // The context handle does not match any known context handles.
  7979. //
  7980. #define RPC_NT_SS_CONTEXT_MISMATCH ((NTSTATUS)0xC0030005L)
  7981. //
  7982. // MessageId: RPC_NT_SS_CONTEXT_DAMAGED
  7983. //
  7984. // MessageText:
  7985. //
  7986. // The context handle changed during a call.
  7987. //
  7988. #define RPC_NT_SS_CONTEXT_DAMAGED ((NTSTATUS)0xC0030006L)
  7989. //
  7990. // MessageId: RPC_NT_SS_HANDLES_MISMATCH
  7991. //
  7992. // MessageText:
  7993. //
  7994. // The binding handles passed to a remote procedure call do not match.
  7995. //
  7996. #define RPC_NT_SS_HANDLES_MISMATCH ((NTSTATUS)0xC0030007L)
  7997. //
  7998. // MessageId: RPC_NT_SS_CANNOT_GET_CALL_HANDLE
  7999. //
  8000. // MessageText:
  8001. //
  8002. // The stub is unable to get the call handle.
  8003. //
  8004. #define RPC_NT_SS_CANNOT_GET_CALL_HANDLE ((NTSTATUS)0xC0030008L)
  8005. //
  8006. // MessageId: RPC_NT_NULL_REF_POINTER
  8007. //
  8008. // MessageText:
  8009. //
  8010. // A null reference pointer was passed to the stub.
  8011. //
  8012. #define RPC_NT_NULL_REF_POINTER ((NTSTATUS)0xC0030009L)
  8013. //
  8014. // MessageId: RPC_NT_ENUM_VALUE_OUT_OF_RANGE
  8015. //
  8016. // MessageText:
  8017. //
  8018. // The enumeration value is out of range.
  8019. //
  8020. #define RPC_NT_ENUM_VALUE_OUT_OF_RANGE ((NTSTATUS)0xC003000AL)
  8021. //
  8022. // MessageId: RPC_NT_BYTE_COUNT_TOO_SMALL
  8023. //
  8024. // MessageText:
  8025. //
  8026. // The byte count is too small.
  8027. //
  8028. #define RPC_NT_BYTE_COUNT_TOO_SMALL ((NTSTATUS)0xC003000BL)
  8029. //
  8030. // MessageId: RPC_NT_BAD_STUB_DATA
  8031. //
  8032. // MessageText:
  8033. //
  8034. // The stub received bad data.
  8035. //
  8036. #define RPC_NT_BAD_STUB_DATA ((NTSTATUS)0xC003000CL)
  8037. //
  8038. // MessageId: RPC_NT_CALL_IN_PROGRESS
  8039. //
  8040. // MessageText:
  8041. //
  8042. // A remote procedure call is already in progress for this thread.
  8043. //
  8044. #define RPC_NT_CALL_IN_PROGRESS ((NTSTATUS)0xC0020049L)
  8045. //
  8046. // MessageId: RPC_NT_NO_MORE_BINDINGS
  8047. //
  8048. // MessageText:
  8049. //
  8050. // There are no more bindings.
  8051. //
  8052. #define RPC_NT_NO_MORE_BINDINGS ((NTSTATUS)0xC002004AL)
  8053. //
  8054. // MessageId: RPC_NT_GROUP_MEMBER_NOT_FOUND
  8055. //
  8056. // MessageText:
  8057. //
  8058. // The group member was not found.
  8059. //
  8060. #define RPC_NT_GROUP_MEMBER_NOT_FOUND ((NTSTATUS)0xC002004BL)
  8061. //
  8062. // MessageId: EPT_NT_CANT_CREATE
  8063. //
  8064. // MessageText:
  8065. //
  8066. // The endpoint mapper database entry could not be created.
  8067. //
  8068. #define EPT_NT_CANT_CREATE ((NTSTATUS)0xC002004CL)
  8069. //
  8070. // MessageId: RPC_NT_INVALID_OBJECT
  8071. //
  8072. // MessageText:
  8073. //
  8074. // The object UUID is the nil UUID.
  8075. //
  8076. #define RPC_NT_INVALID_OBJECT ((NTSTATUS)0xC002004DL)
  8077. //
  8078. // MessageId: RPC_NT_NO_INTERFACES
  8079. //
  8080. // MessageText:
  8081. //
  8082. // No interfaces have been registered.
  8083. //
  8084. #define RPC_NT_NO_INTERFACES ((NTSTATUS)0xC002004FL)
  8085. //
  8086. // MessageId: RPC_NT_CALL_CANCELLED
  8087. //
  8088. // MessageText:
  8089. //
  8090. // The remote procedure call was cancelled.
  8091. //
  8092. #define RPC_NT_CALL_CANCELLED ((NTSTATUS)0xC0020050L)
  8093. //
  8094. // MessageId: RPC_NT_BINDING_INCOMPLETE
  8095. //
  8096. // MessageText:
  8097. //
  8098. // The binding handle does not contain all required information.
  8099. //
  8100. #define RPC_NT_BINDING_INCOMPLETE ((NTSTATUS)0xC0020051L)
  8101. //
  8102. // MessageId: RPC_NT_COMM_FAILURE
  8103. //
  8104. // MessageText:
  8105. //
  8106. // A communications failure occurred during a remote procedure call.
  8107. //
  8108. #define RPC_NT_COMM_FAILURE ((NTSTATUS)0xC0020052L)
  8109. //
  8110. // MessageId: RPC_NT_UNSUPPORTED_AUTHN_LEVEL
  8111. //
  8112. // MessageText:
  8113. //
  8114. // The requested authentication level is not supported.
  8115. //
  8116. #define RPC_NT_UNSUPPORTED_AUTHN_LEVEL ((NTSTATUS)0xC0020053L)
  8117. //
  8118. // MessageId: RPC_NT_NO_PRINC_NAME
  8119. //
  8120. // MessageText:
  8121. //
  8122. // No principal name registered.
  8123. //
  8124. #define RPC_NT_NO_PRINC_NAME ((NTSTATUS)0xC0020054L)
  8125. //
  8126. // MessageId: RPC_NT_NOT_RPC_ERROR
  8127. //
  8128. // MessageText:
  8129. //
  8130. // The error specified is not a valid Windows RPC error code.
  8131. //
  8132. #define RPC_NT_NOT_RPC_ERROR ((NTSTATUS)0xC0020055L)
  8133. //
  8134. // MessageId: RPC_NT_UUID_LOCAL_ONLY
  8135. //
  8136. // MessageText:
  8137. //
  8138. // A UUID that is valid only on this computer has been allocated.
  8139. //
  8140. #define RPC_NT_UUID_LOCAL_ONLY ((NTSTATUS)0x40020056L)
  8141. //
  8142. // MessageId: RPC_NT_SEC_PKG_ERROR
  8143. //
  8144. // MessageText:
  8145. //
  8146. // A security package specific error occurred.
  8147. //
  8148. #define RPC_NT_SEC_PKG_ERROR ((NTSTATUS)0xC0020057L)
  8149. //
  8150. // MessageId: RPC_NT_NOT_CANCELLED
  8151. //
  8152. // MessageText:
  8153. //
  8154. // Thread is not cancelled.
  8155. //
  8156. #define RPC_NT_NOT_CANCELLED ((NTSTATUS)0xC0020058L)
  8157. //
  8158. // MessageId: RPC_NT_INVALID_ES_ACTION
  8159. //
  8160. // MessageText:
  8161. //
  8162. // Invalid operation on the encoding/decoding handle.
  8163. //
  8164. #define RPC_NT_INVALID_ES_ACTION ((NTSTATUS)0xC0030059L)
  8165. //
  8166. // MessageId: RPC_NT_WRONG_ES_VERSION
  8167. //
  8168. // MessageText:
  8169. //
  8170. // Incompatible version of the serializing package.
  8171. //
  8172. #define RPC_NT_WRONG_ES_VERSION ((NTSTATUS)0xC003005AL)
  8173. //
  8174. // MessageId: RPC_NT_WRONG_STUB_VERSION
  8175. //
  8176. // MessageText:
  8177. //
  8178. // Incompatible version of the RPC stub.
  8179. //
  8180. #define RPC_NT_WRONG_STUB_VERSION ((NTSTATUS)0xC003005BL)
  8181. //
  8182. // MessageId: RPC_NT_INVALID_PIPE_OBJECT
  8183. //
  8184. // MessageText:
  8185. //
  8186. // The RPC pipe object is invalid or corrupted.
  8187. //
  8188. #define RPC_NT_INVALID_PIPE_OBJECT ((NTSTATUS)0xC003005CL)
  8189. //
  8190. // MessageId: RPC_NT_INVALID_PIPE_OPERATION
  8191. //
  8192. // MessageText:
  8193. //
  8194. // An invalid operation was attempted on an RPC pipe object.
  8195. //
  8196. #define RPC_NT_INVALID_PIPE_OPERATION ((NTSTATUS)0xC003005DL)
  8197. //
  8198. // MessageId: RPC_NT_WRONG_PIPE_VERSION
  8199. //
  8200. // MessageText:
  8201. //
  8202. // Unsupported RPC pipe version.
  8203. //
  8204. #define RPC_NT_WRONG_PIPE_VERSION ((NTSTATUS)0xC003005EL)
  8205. //
  8206. // MessageId: RPC_NT_PIPE_CLOSED
  8207. //
  8208. // MessageText:
  8209. //
  8210. // The RPC pipe object has already been closed.
  8211. //
  8212. #define RPC_NT_PIPE_CLOSED ((NTSTATUS)0xC003005FL)
  8213. //
  8214. // MessageId: RPC_NT_PIPE_DISCIPLINE_ERROR
  8215. //
  8216. // MessageText:
  8217. //
  8218. // The RPC call completed before all pipes were processed.
  8219. //
  8220. #define RPC_NT_PIPE_DISCIPLINE_ERROR ((NTSTATUS)0xC0030060L)
  8221. //
  8222. // MessageId: RPC_NT_PIPE_EMPTY
  8223. //
  8224. // MessageText:
  8225. //
  8226. // No more data is available from the RPC pipe.
  8227. //
  8228. #define RPC_NT_PIPE_EMPTY ((NTSTATUS)0xC0030061L)
  8229. //
  8230. // MessageId: RPC_NT_INVALID_ASYNC_HANDLE
  8231. //
  8232. // MessageText:
  8233. //
  8234. // Invalid asynchronous remote procedure call handle.
  8235. //
  8236. #define RPC_NT_INVALID_ASYNC_HANDLE ((NTSTATUS)0xC0020062L)
  8237. //
  8238. // MessageId: RPC_NT_INVALID_ASYNC_CALL
  8239. //
  8240. // MessageText:
  8241. //
  8242. // Invalid asynchronous RPC call handle for this operation.
  8243. //
  8244. #define RPC_NT_INVALID_ASYNC_CALL ((NTSTATUS)0xC0020063L)
  8245. //
  8246. // MessageId: RPC_NT_SEND_INCOMPLETE
  8247. //
  8248. // MessageText:
  8249. //
  8250. // Some data remains to be sent in the request buffer.
  8251. //
  8252. #define RPC_NT_SEND_INCOMPLETE ((NTSTATUS)0x400200AFL)
  8253. //
  8254. // MessageId: STATUS_ACPI_INVALID_OPCODE
  8255. //
  8256. // MessageText:
  8257. //
  8258. // An attempt was made to run an invalid AML opcode
  8259. //
  8260. #define STATUS_ACPI_INVALID_OPCODE ((NTSTATUS)0xC0140001L)
  8261. //
  8262. // MessageId: STATUS_ACPI_STACK_OVERFLOW
  8263. //
  8264. // MessageText:
  8265. //
  8266. // The AML Interpreter Stack has overflowed
  8267. //
  8268. #define STATUS_ACPI_STACK_OVERFLOW ((NTSTATUS)0xC0140002L)
  8269. //
  8270. // MessageId: STATUS_ACPI_ASSERT_FAILED
  8271. //
  8272. // MessageText:
  8273. //
  8274. // An inconsistent state has occurred
  8275. //
  8276. #define STATUS_ACPI_ASSERT_FAILED ((NTSTATUS)0xC0140003L)
  8277. //
  8278. // MessageId: STATUS_ACPI_INVALID_INDEX
  8279. //
  8280. // MessageText:
  8281. //
  8282. // An attempt was made to access an array outside of its bounds
  8283. //
  8284. #define STATUS_ACPI_INVALID_INDEX ((NTSTATUS)0xC0140004L)
  8285. //
  8286. // MessageId: STATUS_ACPI_INVALID_ARGUMENT
  8287. //
  8288. // MessageText:
  8289. //
  8290. // A required argument was not specified
  8291. //
  8292. #define STATUS_ACPI_INVALID_ARGUMENT ((NTSTATUS)0xC0140005L)
  8293. //
  8294. // MessageId: STATUS_ACPI_FATAL
  8295. //
  8296. // MessageText:
  8297. //
  8298. // A fatal error has occurred
  8299. //
  8300. #define STATUS_ACPI_FATAL ((NTSTATUS)0xC0140006L)
  8301. //
  8302. // MessageId: STATUS_ACPI_INVALID_SUPERNAME
  8303. //
  8304. // MessageText:
  8305. //
  8306. // An invalid SuperName was specified
  8307. //
  8308. #define STATUS_ACPI_INVALID_SUPERNAME ((NTSTATUS)0xC0140007L)
  8309. //
  8310. // MessageId: STATUS_ACPI_INVALID_ARGTYPE
  8311. //
  8312. // MessageText:
  8313. //
  8314. // An argument with an incorrect type was specified
  8315. //
  8316. #define STATUS_ACPI_INVALID_ARGTYPE ((NTSTATUS)0xC0140008L)
  8317. //
  8318. // MessageId: STATUS_ACPI_INVALID_OBJTYPE
  8319. //
  8320. // MessageText:
  8321. //
  8322. // An object with an incorrect type was specified
  8323. //
  8324. #define STATUS_ACPI_INVALID_OBJTYPE ((NTSTATUS)0xC0140009L)
  8325. //
  8326. // MessageId: STATUS_ACPI_INVALID_TARGETTYPE
  8327. //
  8328. // MessageText:
  8329. //
  8330. // A target with an incorrect type was specified
  8331. //
  8332. #define STATUS_ACPI_INVALID_TARGETTYPE ((NTSTATUS)0xC014000AL)
  8333. //
  8334. // MessageId: STATUS_ACPI_INCORRECT_ARGUMENT_COUNT
  8335. //
  8336. // MessageText:
  8337. //
  8338. // An incorrect number of arguments were specified
  8339. //
  8340. #define STATUS_ACPI_INCORRECT_ARGUMENT_COUNT ((NTSTATUS)0xC014000BL)
  8341. //
  8342. // MessageId: STATUS_ACPI_ADDRESS_NOT_MAPPED
  8343. //
  8344. // MessageText:
  8345. //
  8346. // An address failed to translate
  8347. //
  8348. #define STATUS_ACPI_ADDRESS_NOT_MAPPED ((NTSTATUS)0xC014000CL)
  8349. //
  8350. // MessageId: STATUS_ACPI_INVALID_EVENTTYPE
  8351. //
  8352. // MessageText:
  8353. //
  8354. // An incorrect event type was specified
  8355. //
  8356. #define STATUS_ACPI_INVALID_EVENTTYPE ((NTSTATUS)0xC014000DL)
  8357. //
  8358. // MessageId: STATUS_ACPI_HANDLER_COLLISION
  8359. //
  8360. // MessageText:
  8361. //
  8362. // A handler for the target already exists
  8363. //
  8364. #define STATUS_ACPI_HANDLER_COLLISION ((NTSTATUS)0xC014000EL)
  8365. //
  8366. // MessageId: STATUS_ACPI_INVALID_DATA
  8367. //
  8368. // MessageText:
  8369. //
  8370. // Invalid data for the target was specified
  8371. //
  8372. #define STATUS_ACPI_INVALID_DATA ((NTSTATUS)0xC014000FL)
  8373. //
  8374. // MessageId: STATUS_ACPI_INVALID_REGION
  8375. //
  8376. // MessageText:
  8377. //
  8378. // An invalid region for the target was specified
  8379. //
  8380. #define STATUS_ACPI_INVALID_REGION ((NTSTATUS)0xC0140010L)
  8381. //
  8382. // MessageId: STATUS_ACPI_INVALID_ACCESS_SIZE
  8383. //
  8384. // MessageText:
  8385. //
  8386. // An attempt was made to access a field outside of the defined range
  8387. //
  8388. #define STATUS_ACPI_INVALID_ACCESS_SIZE ((NTSTATUS)0xC0140011L)
  8389. //
  8390. // MessageId: STATUS_ACPI_ACQUIRE_GLOBAL_LOCK
  8391. //
  8392. // MessageText:
  8393. //
  8394. // The Global system lock could not be acquired
  8395. //
  8396. #define STATUS_ACPI_ACQUIRE_GLOBAL_LOCK ((NTSTATUS)0xC0140012L)
  8397. //
  8398. // MessageId: STATUS_ACPI_ALREADY_INITIALIZED
  8399. //
  8400. // MessageText:
  8401. //
  8402. // An attempt was made to reinitialize the ACPI subsystem
  8403. //
  8404. #define STATUS_ACPI_ALREADY_INITIALIZED ((NTSTATUS)0xC0140013L)
  8405. //
  8406. // MessageId: STATUS_ACPI_NOT_INITIALIZED
  8407. //
  8408. // MessageText:
  8409. //
  8410. // The ACPI subsystem has not been initialized
  8411. //
  8412. #define STATUS_ACPI_NOT_INITIALIZED ((NTSTATUS)0xC0140014L)
  8413. //
  8414. // MessageId: STATUS_ACPI_INVALID_MUTEX_LEVEL
  8415. //
  8416. // MessageText:
  8417. //
  8418. // An incorrect mutex was specified
  8419. //
  8420. #define STATUS_ACPI_INVALID_MUTEX_LEVEL ((NTSTATUS)0xC0140015L)
  8421. //
  8422. // MessageId: STATUS_ACPI_MUTEX_NOT_OWNED
  8423. //
  8424. // MessageText:
  8425. //
  8426. // The mutex is not currently owned
  8427. //
  8428. #define STATUS_ACPI_MUTEX_NOT_OWNED ((NTSTATUS)0xC0140016L)
  8429. //
  8430. // MessageId: STATUS_ACPI_MUTEX_NOT_OWNER
  8431. //
  8432. // MessageText:
  8433. //
  8434. // An attempt was made to access the mutex by a process that was not the owner
  8435. //
  8436. #define STATUS_ACPI_MUTEX_NOT_OWNER ((NTSTATUS)0xC0140017L)
  8437. //
  8438. // MessageId: STATUS_ACPI_RS_ACCESS
  8439. //
  8440. // MessageText:
  8441. //
  8442. // An error occurred during an access to Region Space
  8443. //
  8444. #define STATUS_ACPI_RS_ACCESS ((NTSTATUS)0xC0140018L)
  8445. //
  8446. // MessageId: STATUS_ACPI_INVALID_TABLE
  8447. //
  8448. // MessageText:
  8449. //
  8450. // An attempt was made to use an incorrect table
  8451. //
  8452. #define STATUS_ACPI_INVALID_TABLE ((NTSTATUS)0xC0140019L)
  8453. //
  8454. // MessageId: STATUS_ACPI_REG_HANDLER_FAILED
  8455. //
  8456. // MessageText:
  8457. //
  8458. // The registration of an ACPI event failed
  8459. //
  8460. #define STATUS_ACPI_REG_HANDLER_FAILED ((NTSTATUS)0xC0140020L)
  8461. //
  8462. // MessageId: STATUS_ACPI_POWER_REQUEST_FAILED
  8463. //
  8464. // MessageText:
  8465. //
  8466. // An ACPI Power Object failed to transition state
  8467. //
  8468. #define STATUS_ACPI_POWER_REQUEST_FAILED ((NTSTATUS)0xC0140021L)
  8469. //
  8470. // Terminal Server specific Errors
  8471. //
  8472. //
  8473. // MessageId: STATUS_CTX_WINSTATION_NAME_INVALID
  8474. //
  8475. // MessageText:
  8476. //
  8477. // Session name %1 is invalid.
  8478. //
  8479. #define STATUS_CTX_WINSTATION_NAME_INVALID ((NTSTATUS)0xC00A0001L)
  8480. //
  8481. // MessageId: STATUS_CTX_INVALID_PD
  8482. //
  8483. // MessageText:
  8484. //
  8485. // The protocol driver %1 is invalid.
  8486. //
  8487. #define STATUS_CTX_INVALID_PD ((NTSTATUS)0xC00A0002L)
  8488. //
  8489. // MessageId: STATUS_CTX_PD_NOT_FOUND
  8490. //
  8491. // MessageText:
  8492. //
  8493. // The protocol driver %1 was not found in the system path.
  8494. //
  8495. #define STATUS_CTX_PD_NOT_FOUND ((NTSTATUS)0xC00A0003L)
  8496. //
  8497. // MessageId: STATUS_CTX_CDM_CONNECT
  8498. //
  8499. // MessageText:
  8500. //
  8501. // The Client Drive Mapping Service Has Connected on Terminal Connection.
  8502. //
  8503. #define STATUS_CTX_CDM_CONNECT ((NTSTATUS)0x400A0004L)
  8504. //
  8505. // MessageId: STATUS_CTX_CDM_DISCONNECT
  8506. //
  8507. // MessageText:
  8508. //
  8509. // The Client Drive Mapping Service Has Disconnected on Terminal Connection.
  8510. //
  8511. #define STATUS_CTX_CDM_DISCONNECT ((NTSTATUS)0x400A0005L)
  8512. //
  8513. // MessageId: STATUS_CTX_CLOSE_PENDING
  8514. //
  8515. // MessageText:
  8516. //
  8517. // A close operation is pending on the Terminal Connection.
  8518. //
  8519. #define STATUS_CTX_CLOSE_PENDING ((NTSTATUS)0xC00A0006L)
  8520. //
  8521. // MessageId: STATUS_CTX_NO_OUTBUF
  8522. //
  8523. // MessageText:
  8524. //
  8525. // There are no free output buffers available.
  8526. //
  8527. #define STATUS_CTX_NO_OUTBUF ((NTSTATUS)0xC00A0007L)
  8528. //
  8529. // MessageId: STATUS_CTX_MODEM_INF_NOT_FOUND
  8530. //
  8531. // MessageText:
  8532. //
  8533. // The MODEM.INF file was not found.
  8534. //
  8535. #define STATUS_CTX_MODEM_INF_NOT_FOUND ((NTSTATUS)0xC00A0008L)
  8536. //
  8537. // MessageId: STATUS_CTX_INVALID_MODEMNAME
  8538. //
  8539. // MessageText:
  8540. //
  8541. // The modem (%1) was not found in MODEM.INF.
  8542. //
  8543. #define STATUS_CTX_INVALID_MODEMNAME ((NTSTATUS)0xC00A0009L)
  8544. //
  8545. // MessageId: STATUS_CTX_RESPONSE_ERROR
  8546. //
  8547. // MessageText:
  8548. //
  8549. // The modem did not accept the command sent to it.
  8550. // Verify the configured modem name matches the attached modem.
  8551. //
  8552. #define STATUS_CTX_RESPONSE_ERROR ((NTSTATUS)0xC00A000AL)
  8553. //
  8554. // MessageId: STATUS_CTX_MODEM_RESPONSE_TIMEOUT
  8555. //
  8556. // MessageText:
  8557. //
  8558. // The modem did not respond to the command sent to it.
  8559. // Verify the modem is properly cabled and powered on.
  8560. //
  8561. #define STATUS_CTX_MODEM_RESPONSE_TIMEOUT ((NTSTATUS)0xC00A000BL)
  8562. //
  8563. // MessageId: STATUS_CTX_MODEM_RESPONSE_NO_CARRIER
  8564. //
  8565. // MessageText:
  8566. //
  8567. // Carrier detect has failed or carrier has been dropped due to disconnect.
  8568. //
  8569. #define STATUS_CTX_MODEM_RESPONSE_NO_CARRIER ((NTSTATUS)0xC00A000CL)
  8570. //
  8571. // MessageId: STATUS_CTX_MODEM_RESPONSE_NO_DIALTONE
  8572. //
  8573. // MessageText:
  8574. //
  8575. // Dial tone not detected within required time.
  8576. // Verify phone cable is properly attached and functional.
  8577. //
  8578. #define STATUS_CTX_MODEM_RESPONSE_NO_DIALTONE ((NTSTATUS)0xC00A000DL)
  8579. //
  8580. // MessageId: STATUS_CTX_MODEM_RESPONSE_BUSY
  8581. //
  8582. // MessageText:
  8583. //
  8584. // Busy signal detected at remote site on callback.
  8585. //
  8586. #define STATUS_CTX_MODEM_RESPONSE_BUSY ((NTSTATUS)0xC00A000EL)
  8587. //
  8588. // MessageId: STATUS_CTX_MODEM_RESPONSE_VOICE
  8589. //
  8590. // MessageText:
  8591. //
  8592. // Voice detected at remote site on callback.
  8593. //
  8594. #define STATUS_CTX_MODEM_RESPONSE_VOICE ((NTSTATUS)0xC00A000FL)
  8595. //
  8596. // MessageId: STATUS_CTX_TD_ERROR
  8597. //
  8598. // MessageText:
  8599. //
  8600. // Transport driver error
  8601. //
  8602. #define STATUS_CTX_TD_ERROR ((NTSTATUS)0xC00A0010L)
  8603. //
  8604. // MessageId: STATUS_CTX_LICENSE_CLIENT_INVALID
  8605. //
  8606. // MessageText:
  8607. //
  8608. // The client you are using is not licensed to use this system. Your logon request is denied.
  8609. //
  8610. #define STATUS_CTX_LICENSE_CLIENT_INVALID ((NTSTATUS)0xC00A0012L)
  8611. //
  8612. // MessageId: STATUS_CTX_LICENSE_NOT_AVAILABLE
  8613. //
  8614. // MessageText:
  8615. //
  8616. // The system has reached its licensed logon limit.
  8617. // Please try again later.
  8618. //
  8619. #define STATUS_CTX_LICENSE_NOT_AVAILABLE ((NTSTATUS)0xC00A0013L)
  8620. //
  8621. // MessageId: STATUS_CTX_LICENSE_EXPIRED
  8622. //
  8623. // MessageText:
  8624. //
  8625. // The system license has expired. Your logon request is denied.
  8626. //
  8627. #define STATUS_CTX_LICENSE_EXPIRED ((NTSTATUS)0xC00A0014L)
  8628. //
  8629. // MessageId: STATUS_CTX_WINSTATION_NOT_FOUND
  8630. //
  8631. // MessageText:
  8632. //
  8633. // The specified session cannot be found.
  8634. //
  8635. #define STATUS_CTX_WINSTATION_NOT_FOUND ((NTSTATUS)0xC00A0015L)
  8636. //
  8637. // MessageId: STATUS_CTX_WINSTATION_NAME_COLLISION
  8638. //
  8639. // MessageText:
  8640. //
  8641. // The specified session name is already in use.
  8642. //
  8643. #define STATUS_CTX_WINSTATION_NAME_COLLISION ((NTSTATUS)0xC00A0016L)
  8644. //
  8645. // MessageId: STATUS_CTX_WINSTATION_BUSY
  8646. //
  8647. // MessageText:
  8648. //
  8649. // The requested operation cannot be completed because the Terminal Connection is currently busy processing a connect, disconnect, reset, or delete operation.
  8650. //
  8651. #define STATUS_CTX_WINSTATION_BUSY ((NTSTATUS)0xC00A0017L)
  8652. //
  8653. // MessageId: STATUS_CTX_BAD_VIDEO_MODE
  8654. //
  8655. // MessageText:
  8656. //
  8657. // An attempt has been made to connect to a session whose video mode is not supported by the current client.
  8658. //
  8659. #define STATUS_CTX_BAD_VIDEO_MODE ((NTSTATUS)0xC00A0018L)
  8660. //
  8661. // MessageId: STATUS_CTX_GRAPHICS_INVALID
  8662. //
  8663. // MessageText:
  8664. //
  8665. // The application attempted to enable DOS graphics mode.
  8666. // DOS graphics mode is not supported.
  8667. //
  8668. #define STATUS_CTX_GRAPHICS_INVALID ((NTSTATUS)0xC00A0022L)
  8669. //
  8670. // MessageId: STATUS_CTX_NOT_CONSOLE
  8671. //
  8672. // MessageText:
  8673. //
  8674. // The requested operation can be performed only on the system console.
  8675. // This is most often the result of a driver or system DLL requiring direct console access.
  8676. //
  8677. #define STATUS_CTX_NOT_CONSOLE ((NTSTATUS)0xC00A0024L)
  8678. //
  8679. // MessageId: STATUS_CTX_CLIENT_QUERY_TIMEOUT
  8680. //
  8681. // MessageText:
  8682. //
  8683. // The client failed to respond to the server connect message.
  8684. //
  8685. #define STATUS_CTX_CLIENT_QUERY_TIMEOUT ((NTSTATUS)0xC00A0026L)
  8686. //
  8687. // MessageId: STATUS_CTX_CONSOLE_DISCONNECT
  8688. //
  8689. // MessageText:
  8690. //
  8691. // Disconnecting the console session is not supported.
  8692. //
  8693. #define STATUS_CTX_CONSOLE_DISCONNECT ((NTSTATUS)0xC00A0027L)
  8694. //
  8695. // MessageId: STATUS_CTX_CONSOLE_CONNECT
  8696. //
  8697. // MessageText:
  8698. //
  8699. // Reconnecting a disconnected session to the console is not supported.
  8700. //
  8701. #define STATUS_CTX_CONSOLE_CONNECT ((NTSTATUS)0xC00A0028L)
  8702. //
  8703. // MessageId: STATUS_CTX_SHADOW_DENIED
  8704. //
  8705. // MessageText:
  8706. //
  8707. // The request to control another session remotely was denied.
  8708. //
  8709. #define STATUS_CTX_SHADOW_DENIED ((NTSTATUS)0xC00A002AL)
  8710. //
  8711. // MessageId: STATUS_CTX_WINSTATION_ACCESS_DENIED
  8712. //
  8713. // MessageText:
  8714. //
  8715. // A process has requested access to a session, but has not been granted those access rights.
  8716. //
  8717. #define STATUS_CTX_WINSTATION_ACCESS_DENIED ((NTSTATUS)0xC00A002BL)
  8718. //
  8719. // MessageId: STATUS_CTX_INVALID_WD
  8720. //
  8721. // MessageText:
  8722. //
  8723. // The Terminal Connection driver %1 is invalid.
  8724. //
  8725. #define STATUS_CTX_INVALID_WD ((NTSTATUS)0xC00A002EL)
  8726. //
  8727. // MessageId: STATUS_CTX_WD_NOT_FOUND
  8728. //
  8729. // MessageText:
  8730. //
  8731. // The Terminal Connection driver %1 was not found in the system path.
  8732. //
  8733. #define STATUS_CTX_WD_NOT_FOUND ((NTSTATUS)0xC00A002FL)
  8734. //
  8735. // MessageId: STATUS_CTX_SHADOW_INVALID
  8736. //
  8737. // MessageText:
  8738. //
  8739. // The requested session cannot be controlled remotely.
  8740. // You cannot control your own session, a session that is trying to control your session,
  8741. // a session that has no user logged on, nor control other sessions from the console.
  8742. //
  8743. #define STATUS_CTX_SHADOW_INVALID ((NTSTATUS)0xC00A0030L)
  8744. //
  8745. // MessageId: STATUS_CTX_SHADOW_DISABLED
  8746. //
  8747. // MessageText:
  8748. //
  8749. // The requested session is not configured to allow remote control.
  8750. //
  8751. #define STATUS_CTX_SHADOW_DISABLED ((NTSTATUS)0xC00A0031L)
  8752. //
  8753. // MessageId: STATUS_RDP_PROTOCOL_ERROR
  8754. //
  8755. // MessageText:
  8756. //
  8757. // The RDP protocol component %2 detected an error in the protocol stream and has disconnected the client.
  8758. //
  8759. #define STATUS_RDP_PROTOCOL_ERROR ((NTSTATUS)0xC00A0032L)
  8760. //
  8761. // MessageId: STATUS_CTX_CLIENT_LICENSE_NOT_SET
  8762. //
  8763. // MessageText:
  8764. //
  8765. // Your request to connect to this Terminal server has been rejected.
  8766. // Your Terminal Server Client license number has not been entered for this copy of the Terminal Client.
  8767. // Please call your system administrator for help in entering a valid, unique license number for this Terminal Server Client.
  8768. // Click OK to continue.
  8769. //
  8770. #define STATUS_CTX_CLIENT_LICENSE_NOT_SET ((NTSTATUS)0xC00A0033L)
  8771. //
  8772. // MessageId: STATUS_CTX_CLIENT_LICENSE_IN_USE
  8773. //
  8774. // MessageText:
  8775. //
  8776. // Your request to connect to this Terminal server has been rejected.
  8777. // Your Terminal Server Client license number is currently being used by another user.
  8778. // Please call your system administrator to obtain a new copy of the Terminal Server Client with a valid, unique license number.
  8779. // Click OK to continue.
  8780. //
  8781. #define STATUS_CTX_CLIENT_LICENSE_IN_USE ((NTSTATUS)0xC00A0034L)
  8782. //
  8783. // MessageId: STATUS_CTX_SHADOW_ENDED_BY_MODE_CHANGE
  8784. //
  8785. // MessageText:
  8786. //
  8787. // 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.
  8788. //
  8789. #define STATUS_CTX_SHADOW_ENDED_BY_MODE_CHANGE ((NTSTATUS)0xC00A0035L)
  8790. //
  8791. // MessageId: STATUS_CTX_SHADOW_NOT_RUNNING
  8792. //
  8793. // MessageText:
  8794. //
  8795. // Remote control could not be terminated because the specified session is not currently being remotely controlled.
  8796. //
  8797. #define STATUS_CTX_SHADOW_NOT_RUNNING ((NTSTATUS)0xC00A0036L)
  8798. //
  8799. // MessageId: STATUS_PNP_BAD_MPS_TABLE
  8800. //
  8801. // MessageText:
  8802. //
  8803. // A device is missing in the system BIOS MPS table. This device will not be used.
  8804. // Please contact your system vendor for system BIOS update.
  8805. //
  8806. #define STATUS_PNP_BAD_MPS_TABLE ((NTSTATUS)0xC0040035L)
  8807. //
  8808. // MessageId: STATUS_PNP_TRANSLATION_FAILED
  8809. //
  8810. // MessageText:
  8811. //
  8812. // A translator failed to translate resources.
  8813. //
  8814. #define STATUS_PNP_TRANSLATION_FAILED ((NTSTATUS)0xC0040036L)
  8815. //
  8816. // MessageId: STATUS_PNP_IRQ_TRANSLATION_FAILED
  8817. //
  8818. // MessageText:
  8819. //
  8820. // A IRQ translator failed to translate resources.
  8821. //
  8822. #define STATUS_PNP_IRQ_TRANSLATION_FAILED ((NTSTATUS)0xC0040037L)
  8823. //
  8824. // MessageId: STATUS_PNP_INVALID_ID
  8825. //
  8826. // MessageText:
  8827. //
  8828. // Driver %2 returned invalid ID for a child device (%3).
  8829. //
  8830. #define STATUS_PNP_INVALID_ID ((NTSTATUS)0xC0040038L)
  8831. //
  8832. // MessageId: STATUS_SXS_SECTION_NOT_FOUND
  8833. //
  8834. // MessageText:
  8835. //
  8836. // The requested section is not present in the activation context.
  8837. //
  8838. #define STATUS_SXS_SECTION_NOT_FOUND ((NTSTATUS)0xC0150001L)
  8839. //
  8840. // MessageId: STATUS_SXS_CANT_GEN_ACTCTX
  8841. //
  8842. // MessageText:
  8843. //
  8844. // Windows was not able to process the application binding information.
  8845. // Please refer to your System Event Log for further information.
  8846. //
  8847. #define STATUS_SXS_CANT_GEN_ACTCTX ((NTSTATUS)0xC0150002L)
  8848. //
  8849. // MessageId: STATUS_SXS_INVALID_ACTCTXDATA_FORMAT
  8850. //
  8851. // MessageText:
  8852. //
  8853. // The application binding data format is invalid.
  8854. //
  8855. #define STATUS_SXS_INVALID_ACTCTXDATA_FORMAT ((NTSTATUS)0xC0150003L)
  8856. //
  8857. // MessageId: STATUS_SXS_ASSEMBLY_NOT_FOUND
  8858. //
  8859. // MessageText:
  8860. //
  8861. // The referenced assembly is not installed on your system.
  8862. //
  8863. #define STATUS_SXS_ASSEMBLY_NOT_FOUND ((NTSTATUS)0xC0150004L)
  8864. //
  8865. // MessageId: STATUS_SXS_MANIFEST_FORMAT_ERROR
  8866. //
  8867. // MessageText:
  8868. //
  8869. // The manifest file does not begin with the required tag and format information.
  8870. //
  8871. #define STATUS_SXS_MANIFEST_FORMAT_ERROR ((NTSTATUS)0xC0150005L)
  8872. //
  8873. // MessageId: STATUS_SXS_MANIFEST_PARSE_ERROR
  8874. //
  8875. // MessageText:
  8876. //
  8877. // The manifest file contains one or more syntax errors.
  8878. //
  8879. #define STATUS_SXS_MANIFEST_PARSE_ERROR ((NTSTATUS)0xC0150006L)
  8880. //
  8881. // MessageId: STATUS_SXS_ACTIVATION_CONTEXT_DISABLED
  8882. //
  8883. // MessageText:
  8884. //
  8885. // The application attempted to activate a disabled activation context.
  8886. //
  8887. #define STATUS_SXS_ACTIVATION_CONTEXT_DISABLED ((NTSTATUS)0xC0150007L)
  8888. //
  8889. // MessageId: STATUS_SXS_KEY_NOT_FOUND
  8890. //
  8891. // MessageText:
  8892. //
  8893. // The requested lookup key was not found in any active activation context.
  8894. //
  8895. #define STATUS_SXS_KEY_NOT_FOUND ((NTSTATUS)0xC0150008L)
  8896. //
  8897. // MessageId: STATUS_SXS_VERSION_CONFLICT
  8898. //
  8899. // MessageText:
  8900. //
  8901. // A component version required by the application conflicts with another component version already active.
  8902. //
  8903. #define STATUS_SXS_VERSION_CONFLICT ((NTSTATUS)0xC0150009L)
  8904. //
  8905. // MessageId: STATUS_SXS_WRONG_SECTION_TYPE
  8906. //
  8907. // MessageText:
  8908. //
  8909. // The type requested activation context section does not match the query API used.
  8910. //
  8911. #define STATUS_SXS_WRONG_SECTION_TYPE ((NTSTATUS)0xC015000AL)
  8912. //
  8913. // MessageId: STATUS_SXS_THREAD_QUERIES_DISABLED
  8914. //
  8915. // MessageText:
  8916. //
  8917. // Lack of system resources has required isolated activation to be disabled for the current thread of execution.
  8918. //
  8919. #define STATUS_SXS_THREAD_QUERIES_DISABLED ((NTSTATUS)0xC015000BL)
  8920. //
  8921. // MessageId: STATUS_SXS_ASSEMBLY_MISSING
  8922. //
  8923. // MessageText:
  8924. //
  8925. // The referenced assembly could not be found.
  8926. //
  8927. #define STATUS_SXS_ASSEMBLY_MISSING ((NTSTATUS)0xC015000CL)
  8928. //
  8929. // MessageId: STATUS_SXS_RELEASE_ACTIVATION_CONTEXT
  8930. //
  8931. // MessageText:
  8932. //
  8933. // A kernel mode component is releasing a reference on an activation context.
  8934. //
  8935. #define STATUS_SXS_RELEASE_ACTIVATION_CONTEXT ((NTSTATUS)0x4015000DL)
  8936. //
  8937. // MessageId: STATUS_SXS_PROCESS_DEFAULT_ALREADY_SET
  8938. //
  8939. // MessageText:
  8940. //
  8941. // An attempt to set the process default activation context failed because the process default activation context was already set.
  8942. //
  8943. #define STATUS_SXS_PROCESS_DEFAULT_ALREADY_SET ((NTSTATUS)0xC015000EL)
  8944. #if defined(STATUS_SUCCESS) || (_WIN32_WINNT > 0x0500) || (_WIN32_FUSION >= 0x0100) // winnt
  8945. //
  8946. // MessageId: STATUS_SXS_EARLY_DEACTIVATION
  8947. //
  8948. // MessageText:
  8949. //
  8950. // The activation context being deactivated is not the most recently activated one.
  8951. //
  8952. #define STATUS_SXS_EARLY_DEACTIVATION ((NTSTATUS)0xC015000FL) // winnt
  8953. //
  8954. // MessageId: STATUS_SXS_INVALID_DEACTIVATION
  8955. //
  8956. // MessageText:
  8957. //
  8958. // The activation context being deactivated is not active for the current thread of execution.
  8959. //
  8960. #define STATUS_SXS_INVALID_DEACTIVATION ((NTSTATUS)0xC0150010L) // winnt
  8961. #endif // winnt
  8962. //
  8963. // MessageId: STATUS_SXS_MULTIPLE_DEACTIVATION
  8964. //
  8965. // MessageText:
  8966. //
  8967. // The activation context being deactivated has already been deactivated.
  8968. //
  8969. #define STATUS_SXS_MULTIPLE_DEACTIVATION ((NTSTATUS)0xC0150011L)
  8970. //
  8971. // MessageId: STATUS_SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY
  8972. //
  8973. // MessageText:
  8974. //
  8975. // The activation context of system default assembly could not be generated.
  8976. //
  8977. #define STATUS_SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY ((NTSTATUS)0xC0150012L)
  8978. //
  8979. // MessageId: STATUS_SXS_PROCESS_TERMINATION_REQUESTED
  8980. //
  8981. // MessageText:
  8982. //
  8983. // A component used by the isolation facility has requested to terminate the process.
  8984. //
  8985. #define STATUS_SXS_PROCESS_TERMINATION_REQUESTED ((NTSTATUS)0xC0150013L)
  8986. //
  8987. // MessageId: STATUS_SXS_CORRUPT_ACTIVATION_STACK
  8988. //
  8989. // MessageText:
  8990. //
  8991. // The activation context activation stack for the running thread of execution is corrupt.
  8992. //
  8993. #define STATUS_SXS_CORRUPT_ACTIVATION_STACK ((NTSTATUS)0xC0150014L)
  8994. //
  8995. // MessageId: STATUS_SXS_CORRUPTION
  8996. //
  8997. // MessageText:
  8998. //
  8999. // The application isolation metadata for this process or thread has become corrupt.
  9000. //
  9001. #define STATUS_SXS_CORRUPTION ((NTSTATUS)0xC0150015L)
  9002. //
  9003. // MessageId: STATUS_CLUSTER_INVALID_NODE
  9004. //
  9005. // MessageText:
  9006. //
  9007. // The cluster node is not valid.
  9008. //
  9009. #define STATUS_CLUSTER_INVALID_NODE ((NTSTATUS)0xC0130001L)
  9010. //
  9011. // MessageId: STATUS_CLUSTER_NODE_EXISTS
  9012. //
  9013. // MessageText:
  9014. //
  9015. // The cluster node already exists.
  9016. //
  9017. #define STATUS_CLUSTER_NODE_EXISTS ((NTSTATUS)0xC0130002L)
  9018. //
  9019. // MessageId: STATUS_CLUSTER_JOIN_IN_PROGRESS
  9020. //
  9021. // MessageText:
  9022. //
  9023. // A node is in the process of joining the cluster.
  9024. //
  9025. #define STATUS_CLUSTER_JOIN_IN_PROGRESS ((NTSTATUS)0xC0130003L)
  9026. //
  9027. // MessageId: STATUS_CLUSTER_NODE_NOT_FOUND
  9028. //
  9029. // MessageText:
  9030. //
  9031. // The cluster node was not found.
  9032. //
  9033. #define STATUS_CLUSTER_NODE_NOT_FOUND ((NTSTATUS)0xC0130004L)
  9034. //
  9035. // MessageId: STATUS_CLUSTER_LOCAL_NODE_NOT_FOUND
  9036. //
  9037. // MessageText:
  9038. //
  9039. // The cluster local node information was not found.
  9040. //
  9041. #define STATUS_CLUSTER_LOCAL_NODE_NOT_FOUND ((NTSTATUS)0xC0130005L)
  9042. //
  9043. // MessageId: STATUS_CLUSTER_NETWORK_EXISTS
  9044. //
  9045. // MessageText:
  9046. //
  9047. // The cluster network already exists.
  9048. //
  9049. #define STATUS_CLUSTER_NETWORK_EXISTS ((NTSTATUS)0xC0130006L)
  9050. //
  9051. // MessageId: STATUS_CLUSTER_NETWORK_NOT_FOUND
  9052. //
  9053. // MessageText:
  9054. //
  9055. // The cluster network was not found.
  9056. //
  9057. #define STATUS_CLUSTER_NETWORK_NOT_FOUND ((NTSTATUS)0xC0130007L)
  9058. //
  9059. // MessageId: STATUS_CLUSTER_NETINTERFACE_EXISTS
  9060. //
  9061. // MessageText:
  9062. //
  9063. // The cluster network interface already exists.
  9064. //
  9065. #define STATUS_CLUSTER_NETINTERFACE_EXISTS ((NTSTATUS)0xC0130008L)
  9066. //
  9067. // MessageId: STATUS_CLUSTER_NETINTERFACE_NOT_FOUND
  9068. //
  9069. // MessageText:
  9070. //
  9071. // The cluster network interface was not found.
  9072. //
  9073. #define STATUS_CLUSTER_NETINTERFACE_NOT_FOUND ((NTSTATUS)0xC0130009L)
  9074. //
  9075. // MessageId: STATUS_CLUSTER_INVALID_REQUEST
  9076. //
  9077. // MessageText:
  9078. //
  9079. // The cluster request is not valid for this object.
  9080. //
  9081. #define STATUS_CLUSTER_INVALID_REQUEST ((NTSTATUS)0xC013000AL)
  9082. //
  9083. // MessageId: STATUS_CLUSTER_INVALID_NETWORK_PROVIDER
  9084. //
  9085. // MessageText:
  9086. //
  9087. // The cluster network provider is not valid.
  9088. //
  9089. #define STATUS_CLUSTER_INVALID_NETWORK_PROVIDER ((NTSTATUS)0xC013000BL)
  9090. //
  9091. // MessageId: STATUS_CLUSTER_NODE_DOWN
  9092. //
  9093. // MessageText:
  9094. //
  9095. // The cluster node is down.
  9096. //
  9097. #define STATUS_CLUSTER_NODE_DOWN ((NTSTATUS)0xC013000CL)
  9098. //
  9099. // MessageId: STATUS_CLUSTER_NODE_UNREACHABLE
  9100. //
  9101. // MessageText:
  9102. //
  9103. // The cluster node is not reachable.
  9104. //
  9105. #define STATUS_CLUSTER_NODE_UNREACHABLE ((NTSTATUS)0xC013000DL)
  9106. //
  9107. // MessageId: STATUS_CLUSTER_NODE_NOT_MEMBER
  9108. //
  9109. // MessageText:
  9110. //
  9111. // The cluster node is not a member of the cluster.
  9112. //
  9113. #define STATUS_CLUSTER_NODE_NOT_MEMBER ((NTSTATUS)0xC013000EL)
  9114. //
  9115. // MessageId: STATUS_CLUSTER_JOIN_NOT_IN_PROGRESS
  9116. //
  9117. // MessageText:
  9118. //
  9119. // A cluster join operation is not in progress.
  9120. //
  9121. #define STATUS_CLUSTER_JOIN_NOT_IN_PROGRESS ((NTSTATUS)0xC013000FL)
  9122. //
  9123. // MessageId: STATUS_CLUSTER_INVALID_NETWORK
  9124. //
  9125. // MessageText:
  9126. //
  9127. // The cluster network is not valid.
  9128. //
  9129. #define STATUS_CLUSTER_INVALID_NETWORK ((NTSTATUS)0xC0130010L)
  9130. //
  9131. // MessageId: STATUS_CLUSTER_NO_NET_ADAPTERS
  9132. //
  9133. // MessageText:
  9134. //
  9135. // No network adapters are available.
  9136. //
  9137. #define STATUS_CLUSTER_NO_NET_ADAPTERS ((NTSTATUS)0xC0130011L)
  9138. //
  9139. // MessageId: STATUS_CLUSTER_NODE_UP
  9140. //
  9141. // MessageText:
  9142. //
  9143. // The cluster node is up.
  9144. //
  9145. #define STATUS_CLUSTER_NODE_UP ((NTSTATUS)0xC0130012L)
  9146. //
  9147. // MessageId: STATUS_CLUSTER_NODE_PAUSED
  9148. //
  9149. // MessageText:
  9150. //
  9151. // The cluster node is paused.
  9152. //
  9153. #define STATUS_CLUSTER_NODE_PAUSED ((NTSTATUS)0xC0130013L)
  9154. //
  9155. // MessageId: STATUS_CLUSTER_NODE_NOT_PAUSED
  9156. //
  9157. // MessageText:
  9158. //
  9159. // The cluster node is not paused.
  9160. //
  9161. #define STATUS_CLUSTER_NODE_NOT_PAUSED ((NTSTATUS)0xC0130014L)
  9162. //
  9163. // MessageId: STATUS_CLUSTER_NO_SECURITY_CONTEXT
  9164. //
  9165. // MessageText:
  9166. //
  9167. // No cluster security context is available.
  9168. //
  9169. #define STATUS_CLUSTER_NO_SECURITY_CONTEXT ((NTSTATUS)0xC0130015L)
  9170. //
  9171. // MessageId: STATUS_CLUSTER_NETWORK_NOT_INTERNAL
  9172. //
  9173. // MessageText:
  9174. //
  9175. // The cluster network is not configured for internal cluster communication.
  9176. //
  9177. #define STATUS_CLUSTER_NETWORK_NOT_INTERNAL ((NTSTATUS)0xC0130016L)
  9178. //
  9179. // MessageId: STATUS_CLUSTER_POISONED
  9180. //
  9181. // MessageText:
  9182. //
  9183. // The cluster node has been poisoned.
  9184. //
  9185. #define STATUS_CLUSTER_POISONED ((NTSTATUS)0xC0130017L)
  9186. /*lint -restore */ // Resume checking for different macro definitions // winnt
  9187. // end_ntsecapi
  9188. #endif // WIN32_NO_STATUS // winnt
  9189. #endif // _NTSTATUS_