PageRenderTime 100ms CodeModel.GetById 12ms RepoModel.GetById 0ms app.codeStats 3ms

/binding/win32/winerror.d

http://github.com/wilkie/djehuty
D | 23301 lines | 2538 code | 2662 blank | 18101 comment | 0 complexity | c375a9c2080a5622a71d11e5c1621a98 MD5 | raw file
  1. /*
  2. * winerror.d
  3. *
  4. * This module binds WinError.h to D. The original copyright notice
  5. * is preserved below.
  6. *
  7. * Author: Dave Wilkinson
  8. * Originated: November 25th, 2009
  9. *
  10. */
  11. module binding.win32.winerror;
  12. /************************************************************************
  13. * *
  14. * winerror.h -- error code definitions for the Win32 API functions *
  15. * *
  16. * Copyright (c) Microsoft Corp. All rights reserved. *
  17. * *
  18. ************************************************************************/
  19. //
  20. // Values are 32 bit values laid out as follows:
  21. //
  22. // 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
  23. // 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
  24. // +---+-+-+-----------------------+-------------------------------+
  25. // |Sev|C|R| Facility | Code |
  26. // +---+-+-+-----------------------+-------------------------------+
  27. //
  28. // where
  29. //
  30. // Sev - is the severity code
  31. //
  32. // 00 - Success
  33. // 01 - Informational
  34. // 10 - Warning
  35. // 11 - Error
  36. //
  37. // C - is the Customer code flag
  38. //
  39. // R - is a reserved bit
  40. //
  41. // Facility - is the facility code
  42. //
  43. // Code - is the facility's status code
  44. //
  45. //
  46. // Define the facility codes
  47. //
  48. const auto FACILITY_WINRM = 51;
  49. const auto FACILITY_WINDOWSUPDATE = 36;
  50. const auto FACILITY_WINDOWS_DEFENDER = 80;
  51. const auto FACILITY_WINDOWS_CE = 24;
  52. const auto FACILITY_WINDOWS = 8;
  53. const auto FACILITY_URT = 19;
  54. const auto FACILITY_UMI = 22;
  55. const auto FACILITY_TPM_SOFTWARE = 41;
  56. const auto FACILITY_TPM_SERVICES = 40;
  57. const auto FACILITY_SXS = 23;
  58. const auto FACILITY_STORAGE = 3;
  59. const auto FACILITY_STATE_MANAGEMENT = 34;
  60. const auto FACILITY_SSPI = 9;
  61. const auto FACILITY_SCARD = 16;
  62. const auto FACILITY_SHELL = 39;
  63. const auto FACILITY_SETUPAPI = 15;
  64. const auto FACILITY_SECURITY = 9;
  65. const auto FACILITY_RPC = 1;
  66. const auto FACILITY_PLA = 48;
  67. const auto FACILITY_WIN32 = 7;
  68. const auto FACILITY_CONTROL = 10;
  69. const auto FACILITY_NULL = 0;
  70. const auto FACILITY_NDIS = 52;
  71. const auto FACILITY_METADIRECTORY = 35;
  72. const auto FACILITY_MSMQ = 14;
  73. const auto FACILITY_MEDIASERVER = 13;
  74. const auto FACILITY_INTERNET = 12;
  75. const auto FACILITY_ITF = 4;
  76. const auto FACILITY_USERMODE_HYPERVISOR = 53;
  77. const auto FACILITY_HTTP = 25;
  78. const auto FACILITY_GRAPHICS = 38;
  79. const auto FACILITY_FWP = 50;
  80. const auto FACILITY_FVE = 49;
  81. const auto FACILITY_USERMODE_FILTER_MANAGER = 31;
  82. const auto FACILITY_DPLAY = 21;
  83. const auto FACILITY_DISPATCH = 2;
  84. const auto FACILITY_DIRECTORYSERVICE = 37;
  85. const auto FACILITY_CONFIGURATION = 33;
  86. const auto FACILITY_COMPLUS = 17;
  87. const auto FACILITY_USERMODE_COMMONLOG = 26;
  88. const auto FACILITY_CMI = 54;
  89. const auto FACILITY_CERT = 11;
  90. const auto FACILITY_BACKGROUNDCOPY = 32;
  91. const auto FACILITY_ACS = 20;
  92. const auto FACILITY_AAF = 18;
  93. //
  94. // Define the severity codes
  95. //
  96. //
  97. // MessageId: ERROR_SUCCESS
  98. //
  99. // MessageText:
  100. //
  101. // The operation completed successfully.
  102. //
  103. const auto ERROR_SUCCESS = 0;
  104. const auto NO_ERROR = 0;
  105. const auto SEC_E_OK = 0x00000000;
  106. //
  107. // MessageId: ERROR_INVALID_FUNCTION
  108. //
  109. // MessageText:
  110. //
  111. // Incorrect function.
  112. //
  113. const auto ERROR_INVALID_FUNCTION = 1;
  114. //
  115. // MessageId: ERROR_FILE_NOT_FOUND
  116. //
  117. // MessageText:
  118. //
  119. // The system cannot find the file specified.
  120. //
  121. const auto ERROR_FILE_NOT_FOUND = 2;
  122. //
  123. // MessageId: ERROR_PATH_NOT_FOUND
  124. //
  125. // MessageText:
  126. //
  127. // The system cannot find the path specified.
  128. //
  129. const auto ERROR_PATH_NOT_FOUND = 3;
  130. //
  131. // MessageId: ERROR_TOO_MANY_OPEN_FILES
  132. //
  133. // MessageText:
  134. //
  135. // The system cannot open the file.
  136. //
  137. const auto ERROR_TOO_MANY_OPEN_FILES = 4;
  138. //
  139. // MessageId: ERROR_ACCESS_DENIED
  140. //
  141. // MessageText:
  142. //
  143. // Access is denied.
  144. //
  145. const auto ERROR_ACCESS_DENIED = 5;
  146. //
  147. // MessageId: ERROR_INVALID_HANDLE
  148. //
  149. // MessageText:
  150. //
  151. // The handle is invalid.
  152. //
  153. const auto ERROR_INVALID_HANDLE = 6;
  154. //
  155. // MessageId: ERROR_ARENA_TRASHED
  156. //
  157. // MessageText:
  158. //
  159. // The storage control blocks were destroyed.
  160. //
  161. const auto ERROR_ARENA_TRASHED = 7;
  162. //
  163. // MessageId: ERROR_NOT_ENOUGH_MEMORY
  164. //
  165. // MessageText:
  166. //
  167. // Not enough storage is available to process this command.
  168. //
  169. const auto ERROR_NOT_ENOUGH_MEMORY = 8;
  170. //
  171. // MessageId: ERROR_INVALID_BLOCK
  172. //
  173. // MessageText:
  174. //
  175. // The storage control block address is invalid.
  176. //
  177. const auto ERROR_INVALID_BLOCK = 9;
  178. //
  179. // MessageId: ERROR_BAD_ENVIRONMENT
  180. //
  181. // MessageText:
  182. //
  183. // The environment is incorrect.
  184. //
  185. const auto ERROR_BAD_ENVIRONMENT = 10;
  186. //
  187. // MessageId: ERROR_BAD_FORMAT
  188. //
  189. // MessageText:
  190. //
  191. // An attempt was made to load a program with an incorrect format.
  192. //
  193. const auto ERROR_BAD_FORMAT = 11;
  194. //
  195. // MessageId: ERROR_INVALID_ACCESS
  196. //
  197. // MessageText:
  198. //
  199. // The access code is invalid.
  200. //
  201. const auto ERROR_INVALID_ACCESS = 12;
  202. //
  203. // MessageId: ERROR_INVALID_DATA
  204. //
  205. // MessageText:
  206. //
  207. // The data is invalid.
  208. //
  209. const auto ERROR_INVALID_DATA = 13;
  210. //
  211. // MessageId: ERROR_OUTOFMEMORY
  212. //
  213. // MessageText:
  214. //
  215. // Not enough storage is available to complete this operation.
  216. //
  217. const auto ERROR_OUTOFMEMORY = 14;
  218. //
  219. // MessageId: ERROR_INVALID_DRIVE
  220. //
  221. // MessageText:
  222. //
  223. // The system cannot find the drive specified.
  224. //
  225. const auto ERROR_INVALID_DRIVE = 15;
  226. //
  227. // MessageId: ERROR_CURRENT_DIRECTORY
  228. //
  229. // MessageText:
  230. //
  231. // The directory cannot be removed.
  232. //
  233. const auto ERROR_CURRENT_DIRECTORY = 16;
  234. //
  235. // MessageId: ERROR_NOT_SAME_DEVICE
  236. //
  237. // MessageText:
  238. //
  239. // The system cannot move the file to a different disk drive.
  240. //
  241. const auto ERROR_NOT_SAME_DEVICE = 17;
  242. //
  243. // MessageId: ERROR_NO_MORE_FILES
  244. //
  245. // MessageText:
  246. //
  247. // There are no more files.
  248. //
  249. const auto ERROR_NO_MORE_FILES = 18;
  250. //
  251. // MessageId: ERROR_WRITE_PROTECT
  252. //
  253. // MessageText:
  254. //
  255. // The media is write protected.
  256. //
  257. const auto ERROR_WRITE_PROTECT = 19;
  258. //
  259. // MessageId: ERROR_BAD_UNIT
  260. //
  261. // MessageText:
  262. //
  263. // The system cannot find the device specified.
  264. //
  265. const auto ERROR_BAD_UNIT = 20;
  266. //
  267. // MessageId: ERROR_NOT_READY
  268. //
  269. // MessageText:
  270. //
  271. // The device is not ready.
  272. //
  273. const auto ERROR_NOT_READY = 21;
  274. //
  275. // MessageId: ERROR_BAD_COMMAND
  276. //
  277. // MessageText:
  278. //
  279. // The device does not recognize the command.
  280. //
  281. const auto ERROR_BAD_COMMAND = 22;
  282. //
  283. // MessageId: ERROR_CRC
  284. //
  285. // MessageText:
  286. //
  287. // Data error (cyclic redundancy check).
  288. //
  289. const auto ERROR_CRC = 23;
  290. //
  291. // MessageId: ERROR_BAD_LENGTH
  292. //
  293. // MessageText:
  294. //
  295. // The program issued a command but the command length is incorrect.
  296. //
  297. const auto ERROR_BAD_LENGTH = 24;
  298. //
  299. // MessageId: ERROR_SEEK
  300. //
  301. // MessageText:
  302. //
  303. // The drive cannot locate a specific area or track on the disk.
  304. //
  305. const auto ERROR_SEEK = 25;
  306. //
  307. // MessageId: ERROR_NOT_DOS_DISK
  308. //
  309. // MessageText:
  310. //
  311. // The specified disk or diskette cannot be accessed.
  312. //
  313. const auto ERROR_NOT_DOS_DISK = 26;
  314. //
  315. // MessageId: ERROR_SECTOR_NOT_FOUND
  316. //
  317. // MessageText:
  318. //
  319. // The drive cannot find the sector requested.
  320. //
  321. const auto ERROR_SECTOR_NOT_FOUND = 27;
  322. //
  323. // MessageId: ERROR_OUT_OF_PAPER
  324. //
  325. // MessageText:
  326. //
  327. // The printer is out of paper.
  328. //
  329. const auto ERROR_OUT_OF_PAPER = 28;
  330. //
  331. // MessageId: ERROR_WRITE_FAULT
  332. //
  333. // MessageText:
  334. //
  335. // The system cannot write to the specified device.
  336. //
  337. const auto ERROR_WRITE_FAULT = 29;
  338. //
  339. // MessageId: ERROR_READ_FAULT
  340. //
  341. // MessageText:
  342. //
  343. // The system cannot read from the specified device.
  344. //
  345. const auto ERROR_READ_FAULT = 30;
  346. //
  347. // MessageId: ERROR_GEN_FAILURE
  348. //
  349. // MessageText:
  350. //
  351. // A device attached to the system is not functioning.
  352. //
  353. const auto ERROR_GEN_FAILURE = 31;
  354. //
  355. // MessageId: ERROR_SHARING_VIOLATION
  356. //
  357. // MessageText:
  358. //
  359. // The process cannot access the file because it is being used by another process.
  360. //
  361. const auto ERROR_SHARING_VIOLATION = 32;
  362. //
  363. // MessageId: ERROR_LOCK_VIOLATION
  364. //
  365. // MessageText:
  366. //
  367. // The process cannot access the file because another process has locked a portion of the file.
  368. //
  369. const auto ERROR_LOCK_VIOLATION = 33;
  370. //
  371. // MessageId: ERROR_WRONG_DISK
  372. //
  373. // MessageText:
  374. //
  375. // The wrong diskette is in the drive.
  376. // Insert %2 (Volume Serial Number: %3) into drive %1.
  377. //
  378. const auto ERROR_WRONG_DISK = 34;
  379. //
  380. // MessageId: ERROR_SHARING_BUFFER_EXCEEDED
  381. //
  382. // MessageText:
  383. //
  384. // Too many files opened for sharing.
  385. //
  386. const auto ERROR_SHARING_BUFFER_EXCEEDED = 36;
  387. //
  388. // MessageId: ERROR_HANDLE_EOF
  389. //
  390. // MessageText:
  391. //
  392. // Reached the end of the file.
  393. //
  394. const auto ERROR_HANDLE_EOF = 38;
  395. //
  396. // MessageId: ERROR_HANDLE_DISK_FULL
  397. //
  398. // MessageText:
  399. //
  400. // The disk is full.
  401. //
  402. const auto ERROR_HANDLE_DISK_FULL = 39;
  403. //
  404. // MessageId: ERROR_NOT_SUPPORTED
  405. //
  406. // MessageText:
  407. //
  408. // The request is not supported.
  409. //
  410. const auto ERROR_NOT_SUPPORTED = 50;
  411. //
  412. // MessageId: ERROR_REM_NOT_LIST
  413. //
  414. // MessageText:
  415. //
  416. // Windows cannot find the network path. Verify that the network path is correct and the destination computer is not busy or turned off. If Windows still cannot find the network path, contact your network administrator.
  417. //
  418. const auto ERROR_REM_NOT_LIST = 51;
  419. //
  420. // MessageId: ERROR_DUP_NAME
  421. //
  422. // MessageText:
  423. //
  424. // You were not connected because a duplicate name exists on the network. If joining a domain, go to System in Control Panel to change the computer name and try again. If joining a workgroup, choose another workgroup name.
  425. //
  426. const auto ERROR_DUP_NAME = 52;
  427. //
  428. // MessageId: ERROR_BAD_NETPATH
  429. //
  430. // MessageText:
  431. //
  432. // The network path was not found.
  433. //
  434. const auto ERROR_BAD_NETPATH = 53;
  435. //
  436. // MessageId: ERROR_NETWORK_BUSY
  437. //
  438. // MessageText:
  439. //
  440. // The network is busy.
  441. //
  442. const auto ERROR_NETWORK_BUSY = 54;
  443. //
  444. // MessageId: ERROR_DEV_NOT_EXIST
  445. //
  446. // MessageText:
  447. //
  448. // The specified network resource or device is no longer available.
  449. //
  450. const auto ERROR_DEV_NOT_EXIST = 55;
  451. //
  452. // MessageId: ERROR_TOO_MANY_CMDS
  453. //
  454. // MessageText:
  455. //
  456. // The network BIOS command limit has been reached.
  457. //
  458. const auto ERROR_TOO_MANY_CMDS = 56;
  459. //
  460. // MessageId: ERROR_ADAP_HDW_ERR
  461. //
  462. // MessageText:
  463. //
  464. // A network adapter hardware error occurred.
  465. //
  466. const auto ERROR_ADAP_HDW_ERR = 57;
  467. //
  468. // MessageId: ERROR_BAD_NET_RESP
  469. //
  470. // MessageText:
  471. //
  472. // The specified server cannot perform the requested operation.
  473. //
  474. const auto ERROR_BAD_NET_RESP = 58;
  475. //
  476. // MessageId: ERROR_UNEXP_NET_ERR
  477. //
  478. // MessageText:
  479. //
  480. // An unexpected network error occurred.
  481. //
  482. const auto ERROR_UNEXP_NET_ERR = 59;
  483. //
  484. // MessageId: ERROR_BAD_REM_ADAP
  485. //
  486. // MessageText:
  487. //
  488. // The remote adapter is not compatible.
  489. //
  490. const auto ERROR_BAD_REM_ADAP = 60;
  491. //
  492. // MessageId: ERROR_PRINTQ_FULL
  493. //
  494. // MessageText:
  495. //
  496. // The printer queue is full.
  497. //
  498. const auto ERROR_PRINTQ_FULL = 61;
  499. //
  500. // MessageId: ERROR_NO_SPOOL_SPACE
  501. //
  502. // MessageText:
  503. //
  504. // Space to store the file waiting to be printed is not available on the server.
  505. //
  506. const auto ERROR_NO_SPOOL_SPACE = 62;
  507. //
  508. // MessageId: ERROR_PRINT_CANCELLED
  509. //
  510. // MessageText:
  511. //
  512. // Your file waiting to be printed was deleted.
  513. //
  514. const auto ERROR_PRINT_CANCELLED = 63;
  515. //
  516. // MessageId: ERROR_NETNAME_DELETED
  517. //
  518. // MessageText:
  519. //
  520. // The specified network name is no longer available.
  521. //
  522. const auto ERROR_NETNAME_DELETED = 64;
  523. //
  524. // MessageId: ERROR_NETWORK_ACCESS_DENIED
  525. //
  526. // MessageText:
  527. //
  528. // Network access is denied.
  529. //
  530. const auto ERROR_NETWORK_ACCESS_DENIED = 65;
  531. //
  532. // MessageId: ERROR_BAD_DEV_TYPE
  533. //
  534. // MessageText:
  535. //
  536. // The network resource type is not correct.
  537. //
  538. const auto ERROR_BAD_DEV_TYPE = 66;
  539. //
  540. // MessageId: ERROR_BAD_NET_NAME
  541. //
  542. // MessageText:
  543. //
  544. // The network name cannot be found.
  545. //
  546. const auto ERROR_BAD_NET_NAME = 67;
  547. //
  548. // MessageId: ERROR_TOO_MANY_NAMES
  549. //
  550. // MessageText:
  551. //
  552. // The name limit for the local computer network adapter card was exceeded.
  553. //
  554. const auto ERROR_TOO_MANY_NAMES = 68;
  555. //
  556. // MessageId: ERROR_TOO_MANY_SESS
  557. //
  558. // MessageText:
  559. //
  560. // The network BIOS session limit was exceeded.
  561. //
  562. const auto ERROR_TOO_MANY_SESS = 69;
  563. //
  564. // MessageId: ERROR_SHARING_PAUSED
  565. //
  566. // MessageText:
  567. //
  568. // The remote server has been paused or is in the process of being started.
  569. //
  570. const auto ERROR_SHARING_PAUSED = 70;
  571. //
  572. // MessageId: ERROR_REQ_NOT_ACCEP
  573. //
  574. // MessageText:
  575. //
  576. // 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.
  577. //
  578. const auto ERROR_REQ_NOT_ACCEP = 71;
  579. //
  580. // MessageId: ERROR_REDIR_PAUSED
  581. //
  582. // MessageText:
  583. //
  584. // The specified printer or disk device has been paused.
  585. //
  586. const auto ERROR_REDIR_PAUSED = 72;
  587. //
  588. // MessageId: ERROR_FILE_EXISTS
  589. //
  590. // MessageText:
  591. //
  592. // The file exists.
  593. //
  594. const auto ERROR_FILE_EXISTS = 80;
  595. //
  596. // MessageId: ERROR_CANNOT_MAKE
  597. //
  598. // MessageText:
  599. //
  600. // The directory or file cannot be created.
  601. //
  602. const auto ERROR_CANNOT_MAKE = 82;
  603. //
  604. // MessageId: ERROR_FAIL_I24
  605. //
  606. // MessageText:
  607. //
  608. // Fail on INT 24.
  609. //
  610. const auto ERROR_FAIL_I24 = 83;
  611. //
  612. // MessageId: ERROR_OUT_OF_STRUCTURES
  613. //
  614. // MessageText:
  615. //
  616. // Storage to process this request is not available.
  617. //
  618. const auto ERROR_OUT_OF_STRUCTURES = 84;
  619. //
  620. // MessageId: ERROR_ALREADY_ASSIGNED
  621. //
  622. // MessageText:
  623. //
  624. // The local device name is already in use.
  625. //
  626. const auto ERROR_ALREADY_ASSIGNED = 85;
  627. //
  628. // MessageId: ERROR_INVALID_PASSWORD
  629. //
  630. // MessageText:
  631. //
  632. // The specified network password is not correct.
  633. //
  634. const auto ERROR_INVALID_PASSWORD = 86;
  635. //
  636. // MessageId: ERROR_INVALID_PARAMETER
  637. //
  638. // MessageText:
  639. //
  640. // The parameter is incorrect.
  641. //
  642. const auto ERROR_INVALID_PARAMETER = 87;
  643. //
  644. // MessageId: ERROR_NET_WRITE_FAULT
  645. //
  646. // MessageText:
  647. //
  648. // A write fault occurred on the network.
  649. //
  650. const auto ERROR_NET_WRITE_FAULT = 88;
  651. //
  652. // MessageId: ERROR_NO_PROC_SLOTS
  653. //
  654. // MessageText:
  655. //
  656. // The system cannot start another process at this time.
  657. //
  658. const auto ERROR_NO_PROC_SLOTS = 89;
  659. //
  660. // MessageId: ERROR_TOO_MANY_SEMAPHORES
  661. //
  662. // MessageText:
  663. //
  664. // Cannot create another system semaphore.
  665. //
  666. const auto ERROR_TOO_MANY_SEMAPHORES = 100;
  667. //
  668. // MessageId: ERROR_EXCL_SEM_ALREADY_OWNED
  669. //
  670. // MessageText:
  671. //
  672. // The exclusive semaphore is owned by another process.
  673. //
  674. const auto ERROR_EXCL_SEM_ALREADY_OWNED = 101;
  675. //
  676. // MessageId: ERROR_SEM_IS_SET
  677. //
  678. // MessageText:
  679. //
  680. // The semaphore is set and cannot be closed.
  681. //
  682. const auto ERROR_SEM_IS_SET = 102;
  683. //
  684. // MessageId: ERROR_TOO_MANY_SEM_REQUESTS
  685. //
  686. // MessageText:
  687. //
  688. // The semaphore cannot be set again.
  689. //
  690. const auto ERROR_TOO_MANY_SEM_REQUESTS = 103;
  691. //
  692. // MessageId: ERROR_INVALID_AT_INTERRUPT_TIME
  693. //
  694. // MessageText:
  695. //
  696. // Cannot request exclusive semaphores at interrupt time.
  697. //
  698. const auto ERROR_INVALID_AT_INTERRUPT_TIME = 104;
  699. //
  700. // MessageId: ERROR_SEM_OWNER_DIED
  701. //
  702. // MessageText:
  703. //
  704. // The previous ownership of this semaphore has ended.
  705. //
  706. const auto ERROR_SEM_OWNER_DIED = 105;
  707. //
  708. // MessageId: ERROR_SEM_USER_LIMIT
  709. //
  710. // MessageText:
  711. //
  712. // Insert the diskette for drive %1.
  713. //
  714. const auto ERROR_SEM_USER_LIMIT = 106;
  715. //
  716. // MessageId: ERROR_DISK_CHANGE
  717. //
  718. // MessageText:
  719. //
  720. // The program stopped because an alternate diskette was not inserted.
  721. //
  722. const auto ERROR_DISK_CHANGE = 107;
  723. //
  724. // MessageId: ERROR_DRIVE_LOCKED
  725. //
  726. // MessageText:
  727. //
  728. // The disk is in use or locked by another process.
  729. //
  730. const auto ERROR_DRIVE_LOCKED = 108;
  731. //
  732. // MessageId: ERROR_BROKEN_PIPE
  733. //
  734. // MessageText:
  735. //
  736. // The pipe has been ended.
  737. //
  738. const auto ERROR_BROKEN_PIPE = 109;
  739. //
  740. // MessageId: ERROR_OPEN_FAILED
  741. //
  742. // MessageText:
  743. //
  744. // The system cannot open the device or file specified.
  745. //
  746. const auto ERROR_OPEN_FAILED = 110;
  747. //
  748. // MessageId: ERROR_BUFFER_OVERFLOW
  749. //
  750. // MessageText:
  751. //
  752. // The file name is too long.
  753. //
  754. const auto ERROR_BUFFER_OVERFLOW = 111;
  755. //
  756. // MessageId: ERROR_DISK_FULL
  757. //
  758. // MessageText:
  759. //
  760. // There is not enough space on the disk.
  761. //
  762. const auto ERROR_DISK_FULL = 112;
  763. //
  764. // MessageId: ERROR_NO_MORE_SEARCH_HANDLES
  765. //
  766. // MessageText:
  767. //
  768. // No more internal file identifiers available.
  769. //
  770. const auto ERROR_NO_MORE_SEARCH_HANDLES = 113;
  771. //
  772. // MessageId: ERROR_INVALID_TARGET_HANDLE
  773. //
  774. // MessageText:
  775. //
  776. // The target internal file identifier is incorrect.
  777. //
  778. const auto ERROR_INVALID_TARGET_HANDLE = 114;
  779. //
  780. // MessageId: ERROR_INVALID_CATEGORY
  781. //
  782. // MessageText:
  783. //
  784. // The IOCTL call made by the application program is not correct.
  785. //
  786. const auto ERROR_INVALID_CATEGORY = 117;
  787. //
  788. // MessageId: ERROR_INVALID_VERIFY_SWITCH
  789. //
  790. // MessageText:
  791. //
  792. // The verify-on-write switch parameter value is not correct.
  793. //
  794. const auto ERROR_INVALID_VERIFY_SWITCH = 118;
  795. //
  796. // MessageId: ERROR_BAD_DRIVER_LEVEL
  797. //
  798. // MessageText:
  799. //
  800. // The system does not support the command requested.
  801. //
  802. const auto ERROR_BAD_DRIVER_LEVEL = 119;
  803. //
  804. // MessageId: ERROR_CALL_NOT_IMPLEMENTED
  805. //
  806. // MessageText:
  807. //
  808. // This function is not supported on this system.
  809. //
  810. const auto ERROR_CALL_NOT_IMPLEMENTED = 120;
  811. //
  812. // MessageId: ERROR_SEM_TIMEOUT
  813. //
  814. // MessageText:
  815. //
  816. // The semaphore timeout period has expired.
  817. //
  818. const auto ERROR_SEM_TIMEOUT = 121;
  819. //
  820. // MessageId: ERROR_INSUFFICIENT_BUFFER
  821. //
  822. // MessageText:
  823. //
  824. // The data area passed to a system call is too small.
  825. //
  826. const auto ERROR_INSUFFICIENT_BUFFER = 122;
  827. //
  828. // MessageId: ERROR_INVALID_NAME
  829. //
  830. // MessageText:
  831. //
  832. // The filename, directory name, or volume label syntax is incorrect.
  833. //
  834. const auto ERROR_INVALID_NAME = 123;
  835. //
  836. // MessageId: ERROR_INVALID_LEVEL
  837. //
  838. // MessageText:
  839. //
  840. // The system call level is not correct.
  841. //
  842. const auto ERROR_INVALID_LEVEL = 124;
  843. //
  844. // MessageId: ERROR_NO_VOLUME_LABEL
  845. //
  846. // MessageText:
  847. //
  848. // The disk has no volume label.
  849. //
  850. const auto ERROR_NO_VOLUME_LABEL = 125;
  851. //
  852. // MessageId: ERROR_MOD_NOT_FOUND
  853. //
  854. // MessageText:
  855. //
  856. // The specified module could not be found.
  857. //
  858. const auto ERROR_MOD_NOT_FOUND = 126;
  859. //
  860. // MessageId: ERROR_PROC_NOT_FOUND
  861. //
  862. // MessageText:
  863. //
  864. // The specified procedure could not be found.
  865. //
  866. const auto ERROR_PROC_NOT_FOUND = 127;
  867. //
  868. // MessageId: ERROR_WAIT_NO_CHILDREN
  869. //
  870. // MessageText:
  871. //
  872. // There are no child processes to wait for.
  873. //
  874. const auto ERROR_WAIT_NO_CHILDREN = 128;
  875. //
  876. // MessageId: ERROR_CHILD_NOT_COMPLETE
  877. //
  878. // MessageText:
  879. //
  880. // The %1 application cannot be run in Win32 mode.
  881. //
  882. const auto ERROR_CHILD_NOT_COMPLETE = 129;
  883. //
  884. // MessageId: ERROR_DIRECT_ACCESS_HANDLE
  885. //
  886. // MessageText:
  887. //
  888. // Attempt to use a file handle to an open disk partition for an operation other than raw disk I/O.
  889. //
  890. const auto ERROR_DIRECT_ACCESS_HANDLE = 130;
  891. //
  892. // MessageId: ERROR_NEGATIVE_SEEK
  893. //
  894. // MessageText:
  895. //
  896. // An attempt was made to move the file pointer before the beginning of the file.
  897. //
  898. const auto ERROR_NEGATIVE_SEEK = 131;
  899. //
  900. // MessageId: ERROR_SEEK_ON_DEVICE
  901. //
  902. // MessageText:
  903. //
  904. // The file pointer cannot be set on the specified device or file.
  905. //
  906. const auto ERROR_SEEK_ON_DEVICE = 132;
  907. //
  908. // MessageId: ERROR_IS_JOIN_TARGET
  909. //
  910. // MessageText:
  911. //
  912. // A JOIN or SUBST command cannot be used for a drive that contains previously joined drives.
  913. //
  914. const auto ERROR_IS_JOIN_TARGET = 133;
  915. //
  916. // MessageId: ERROR_IS_JOINED
  917. //
  918. // MessageText:
  919. //
  920. // An attempt was made to use a JOIN or SUBST command on a drive that has already been joined.
  921. //
  922. const auto ERROR_IS_JOINED = 134;
  923. //
  924. // MessageId: ERROR_IS_SUBSTED
  925. //
  926. // MessageText:
  927. //
  928. // An attempt was made to use a JOIN or SUBST command on a drive that has already been substituted.
  929. //
  930. const auto ERROR_IS_SUBSTED = 135;
  931. //
  932. // MessageId: ERROR_NOT_JOINED
  933. //
  934. // MessageText:
  935. //
  936. // The system tried to delete the JOIN of a drive that is not joined.
  937. //
  938. const auto ERROR_NOT_JOINED = 136;
  939. //
  940. // MessageId: ERROR_NOT_SUBSTED
  941. //
  942. // MessageText:
  943. //
  944. // The system tried to delete the substitution of a drive that is not substituted.
  945. //
  946. const auto ERROR_NOT_SUBSTED = 137;
  947. //
  948. // MessageId: ERROR_JOIN_TO_JOIN
  949. //
  950. // MessageText:
  951. //
  952. // The system tried to join a drive to a directory on a joined drive.
  953. //
  954. const auto ERROR_JOIN_TO_JOIN = 138;
  955. //
  956. // MessageId: ERROR_SUBST_TO_SUBST
  957. //
  958. // MessageText:
  959. //
  960. // The system tried to substitute a drive to a directory on a substituted drive.
  961. //
  962. const auto ERROR_SUBST_TO_SUBST = 139;
  963. //
  964. // MessageId: ERROR_JOIN_TO_SUBST
  965. //
  966. // MessageText:
  967. //
  968. // The system tried to join a drive to a directory on a substituted drive.
  969. //
  970. const auto ERROR_JOIN_TO_SUBST = 140;
  971. //
  972. // MessageId: ERROR_SUBST_TO_JOIN
  973. //
  974. // MessageText:
  975. //
  976. // The system tried to SUBST a drive to a directory on a joined drive.
  977. //
  978. const auto ERROR_SUBST_TO_JOIN = 141;
  979. //
  980. // MessageId: ERROR_BUSY_DRIVE
  981. //
  982. // MessageText:
  983. //
  984. // The system cannot perform a JOIN or SUBST at this time.
  985. //
  986. const auto ERROR_BUSY_DRIVE = 142;
  987. //
  988. // MessageId: ERROR_SAME_DRIVE
  989. //
  990. // MessageText:
  991. //
  992. // The system cannot join or substitute a drive to or for a directory on the same drive.
  993. //
  994. const auto ERROR_SAME_DRIVE = 143;
  995. //
  996. // MessageId: ERROR_DIR_NOT_ROOT
  997. //
  998. // MessageText:
  999. //
  1000. // The directory is not a subdirectory of the root directory.
  1001. //
  1002. const auto ERROR_DIR_NOT_ROOT = 144;
  1003. //
  1004. // MessageId: ERROR_DIR_NOT_EMPTY
  1005. //
  1006. // MessageText:
  1007. //
  1008. // The directory is not empty.
  1009. //
  1010. const auto ERROR_DIR_NOT_EMPTY = 145;
  1011. //
  1012. // MessageId: ERROR_IS_SUBST_PATH
  1013. //
  1014. // MessageText:
  1015. //
  1016. // The path specified is being used in a substitute.
  1017. //
  1018. const auto ERROR_IS_SUBST_PATH = 146;
  1019. //
  1020. // MessageId: ERROR_IS_JOIN_PATH
  1021. //
  1022. // MessageText:
  1023. //
  1024. // Not enough resources are available to process this command.
  1025. //
  1026. const auto ERROR_IS_JOIN_PATH = 147;
  1027. //
  1028. // MessageId: ERROR_PATH_BUSY
  1029. //
  1030. // MessageText:
  1031. //
  1032. // The path specified cannot be used at this time.
  1033. //
  1034. const auto ERROR_PATH_BUSY = 148;
  1035. //
  1036. // MessageId: ERROR_IS_SUBST_TARGET
  1037. //
  1038. // MessageText:
  1039. //
  1040. // An attempt was made to join or substitute a drive for which a directory on the drive is the target of a previous substitute.
  1041. //
  1042. const auto ERROR_IS_SUBST_TARGET = 149;
  1043. //
  1044. // MessageId: ERROR_SYSTEM_TRACE
  1045. //
  1046. // MessageText:
  1047. //
  1048. // System trace information was not specified in your CONFIG.SYS file, or tracing is disallowed.
  1049. //
  1050. const auto ERROR_SYSTEM_TRACE = 150;
  1051. //
  1052. // MessageId: ERROR_INVALID_EVENT_COUNT
  1053. //
  1054. // MessageText:
  1055. //
  1056. // The number of specified semaphore events for DosMuxSemWait is not correct.
  1057. //
  1058. const auto ERROR_INVALID_EVENT_COUNT = 151;
  1059. //
  1060. // MessageId: ERROR_TOO_MANY_MUXWAITERS
  1061. //
  1062. // MessageText:
  1063. //
  1064. // DosMuxSemWait did not execute; too many semaphores are already set.
  1065. //
  1066. const auto ERROR_TOO_MANY_MUXWAITERS = 152;
  1067. //
  1068. // MessageId: ERROR_INVALID_LIST_FORMAT
  1069. //
  1070. // MessageText:
  1071. //
  1072. // The DosMuxSemWait list is not correct.
  1073. //
  1074. const auto ERROR_INVALID_LIST_FORMAT = 153;
  1075. //
  1076. // MessageId: ERROR_LABEL_TOO_LONG
  1077. //
  1078. // MessageText:
  1079. //
  1080. // The volume label you entered exceeds the label character limit of the target file system.
  1081. //
  1082. const auto ERROR_LABEL_TOO_LONG = 154;
  1083. //
  1084. // MessageId: ERROR_TOO_MANY_TCBS
  1085. //
  1086. // MessageText:
  1087. //
  1088. // Cannot create another thread.
  1089. //
  1090. const auto ERROR_TOO_MANY_TCBS = 155;
  1091. //
  1092. // MessageId: ERROR_SIGNAL_REFUSED
  1093. //
  1094. // MessageText:
  1095. //
  1096. // The recipient process has refused the signal.
  1097. //
  1098. const auto ERROR_SIGNAL_REFUSED = 156;
  1099. //
  1100. // MessageId: ERROR_DISCARDED
  1101. //
  1102. // MessageText:
  1103. //
  1104. // The segment is already discarded and cannot be locked.
  1105. //
  1106. const auto ERROR_DISCARDED = 157;
  1107. //
  1108. // MessageId: ERROR_NOT_LOCKED
  1109. //
  1110. // MessageText:
  1111. //
  1112. // The segment is already unlocked.
  1113. //
  1114. const auto ERROR_NOT_LOCKED = 158;
  1115. //
  1116. // MessageId: ERROR_BAD_THREADID_ADDR
  1117. //
  1118. // MessageText:
  1119. //
  1120. // The address for the thread ID is not correct.
  1121. //
  1122. const auto ERROR_BAD_THREADID_ADDR = 159;
  1123. //
  1124. // MessageId: ERROR_BAD_ARGUMENTS
  1125. //
  1126. // MessageText:
  1127. //
  1128. // One or more arguments are not correct.
  1129. //
  1130. const auto ERROR_BAD_ARGUMENTS = 160;
  1131. //
  1132. // MessageId: ERROR_BAD_PATHNAME
  1133. //
  1134. // MessageText:
  1135. //
  1136. // The specified path is invalid.
  1137. //
  1138. const auto ERROR_BAD_PATHNAME = 161;
  1139. //
  1140. // MessageId: ERROR_SIGNAL_PENDING
  1141. //
  1142. // MessageText:
  1143. //
  1144. // A signal is already pending.
  1145. //
  1146. const auto ERROR_SIGNAL_PENDING = 162;
  1147. //
  1148. // MessageId: ERROR_MAX_THRDS_REACHED
  1149. //
  1150. // MessageText:
  1151. //
  1152. // No more threads can be created in the system.
  1153. //
  1154. const auto ERROR_MAX_THRDS_REACHED = 164;
  1155. //
  1156. // MessageId: ERROR_LOCK_FAILED
  1157. //
  1158. // MessageText:
  1159. //
  1160. // Unable to lock a region of a file.
  1161. //
  1162. const auto ERROR_LOCK_FAILED = 167;
  1163. //
  1164. // MessageId: ERROR_BUSY
  1165. //
  1166. // MessageText:
  1167. //
  1168. // The requested resource is in use.
  1169. //
  1170. const auto ERROR_BUSY = 170;
  1171. //
  1172. // MessageId: ERROR_CANCEL_VIOLATION
  1173. //
  1174. // MessageText:
  1175. //
  1176. // A lock request was not outstanding for the supplied cancel region.
  1177. //
  1178. const auto ERROR_CANCEL_VIOLATION = 173;
  1179. //
  1180. // MessageId: ERROR_ATOMIC_LOCKS_NOT_SUPPORTED
  1181. //
  1182. // MessageText:
  1183. //
  1184. // The file system does not support atomic changes to the lock type.
  1185. //
  1186. const auto ERROR_ATOMIC_LOCKS_NOT_SUPPORTED = 174;
  1187. //
  1188. // MessageId: ERROR_INVALID_SEGMENT_NUMBER
  1189. //
  1190. // MessageText:
  1191. //
  1192. // The system detected a segment number that was not correct.
  1193. //
  1194. const auto ERROR_INVALID_SEGMENT_NUMBER = 180;
  1195. //
  1196. // MessageId: ERROR_INVALID_ORDINAL
  1197. //
  1198. // MessageText:
  1199. //
  1200. // The operating system cannot run %1.
  1201. //
  1202. const auto ERROR_INVALID_ORDINAL = 182;
  1203. //
  1204. // MessageId: ERROR_ALREADY_EXISTS
  1205. //
  1206. // MessageText:
  1207. //
  1208. // Cannot create a file when that file already exists.
  1209. //
  1210. const auto ERROR_ALREADY_EXISTS = 183;
  1211. //
  1212. // MessageId: ERROR_INVALID_FLAG_NUMBER
  1213. //
  1214. // MessageText:
  1215. //
  1216. // The flag passed is not correct.
  1217. //
  1218. const auto ERROR_INVALID_FLAG_NUMBER = 186;
  1219. //
  1220. // MessageId: ERROR_SEM_NOT_FOUND
  1221. //
  1222. // MessageText:
  1223. //
  1224. // The specified system semaphore name was not found.
  1225. //
  1226. const auto ERROR_SEM_NOT_FOUND = 187;
  1227. //
  1228. // MessageId: ERROR_INVALID_STARTING_CODESEG
  1229. //
  1230. // MessageText:
  1231. //
  1232. // The operating system cannot run %1.
  1233. //
  1234. const auto ERROR_INVALID_STARTING_CODESEG = 188;
  1235. //
  1236. // MessageId: ERROR_INVALID_STACKSEG
  1237. //
  1238. // MessageText:
  1239. //
  1240. // The operating system cannot run %1.
  1241. //
  1242. const auto ERROR_INVALID_STACKSEG = 189;
  1243. //
  1244. // MessageId: ERROR_INVALID_MODULETYPE
  1245. //
  1246. // MessageText:
  1247. //
  1248. // The operating system cannot run %1.
  1249. //
  1250. const auto ERROR_INVALID_MODULETYPE = 190;
  1251. //
  1252. // MessageId: ERROR_INVALID_EXE_SIGNATURE
  1253. //
  1254. // MessageText:
  1255. //
  1256. // Cannot run %1 in Win32 mode.
  1257. //
  1258. const auto ERROR_INVALID_EXE_SIGNATURE = 191;
  1259. //
  1260. // MessageId: ERROR_EXE_MARKED_INVALID
  1261. //
  1262. // MessageText:
  1263. //
  1264. // The operating system cannot run %1.
  1265. //
  1266. const auto ERROR_EXE_MARKED_INVALID = 192;
  1267. //
  1268. // MessageId: ERROR_BAD_EXE_FORMAT
  1269. //
  1270. // MessageText:
  1271. //
  1272. // %1 is not a valid Win32 application.
  1273. //
  1274. const auto ERROR_BAD_EXE_FORMAT = 193;
  1275. //
  1276. // MessageId: ERROR_ITERATED_DATA_EXCEEDS_64k
  1277. //
  1278. // MessageText:
  1279. //
  1280. // The operating system cannot run %1.
  1281. //
  1282. const auto ERROR_ITERATED_DATA_EXCEEDS_64k = 194;
  1283. //
  1284. // MessageId: ERROR_INVALID_MINALLOCSIZE
  1285. //
  1286. // MessageText:
  1287. //
  1288. // The operating system cannot run %1.
  1289. //
  1290. const auto ERROR_INVALID_MINALLOCSIZE = 195;
  1291. //
  1292. // MessageId: ERROR_DYNLINK_FROM_INVALID_RING
  1293. //
  1294. // MessageText:
  1295. //
  1296. // The operating system cannot run this application program.
  1297. //
  1298. const auto ERROR_DYNLINK_FROM_INVALID_RING = 196;
  1299. //
  1300. // MessageId: ERROR_IOPL_NOT_ENABLED
  1301. //
  1302. // MessageText:
  1303. //
  1304. // The operating system is not presently configured to run this application.
  1305. //
  1306. const auto ERROR_IOPL_NOT_ENABLED = 197;
  1307. //
  1308. // MessageId: ERROR_INVALID_SEGDPL
  1309. //
  1310. // MessageText:
  1311. //
  1312. // The operating system cannot run %1.
  1313. //
  1314. const auto ERROR_INVALID_SEGDPL = 198;
  1315. //
  1316. // MessageId: ERROR_AUTODATASEG_EXCEEDS_64k
  1317. //
  1318. // MessageText:
  1319. //
  1320. // The operating system cannot run this application program.
  1321. //
  1322. const auto ERROR_AUTODATASEG_EXCEEDS_64k = 199;
  1323. //
  1324. // MessageId: ERROR_RING2SEG_MUST_BE_MOVABLE
  1325. //
  1326. // MessageText:
  1327. //
  1328. // The code segment cannot be greater than or equal to 64K.
  1329. //
  1330. const auto ERROR_RING2SEG_MUST_BE_MOVABLE = 200;
  1331. //
  1332. // MessageId: ERROR_RELOC_CHAIN_XEEDS_SEGLIM
  1333. //
  1334. // MessageText:
  1335. //
  1336. // The operating system cannot run %1.
  1337. //
  1338. const auto ERROR_RELOC_CHAIN_XEEDS_SEGLIM = 201;
  1339. //
  1340. // MessageId: ERROR_INFLOOP_IN_RELOC_CHAIN
  1341. //
  1342. // MessageText:
  1343. //
  1344. // The operating system cannot run %1.
  1345. //
  1346. const auto ERROR_INFLOOP_IN_RELOC_CHAIN = 202;
  1347. //
  1348. // MessageId: ERROR_ENVVAR_NOT_FOUND
  1349. //
  1350. // MessageText:
  1351. //
  1352. // The system could not find the environment option that was entered.
  1353. //
  1354. const auto ERROR_ENVVAR_NOT_FOUND = 203;
  1355. //
  1356. // MessageId: ERROR_NO_SIGNAL_SENT
  1357. //
  1358. // MessageText:
  1359. //
  1360. // No process in the command subtree has a signal handler.
  1361. //
  1362. const auto ERROR_NO_SIGNAL_SENT = 205;
  1363. //
  1364. // MessageId: ERROR_FILENAME_EXCED_RANGE
  1365. //
  1366. // MessageText:
  1367. //
  1368. // The filename or extension is too long.
  1369. //
  1370. const auto ERROR_FILENAME_EXCED_RANGE = 206;
  1371. //
  1372. // MessageId: ERROR_RING2_STACK_IN_USE
  1373. //
  1374. // MessageText:
  1375. //
  1376. // The ring 2 stack is in use.
  1377. //
  1378. const auto ERROR_RING2_STACK_IN_USE = 207;
  1379. //
  1380. // MessageId: ERROR_META_EXPANSION_TOO_LONG
  1381. //
  1382. // MessageText:
  1383. //
  1384. // The global filename characters, * or ?, are entered incorrectly or too many global filename characters are specified.
  1385. //
  1386. const auto ERROR_META_EXPANSION_TOO_LONG = 208;
  1387. //
  1388. // MessageId: ERROR_INVALID_SIGNAL_NUMBER
  1389. //
  1390. // MessageText:
  1391. //
  1392. // The signal being posted is not correct.
  1393. //
  1394. const auto ERROR_INVALID_SIGNAL_NUMBER = 209;
  1395. //
  1396. // MessageId: ERROR_THREAD_1_INACTIVE
  1397. //
  1398. // MessageText:
  1399. //
  1400. // The signal handler cannot be set.
  1401. //
  1402. const auto ERROR_THREAD_1_INACTIVE = 210;
  1403. //
  1404. // MessageId: ERROR_LOCKED
  1405. //
  1406. // MessageText:
  1407. //
  1408. // The segment is locked and cannot be reallocated.
  1409. //
  1410. const auto ERROR_LOCKED = 212;
  1411. //
  1412. // MessageId: ERROR_TOO_MANY_MODULES
  1413. //
  1414. // MessageText:
  1415. //
  1416. // Too many dynamic-link modules are attached to this program or dynamic-link module.
  1417. //
  1418. const auto ERROR_TOO_MANY_MODULES = 214;
  1419. //
  1420. // MessageId: ERROR_NESTING_NOT_ALLOWED
  1421. //
  1422. // MessageText:
  1423. //
  1424. // Cannot nest calls to LoadModule.
  1425. //
  1426. const auto ERROR_NESTING_NOT_ALLOWED = 215;
  1427. //
  1428. // MessageId: ERROR_EXE_MACHINE_TYPE_MISMATCH
  1429. //
  1430. // MessageText:
  1431. //
  1432. // This version of %1 is not compatible with the version of Windows you're running. Check your computer's system information to see whether you need a x86 (32-bit) or x64 (64-bit) version of the program, and then contact the software publisher.
  1433. //
  1434. const auto ERROR_EXE_MACHINE_TYPE_MISMATCH = 216;
  1435. //
  1436. // MessageId: ERROR_EXE_CANNOT_MODIFY_SIGNED_BINARY
  1437. //
  1438. // MessageText:
  1439. //
  1440. // The image file %1 is signed, unable to modify.
  1441. //
  1442. const auto ERROR_EXE_CANNOT_MODIFY_SIGNED_BINARY = 217;
  1443. //
  1444. // MessageId: ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY
  1445. //
  1446. // MessageText:
  1447. //
  1448. // The image file %1 is strong signed, unable to modify.
  1449. //
  1450. const auto ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY = 218;
  1451. //
  1452. // MessageId: ERROR_FILE_CHECKED_OUT
  1453. //
  1454. // MessageText:
  1455. //
  1456. // This file is checked out or locked for editing by another user.
  1457. //
  1458. const auto ERROR_FILE_CHECKED_OUT = 220;
  1459. //
  1460. // MessageId: ERROR_CHECKOUT_REQUIRED
  1461. //
  1462. // MessageText:
  1463. //
  1464. // The file must be checked out before saving changes.
  1465. //
  1466. const auto ERROR_CHECKOUT_REQUIRED = 221;
  1467. //
  1468. // MessageId: ERROR_BAD_FILE_TYPE
  1469. //
  1470. // MessageText:
  1471. //
  1472. // The file type being saved or retrieved has been blocked.
  1473. //
  1474. const auto ERROR_BAD_FILE_TYPE = 222;
  1475. //
  1476. // MessageId: ERROR_FILE_TOO_LARGE
  1477. //
  1478. // MessageText:
  1479. //
  1480. // The file size exceeds the limit allowed and cannot be saved.
  1481. //
  1482. const auto ERROR_FILE_TOO_LARGE = 223;
  1483. //
  1484. // MessageId: ERROR_FORMS_AUTH_REQUIRED
  1485. //
  1486. // MessageText:
  1487. //
  1488. // Access Denied. Before opening files in this location, you must first browse to the web site and select the option to login automatically.
  1489. //
  1490. const auto ERROR_FORMS_AUTH_REQUIRED = 224;
  1491. //
  1492. // MessageId: ERROR_VIRUS_INFECTED
  1493. //
  1494. // MessageText:
  1495. //
  1496. // Operation did not complete successfully because the file contains a virus.
  1497. //
  1498. const auto ERROR_VIRUS_INFECTED = 225;
  1499. //
  1500. // MessageId: ERROR_VIRUS_DELETED
  1501. //
  1502. // MessageText:
  1503. //
  1504. // This file contains a virus and cannot be opened. Due to the nature of this virus, the file has been removed from this location.
  1505. //
  1506. const auto ERROR_VIRUS_DELETED = 226;
  1507. //
  1508. // MessageId: ERROR_PIPE_LOCAL
  1509. //
  1510. // MessageText:
  1511. //
  1512. // The pipe is local.
  1513. //
  1514. const auto ERROR_PIPE_LOCAL = 229;
  1515. //
  1516. // MessageId: ERROR_BAD_PIPE
  1517. //
  1518. // MessageText:
  1519. //
  1520. // The pipe state is invalid.
  1521. //
  1522. const auto ERROR_BAD_PIPE = 230;
  1523. //
  1524. // MessageId: ERROR_PIPE_BUSY
  1525. //
  1526. // MessageText:
  1527. //
  1528. // All pipe instances are busy.
  1529. //
  1530. const auto ERROR_PIPE_BUSY = 231;
  1531. //
  1532. // MessageId: ERROR_NO_DATA
  1533. //
  1534. // MessageText:
  1535. //
  1536. // The pipe is being closed.
  1537. //
  1538. const auto ERROR_NO_DATA = 232;
  1539. //
  1540. // MessageId: ERROR_PIPE_NOT_CONNECTED
  1541. //
  1542. // MessageText:
  1543. //
  1544. // No process is on the other end of the pipe.
  1545. //
  1546. const auto ERROR_PIPE_NOT_CONNECTED = 233;
  1547. //
  1548. // MessageId: ERROR_MORE_DATA
  1549. //
  1550. // MessageText:
  1551. //
  1552. // More data is available.
  1553. //
  1554. const auto ERROR_MORE_DATA = 234;
  1555. //
  1556. // MessageId: ERROR_VC_DISCONNECTED
  1557. //
  1558. // MessageText:
  1559. //
  1560. // The session was canceled.
  1561. //
  1562. const auto ERROR_VC_DISCONNECTED = 240;
  1563. //
  1564. // MessageId: ERROR_INVALID_EA_NAME
  1565. //
  1566. // MessageText:
  1567. //
  1568. // The specified extended attribute name was invalid.
  1569. //
  1570. const auto ERROR_INVALID_EA_NAME = 254;
  1571. //
  1572. // MessageId: ERROR_EA_LIST_INCONSISTENT
  1573. //
  1574. // MessageText:
  1575. //
  1576. // The extended attributes are inconsistent.
  1577. //
  1578. const auto ERROR_EA_LIST_INCONSISTENT = 255;
  1579. //
  1580. // MessageId: WAIT_TIMEOUT
  1581. //
  1582. // MessageText:
  1583. //
  1584. // The wait operation timed out.
  1585. //
  1586. const auto WAIT_TIMEOUT = 258;
  1587. //
  1588. // MessageId: ERROR_NO_MORE_ITEMS
  1589. //
  1590. // MessageText:
  1591. //
  1592. // No more data is available.
  1593. //
  1594. const auto ERROR_NO_MORE_ITEMS = 259;
  1595. //
  1596. // MessageId: ERROR_CANNOT_COPY
  1597. //
  1598. // MessageText:
  1599. //
  1600. // The copy functions cannot be used.
  1601. //
  1602. const auto ERROR_CANNOT_COPY = 266;
  1603. //
  1604. // MessageId: ERROR_DIRECTORY
  1605. //
  1606. // MessageText:
  1607. //
  1608. // The directory name is invalid.
  1609. //
  1610. const auto ERROR_DIRECTORY = 267;
  1611. //
  1612. // MessageId: ERROR_EAS_DIDNT_FIT
  1613. //
  1614. // MessageText:
  1615. //
  1616. // The extended attributes did not fit in the buffer.
  1617. //
  1618. const auto ERROR_EAS_DIDNT_FIT = 275;
  1619. //
  1620. // MessageId: ERROR_EA_FILE_CORRUPT
  1621. //
  1622. // MessageText:
  1623. //
  1624. // The extended attribute file on the mounted file system is corrupt.
  1625. //
  1626. const auto ERROR_EA_FILE_CORRUPT = 276;
  1627. //
  1628. // MessageId: ERROR_EA_TABLE_FULL
  1629. //
  1630. // MessageText:
  1631. //
  1632. // The extended attribute table file is full.
  1633. //
  1634. const auto ERROR_EA_TABLE_FULL = 277;
  1635. //
  1636. // MessageId: ERROR_INVALID_EA_HANDLE
  1637. //
  1638. // MessageText:
  1639. //
  1640. // The specified extended attribute handle is invalid.
  1641. //
  1642. const auto ERROR_INVALID_EA_HANDLE = 278;
  1643. //
  1644. // MessageId: ERROR_EAS_NOT_SUPPORTED
  1645. //
  1646. // MessageText:
  1647. //
  1648. // The mounted file system does not support extended attributes.
  1649. //
  1650. const auto ERROR_EAS_NOT_SUPPORTED = 282;
  1651. //
  1652. // MessageId: ERROR_NOT_OWNER
  1653. //
  1654. // MessageText:
  1655. //
  1656. // Attempt to release mutex not owned by caller.
  1657. //
  1658. const auto ERROR_NOT_OWNER = 288;
  1659. //
  1660. // MessageId: ERROR_TOO_MANY_POSTS
  1661. //
  1662. // MessageText:
  1663. //
  1664. // Too many posts were made to a semaphore.
  1665. //
  1666. const auto ERROR_TOO_MANY_POSTS = 298;
  1667. //
  1668. // MessageId: ERROR_PARTIAL_COPY
  1669. //
  1670. // MessageText:
  1671. //
  1672. // Only part of a ReadProcessMemory or WriteProcessMemory request was completed.
  1673. //
  1674. const auto ERROR_PARTIAL_COPY = 299;
  1675. //
  1676. // MessageId: ERROR_OPLOCK_NOT_GRANTED
  1677. //
  1678. // MessageText:
  1679. //
  1680. // The oplock request is denied.
  1681. //
  1682. const auto ERROR_OPLOCK_NOT_GRANTED = 300;
  1683. //
  1684. // MessageId: ERROR_INVALID_OPLOCK_PROTOCOL
  1685. //
  1686. // MessageText:
  1687. //
  1688. // An invalid oplock acknowledgment was received by the system.
  1689. //
  1690. const auto ERROR_INVALID_OPLOCK_PROTOCOL = 301;
  1691. //
  1692. // MessageId: ERROR_DISK_TOO_FRAGMENTED
  1693. //
  1694. // MessageText:
  1695. //
  1696. // The volume is too fragmented to complete this operation.
  1697. //
  1698. const auto ERROR_DISK_TOO_FRAGMENTED = 302;
  1699. //
  1700. // MessageId: ERROR_DELETE_PENDING
  1701. //
  1702. // MessageText:
  1703. //
  1704. // The file cannot be opened because it is in the process of being deleted.
  1705. //
  1706. const auto ERROR_DELETE_PENDING = 303;
  1707. //
  1708. // MessageId: ERROR_MR_MID_NOT_FOUND
  1709. //
  1710. // MessageText:
  1711. //
  1712. // The system cannot find message text for message number 0x%1 in the message file for %2.
  1713. //
  1714. const auto ERROR_MR_MID_NOT_FOUND = 317;
  1715. //
  1716. // MessageId: ERROR_SCOPE_NOT_FOUND
  1717. //
  1718. // MessageText:
  1719. //
  1720. // The scope specified was not found.
  1721. //
  1722. const auto ERROR_SCOPE_NOT_FOUND = 318;
  1723. //
  1724. // MessageId: ERROR_FAIL_NOACTION_REBOOT
  1725. //
  1726. // MessageText:
  1727. //
  1728. // No action was taken as a system reboot is required.
  1729. //
  1730. const auto ERROR_FAIL_NOACTION_REBOOT = 350;
  1731. //
  1732. // MessageId: ERROR_FAIL_SHUTDOWN
  1733. //
  1734. // MessageText:
  1735. //
  1736. // The shutdown operation failed.
  1737. //
  1738. const auto ERROR_FAIL_SHUTDOWN = 351;
  1739. //
  1740. // MessageId: ERROR_FAIL_RESTART
  1741. //
  1742. // MessageText:
  1743. //
  1744. // The restart operation failed.
  1745. //
  1746. const auto ERROR_FAIL_RESTART = 352;
  1747. //
  1748. // MessageId: ERROR_MAX_SESSIONS_REACHED
  1749. //
  1750. // MessageText:
  1751. //
  1752. // The maximum number of sessions has been reached.
  1753. //
  1754. const auto ERROR_MAX_SESSIONS_REACHED = 353;
  1755. //
  1756. // MessageId: ERROR_THREAD_MODE_ALREADY_BACKGROUND
  1757. //
  1758. // MessageText:
  1759. //
  1760. // The thread is already in background processing mode.
  1761. //
  1762. const auto ERROR_THREAD_MODE_ALREADY_BACKGROUND = 400;
  1763. //
  1764. // MessageId: ERROR_THREAD_MODE_NOT_BACKGROUND
  1765. //
  1766. // MessageText:
  1767. //
  1768. // The thread is not in background processing mode.
  1769. //
  1770. const auto ERROR_THREAD_MODE_NOT_BACKGROUND = 401;
  1771. //
  1772. // MessageId: ERROR_PROCESS_MODE_ALREADY_BACKGROUND
  1773. //
  1774. // MessageText:
  1775. //
  1776. // The process is already in background processing mode.
  1777. //
  1778. const auto ERROR_PROCESS_MODE_ALREADY_BACKGROUND = 402;
  1779. //
  1780. // MessageId: ERROR_PROCESS_MODE_NOT_BACKGROUND
  1781. //
  1782. // MessageText:
  1783. //
  1784. // The process is not in background processing mode.
  1785. //
  1786. const auto ERROR_PROCESS_MODE_NOT_BACKGROUND = 403;
  1787. //
  1788. // MessageId: ERROR_INVALID_ADDRESS
  1789. //
  1790. // MessageText:
  1791. //
  1792. // Attempt to access invalid address.
  1793. //
  1794. const auto ERROR_INVALID_ADDRESS = 487;
  1795. //
  1796. // MessageId: ERROR_USER_PROFILE_LOAD
  1797. //
  1798. // MessageText:
  1799. //
  1800. // User profile cannot be loaded.
  1801. //
  1802. const auto ERROR_USER_PROFILE_LOAD = 500;
  1803. //
  1804. // MessageId: ERROR_ARITHMETIC_OVERFLOW
  1805. //
  1806. // MessageText:
  1807. //
  1808. // Arithmetic result exceeded 32 bits.
  1809. //
  1810. const auto ERROR_ARITHMETIC_OVERFLOW = 534;
  1811. //
  1812. // MessageId: ERROR_PIPE_CONNECTED
  1813. //
  1814. // MessageText:
  1815. //
  1816. // There is a process on other end of the pipe.
  1817. //
  1818. const auto ERROR_PIPE_CONNECTED = 535;
  1819. //
  1820. // MessageId: ERROR_PIPE_LISTENING
  1821. //
  1822. // MessageText:
  1823. //
  1824. // Waiting for a process to open the other end of the pipe.
  1825. //
  1826. const auto ERROR_PIPE_LISTENING = 536;
  1827. //
  1828. // MessageId: ERROR_VERIFIER_STOP
  1829. //
  1830. // MessageText:
  1831. //
  1832. // Application verifier has found an error in the current process.
  1833. //
  1834. const auto ERROR_VERIFIER_STOP = 537;
  1835. //
  1836. // MessageId: ERROR_ABIOS_ERROR
  1837. //
  1838. // MessageText:
  1839. //
  1840. // An error occurred in the ABIOS subsystem.
  1841. //
  1842. const auto ERROR_ABIOS_ERROR = 538;
  1843. //
  1844. // MessageId: ERROR_WX86_WARNING
  1845. //
  1846. // MessageText:
  1847. //
  1848. // A warning occurred in the WX86 subsystem.
  1849. //
  1850. const auto ERROR_WX86_WARNING = 539;
  1851. //
  1852. // MessageId: ERROR_WX86_ERROR
  1853. //
  1854. // MessageText:
  1855. //
  1856. // An error occurred in the WX86 subsystem.
  1857. //
  1858. const auto ERROR_WX86_ERROR = 540;
  1859. //
  1860. // MessageId: ERROR_TIMER_NOT_CANCELED
  1861. //
  1862. // MessageText:
  1863. //
  1864. // 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.
  1865. //
  1866. const auto ERROR_TIMER_NOT_CANCELED = 541;
  1867. //
  1868. // MessageId: ERROR_UNWIND
  1869. //
  1870. // MessageText:
  1871. //
  1872. // Unwind exception code.
  1873. //
  1874. const auto ERROR_UNWIND = 542;
  1875. //
  1876. // MessageId: ERROR_BAD_STACK
  1877. //
  1878. // MessageText:
  1879. //
  1880. // An invalid or unaligned stack was encountered during an unwind operation.
  1881. //
  1882. const auto ERROR_BAD_STACK = 543;
  1883. //
  1884. // MessageId: ERROR_INVALID_UNWIND_TARGET
  1885. //
  1886. // MessageText:
  1887. //
  1888. // An invalid unwind target was encountered during an unwind operation.
  1889. //
  1890. const auto ERROR_INVALID_UNWIND_TARGET = 544;
  1891. //
  1892. // MessageId: ERROR_INVALID_PORT_ATTRIBUTES
  1893. //
  1894. // MessageText:
  1895. //
  1896. // Invalid Object Attributes specified to NtCreatePort or invalid Port Attributes specified to NtConnectPort
  1897. //
  1898. const auto ERROR_INVALID_PORT_ATTRIBUTES = 545;
  1899. //
  1900. // MessageId: ERROR_PORT_MESSAGE_TOO_LONG
  1901. //
  1902. // MessageText:
  1903. //
  1904. // Length of message passed to NtRequestPort or NtRequestWaitReplyPort was longer than the maximum message allowed by the port.
  1905. //
  1906. const auto ERROR_PORT_MESSAGE_TOO_LONG = 546;
  1907. //
  1908. // MessageId: ERROR_INVALID_QUOTA_LOWER
  1909. //
  1910. // MessageText:
  1911. //
  1912. // An attempt was made to lower a quota limit below the current usage.
  1913. //
  1914. const auto ERROR_INVALID_QUOTA_LOWER = 547;
  1915. //
  1916. // MessageId: ERROR_DEVICE_ALREADY_ATTACHED
  1917. //
  1918. // MessageText:
  1919. //
  1920. // An attempt was made to attach to a device that was already attached to another device.
  1921. //
  1922. const auto ERROR_DEVICE_ALREADY_ATTACHED = 548;
  1923. //
  1924. // MessageId: ERROR_INSTRUCTION_MISALIGNMENT
  1925. //
  1926. // MessageText:
  1927. //
  1928. // An attempt was made to execute an instruction at an unaligned address and the host system does not support unaligned instruction references.
  1929. //
  1930. const auto ERROR_INSTRUCTION_MISALIGNMENT = 549;
  1931. //
  1932. // MessageId: ERROR_PROFILING_NOT_STARTED
  1933. //
  1934. // MessageText:
  1935. //
  1936. // Profiling not started.
  1937. //
  1938. const auto ERROR_PROFILING_NOT_STARTED = 550;
  1939. //
  1940. // MessageId: ERROR_PROFILING_NOT_STOPPED
  1941. //
  1942. // MessageText:
  1943. //
  1944. // Profiling not stopped.
  1945. //
  1946. const auto ERROR_PROFILING_NOT_STOPPED = 551;
  1947. //
  1948. // MessageId: ERROR_COULD_NOT_INTERPRET
  1949. //
  1950. // MessageText:
  1951. //
  1952. // The passed ACL did not contain the minimum required information.
  1953. //
  1954. const auto ERROR_COULD_NOT_INTERPRET = 552;
  1955. //
  1956. // MessageId: ERROR_PROFILING_AT_LIMIT
  1957. //
  1958. // MessageText:
  1959. //
  1960. // The number of active profiling objects is at the maximum and no more may be started.
  1961. //
  1962. const auto ERROR_PROFILING_AT_LIMIT = 553;
  1963. //
  1964. // MessageId: ERROR_CANT_WAIT
  1965. //
  1966. // MessageText:
  1967. //
  1968. // Used to indicate that an operation cannot continue without blocking for I/O.
  1969. //
  1970. const auto ERROR_CANT_WAIT = 554;
  1971. //
  1972. // MessageId: ERROR_CANT_TERMINATE_SELF
  1973. //
  1974. // MessageText:
  1975. //
  1976. // Indicates that a thread attempted to terminate itself by default (called NtTerminateThread with NUL and it was the last thread in the current process.
  1977. //
  1978. const auto ERROR_CANT_TERMINATE_SELF = 555;
  1979. //
  1980. // MessageId: ERROR_UNEXPECTED_MM_CREATE_ERR
  1981. //
  1982. // MessageText:
  1983. //
  1984. // 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.
  1985. // In this case information is lost, however, the filter correctly handles the exception.
  1986. //
  1987. const auto ERROR_UNEXPECTED_MM_CREATE_ERR = 556;
  1988. //
  1989. // MessageId: ERROR_UNEXPECTED_MM_MAP_ERROR
  1990. //
  1991. // MessageText:
  1992. //
  1993. // 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.
  1994. // In this case information is lost, however, the filter correctly handles the exception.
  1995. //
  1996. const auto ERROR_UNEXPECTED_MM_MAP_ERROR = 557;
  1997. //
  1998. // MessageId: ERROR_UNEXPECTED_MM_EXTEND_ERR
  1999. //
  2000. // MessageText:
  2001. //
  2002. // 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.
  2003. // In this case information is lost, however, the filter correctly handles the exception.
  2004. //
  2005. const auto ERROR_UNEXPECTED_MM_EXTEND_ERR = 558;
  2006. //
  2007. // MessageId: ERROR_BAD_FUNCTION_TABLE
  2008. //
  2009. // MessageText:
  2010. //
  2011. // A malformed function table was encountered during an unwind operation.
  2012. //
  2013. const auto ERROR_BAD_FUNCTION_TABLE = 559;
  2014. //
  2015. // MessageId: ERROR_NO_GUID_TRANSLATION
  2016. //
  2017. // MessageText:
  2018. //
  2019. // 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.
  2020. // This causes the protection attempt to fail, which may cause a file creation attempt to fail.
  2021. //
  2022. const auto ERROR_NO_GUID_TRANSLATION = 560;
  2023. //
  2024. // MessageId: ERROR_INVALID_LDT_SIZE
  2025. //
  2026. // MessageText:
  2027. //
  2028. // 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.
  2029. //
  2030. const auto ERROR_INVALID_LDT_SIZE = 561;
  2031. //
  2032. // MessageId: ERROR_INVALID_LDT_OFFSET
  2033. //
  2034. // MessageText:
  2035. //
  2036. // Indicates that the starting value for the LDT information was not an integral multiple of the selector size.
  2037. //
  2038. const auto ERROR_INVALID_LDT_OFFSET = 563;
  2039. //
  2040. // MessageId: ERROR_INVALID_LDT_DESCRIPTOR
  2041. //
  2042. // MessageText:
  2043. //
  2044. // Indicates that the user supplied an invalid descriptor when trying to set up Ldt descriptors.
  2045. //
  2046. const auto ERROR_INVALID_LDT_DESCRIPTOR = 564;
  2047. //
  2048. // MessageId: ERROR_TOO_MANY_THREADS
  2049. //
  2050. // MessageText:
  2051. //
  2052. // 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.
  2053. //
  2054. const auto ERROR_TOO_MANY_THREADS = 565;
  2055. //
  2056. // MessageId: ERROR_THREAD_NOT_IN_PROCESS
  2057. //
  2058. // MessageText:
  2059. //
  2060. // An attempt was made to operate on a thread within a specific process, but the thread specified is not in the process specified.
  2061. //
  2062. const auto ERROR_THREAD_NOT_IN_PROCESS = 566;
  2063. //
  2064. // MessageId: ERROR_PAGEFILE_QUOTA_EXCEEDED
  2065. //
  2066. // MessageText:
  2067. //
  2068. // Page file quota was exceeded.
  2069. //
  2070. const auto ERROR_PAGEFILE_QUOTA_EXCEEDED = 567;
  2071. //
  2072. // MessageId: ERROR_LOGON_SERVER_CONFLICT
  2073. //
  2074. // MessageText:
  2075. //
  2076. // The Netlogon service cannot start because another Netlogon service running in the domain conflicts with the specified role.
  2077. //
  2078. const auto ERROR_LOGON_SERVER_CONFLICT = 568;
  2079. //
  2080. // MessageId: ERROR_SYNCHRONIZATION_REQUIRED
  2081. //
  2082. // MessageText:
  2083. //
  2084. // The SAM database on a Windows Server is significantly out of synchronization with the copy on the Domain Controller. A complete synchronization is required.
  2085. //
  2086. const auto ERROR_SYNCHRONIZATION_REQUIRED = 569;
  2087. //
  2088. // MessageId: ERROR_NET_OPEN_FAILED
  2089. //
  2090. // MessageText:
  2091. //
  2092. // 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.
  2093. //
  2094. const auto ERROR_NET_OPEN_FAILED = 570;
  2095. //
  2096. // MessageId: ERROR_IO_PRIVILEGE_FAILED
  2097. //
  2098. // MessageText:
  2099. //
  2100. // {Privilege Failed}
  2101. // The I/O permissions for the process could not be changed.
  2102. //
  2103. const auto ERROR_IO_PRIVILEGE_FAILED = 571;
  2104. //
  2105. // MessageId: ERROR_CONTROL_C_EXIT
  2106. //
  2107. // MessageText:
  2108. //
  2109. // {Application Exit by CTRL+C}
  2110. // The application terminated as a result of a CTRL+C.
  2111. //
  2112. const auto ERROR_CONTROL_C_EXIT = 572;
  2113. //
  2114. // MessageId: ERROR_MISSING_SYSTEMFILE
  2115. //
  2116. // MessageText:
  2117. //
  2118. // {Missing System File}
  2119. // The required system file %hs is bad or missing.
  2120. //
  2121. const auto ERROR_MISSING_SYSTEMFILE = 573;
  2122. //
  2123. // MessageId: ERROR_UNHANDLED_EXCEPTION
  2124. //
  2125. // MessageText:
  2126. //
  2127. // {Application Error}
  2128. // The exception %s 0x%08lx) occurred in the application at location 0x%08lx.
  2129. //
  2130. const auto ERROR_UNHANDLED_EXCEPTION = 574;
  2131. //
  2132. // MessageId: ERROR_APP_INIT_FAILURE
  2133. //
  2134. // MessageText:
  2135. //
  2136. // {Application Error}
  2137. // The application failed to initialize properly 0x%lx). Click OK to terminate the application.
  2138. //
  2139. const auto ERROR_APP_INIT_FAILURE = 575;
  2140. //
  2141. // MessageId: ERROR_PAGEFILE_CREATE_FAILED
  2142. //
  2143. // MessageText:
  2144. //
  2145. // {Unable to Create Paging File}
  2146. // The creation of the paging file %hs failed (%lx). The requested size was %ld.
  2147. //
  2148. const auto ERROR_PAGEFILE_CREATE_FAILED = 576;
  2149. //
  2150. // MessageId: ERROR_INVALID_IMAGE_HASH
  2151. //
  2152. // MessageText:
  2153. //
  2154. // Windows cannot verify the digital signature for this file. A recent hardware or software change might have installed a file that is signed incorrectly or damaged, or that might be malicious software from an unknown source.
  2155. //
  2156. const auto ERROR_INVALID_IMAGE_HASH = 577;
  2157. //
  2158. // MessageId: ERROR_NO_PAGEFILE
  2159. //
  2160. // MessageText:
  2161. //
  2162. // {No Paging File Specified}
  2163. // No paging file was specified in the system configuration.
  2164. //
  2165. const auto ERROR_NO_PAGEFILE = 578;
  2166. //
  2167. // MessageId: ERROR_ILLEGAL_FLOAT_CONTEXT
  2168. //
  2169. // MessageText:
  2170. //
  2171. // {EXCEPTION}
  2172. // A real-mode application issued a floating-point instruction and floating-point hardware is not present.
  2173. //
  2174. const auto ERROR_ILLEGAL_FLOAT_CONTEXT = 579;
  2175. //
  2176. // MessageId: ERROR_NO_EVENT_PAIR
  2177. //
  2178. // MessageText:
  2179. //
  2180. // 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.
  2181. //
  2182. const auto ERROR_NO_EVENT_PAIR = 580;
  2183. //
  2184. // MessageId: ERROR_DOMAIN_CTRLR_CONFIG_ERROR
  2185. //
  2186. // MessageText:
  2187. //
  2188. // A Windows Server has an incorrect configuration.
  2189. //
  2190. const auto ERROR_DOMAIN_CTRLR_CONFIG_ERROR = 581;
  2191. //
  2192. // MessageId: ERROR_ILLEGAL_CHARACTER
  2193. //
  2194. // MessageText:
  2195. //
  2196. // 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.
  2197. //
  2198. const auto ERROR_ILLEGAL_CHARACTER = 582;
  2199. //
  2200. // MessageId: ERROR_UNDEFINED_CHARACTER
  2201. //
  2202. // MessageText:
  2203. //
  2204. // The Unicode character is not defined in the Unicode character set installed on the system.
  2205. //
  2206. const auto ERROR_UNDEFINED_CHARACTER = 583;
  2207. //
  2208. // MessageId: ERROR_FLOPPY_VOLUME
  2209. //
  2210. // MessageText:
  2211. //
  2212. // The paging file cannot be created on a floppy diskette.
  2213. //
  2214. const auto ERROR_FLOPPY_VOLUME = 584;
  2215. //
  2216. // MessageId: ERROR_BIOS_FAILED_TO_CONNECT_INTERRUPT
  2217. //
  2218. // MessageText:
  2219. //
  2220. // The system BIOS failed to connect a system interrupt to the device or bus for which the device is connected.
  2221. //
  2222. const auto ERROR_BIOS_FAILED_TO_CONNECT_INTERRUPT = 585;
  2223. //
  2224. // MessageId: ERROR_BACKUP_CONTROLLER
  2225. //
  2226. // MessageText:
  2227. //
  2228. // This operation is only allowed for the Primary Domain Controller of the domain.
  2229. //
  2230. const auto ERROR_BACKUP_CONTROLLER = 586;
  2231. //
  2232. // MessageId: ERROR_MUTANT_LIMIT_EXCEEDED
  2233. //
  2234. // MessageText:
  2235. //
  2236. // An attempt was made to acquire a mutant such that its maximum count would have been exceeded.
  2237. //
  2238. const auto ERROR_MUTANT_LIMIT_EXCEEDED = 587;
  2239. //
  2240. // MessageId: ERROR_FS_DRIVER_REQUIRED
  2241. //
  2242. // MessageText:
  2243. //
  2244. // A volume has been accessed for which a file system driver is required that has not yet been loaded.
  2245. //
  2246. const auto ERROR_FS_DRIVER_REQUIRED = 588;
  2247. //
  2248. // MessageId: ERROR_CANNOT_LOAD_REGISTRY_FILE
  2249. //
  2250. // MessageText:
  2251. //
  2252. // {Registry File Failure}
  2253. // The registry cannot load the hive (file):
  2254. // %hs
  2255. // or its log or alternate.
  2256. // It is corrupt, absent, or not writable.
  2257. //
  2258. const auto ERROR_CANNOT_LOAD_REGISTRY_FILE = 589;
  2259. //
  2260. // MessageId: ERROR_DEBUG_ATTACH_FAILED
  2261. //
  2262. // MessageText:
  2263. //
  2264. // {Unexpected Failure in DebugActiveProcess}
  2265. // An unexpected failure occurred while processing a DebugActiveProcess API request. You may choose OK to terminate the process, or Cancel to ignore the error.
  2266. //
  2267. const auto ERROR_DEBUG_ATTACH_FAILED = 590;
  2268. //
  2269. // MessageId: ERROR_SYSTEM_PROCESS_TERMINATED
  2270. //
  2271. // MessageText:
  2272. //
  2273. // {Fatal System Error}
  2274. // The %hs system process terminated unexpectedly with a status of 0x%08x 0x%08x 0x%08x).
  2275. // The system has been shut down.
  2276. //
  2277. const auto ERROR_SYSTEM_PROCESS_TERMINATED = 591;
  2278. //
  2279. // MessageId: ERROR_DATA_NOT_ACCEPTED
  2280. //
  2281. // MessageText:
  2282. //
  2283. // {Data Not Accepted}
  2284. // The TDI client could not handle the data received during an indication.
  2285. //
  2286. const auto ERROR_DATA_NOT_ACCEPTED = 592;
  2287. //
  2288. // MessageId: ERROR_VDM_HARD_ERROR
  2289. //
  2290. // MessageText:
  2291. //
  2292. // NTVDM encountered a hard error.
  2293. //
  2294. const auto ERROR_VDM_HARD_ERROR = 593;
  2295. //
  2296. // MessageId: ERROR_DRIVER_CANCEL_TIMEOUT
  2297. //
  2298. // MessageText:
  2299. //
  2300. // {Cancel Timeout}
  2301. // The driver %hs failed to complete a cancelled I/O request in the allotted time.
  2302. //
  2303. const auto ERROR_DRIVER_CANCEL_TIMEOUT = 594;
  2304. //
  2305. // MessageId: ERROR_REPLY_MESSAGE_MISMATCH
  2306. //
  2307. // MessageText:
  2308. //
  2309. // {Reply Message Mismatch}
  2310. // 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.
  2311. //
  2312. const auto ERROR_REPLY_MESSAGE_MISMATCH = 595;
  2313. //
  2314. // MessageId: ERROR_LOST_WRITEBEHIND_DATA
  2315. //
  2316. // MessageText:
  2317. //
  2318. // {Delayed Write Failed}
  2319. // Windows was unable to save all the data for the file %hs. The data has been lost.
  2320. // This error may be caused by a failure of your computer hardware or network connection. Please try to save this file elsewhere.
  2321. //
  2322. const auto ERROR_LOST_WRITEBEHIND_DATA = 596;
  2323. //
  2324. // MessageId: ERROR_CLIENT_SERVER_PARAMETERS_INVALID
  2325. //
  2326. // MessageText:
  2327. //
  2328. // 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.
  2329. //
  2330. const auto ERROR_CLIENT_SERVER_PARAMETERS_INVALID = 597;
  2331. //
  2332. // MessageId: ERROR_NOT_TINY_STREAM
  2333. //
  2334. // MessageText:
  2335. //
  2336. // The stream is not a tiny stream.
  2337. //
  2338. const auto ERROR_NOT_TINY_STREAM = 598;
  2339. //
  2340. // MessageId: ERROR_STACK_OVERFLOW_READ
  2341. //
  2342. // MessageText:
  2343. //
  2344. // The request must be handled by the stack overflow code.
  2345. //
  2346. const auto ERROR_STACK_OVERFLOW_READ = 599;
  2347. //
  2348. // MessageId: ERROR_CONVERT_TO_LARGE
  2349. //
  2350. // MessageText:
  2351. //
  2352. // 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.
  2353. //
  2354. const auto ERROR_CONVERT_TO_LARGE = 600;
  2355. //
  2356. // MessageId: ERROR_FOUND_OUT_OF_SCOPE
  2357. //
  2358. // MessageText:
  2359. //
  2360. // 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.
  2361. //
  2362. const auto ERROR_FOUND_OUT_OF_SCOPE = 601;
  2363. //
  2364. // MessageId: ERROR_ALLOCATE_BUCKET
  2365. //
  2366. // MessageText:
  2367. //
  2368. // The bucket array must be grown. Retry transaction after doing so.
  2369. //
  2370. const auto ERROR_ALLOCATE_BUCKET = 602;
  2371. //
  2372. // MessageId: ERROR_MARSHALL_OVERFLOW
  2373. //
  2374. // MessageText:
  2375. //
  2376. // The user/kernel marshalling buffer has overflowed.
  2377. //
  2378. const auto ERROR_MARSHALL_OVERFLOW = 603;
  2379. //
  2380. // MessageId: ERROR_INVALID_VARIANT
  2381. //
  2382. // MessageText:
  2383. //
  2384. // The supplied variant structure contains invalid data.
  2385. //
  2386. const auto ERROR_INVALID_VARIANT = 604;
  2387. //
  2388. // MessageId: ERROR_BAD_COMPRESSION_BUFFER
  2389. //
  2390. // MessageText:
  2391. //
  2392. // The specified buffer contains ill-formed data.
  2393. //
  2394. const auto ERROR_BAD_COMPRESSION_BUFFER = 605;
  2395. //
  2396. // MessageId: ERROR_AUDIT_FAILED
  2397. //
  2398. // MessageText:
  2399. //
  2400. // {Audit Failed}
  2401. // An attempt to generate a security audit failed.
  2402. //
  2403. const auto ERROR_AUDIT_FAILED = 606;
  2404. //
  2405. // MessageId: ERROR_TIMER_RESOLUTION_NOT_SET
  2406. //
  2407. // MessageText:
  2408. //
  2409. // The timer resolution was not previously set by the current process.
  2410. //
  2411. const auto ERROR_TIMER_RESOLUTION_NOT_SET = 607;
  2412. //
  2413. // MessageId: ERROR_INSUFFICIENT_LOGON_INFO
  2414. //
  2415. // MessageText:
  2416. //
  2417. // There is insufficient account information to log you on.
  2418. //
  2419. const auto ERROR_INSUFFICIENT_LOGON_INFO = 608;
  2420. //
  2421. // MessageId: ERROR_BAD_DLL_ENTRYPOINT
  2422. //
  2423. // MessageText:
  2424. //
  2425. // {Invalid DLL Entrypoint}
  2426. // The dynamic link library %hs is not written correctly. The stack pointer has been left in an inconsistent state.
  2427. // 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.
  2428. //
  2429. const auto ERROR_BAD_DLL_ENTRYPOINT = 609;
  2430. //
  2431. // MessageId: ERROR_BAD_SERVICE_ENTRYPOINT
  2432. //
  2433. // MessageText:
  2434. //
  2435. // {Invalid Service Callback Entrypoint}
  2436. // The %hs service is not written correctly. The stack pointer has been left in an inconsistent state.
  2437. // 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.
  2438. //
  2439. const auto ERROR_BAD_SERVICE_ENTRYPOINT = 610;
  2440. //
  2441. // MessageId: ERROR_IP_ADDRESS_CONFLICT1
  2442. //
  2443. // MessageText:
  2444. //
  2445. // There is an IP address conflict with another system on the network
  2446. //
  2447. const auto ERROR_IP_ADDRESS_CONFLICT1 = 611;
  2448. //
  2449. // MessageId: ERROR_IP_ADDRESS_CONFLICT2
  2450. //
  2451. // MessageText:
  2452. //
  2453. // There is an IP address conflict with another system on the network
  2454. //
  2455. const auto ERROR_IP_ADDRESS_CONFLICT2 = 612;
  2456. //
  2457. // MessageId: ERROR_REGISTRY_QUOTA_LIMIT
  2458. //
  2459. // MessageText:
  2460. //
  2461. // {Low On Registry Space}
  2462. // The system has reached the maximum size allowed for the system part of the registry. Additional storage requests will be ignored.
  2463. //
  2464. const auto ERROR_REGISTRY_QUOTA_LIMIT = 613;
  2465. //
  2466. // MessageId: ERROR_NO_CALLBACK_ACTIVE
  2467. //
  2468. // MessageText:
  2469. //
  2470. // A callback return system service cannot be executed when no callback is active.
  2471. //
  2472. const auto ERROR_NO_CALLBACK_ACTIVE = 614;
  2473. //
  2474. // MessageId: ERROR_PWD_TOO_SHORT
  2475. //
  2476. // MessageText:
  2477. //
  2478. // The password provided is too short to meet the policy of your user account.
  2479. // Please choose a longer password.
  2480. //
  2481. const auto ERROR_PWD_TOO_SHORT = 615;
  2482. //
  2483. // MessageId: ERROR_PWD_TOO_RECENT
  2484. //
  2485. // MessageText:
  2486. //
  2487. // The policy of your user account does not allow you to change passwords too frequently.
  2488. // This is done to prevent users from changing back to a familiar, but potentially discovered, password.
  2489. // If you feel your password has been compromised then please contact your administrator immediately to have a new one assigned.
  2490. //
  2491. const auto ERROR_PWD_TOO_RECENT = 616;
  2492. //
  2493. // MessageId: ERROR_PWD_HISTORY_CONFLICT
  2494. //
  2495. // MessageText:
  2496. //
  2497. // You have attempted to change your password to one that you have used in the past.
  2498. // The policy of your user account does not allow this. Please select a password that you have not previously used.
  2499. //
  2500. const auto ERROR_PWD_HISTORY_CONFLICT = 617;
  2501. //
  2502. // MessageId: ERROR_UNSUPPORTED_COMPRESSION
  2503. //
  2504. // MessageText:
  2505. //
  2506. // The specified compression format is unsupported.
  2507. //
  2508. const auto ERROR_UNSUPPORTED_COMPRESSION = 618;
  2509. //
  2510. // MessageId: ERROR_INVALID_HW_PROFILE
  2511. //
  2512. // MessageText:
  2513. //
  2514. // The specified hardware profile configuration is invalid.
  2515. //
  2516. const auto ERROR_INVALID_HW_PROFILE = 619;
  2517. //
  2518. // MessageId: ERROR_INVALID_PLUGPLAY_DEVICE_PATH
  2519. //
  2520. // MessageText:
  2521. //
  2522. // The specified Plug and Play registry device path is invalid.
  2523. //
  2524. const auto ERROR_INVALID_PLUGPLAY_DEVICE_PATH = 620;
  2525. //
  2526. // MessageId: ERROR_QUOTA_LIST_INCONSISTENT
  2527. //
  2528. // MessageText:
  2529. //
  2530. // The specified quota list is internally inconsistent with its descriptor.
  2531. //
  2532. const auto ERROR_QUOTA_LIST_INCONSISTENT = 621;
  2533. //
  2534. // MessageId: ERROR_EVALUATION_EXPIRATION
  2535. //
  2536. // MessageText:
  2537. //
  2538. // {Windows Evaluation Notification}
  2539. // 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.
  2540. //
  2541. const auto ERROR_EVALUATION_EXPIRATION = 622;
  2542. //
  2543. // MessageId: ERROR_ILLEGAL_DLL_RELOCATION
  2544. //
  2545. // MessageText:
  2546. //
  2547. // {Illegal System DLL Relocation}
  2548. // The system DLL %hs was relocated in memory. The application will not run properly.
  2549. // 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.
  2550. //
  2551. const auto ERROR_ILLEGAL_DLL_RELOCATION = 623;
  2552. //
  2553. // MessageId: ERROR_DLL_INIT_FAILED_LOGOFF
  2554. //
  2555. // MessageText:
  2556. //
  2557. // {DLL Initialization Failed}
  2558. // The application failed to initialize because the window station is shutting down.
  2559. //
  2560. const auto ERROR_DLL_INIT_FAILED_LOGOFF = 624;
  2561. //
  2562. // MessageId: ERROR_VALIDATE_CONTINUE
  2563. //
  2564. // MessageText:
  2565. //
  2566. // The validation process needs to continue on to the next step.
  2567. //
  2568. const auto ERROR_VALIDATE_CONTINUE = 625;
  2569. //
  2570. // MessageId: ERROR_NO_MORE_MATCHES
  2571. //
  2572. // MessageText:
  2573. //
  2574. // There are no more matches for the current index enumeration.
  2575. //
  2576. const auto ERROR_NO_MORE_MATCHES = 626;
  2577. //
  2578. // MessageId: ERROR_RANGE_LIST_CONFLICT
  2579. //
  2580. // MessageText:
  2581. //
  2582. // The range could not be added to the range list because of a conflict.
  2583. //
  2584. const auto ERROR_RANGE_LIST_CONFLICT = 627;
  2585. //
  2586. // MessageId: ERROR_SERVER_SID_MISMATCH
  2587. //
  2588. // MessageText:
  2589. //
  2590. // The server process is running under a SID different than that required by client.
  2591. //
  2592. const auto ERROR_SERVER_SID_MISMATCH = 628;
  2593. //
  2594. // MessageId: ERROR_CANT_ENABLE_DENY_ONLY
  2595. //
  2596. // MessageText:
  2597. //
  2598. // A group marked use for deny only cannot be enabled.
  2599. //
  2600. const auto ERROR_CANT_ENABLE_DENY_ONLY = 629;
  2601. //
  2602. // MessageId: ERROR_FLOAT_MULTIPLE_FAULTS
  2603. //
  2604. // MessageText:
  2605. //
  2606. // {EXCEPTION}
  2607. // Multiple floating point faults.
  2608. //
  2609. const auto ERROR_FLOAT_MULTIPLE_FAULTS = 630;
  2610. //
  2611. // MessageId: ERROR_FLOAT_MULTIPLE_TRAPS
  2612. //
  2613. // MessageText:
  2614. //
  2615. // {EXCEPTION}
  2616. // Multiple floating point traps.
  2617. //
  2618. const auto ERROR_FLOAT_MULTIPLE_TRAPS = 631;
  2619. //
  2620. // MessageId: ERROR_NOINTERFACE
  2621. //
  2622. // MessageText:
  2623. //
  2624. // The requested interface is not supported.
  2625. //
  2626. const auto ERROR_NOINTERFACE = 632;
  2627. //
  2628. // MessageId: ERROR_DRIVER_FAILED_SLEEP
  2629. //
  2630. // MessageText:
  2631. //
  2632. // {System Standby Failed}
  2633. // The driver %hs does not support standby mode. Updating this driver may allow the system to go to standby mode.
  2634. //
  2635. const auto ERROR_DRIVER_FAILED_SLEEP = 633;
  2636. //
  2637. // MessageId: ERROR_CORRUPT_SYSTEM_FILE
  2638. //
  2639. // MessageText:
  2640. //
  2641. // The system file %1 has become corrupt and has been replaced.
  2642. //
  2643. const auto ERROR_CORRUPT_SYSTEM_FILE = 634;
  2644. //
  2645. // MessageId: ERROR_COMMITMENT_MINIMUM
  2646. //
  2647. // MessageText:
  2648. //
  2649. // {Virtual Memory Minimum Too Low}
  2650. // Your system is low on virtual memory. Windows is increasing the size of your virtual memory paging file.
  2651. // During this process, memory requests for some applications may be denied. For more information, see Help.
  2652. //
  2653. const auto ERROR_COMMITMENT_MINIMUM = 635;
  2654. //
  2655. // MessageId: ERROR_PNP_RESTART_ENUMERATION
  2656. //
  2657. // MessageText:
  2658. //
  2659. // A device was removed so enumeration must be restarted.
  2660. //
  2661. const auto ERROR_PNP_RESTART_ENUMERATION = 636;
  2662. //
  2663. // MessageId: ERROR_SYSTEM_IMAGE_BAD_SIGNATURE
  2664. //
  2665. // MessageText:
  2666. //
  2667. // {Fatal System Error}
  2668. // The system image %s is not properly signed.
  2669. // The file has been replaced with the signed file.
  2670. // The system has been shut down.
  2671. //
  2672. const auto ERROR_SYSTEM_IMAGE_BAD_SIGNATURE = 637;
  2673. //
  2674. // MessageId: ERROR_PNP_REBOOT_REQUIRED
  2675. //
  2676. // MessageText:
  2677. //
  2678. // Device will not start without a reboot.
  2679. //
  2680. const auto ERROR_PNP_REBOOT_REQUIRED = 638;
  2681. //
  2682. // MessageId: ERROR_INSUFFICIENT_POWER
  2683. //
  2684. // MessageText:
  2685. //
  2686. // There is not enough power to complete the requested operation.
  2687. //
  2688. const auto ERROR_INSUFFICIENT_POWER = 639;
  2689. //
  2690. // MessageId: ERROR_MULTIPLE_FAULT_VIOLATION
  2691. //
  2692. // MessageText:
  2693. //
  2694. // ERROR_MULTIPLE_FAULT_VIOLATION
  2695. //
  2696. const auto ERROR_MULTIPLE_FAULT_VIOLATION = 640;
  2697. //
  2698. // MessageId: ERROR_SYSTEM_SHUTDOWN
  2699. //
  2700. // MessageText:
  2701. //
  2702. // The system is in the process of shutting down.
  2703. //
  2704. const auto ERROR_SYSTEM_SHUTDOWN = 641;
  2705. //
  2706. // MessageId: ERROR_PORT_NOT_SET
  2707. //
  2708. // MessageText:
  2709. //
  2710. // An attempt to remove a processes DebugPort was made, but a port was not already associated with the process.
  2711. //
  2712. const auto ERROR_PORT_NOT_SET = 642;
  2713. //
  2714. // MessageId: ERROR_DS_VERSION_CHECK_FAILURE
  2715. //
  2716. // MessageText:
  2717. //
  2718. // This version of Windows is not compatible with the behavior version of directory forest, domain or domain controller.
  2719. //
  2720. const auto ERROR_DS_VERSION_CHECK_FAILURE = 643;
  2721. //
  2722. // MessageId: ERROR_RANGE_NOT_FOUND
  2723. //
  2724. // MessageText:
  2725. //
  2726. // The specified range could not be found in the range list.
  2727. //
  2728. const auto ERROR_RANGE_NOT_FOUND = 644;
  2729. //
  2730. // MessageId: ERROR_NOT_SAFE_MODE_DRIVER
  2731. //
  2732. // MessageText:
  2733. //
  2734. // The driver was not loaded because the system is booting into safe mode.
  2735. //
  2736. const auto ERROR_NOT_SAFE_MODE_DRIVER = 646;
  2737. //
  2738. // MessageId: ERROR_FAILED_DRIVER_ENTRY
  2739. //
  2740. // MessageText:
  2741. //
  2742. // The driver was not loaded because it failed it's initialization call.
  2743. //
  2744. const auto ERROR_FAILED_DRIVER_ENTRY = 647;
  2745. //
  2746. // MessageId: ERROR_DEVICE_ENUMERATION_ERROR
  2747. //
  2748. // MessageText:
  2749. //
  2750. // The "%hs" encountered an error while applying power or reading the device configuration.
  2751. // This may be caused by a failure of your hardware or by a poor connection.
  2752. //
  2753. const auto ERROR_DEVICE_ENUMERATION_ERROR = 648;
  2754. //
  2755. // MessageId: ERROR_MOUNT_POINT_NOT_RESOLVED
  2756. //
  2757. // MessageText:
  2758. //
  2759. // 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.
  2760. //
  2761. const auto ERROR_MOUNT_POINT_NOT_RESOLVED = 649;
  2762. //
  2763. // MessageId: ERROR_INVALID_DEVICE_OBJECT_PARAMETER
  2764. //
  2765. // MessageText:
  2766. //
  2767. // The device object parameter is either not a valid device object or is not attached to the volume specified by the file name.
  2768. //
  2769. const auto ERROR_INVALID_DEVICE_OBJECT_PARAMETER = 650;
  2770. //
  2771. // MessageId: ERROR_MCA_OCCURED
  2772. //
  2773. // MessageText:
  2774. //
  2775. // A Machine Check Error has occurred. Please check the system eventlog for additional information.
  2776. //
  2777. const auto ERROR_MCA_OCCURED = 651;
  2778. //
  2779. // MessageId: ERROR_DRIVER_DATABASE_ERROR
  2780. //
  2781. // MessageText:
  2782. //
  2783. // There was error [%2] processing the driver database.
  2784. //
  2785. const auto ERROR_DRIVER_DATABASE_ERROR = 652;
  2786. //
  2787. // MessageId: ERROR_SYSTEM_HIVE_TOO_LARGE
  2788. //
  2789. // MessageText:
  2790. //
  2791. // System hive size has exceeded its limit.
  2792. //
  2793. const auto ERROR_SYSTEM_HIVE_TOO_LARGE = 653;
  2794. //
  2795. // MessageId: ERROR_DRIVER_FAILED_PRIOR_UNLOAD
  2796. //
  2797. // MessageText:
  2798. //
  2799. // The driver could not be loaded because a previous version of the driver is still in memory.
  2800. //
  2801. const auto ERROR_DRIVER_FAILED_PRIOR_UNLOAD = 654;
  2802. //
  2803. // MessageId: ERROR_VOLSNAP_PREPARE_HIBERNATE
  2804. //
  2805. // MessageText:
  2806. //
  2807. // {Volume Shadow Copy Service}
  2808. // Please wait while the Volume Shadow Copy Service prepares volume %hs for hibernation.
  2809. //
  2810. const auto ERROR_VOLSNAP_PREPARE_HIBERNATE = 655;
  2811. //
  2812. // MessageId: ERROR_HIBERNATION_FAILURE
  2813. //
  2814. // MessageText:
  2815. //
  2816. // The system has failed to hibernate (The error code is %hs). Hibernation will be disabled until the system is restarted.
  2817. //
  2818. const auto ERROR_HIBERNATION_FAILURE = 656;
  2819. //
  2820. // MessageId: ERROR_FILE_SYSTEM_LIMITATION
  2821. //
  2822. // MessageText:
  2823. //
  2824. // The requested operation could not be completed due to a file system limitation
  2825. //
  2826. const auto ERROR_FILE_SYSTEM_LIMITATION = 665;
  2827. //
  2828. // MessageId: ERROR_ASSERTION_FAILURE
  2829. //
  2830. // MessageText:
  2831. //
  2832. // An assertion failure has occurred.
  2833. //
  2834. const auto ERROR_ASSERTION_FAILURE = 668;
  2835. //
  2836. // MessageId: ERROR_ACPI_ERROR
  2837. //
  2838. // MessageText:
  2839. //
  2840. // An error occurred in the ACPI subsystem.
  2841. //
  2842. const auto ERROR_ACPI_ERROR = 669;
  2843. //
  2844. // MessageId: ERROR_WOW_ASSERTION
  2845. //
  2846. // MessageText:
  2847. //
  2848. // WOW Assertion Error.
  2849. //
  2850. const auto ERROR_WOW_ASSERTION = 670;
  2851. //
  2852. // MessageId: ERROR_PNP_BAD_MPS_TABLE
  2853. //
  2854. // MessageText:
  2855. //
  2856. // A device is missing in the system BIOS MPS table. This device will not be used.
  2857. // Please contact your system vendor for system BIOS update.
  2858. //
  2859. const auto ERROR_PNP_BAD_MPS_TABLE = 671;
  2860. //
  2861. // MessageId: ERROR_PNP_TRANSLATION_FAILED
  2862. //
  2863. // MessageText:
  2864. //
  2865. // A translator failed to translate resources.
  2866. //
  2867. const auto ERROR_PNP_TRANSLATION_FAILED = 672;
  2868. //
  2869. // MessageId: ERROR_PNP_IRQ_TRANSLATION_FAILED
  2870. //
  2871. // MessageText:
  2872. //
  2873. // A IRQ translator failed to translate resources.
  2874. //
  2875. const auto ERROR_PNP_IRQ_TRANSLATION_FAILED = 673;
  2876. //
  2877. // MessageId: ERROR_PNP_INVALID_ID
  2878. //
  2879. // MessageText:
  2880. //
  2881. // Driver %2 returned invalid ID for a child device (%3).
  2882. //
  2883. const auto ERROR_PNP_INVALID_ID = 674;
  2884. //
  2885. // MessageId: ERROR_WAKE_SYSTEM_DEBUGGER
  2886. //
  2887. // MessageText:
  2888. //
  2889. // {Kernel Debugger Awakened}
  2890. // the system debugger was awakened by an interrupt.
  2891. //
  2892. const auto ERROR_WAKE_SYSTEM_DEBUGGER = 675;
  2893. //
  2894. // MessageId: ERROR_HANDLES_CLOSED
  2895. //
  2896. // MessageText:
  2897. //
  2898. // {Handles Closed}
  2899. // Handles to objects have been automatically closed as a result of the requested operation.
  2900. //
  2901. const auto ERROR_HANDLES_CLOSED = 676;
  2902. //
  2903. // MessageId: ERROR_EXTRANEOUS_INFORMATION
  2904. //
  2905. // MessageText:
  2906. //
  2907. // {Too Much Information}
  2908. // The specified access control list (AC contained more information than was expected.
  2909. //
  2910. const auto ERROR_EXTRANEOUS_INFORMATION = 677;
  2911. //
  2912. // MessageId: ERROR_RXACT_COMMIT_NECESSARY
  2913. //
  2914. // MessageText:
  2915. //
  2916. // This warning level status indicates that the transaction state already exists for the registry sub-tree, but that a transaction commit was previously aborted.
  2917. // The commit has NOT been completed, but has not been rolled back either (so it may still be committed if desired).
  2918. //
  2919. const auto ERROR_RXACT_COMMIT_NECESSARY = 678;
  2920. //
  2921. // MessageId: ERROR_MEDIA_CHECK
  2922. //
  2923. // MessageText:
  2924. //
  2925. // {Media Changed}
  2926. // The media may have changed.
  2927. //
  2928. const auto ERROR_MEDIA_CHECK = 679;
  2929. //
  2930. // MessageId: ERROR_GUID_SUBSTITUTION_MADE
  2931. //
  2932. // MessageText:
  2933. //
  2934. // {GUID Substitution}
  2935. // During the translation of a global identifier (GUID) to a Windows security ID (SID), no administratively-defined GUID prefix was found.
  2936. // A substitute prefix was used, which will not compromise system security.
  2937. // However, this may provide a more restrictive access than intended.
  2938. //
  2939. const auto ERROR_GUID_SUBSTITUTION_MADE = 680;
  2940. //
  2941. // MessageId: ERROR_STOPPED_ON_SYMLINK
  2942. //
  2943. // MessageText:
  2944. //
  2945. // The create operation stopped after reaching a symbolic link
  2946. //
  2947. const auto ERROR_STOPPED_ON_SYMLINK = 681;
  2948. //
  2949. // MessageId: ERROR_LONGJUMP
  2950. //
  2951. // MessageText:
  2952. //
  2953. // A long jump has been executed.
  2954. //
  2955. const auto ERROR_LONGJUMP = 682;
  2956. //
  2957. // MessageId: ERROR_PLUGPLAY_QUERY_VETOED
  2958. //
  2959. // MessageText:
  2960. //
  2961. // The Plug and Play query operation was not successful.
  2962. //
  2963. const auto ERROR_PLUGPLAY_QUERY_VETOED = 683;
  2964. //
  2965. // MessageId: ERROR_UNWIND_CONSOLIDATE
  2966. //
  2967. // MessageText:
  2968. //
  2969. // A frame consolidation has been executed.
  2970. //
  2971. const auto ERROR_UNWIND_CONSOLIDATE = 684;
  2972. //
  2973. // MessageId: ERROR_REGISTRY_HIVE_RECOVERED
  2974. //
  2975. // MessageText:
  2976. //
  2977. // {Registry Hive Recovered}
  2978. // Registry hive (file):
  2979. // %hs
  2980. // was corrupted and it has been recovered. Some data might have been lost.
  2981. //
  2982. const auto ERROR_REGISTRY_HIVE_RECOVERED = 685;
  2983. //
  2984. // MessageId: ERROR_DLL_MIGHT_BE_INSECURE
  2985. //
  2986. // MessageText:
  2987. //
  2988. // 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?
  2989. //
  2990. const auto ERROR_DLL_MIGHT_BE_INSECURE = 686;
  2991. //
  2992. // MessageId: ERROR_DLL_MIGHT_BE_INCOMPATIBLE
  2993. //
  2994. // MessageText:
  2995. //
  2996. // 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?
  2997. //
  2998. const auto ERROR_DLL_MIGHT_BE_INCOMPATIBLE = 687;
  2999. //
  3000. // MessageId: ERROR_DBG_EXCEPTION_NOT_HANDLED
  3001. //
  3002. // MessageText:
  3003. //
  3004. // Debugger did not handle the exception.
  3005. //
  3006. const auto ERROR_DBG_EXCEPTION_NOT_HANDLED = 688;
  3007. //
  3008. // MessageId: ERROR_DBG_REPLY_LATER
  3009. //
  3010. // MessageText:
  3011. //
  3012. // Debugger will reply later.
  3013. //
  3014. const auto ERROR_DBG_REPLY_LATER = 689;
  3015. //
  3016. // MessageId: ERROR_DBG_UNABLE_TO_PROVIDE_HANDLE
  3017. //
  3018. // MessageText:
  3019. //
  3020. // Debugger cannot provide handle.
  3021. //
  3022. const auto ERROR_DBG_UNABLE_TO_PROVIDE_HANDLE = 690;
  3023. //
  3024. // MessageId: ERROR_DBG_TERMINATE_THREAD
  3025. //
  3026. // MessageText:
  3027. //
  3028. // Debugger terminated thread.
  3029. //
  3030. const auto ERROR_DBG_TERMINATE_THREAD = 691;
  3031. //
  3032. // MessageId: ERROR_DBG_TERMINATE_PROCESS
  3033. //
  3034. // MessageText:
  3035. //
  3036. // Debugger terminated process.
  3037. //
  3038. const auto ERROR_DBG_TERMINATE_PROCESS = 692;
  3039. //
  3040. // MessageId: ERROR_DBG_CONTROL_C
  3041. //
  3042. // MessageText:
  3043. //
  3044. // Debugger got control C.
  3045. //
  3046. const auto ERROR_DBG_CONTROL_C = 693;
  3047. //
  3048. // MessageId: ERROR_DBG_PRINTEXCEPTION_C
  3049. //
  3050. // MessageText:
  3051. //
  3052. // Debugger printed exception on control C.
  3053. //
  3054. const auto ERROR_DBG_PRINTEXCEPTION_C = 694;
  3055. //
  3056. // MessageId: ERROR_DBG_RIPEXCEPTION
  3057. //
  3058. // MessageText:
  3059. //
  3060. // Debugger received RIP exception.
  3061. //
  3062. const auto ERROR_DBG_RIPEXCEPTION = 695;
  3063. //
  3064. // MessageId: ERROR_DBG_CONTROL_BREAK
  3065. //
  3066. // MessageText:
  3067. //
  3068. // Debugger received control break.
  3069. //
  3070. const auto ERROR_DBG_CONTROL_BREAK = 696;
  3071. //
  3072. // MessageId: ERROR_DBG_COMMAND_EXCEPTION
  3073. //
  3074. // MessageText:
  3075. //
  3076. // Debugger command communication exception.
  3077. //
  3078. const auto ERROR_DBG_COMMAND_EXCEPTION = 697;
  3079. //
  3080. // MessageId: ERROR_OBJECT_NAME_EXISTS
  3081. //
  3082. // MessageText:
  3083. //
  3084. // {Object Exists}
  3085. // An attempt was made to create an object and the object name already existed.
  3086. //
  3087. const auto ERROR_OBJECT_NAME_EXISTS = 698;
  3088. //
  3089. // MessageId: ERROR_THREAD_WAS_SUSPENDED
  3090. //
  3091. // MessageText:
  3092. //
  3093. // {Thread Suspended}
  3094. // A thread termination occurred while the thread was suspended. The thread was resumed, and termination proceeded.
  3095. //
  3096. const auto ERROR_THREAD_WAS_SUSPENDED = 699;
  3097. //
  3098. // MessageId: ERROR_IMAGE_NOT_AT_BASE
  3099. //
  3100. // MessageText:
  3101. //
  3102. // {Image Relocated}
  3103. // An image file could not be mapped at the address specified in the image file. Local fixups must be performed on this image.
  3104. //
  3105. const auto ERROR_IMAGE_NOT_AT_BASE = 700;
  3106. //
  3107. // MessageId: ERROR_RXACT_STATE_CREATED
  3108. //
  3109. // MessageText:
  3110. //
  3111. // This informational level status indicates that a specified registry sub-tree transaction state did not yet exist and had to be created.
  3112. //
  3113. const auto ERROR_RXACT_STATE_CREATED = 701;
  3114. //
  3115. // MessageId: ERROR_SEGMENT_NOTIFICATION
  3116. //
  3117. // MessageText:
  3118. //
  3119. // {Segment Load}
  3120. // A virtual DOS machine (VDM) is loading, unloading, or moving an MS-DOS or Win16 program segment image.
  3121. // An exception is raised so a debugger can load, unload or track symbols and breakpoints within these 16-bit segments.
  3122. //
  3123. const auto ERROR_SEGMENT_NOTIFICATION = 702;
  3124. //
  3125. // MessageId: ERROR_BAD_CURRENT_DIRECTORY
  3126. //
  3127. // MessageText:
  3128. //
  3129. // {Invalid Current Directory}
  3130. // The process cannot switch to the startup current directory %hs.
  3131. // Select OK to set current directory to %hs, or select CANCEL to exit.
  3132. //
  3133. const auto ERROR_BAD_CURRENT_DIRECTORY = 703;
  3134. //
  3135. // MessageId: ERROR_FT_READ_RECOVERY_FROM_BACKUP
  3136. //
  3137. // MessageText:
  3138. //
  3139. // {Redundant Read}
  3140. // To satisfy a read request, the NT fault-tolerant file system successfully read the requested data from a redundant copy.
  3141. // 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.
  3142. //
  3143. const auto ERROR_FT_READ_RECOVERY_FROM_BACKUP = 704;
  3144. //
  3145. // MessageId: ERROR_FT_WRITE_RECOVERY
  3146. //
  3147. // MessageText:
  3148. //
  3149. // {Redundant Write}
  3150. // To satisfy a write request, the NT fault-tolerant file system successfully wrote a redundant copy of the information.
  3151. // 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.
  3152. //
  3153. const auto ERROR_FT_WRITE_RECOVERY = 705;
  3154. //
  3155. // MessageId: ERROR_IMAGE_MACHINE_TYPE_MISMATCH
  3156. //
  3157. // MessageText:
  3158. //
  3159. // {Machine Type Mismatch}
  3160. // 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.
  3161. //
  3162. const auto ERROR_IMAGE_MACHINE_TYPE_MISMATCH = 706;
  3163. //
  3164. // MessageId: ERROR_RECEIVE_PARTIAL
  3165. //
  3166. // MessageText:
  3167. //
  3168. // {Partial Data Received}
  3169. // The network transport returned partial data to its client. The remaining data will be sent later.
  3170. //
  3171. const auto ERROR_RECEIVE_PARTIAL = 707;
  3172. //
  3173. // MessageId: ERROR_RECEIVE_EXPEDITED
  3174. //
  3175. // MessageText:
  3176. //
  3177. // {Expedited Data Received}
  3178. // The network transport returned data to its client that was marked as expedited by the remote system.
  3179. //
  3180. const auto ERROR_RECEIVE_EXPEDITED = 708;
  3181. //
  3182. // MessageId: ERROR_RECEIVE_PARTIAL_EXPEDITED
  3183. //
  3184. // MessageText:
  3185. //
  3186. // {Partial Expedited Data Received}
  3187. // 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.
  3188. //
  3189. const auto ERROR_RECEIVE_PARTIAL_EXPEDITED = 709;
  3190. //
  3191. // MessageId: ERROR_EVENT_DONE
  3192. //
  3193. // MessageText:
  3194. //
  3195. // {TDI Event Done}
  3196. // The TDI indication has completed successfully.
  3197. //
  3198. const auto ERROR_EVENT_DONE = 710;
  3199. //
  3200. // MessageId: ERROR_EVENT_PENDING
  3201. //
  3202. // MessageText:
  3203. //
  3204. // {TDI Event Pending}
  3205. // The TDI indication has entered the pending state.
  3206. //
  3207. const auto ERROR_EVENT_PENDING = 711;
  3208. //
  3209. // MessageId: ERROR_CHECKING_FILE_SYSTEM
  3210. //
  3211. // MessageText:
  3212. //
  3213. // Checking file system on %wZ
  3214. //
  3215. const auto ERROR_CHECKING_FILE_SYSTEM = 712;
  3216. //
  3217. // MessageId: ERROR_FATAL_APP_EXIT
  3218. //
  3219. // MessageText:
  3220. //
  3221. // {Fatal Application Exit}
  3222. // %hs
  3223. //
  3224. const auto ERROR_FATAL_APP_EXIT = 713;
  3225. //
  3226. // MessageId: ERROR_PREDEFINED_HANDLE
  3227. //
  3228. // MessageText:
  3229. //
  3230. // The specified registry key is referenced by a predefined handle.
  3231. //
  3232. const auto ERROR_PREDEFINED_HANDLE = 714;
  3233. //
  3234. // MessageId: ERROR_WAS_UNLOCKED
  3235. //
  3236. // MessageText:
  3237. //
  3238. // {Page Unlocked}
  3239. // The page protection of a locked page was changed to 'No Access' and the page was unlocked from memory and from the process.
  3240. //
  3241. const auto ERROR_WAS_UNLOCKED = 715;
  3242. //
  3243. // MessageId: ERROR_SERVICE_NOTIFICATION
  3244. //
  3245. // MessageText:
  3246. //
  3247. // %hs
  3248. //
  3249. const auto ERROR_SERVICE_NOTIFICATION = 716;
  3250. //
  3251. // MessageId: ERROR_WAS_LOCKED
  3252. //
  3253. // MessageText:
  3254. //
  3255. // {Page Locked}
  3256. // One of the pages to lock was already locked.
  3257. //
  3258. const auto ERROR_WAS_LOCKED = 717;
  3259. //
  3260. // MessageId: ERROR_LOG_HARD_ERROR
  3261. //
  3262. // MessageText:
  3263. //
  3264. // Application popup: %1 : %2
  3265. //
  3266. const auto ERROR_LOG_HARD_ERROR = 718;
  3267. //
  3268. // MessageId: ERROR_ALREADY_WIN32
  3269. //
  3270. // MessageText:
  3271. //
  3272. // ERROR_ALREADY_WIN32
  3273. //
  3274. const auto ERROR_ALREADY_WIN32 = 719;
  3275. //
  3276. // MessageId: ERROR_IMAGE_MACHINE_TYPE_MISMATCH_EXE
  3277. //
  3278. // MessageText:
  3279. //
  3280. // {Machine Type Mismatch}
  3281. // The image file %hs is valid, but is for a machine type other than the current machine.
  3282. //
  3283. const auto ERROR_IMAGE_MACHINE_TYPE_MISMATCH_EXE = 720;
  3284. //
  3285. // MessageId: ERROR_NO_YIELD_PERFORMED
  3286. //
  3287. // MessageText:
  3288. //
  3289. // A yield execution was performed and no thread was available to run.
  3290. //
  3291. const auto ERROR_NO_YIELD_PERFORMED = 721;
  3292. //
  3293. // MessageId: ERROR_TIMER_RESUME_IGNORED
  3294. //
  3295. // MessageText:
  3296. //
  3297. // The resumable flag to a timer API was ignored.
  3298. //
  3299. const auto ERROR_TIMER_RESUME_IGNORED = 722;
  3300. //
  3301. // MessageId: ERROR_ARBITRATION_UNHANDLED
  3302. //
  3303. // MessageText:
  3304. //
  3305. // The arbiter has deferred arbitration of these resources to its parent
  3306. //
  3307. const auto ERROR_ARBITRATION_UNHANDLED = 723;
  3308. //
  3309. // MessageId: ERROR_CARDBUS_NOT_SUPPORTED
  3310. //
  3311. // MessageText:
  3312. //
  3313. // The inserted CardBus device cannot be started because of a configuration error on "%hs".
  3314. //
  3315. const auto ERROR_CARDBUS_NOT_SUPPORTED = 724;
  3316. //
  3317. // MessageId: ERROR_MP_PROCESSOR_MISMATCH
  3318. //
  3319. // MessageText:
  3320. //
  3321. // 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 the CPU manufacturer to see if this mix of processors is supported.
  3322. //
  3323. const auto ERROR_MP_PROCESSOR_MISMATCH = 725;
  3324. //
  3325. // MessageId: ERROR_HIBERNATED
  3326. //
  3327. // MessageText:
  3328. //
  3329. // The system was put into hibernation.
  3330. //
  3331. const auto ERROR_HIBERNATED = 726;
  3332. //
  3333. // MessageId: ERROR_RESUME_HIBERNATION
  3334. //
  3335. // MessageText:
  3336. //
  3337. // The system was resumed from hibernation.
  3338. //
  3339. const auto ERROR_RESUME_HIBERNATION = 727;
  3340. //
  3341. // MessageId: ERROR_FIRMWARE_UPDATED
  3342. //
  3343. // MessageText:
  3344. //
  3345. // Windows has detected that the system firmware (BIOS) was updated [previous firmware date = %2, current firmware date %3].
  3346. //
  3347. const auto ERROR_FIRMWARE_UPDATED = 728;
  3348. //
  3349. // MessageId: ERROR_DRIVERS_LEAKING_LOCKED_PAGES
  3350. //
  3351. // MessageText:
  3352. //
  3353. // 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.
  3354. //
  3355. const auto ERROR_DRIVERS_LEAKING_LOCKED_PAGES = 729;
  3356. //
  3357. // MessageId: ERROR_WAKE_SYSTEM
  3358. //
  3359. // MessageText:
  3360. //
  3361. // The system has awoken
  3362. //
  3363. const auto ERROR_WAKE_SYSTEM = 730;
  3364. //
  3365. // MessageId: ERROR_WAIT_1
  3366. //
  3367. // MessageText:
  3368. //
  3369. // ERROR_WAIT_1
  3370. //
  3371. const auto ERROR_WAIT_1 = 731;
  3372. //
  3373. // MessageId: ERROR_WAIT_2
  3374. //
  3375. // MessageText:
  3376. //
  3377. // ERROR_WAIT_2
  3378. //
  3379. const auto ERROR_WAIT_2 = 732;
  3380. //
  3381. // MessageId: ERROR_WAIT_3
  3382. //
  3383. // MessageText:
  3384. //
  3385. // ERROR_WAIT_3
  3386. //
  3387. const auto ERROR_WAIT_3 = 733;
  3388. //
  3389. // MessageId: ERROR_WAIT_63
  3390. //
  3391. // MessageText:
  3392. //
  3393. // ERROR_WAIT_63
  3394. //
  3395. const auto ERROR_WAIT_63 = 734;
  3396. //
  3397. // MessageId: ERROR_ABANDONED_WAIT_0
  3398. //
  3399. // MessageText:
  3400. //
  3401. // ERROR_ABANDONED_WAIT_0
  3402. //
  3403. const auto ERROR_ABANDONED_WAIT_0 = 735;
  3404. //
  3405. // MessageId: ERROR_ABANDONED_WAIT_63
  3406. //
  3407. // MessageText:
  3408. //
  3409. // ERROR_ABANDONED_WAIT_63
  3410. //
  3411. const auto ERROR_ABANDONED_WAIT_63 = 736;
  3412. //
  3413. // MessageId: ERROR_USER_APC
  3414. //
  3415. // MessageText:
  3416. //
  3417. // ERROR_USER_APC
  3418. //
  3419. const auto ERROR_USER_APC = 737;
  3420. //
  3421. // MessageId: ERROR_KERNEL_APC
  3422. //
  3423. // MessageText:
  3424. //
  3425. // ERROR_KERNEL_APC
  3426. //
  3427. const auto ERROR_KERNEL_APC = 738;
  3428. //
  3429. // MessageId: ERROR_ALERTED
  3430. //
  3431. // MessageText:
  3432. //
  3433. // ERROR_ALERTED
  3434. //
  3435. const auto ERROR_ALERTED = 739;
  3436. //
  3437. // MessageId: ERROR_ELEVATION_REQUIRED
  3438. //
  3439. // MessageText:
  3440. //
  3441. // The requested operation requires elevation.
  3442. //
  3443. const auto ERROR_ELEVATION_REQUIRED = 740;
  3444. //
  3445. // MessageId: ERROR_REPARSE
  3446. //
  3447. // MessageText:
  3448. //
  3449. // A reparse should be performed by the Object Manager since the name of the file resulted in a symbolic link.
  3450. //
  3451. const auto ERROR_REPARSE = 741;
  3452. //
  3453. // MessageId: ERROR_OPLOCK_BREAK_IN_PROGRESS
  3454. //
  3455. // MessageText:
  3456. //
  3457. // An open/create operation completed while an oplock break is underway.
  3458. //
  3459. const auto ERROR_OPLOCK_BREAK_IN_PROGRESS = 742;
  3460. //
  3461. // MessageId: ERROR_VOLUME_MOUNTED
  3462. //
  3463. // MessageText:
  3464. //
  3465. // A new volume has been mounted by a file system.
  3466. //
  3467. const auto ERROR_VOLUME_MOUNTED = 743;
  3468. //
  3469. // MessageId: ERROR_RXACT_COMMITTED
  3470. //
  3471. // MessageText:
  3472. //
  3473. // This success level status indicates that the transaction state already exists for the registry sub-tree, but that a transaction commit was previously aborted.
  3474. // The commit has now been completed.
  3475. //
  3476. const auto ERROR_RXACT_COMMITTED = 744;
  3477. //
  3478. // MessageId: ERROR_NOTIFY_CLEANUP
  3479. //
  3480. // MessageText:
  3481. //
  3482. // This indicates that a notify change request has been completed due to closing the handle which made the notify change request.
  3483. //
  3484. const auto ERROR_NOTIFY_CLEANUP = 745;
  3485. //
  3486. // MessageId: ERROR_PRIMARY_TRANSPORT_CONNECT_FAILED
  3487. //
  3488. // MessageText:
  3489. //
  3490. // {Connect Failure on Primary Transport}
  3491. // An attempt was made to connect to the remote server %hs on the primary transport, but the connection failed.
  3492. // The computer WAS able to connect on a secondary transport.
  3493. //
  3494. const auto ERROR_PRIMARY_TRANSPORT_CONNECT_FAILED = 746;
  3495. //
  3496. // MessageId: ERROR_PAGE_FAULT_TRANSITION
  3497. //
  3498. // MessageText:
  3499. //
  3500. // Page fault was a transition fault.
  3501. //
  3502. const auto ERROR_PAGE_FAULT_TRANSITION = 747;
  3503. //
  3504. // MessageId: ERROR_PAGE_FAULT_DEMAND_ZERO
  3505. //
  3506. // MessageText:
  3507. //
  3508. // Page fault was a demand zero fault.
  3509. //
  3510. const auto ERROR_PAGE_FAULT_DEMAND_ZERO = 748;
  3511. //
  3512. // MessageId: ERROR_PAGE_FAULT_COPY_ON_WRITE
  3513. //
  3514. // MessageText:
  3515. //
  3516. // Page fault was a demand zero fault.
  3517. //
  3518. const auto ERROR_PAGE_FAULT_COPY_ON_WRITE = 749;
  3519. //
  3520. // MessageId: ERROR_PAGE_FAULT_GUARD_PAGE
  3521. //
  3522. // MessageText:
  3523. //
  3524. // Page fault was a demand zero fault.
  3525. //
  3526. const auto ERROR_PAGE_FAULT_GUARD_PAGE = 750;
  3527. //
  3528. // MessageId: ERROR_PAGE_FAULT_PAGING_FILE
  3529. //
  3530. // MessageText:
  3531. //
  3532. // Page fault was satisfied by reading from a secondary storage device.
  3533. //
  3534. const auto ERROR_PAGE_FAULT_PAGING_FILE = 751;
  3535. //
  3536. // MessageId: ERROR_CACHE_PAGE_LOCKED
  3537. //
  3538. // MessageText:
  3539. //
  3540. // Cached page was locked during operation.
  3541. //
  3542. const auto ERROR_CACHE_PAGE_LOCKED = 752;
  3543. //
  3544. // MessageId: ERROR_CRASH_DUMP
  3545. //
  3546. // MessageText:
  3547. //
  3548. // Crash dump exists in paging file.
  3549. //
  3550. const auto ERROR_CRASH_DUMP = 753;
  3551. //
  3552. // MessageId: ERROR_BUFFER_ALL_ZEROS
  3553. //
  3554. // MessageText:
  3555. //
  3556. // Specified buffer contains all zeros.
  3557. //
  3558. const auto ERROR_BUFFER_ALL_ZEROS = 754;
  3559. //
  3560. // MessageId: ERROR_REPARSE_OBJECT
  3561. //
  3562. // MessageText:
  3563. //
  3564. // A reparse should be performed by the Object Manager since the name of the file resulted in a symbolic link.
  3565. //
  3566. const auto ERROR_REPARSE_OBJECT = 755;
  3567. //
  3568. // MessageId: ERROR_RESOURCE_REQUIREMENTS_CHANGED
  3569. //
  3570. // MessageText:
  3571. //
  3572. // The device has succeeded a query-stop and its resource requirements have changed.
  3573. //
  3574. const auto ERROR_RESOURCE_REQUIREMENTS_CHANGED = 756;
  3575. //
  3576. // MessageId: ERROR_TRANSLATION_COMPLETE
  3577. //
  3578. // MessageText:
  3579. //
  3580. // The translator has translated these resources into the global space and no further translations should be performed.
  3581. //
  3582. const auto ERROR_TRANSLATION_COMPLETE = 757;
  3583. //
  3584. // MessageId: ERROR_NOTHING_TO_TERMINATE
  3585. //
  3586. // MessageText:
  3587. //
  3588. // A process being terminated has no threads to terminate.
  3589. //
  3590. const auto ERROR_NOTHING_TO_TERMINATE = 758;
  3591. //
  3592. // MessageId: ERROR_PROCESS_NOT_IN_JOB
  3593. //
  3594. // MessageText:
  3595. //
  3596. // The specified process is not part of a job.
  3597. //
  3598. const auto ERROR_PROCESS_NOT_IN_JOB = 759;
  3599. //
  3600. // MessageId: ERROR_PROCESS_IN_JOB
  3601. //
  3602. // MessageText:
  3603. //
  3604. // The specified process is part of a job.
  3605. //
  3606. const auto ERROR_PROCESS_IN_JOB = 760;
  3607. //
  3608. // MessageId: ERROR_VOLSNAP_HIBERNATE_READY
  3609. //
  3610. // MessageText:
  3611. //
  3612. // {Volume Shadow Copy Service}
  3613. // The system is now ready for hibernation.
  3614. //
  3615. const auto ERROR_VOLSNAP_HIBERNATE_READY = 761;
  3616. //
  3617. // MessageId: ERROR_FSFILTER_OP_COMPLETED_SUCCESSFULLY
  3618. //
  3619. // MessageText:
  3620. //
  3621. // A file system or file system filter driver has successfully completed an FsFilter operation.
  3622. //
  3623. const auto ERROR_FSFILTER_OP_COMPLETED_SUCCESSFULLY = 762;
  3624. //
  3625. // MessageId: ERROR_INTERRUPT_VECTOR_ALREADY_CONNECTED
  3626. //
  3627. // MessageText:
  3628. //
  3629. // The specified interrupt vector was already connected.
  3630. //
  3631. const auto ERROR_INTERRUPT_VECTOR_ALREADY_CONNECTED = 763;
  3632. //
  3633. // MessageId: ERROR_INTERRUPT_STILL_CONNECTED
  3634. //
  3635. // MessageText:
  3636. //
  3637. // The specified interrupt vector is still connected.
  3638. //
  3639. const auto ERROR_INTERRUPT_STILL_CONNECTED = 764;
  3640. //
  3641. // MessageId: ERROR_WAIT_FOR_OPLOCK
  3642. //
  3643. // MessageText:
  3644. //
  3645. // An operation is blocked waiting for an oplock.
  3646. //
  3647. const auto ERROR_WAIT_FOR_OPLOCK = 765;
  3648. //
  3649. // MessageId: ERROR_DBG_EXCEPTION_HANDLED
  3650. //
  3651. // MessageText:
  3652. //
  3653. // Debugger handled exception
  3654. //
  3655. const auto ERROR_DBG_EXCEPTION_HANDLED = 766;
  3656. //
  3657. // MessageId: ERROR_DBG_CONTINUE
  3658. //
  3659. // MessageText:
  3660. //
  3661. // Debugger continued
  3662. //
  3663. const auto ERROR_DBG_CONTINUE = 767;
  3664. //
  3665. // MessageId: ERROR_CALLBACK_POP_STACK
  3666. //
  3667. // MessageText:
  3668. //
  3669. // An exception occurred in a user mode callback and the kernel callback frame should be removed.
  3670. //
  3671. const auto ERROR_CALLBACK_POP_STACK = 768;
  3672. //
  3673. // MessageId: ERROR_COMPRESSION_DISABLED
  3674. //
  3675. // MessageText:
  3676. //
  3677. // Compression is disabled for this volume.
  3678. //
  3679. const auto ERROR_COMPRESSION_DISABLED = 769;
  3680. //
  3681. // MessageId: ERROR_CANTFETCHBACKWARDS
  3682. //
  3683. // MessageText:
  3684. //
  3685. // The data provider cannot fetch backwards through a result set.
  3686. //
  3687. const auto ERROR_CANTFETCHBACKWARDS = 770;
  3688. //
  3689. // MessageId: ERROR_CANTSCROLLBACKWARDS
  3690. //
  3691. // MessageText:
  3692. //
  3693. // The data provider cannot scroll backwards through a result set.
  3694. //
  3695. const auto ERROR_CANTSCROLLBACKWARDS = 771;
  3696. //
  3697. // MessageId: ERROR_ROWSNOTRELEASED
  3698. //
  3699. // MessageText:
  3700. //
  3701. // The data provider requires that previously fetched data is released before asking for more data.
  3702. //
  3703. const auto ERROR_ROWSNOTRELEASED = 772;
  3704. //
  3705. // MessageId: ERROR_BAD_ACCESSOR_FLAGS
  3706. //
  3707. // MessageText:
  3708. //
  3709. // The data provider was not able to intrepret the flags set for a column binding in an accessor.
  3710. //
  3711. const auto ERROR_BAD_ACCESSOR_FLAGS = 773;
  3712. //
  3713. // MessageId: ERROR_ERRORS_ENCOUNTERED
  3714. //
  3715. // MessageText:
  3716. //
  3717. // One or more errors occurred while processing the request.
  3718. //
  3719. const auto ERROR_ERRORS_ENCOUNTERED = 774;
  3720. //
  3721. // MessageId: ERROR_NOT_CAPABLE
  3722. //
  3723. // MessageText:
  3724. //
  3725. // The implementation is not capable of performing the request.
  3726. //
  3727. const auto ERROR_NOT_CAPABLE = 775;
  3728. //
  3729. // MessageId: ERROR_REQUEST_OUT_OF_SEQUENCE
  3730. //
  3731. // MessageText:
  3732. //
  3733. // The client of a component requested an operation which is not valid given the state of the component instance.
  3734. //
  3735. const auto ERROR_REQUEST_OUT_OF_SEQUENCE = 776;
  3736. //
  3737. // MessageId: ERROR_VERSION_PARSE_ERROR
  3738. //
  3739. // MessageText:
  3740. //
  3741. // A version number could not be parsed.
  3742. //
  3743. const auto ERROR_VERSION_PARSE_ERROR = 777;
  3744. //
  3745. // MessageId: ERROR_BADSTARTPOSITION
  3746. //
  3747. // MessageText:
  3748. //
  3749. // The iterator's start position is invalid.
  3750. //
  3751. const auto ERROR_BADSTARTPOSITION = 778;
  3752. //
  3753. // MessageId: ERROR_MEMORY_HARDWARE
  3754. //
  3755. // MessageText:
  3756. //
  3757. // The hardware has reported an uncorrectable memory error.
  3758. //
  3759. const auto ERROR_MEMORY_HARDWARE = 779;
  3760. //
  3761. // MessageId: ERROR_DISK_REPAIR_DISABLED
  3762. //
  3763. // MessageText:
  3764. //
  3765. // The attempted operation required self healing to be enabled.
  3766. //
  3767. const auto ERROR_DISK_REPAIR_DISABLED = 780;
  3768. //
  3769. // MessageId: ERROR_INSUFFICIENT_RESOURCE_FOR_SPECIFIED_SHARED_SECTION_SIZE
  3770. //
  3771. // MessageText:
  3772. //
  3773. // The Desktop heap encountered an error while allocating session memory.
  3774. // There is more information in the system event log.
  3775. //
  3776. const auto ERROR_INSUFFICIENT_RESOURCE_FOR_SPECIFIED_SHARED_SECTION_SIZE = 781;
  3777. //
  3778. // MessageId: ERROR_SYSTEM_POWERSTATE_TRANSITION
  3779. //
  3780. // MessageText:
  3781. //
  3782. // The system powerstate is transitioning from %2 to %3.
  3783. //
  3784. const auto ERROR_SYSTEM_POWERSTATE_TRANSITION = 782;
  3785. //
  3786. // MessageId: ERROR_SYSTEM_POWERSTATE_COMPLEX_TRANSITION
  3787. //
  3788. // MessageText:
  3789. //
  3790. // The system powerstate is transitioning from %2 to %3 but could enter %4.
  3791. //
  3792. const auto ERROR_SYSTEM_POWERSTATE_COMPLEX_TRANSITION = 783;
  3793. //
  3794. // MessageId: ERROR_MCA_EXCEPTION
  3795. //
  3796. // MessageText:
  3797. //
  3798. // A thread is getting dispatched with MCA EXCEPTION because of MCA.
  3799. //
  3800. const auto ERROR_MCA_EXCEPTION = 784;
  3801. //
  3802. // MessageId: ERROR_ACCESS_AUDIT_BY_POLICY
  3803. //
  3804. // MessageText:
  3805. //
  3806. // Access to %1 is monitored by policy rule %2.
  3807. //
  3808. const auto ERROR_ACCESS_AUDIT_BY_POLICY = 785;
  3809. //
  3810. // MessageId: ERROR_ACCESS_DISABLED_NO_SAFER_UI_BY_POLICY
  3811. //
  3812. // MessageText:
  3813. //
  3814. // Access to %1 has been restricted by your Administrator by policy rule %2.
  3815. //
  3816. const auto ERROR_ACCESS_DISABLED_NO_SAFER_UI_BY_POLICY = 786;
  3817. //
  3818. // MessageId: ERROR_ABANDON_HIBERFILE
  3819. //
  3820. // MessageText:
  3821. //
  3822. // A valid hibernation file has been invalidated and should be abandoned.
  3823. //
  3824. const auto ERROR_ABANDON_HIBERFILE = 787;
  3825. //
  3826. // MessageId: ERROR_LOST_WRITEBEHIND_DATA_NETWORK_DISCONNECTED
  3827. //
  3828. // MessageText:
  3829. //
  3830. // {Delayed Write Failed}
  3831. // Windows was unable to save all the data for the file %hs; the data has been lost.
  3832. // This error may be caused by network connectivity issues. Please try to save this file elsewhere.
  3833. //
  3834. const auto ERROR_LOST_WRITEBEHIND_DATA_NETWORK_DISCONNECTED = 788;
  3835. //
  3836. // MessageId: ERROR_LOST_WRITEBEHIND_DATA_NETWORK_SERVER_ERROR
  3837. //
  3838. // MessageText:
  3839. //
  3840. // {Delayed Write Failed}
  3841. // Windows was unable to save all the data for the file %hs; the data has been lost.
  3842. // This error was returned by the server on which the file exists. Please try to save this file elsewhere.
  3843. //
  3844. const auto ERROR_LOST_WRITEBEHIND_DATA_NETWORK_SERVER_ERROR = 789;
  3845. //
  3846. // MessageId: ERROR_LOST_WRITEBEHIND_DATA_LOCAL_DISK_ERROR
  3847. //
  3848. // MessageText:
  3849. //
  3850. // {Delayed Write Failed}
  3851. // Windows was unable to save all the data for the file %hs; the data has been lost.
  3852. // This error may be caused if the device has been removed or the media is write-protected.
  3853. //
  3854. const auto ERROR_LOST_WRITEBEHIND_DATA_LOCAL_DISK_ERROR = 790;
  3855. //
  3856. // MessageId: ERROR_BAD_MCFG_TABLE
  3857. //
  3858. // MessageText:
  3859. //
  3860. // The resources required for this device conflict with the MCFG table.
  3861. //
  3862. const auto ERROR_BAD_MCFG_TABLE = 791;
  3863. //
  3864. // MessageId: ERROR_EA_ACCESS_DENIED
  3865. //
  3866. // MessageText:
  3867. //
  3868. // Access to the extended attribute was denied.
  3869. //
  3870. const auto ERROR_EA_ACCESS_DENIED = 994;
  3871. //
  3872. // MessageId: ERROR_OPERATION_ABORTED
  3873. //
  3874. // MessageText:
  3875. //
  3876. // The I/O operation has been aborted because of either a thread exit or an application request.
  3877. //
  3878. const auto ERROR_OPERATION_ABORTED = 995;
  3879. //
  3880. // MessageId: ERROR_IO_INCOMPLETE
  3881. //
  3882. // MessageText:
  3883. //
  3884. // Overlapped I/O event is not in a signaled state.
  3885. //
  3886. const auto ERROR_IO_INCOMPLETE = 996;
  3887. //
  3888. // MessageId: ERROR_IO_PENDING
  3889. //
  3890. // MessageText:
  3891. //
  3892. // Overlapped I/O operation is in progress.
  3893. //
  3894. const auto ERROR_IO_PENDING = 997;
  3895. //
  3896. // MessageId: ERROR_NOACCESS
  3897. //
  3898. // MessageText:
  3899. //
  3900. // Invalid access to memory location.
  3901. //
  3902. const auto ERROR_NOACCESS = 998;
  3903. //
  3904. // MessageId: ERROR_SWAPERROR
  3905. //
  3906. // MessageText:
  3907. //
  3908. // Error performing inpage operation.
  3909. //
  3910. const auto ERROR_SWAPERROR = 999;
  3911. //
  3912. // MessageId: ERROR_STACK_OVERFLOW
  3913. //
  3914. // MessageText:
  3915. //
  3916. // Recursion too deep; the stack overflowed.
  3917. //
  3918. const auto ERROR_STACK_OVERFLOW = 1001;
  3919. //
  3920. // MessageId: ERROR_INVALID_MESSAGE
  3921. //
  3922. // MessageText:
  3923. //
  3924. // The window cannot act on the sent message.
  3925. //
  3926. const auto ERROR_INVALID_MESSAGE = 1002;
  3927. //
  3928. // MessageId: ERROR_CAN_NOT_COMPLETE
  3929. //
  3930. // MessageText:
  3931. //
  3932. // Cannot complete this function.
  3933. //
  3934. const auto ERROR_CAN_NOT_COMPLETE = 1003;
  3935. //
  3936. // MessageId: ERROR_INVALID_FLAGS
  3937. //
  3938. // MessageText:
  3939. //
  3940. // Invalid flags.
  3941. //
  3942. const auto ERROR_INVALID_FLAGS = 1004;
  3943. //
  3944. // MessageId: ERROR_UNRECOGNIZED_VOLUME
  3945. //
  3946. // MessageText:
  3947. //
  3948. // The volume does not contain a recognized file system.
  3949. // Please make sure that all required file system drivers are loaded and that the volume is not corrupted.
  3950. //
  3951. const auto ERROR_UNRECOGNIZED_VOLUME = 1005;
  3952. //
  3953. // MessageId: ERROR_FILE_INVALID
  3954. //
  3955. // MessageText:
  3956. //
  3957. // The volume for a file has been externally altered so that the opened file is no longer valid.
  3958. //
  3959. const auto ERROR_FILE_INVALID = 1006;
  3960. //
  3961. // MessageId: ERROR_FULLSCREEN_MODE
  3962. //
  3963. // MessageText:
  3964. //
  3965. // The requested operation cannot be performed in full-screen mode.
  3966. //
  3967. const auto ERROR_FULLSCREEN_MODE = 1007;
  3968. //
  3969. // MessageId: ERROR_NO_TOKEN
  3970. //
  3971. // MessageText:
  3972. //
  3973. // An attempt was made to reference a token that does not exist.
  3974. //
  3975. const auto ERROR_NO_TOKEN = 1008;
  3976. //
  3977. // MessageId: ERROR_BADDB
  3978. //
  3979. // MessageText:
  3980. //
  3981. // The configuration registry database is corrupt.
  3982. //
  3983. const auto ERROR_BADDB = 1009;
  3984. //
  3985. // MessageId: ERROR_BADKEY
  3986. //
  3987. // MessageText:
  3988. //
  3989. // The configuration registry key is invalid.
  3990. //
  3991. const auto ERROR_BADKEY = 1010;
  3992. //
  3993. // MessageId: ERROR_CANTOPEN
  3994. //
  3995. // MessageText:
  3996. //
  3997. // The configuration registry key could not be opened.
  3998. //
  3999. const auto ERROR_CANTOPEN = 1011;
  4000. //
  4001. // MessageId: ERROR_CANTREAD
  4002. //
  4003. // MessageText:
  4004. //
  4005. // The configuration registry key could not be read.
  4006. //
  4007. const auto ERROR_CANTREAD = 1012;
  4008. //
  4009. // MessageId: ERROR_CANTWRITE
  4010. //
  4011. // MessageText:
  4012. //
  4013. // The configuration registry key could not be written.
  4014. //
  4015. const auto ERROR_CANTWRITE = 1013;
  4016. //
  4017. // MessageId: ERROR_REGISTRY_RECOVERED
  4018. //
  4019. // MessageText:
  4020. //
  4021. // One of the files in the registry database had to be recovered by use of a log or alternate copy. The recovery was successful.
  4022. //
  4023. const auto ERROR_REGISTRY_RECOVERED = 1014;
  4024. //
  4025. // MessageId: ERROR_REGISTRY_CORRUPT
  4026. //
  4027. // MessageText:
  4028. //
  4029. // The registry is corrupted. The structure of one of the files containing registry data is corrupted, or the system's memory image of the file is corrupted, or the file could not be recovered because the alternate copy or log was absent or corrupted.
  4030. //
  4031. const auto ERROR_REGISTRY_CORRUPT = 1015;
  4032. //
  4033. // MessageId: ERROR_REGISTRY_IO_FAILED
  4034. //
  4035. // MessageText:
  4036. //
  4037. // An I/O operation initiated by the registry failed unrecoverably. The registry could not read in, or write out, or flush, one of the files that contain the system's image of the registry.
  4038. //
  4039. const auto ERROR_REGISTRY_IO_FAILED = 1016;
  4040. //
  4041. // MessageId: ERROR_NOT_REGISTRY_FILE
  4042. //
  4043. // MessageText:
  4044. //
  4045. // The system has attempted to load or restore a file into the registry, but the specified file is not in a registry file format.
  4046. //
  4047. const auto ERROR_NOT_REGISTRY_FILE = 1017;
  4048. //
  4049. // MessageId: ERROR_KEY_DELETED
  4050. //
  4051. // MessageText:
  4052. //
  4053. // Illegal operation attempted on a registry key that has been marked for deletion.
  4054. //
  4055. const auto ERROR_KEY_DELETED = 1018;
  4056. //
  4057. // MessageId: ERROR_NO_LOG_SPACE
  4058. //
  4059. // MessageText:
  4060. //
  4061. // System could not allocate the required space in a registry log.
  4062. //
  4063. const auto ERROR_NO_LOG_SPACE = 1019;
  4064. //
  4065. // MessageId: ERROR_KEY_HAS_CHILDREN
  4066. //
  4067. // MessageText:
  4068. //
  4069. // Cannot create a symbolic link in a registry key that already has subkeys or values.
  4070. //
  4071. const auto ERROR_KEY_HAS_CHILDREN = 1020;
  4072. //
  4073. // MessageId: ERROR_CHILD_MUST_BE_VOLATILE
  4074. //
  4075. // MessageText:
  4076. //
  4077. // Cannot create a stable subkey under a volatile parent key.
  4078. //
  4079. const auto ERROR_CHILD_MUST_BE_VOLATILE = 1021;
  4080. //
  4081. // MessageId: ERROR_NOTIFY_ENUM_DIR
  4082. //
  4083. // MessageText:
  4084. //
  4085. // A notify change request is being completed and the information is not being returned in the caller's buffer. The caller now needs to enumerate the files to find the changes.
  4086. //
  4087. const auto ERROR_NOTIFY_ENUM_DIR = 1022;
  4088. //
  4089. // MessageId: ERROR_DEPENDENT_SERVICES_RUNNING
  4090. //
  4091. // MessageText:
  4092. //
  4093. // A stop control has been sent to a service that other running services are dependent on.
  4094. //
  4095. const auto ERROR_DEPENDENT_SERVICES_RUNNING = 1051;
  4096. //
  4097. // MessageId: ERROR_INVALID_SERVICE_CONTROL
  4098. //
  4099. // MessageText:
  4100. //
  4101. // The requested control is not valid for this service.
  4102. //
  4103. const auto ERROR_INVALID_SERVICE_CONTROL = 1052;
  4104. //
  4105. // MessageId: ERROR_SERVICE_REQUEST_TIMEOUT
  4106. //
  4107. // MessageText:
  4108. //
  4109. // The service did not respond to the start or control request in a timely fashion.
  4110. //
  4111. const auto ERROR_SERVICE_REQUEST_TIMEOUT = 1053;
  4112. //
  4113. // MessageId: ERROR_SERVICE_NO_THREAD
  4114. //
  4115. // MessageText:
  4116. //
  4117. // A thread could not be created for the service.
  4118. //
  4119. const auto ERROR_SERVICE_NO_THREAD = 1054;
  4120. //
  4121. // MessageId: ERROR_SERVICE_DATABASE_LOCKED
  4122. //
  4123. // MessageText:
  4124. //
  4125. // The service database is locked.
  4126. //
  4127. const auto ERROR_SERVICE_DATABASE_LOCKED = 1055;
  4128. //
  4129. // MessageId: ERROR_SERVICE_ALREADY_RUNNING
  4130. //
  4131. // MessageText:
  4132. //
  4133. // An instance of the service is already running.
  4134. //
  4135. const auto ERROR_SERVICE_ALREADY_RUNNING = 1056;
  4136. //
  4137. // MessageId: ERROR_INVALID_SERVICE_ACCOUNT
  4138. //
  4139. // MessageText:
  4140. //
  4141. // The account name is invalid or does not exist, or the password is invalid for the account name specified.
  4142. //
  4143. const auto ERROR_INVALID_SERVICE_ACCOUNT = 1057;
  4144. //
  4145. // MessageId: ERROR_SERVICE_DISABLED
  4146. //
  4147. // MessageText:
  4148. //
  4149. // The service cannot be started, either because it is disabled or because it has no enabled devices associated with it.
  4150. //
  4151. const auto ERROR_SERVICE_DISABLED = 1058;
  4152. //
  4153. // MessageId: ERROR_CIRCULAR_DEPENDENCY
  4154. //
  4155. // MessageText:
  4156. //
  4157. // Circular service dependency was specified.
  4158. //
  4159. const auto ERROR_CIRCULAR_DEPENDENCY = 1059;
  4160. //
  4161. // MessageId: ERROR_SERVICE_DOES_NOT_EXIST
  4162. //
  4163. // MessageText:
  4164. //
  4165. // The specified service does not exist as an installed service.
  4166. //
  4167. const auto ERROR_SERVICE_DOES_NOT_EXIST = 1060;
  4168. //
  4169. // MessageId: ERROR_SERVICE_CANNOT_ACCEPT_CTRL
  4170. //
  4171. // MessageText:
  4172. //
  4173. // The service cannot accept control messages at this time.
  4174. //
  4175. const auto ERROR_SERVICE_CANNOT_ACCEPT_CTRL = 1061;
  4176. //
  4177. // MessageId: ERROR_SERVICE_NOT_ACTIVE
  4178. //
  4179. // MessageText:
  4180. //
  4181. // The service has not been started.
  4182. //
  4183. const auto ERROR_SERVICE_NOT_ACTIVE = 1062;
  4184. //
  4185. // MessageId: ERROR_FAILED_SERVICE_CONTROLLER_CONNECT
  4186. //
  4187. // MessageText:
  4188. //
  4189. // The service process could not connect to the service controller.
  4190. //
  4191. const auto ERROR_FAILED_SERVICE_CONTROLLER_CONNECT = 1063;
  4192. //
  4193. // MessageId: ERROR_EXCEPTION_IN_SERVICE
  4194. //
  4195. // MessageText:
  4196. //
  4197. // An exception occurred in the service when handling the control request.
  4198. //
  4199. const auto ERROR_EXCEPTION_IN_SERVICE = 1064;
  4200. //
  4201. // MessageId: ERROR_DATABASE_DOES_NOT_EXIST
  4202. //
  4203. // MessageText:
  4204. //
  4205. // The database specified does not exist.
  4206. //
  4207. const auto ERROR_DATABASE_DOES_NOT_EXIST = 1065;
  4208. //
  4209. // MessageId: ERROR_SERVICE_SPECIFIC_ERROR
  4210. //
  4211. // MessageText:
  4212. //
  4213. // The service has returned a service-specific error code.
  4214. //
  4215. const auto ERROR_SERVICE_SPECIFIC_ERROR = 1066;
  4216. //
  4217. // MessageId: ERROR_PROCESS_ABORTED
  4218. //
  4219. // MessageText:
  4220. //
  4221. // The process terminated unexpectedly.
  4222. //
  4223. const auto ERROR_PROCESS_ABORTED = 1067;
  4224. //
  4225. // MessageId: ERROR_SERVICE_DEPENDENCY_FAIL
  4226. //
  4227. // MessageText:
  4228. //
  4229. // The dependency service or group failed to start.
  4230. //
  4231. const auto ERROR_SERVICE_DEPENDENCY_FAIL = 1068;
  4232. //
  4233. // MessageId: ERROR_SERVICE_LOGON_FAILED
  4234. //
  4235. // MessageText:
  4236. //
  4237. // The service did not start due to a logon failure.
  4238. //
  4239. const auto ERROR_SERVICE_LOGON_FAILED = 1069;
  4240. //
  4241. // MessageId: ERROR_SERVICE_START_HANG
  4242. //
  4243. // MessageText:
  4244. //
  4245. // After starting, the service hung in a start-pending state.
  4246. //
  4247. const auto ERROR_SERVICE_START_HANG = 1070;
  4248. //
  4249. // MessageId: ERROR_INVALID_SERVICE_LOCK
  4250. //
  4251. // MessageText:
  4252. //
  4253. // The specified service database lock is invalid.
  4254. //
  4255. const auto ERROR_INVALID_SERVICE_LOCK = 1071;
  4256. //
  4257. // MessageId: ERROR_SERVICE_MARKED_FOR_DELETE
  4258. //
  4259. // MessageText:
  4260. //
  4261. // The specified service has been marked for deletion.
  4262. //
  4263. const auto ERROR_SERVICE_MARKED_FOR_DELETE = 1072;
  4264. //
  4265. // MessageId: ERROR_SERVICE_EXISTS
  4266. //
  4267. // MessageText:
  4268. //
  4269. // The specified service already exists.
  4270. //
  4271. const auto ERROR_SERVICE_EXISTS = 1073;
  4272. //
  4273. // MessageId: ERROR_ALREADY_RUNNING_LKG
  4274. //
  4275. // MessageText:
  4276. //
  4277. // The system is currently running with the last-known-good configuration.
  4278. //
  4279. const auto ERROR_ALREADY_RUNNING_LKG = 1074;
  4280. //
  4281. // MessageId: ERROR_SERVICE_DEPENDENCY_DELETED
  4282. //
  4283. // MessageText:
  4284. //
  4285. // The dependency service does not exist or has been marked for deletion.
  4286. //
  4287. const auto ERROR_SERVICE_DEPENDENCY_DELETED = 1075;
  4288. //
  4289. // MessageId: ERROR_BOOT_ALREADY_ACCEPTED
  4290. //
  4291. // MessageText:
  4292. //
  4293. // The current boot has already been accepted for use as the last-known-good control set.
  4294. //
  4295. const auto ERROR_BOOT_ALREADY_ACCEPTED = 1076;
  4296. //
  4297. // MessageId: ERROR_SERVICE_NEVER_STARTED
  4298. //
  4299. // MessageText:
  4300. //
  4301. // No attempts to start the service have been made since the last boot.
  4302. //
  4303. const auto ERROR_SERVICE_NEVER_STARTED = 1077;
  4304. //
  4305. // MessageId: ERROR_DUPLICATE_SERVICE_NAME
  4306. //
  4307. // MessageText:
  4308. //
  4309. // The name is already in use as either a service name or a service display name.
  4310. //
  4311. const auto ERROR_DUPLICATE_SERVICE_NAME = 1078;
  4312. //
  4313. // MessageId: ERROR_DIFFERENT_SERVICE_ACCOUNT
  4314. //
  4315. // MessageText:
  4316. //
  4317. // The account specified for this service is different from the account specified for other services running in the same process.
  4318. //
  4319. const auto ERROR_DIFFERENT_SERVICE_ACCOUNT = 1079;
  4320. //
  4321. // MessageId: ERROR_CANNOT_DETECT_DRIVER_FAILURE
  4322. //
  4323. // MessageText:
  4324. //
  4325. // Failure actions can only be set for Win32 services, not for drivers.
  4326. //
  4327. const auto ERROR_CANNOT_DETECT_DRIVER_FAILURE = 1080;
  4328. //
  4329. // MessageId: ERROR_CANNOT_DETECT_PROCESS_ABORT
  4330. //
  4331. // MessageText:
  4332. //
  4333. // This service runs in the same process as the service control manager.
  4334. // Therefore, the service control manager cannot take action if this service's process terminates unexpectedly.
  4335. //
  4336. const auto ERROR_CANNOT_DETECT_PROCESS_ABORT = 1081;
  4337. //
  4338. // MessageId: ERROR_NO_RECOVERY_PROGRAM
  4339. //
  4340. // MessageText:
  4341. //
  4342. // No recovery program has been configured for this service.
  4343. //
  4344. const auto ERROR_NO_RECOVERY_PROGRAM = 1082;
  4345. //
  4346. // MessageId: ERROR_SERVICE_NOT_IN_EXE
  4347. //
  4348. // MessageText:
  4349. //
  4350. // The executable program that this service is configured to run in does not implement the service.
  4351. //
  4352. const auto ERROR_SERVICE_NOT_IN_EXE = 1083;
  4353. //
  4354. // MessageId: ERROR_NOT_SAFEBOOT_SERVICE
  4355. //
  4356. // MessageText:
  4357. //
  4358. // This service cannot be started in Safe Mode
  4359. //
  4360. const auto ERROR_NOT_SAFEBOOT_SERVICE = 1084;
  4361. //
  4362. // MessageId: ERROR_END_OF_MEDIA
  4363. //
  4364. // MessageText:
  4365. //
  4366. // The physical end of the tape has been reached.
  4367. //
  4368. const auto ERROR_END_OF_MEDIA = 1100;
  4369. //
  4370. // MessageId: ERROR_FILEMARK_DETECTED
  4371. //
  4372. // MessageText:
  4373. //
  4374. // A tape access reached a filemark.
  4375. //
  4376. const auto ERROR_FILEMARK_DETECTED = 1101;
  4377. //
  4378. // MessageId: ERROR_BEGINNING_OF_MEDIA
  4379. //
  4380. // MessageText:
  4381. //
  4382. // The beginning of the tape or a partition was encountered.
  4383. //
  4384. const auto ERROR_BEGINNING_OF_MEDIA = 1102;
  4385. //
  4386. // MessageId: ERROR_SETMARK_DETECTED
  4387. //
  4388. // MessageText:
  4389. //
  4390. // A tape access reached the end of a set of files.
  4391. //
  4392. const auto ERROR_SETMARK_DETECTED = 1103;
  4393. //
  4394. // MessageId: ERROR_NO_DATA_DETECTED
  4395. //
  4396. // MessageText:
  4397. //
  4398. // No more data is on the tape.
  4399. //
  4400. const auto ERROR_NO_DATA_DETECTED = 1104;
  4401. //
  4402. // MessageId: ERROR_PARTITION_FAILURE
  4403. //
  4404. // MessageText:
  4405. //
  4406. // Tape could not be partitioned.
  4407. //
  4408. const auto ERROR_PARTITION_FAILURE = 1105;
  4409. //
  4410. // MessageId: ERROR_INVALID_BLOCK_LENGTH
  4411. //
  4412. // MessageText:
  4413. //
  4414. // When accessing a new tape of a multivolume partition, the current block size is incorrect.
  4415. //
  4416. const auto ERROR_INVALID_BLOCK_LENGTH = 1106;
  4417. //
  4418. // MessageId: ERROR_DEVICE_NOT_PARTITIONED
  4419. //
  4420. // MessageText:
  4421. //
  4422. // Tape partition information could not be found when loading a tape.
  4423. //
  4424. const auto ERROR_DEVICE_NOT_PARTITIONED = 1107;
  4425. //
  4426. // MessageId: ERROR_UNABLE_TO_LOCK_MEDIA
  4427. //
  4428. // MessageText:
  4429. //
  4430. // Unable to lock the media eject mechanism.
  4431. //
  4432. const auto ERROR_UNABLE_TO_LOCK_MEDIA = 1108;
  4433. //
  4434. // MessageId: ERROR_UNABLE_TO_UNLOAD_MEDIA
  4435. //
  4436. // MessageText:
  4437. //
  4438. // Unable to unload the media.
  4439. //
  4440. const auto ERROR_UNABLE_TO_UNLOAD_MEDIA = 1109;
  4441. //
  4442. // MessageId: ERROR_MEDIA_CHANGED
  4443. //
  4444. // MessageText:
  4445. //
  4446. // The media in the drive may have changed.
  4447. //
  4448. const auto ERROR_MEDIA_CHANGED = 1110;
  4449. //
  4450. // MessageId: ERROR_BUS_RESET
  4451. //
  4452. // MessageText:
  4453. //
  4454. // The I/O bus was reset.
  4455. //
  4456. const auto ERROR_BUS_RESET = 1111;
  4457. //
  4458. // MessageId: ERROR_NO_MEDIA_IN_DRIVE
  4459. //
  4460. // MessageText:
  4461. //
  4462. // No media in drive.
  4463. //
  4464. const auto ERROR_NO_MEDIA_IN_DRIVE = 1112;
  4465. //
  4466. // MessageId: ERROR_NO_UNICODE_TRANSLATION
  4467. //
  4468. // MessageText:
  4469. //
  4470. // No mapping for the Unicode character exists in the target multi-byte code page.
  4471. //
  4472. const auto ERROR_NO_UNICODE_TRANSLATION = 1113;
  4473. //
  4474. // MessageId: ERROR_DLL_INIT_FAILED
  4475. //
  4476. // MessageText:
  4477. //
  4478. // A dynamic link library (DL initialization routine failed.
  4479. //
  4480. const auto ERROR_DLL_INIT_FAILED = 1114;
  4481. //
  4482. // MessageId: ERROR_SHUTDOWN_IN_PROGRESS
  4483. //
  4484. // MessageText:
  4485. //
  4486. // A system shutdown is in progress.
  4487. //
  4488. const auto ERROR_SHUTDOWN_IN_PROGRESS = 1115;
  4489. //
  4490. // MessageId: ERROR_NO_SHUTDOWN_IN_PROGRESS
  4491. //
  4492. // MessageText:
  4493. //
  4494. // Unable to abort the system shutdown because no shutdown was in progress.
  4495. //
  4496. const auto ERROR_NO_SHUTDOWN_IN_PROGRESS = 1116;
  4497. //
  4498. // MessageId: ERROR_IO_DEVICE
  4499. //
  4500. // MessageText:
  4501. //
  4502. // The request could not be performed because of an I/O device error.
  4503. //
  4504. const auto ERROR_IO_DEVICE = 1117;
  4505. //
  4506. // MessageId: ERROR_SERIAL_NO_DEVICE
  4507. //
  4508. // MessageText:
  4509. //
  4510. // No serial device was successfully initialized. The serial driver will unload.
  4511. //
  4512. const auto ERROR_SERIAL_NO_DEVICE = 1118;
  4513. //
  4514. // MessageId: ERROR_IRQ_BUSY
  4515. //
  4516. // MessageText:
  4517. //
  4518. // Unable to open a device that was sharing an interrupt request (IRQ) with other devices. At least one other device that uses that IRQ was already opened.
  4519. //
  4520. const auto ERROR_IRQ_BUSY = 1119;
  4521. //
  4522. // MessageId: ERROR_MORE_WRITES
  4523. //
  4524. // MessageText:
  4525. //
  4526. // A serial I/O operation was completed by another write to the serial port.
  4527. // (The IOCTL_SERIAL_XOFF_COUNTER reached zero.)
  4528. //
  4529. const auto ERROR_MORE_WRITES = 1120;
  4530. //
  4531. // MessageId: ERROR_COUNTER_TIMEOUT
  4532. //
  4533. // MessageText:
  4534. //
  4535. // A serial I/O operation completed because the timeout period expired.
  4536. // (The IOCTL_SERIAL_XOFF_COUNTER did not reach zero.)
  4537. //
  4538. const auto ERROR_COUNTER_TIMEOUT = 1121;
  4539. //
  4540. // MessageId: ERROR_FLOPPY_ID_MARK_NOT_FOUND
  4541. //
  4542. // MessageText:
  4543. //
  4544. // No ID address mark was found on the floppy disk.
  4545. //
  4546. const auto ERROR_FLOPPY_ID_MARK_NOT_FOUND = 1122;
  4547. //
  4548. // MessageId: ERROR_FLOPPY_WRONG_CYLINDER
  4549. //
  4550. // MessageText:
  4551. //
  4552. // Mismatch between the floppy disk sector ID field and the floppy disk controller track address.
  4553. //
  4554. const auto ERROR_FLOPPY_WRONG_CYLINDER = 1123;
  4555. //
  4556. // MessageId: ERROR_FLOPPY_UNKNOWN_ERROR
  4557. //
  4558. // MessageText:
  4559. //
  4560. // The floppy disk controller reported an error that is not recognized by the floppy disk driver.
  4561. //
  4562. const auto ERROR_FLOPPY_UNKNOWN_ERROR = 1124;
  4563. //
  4564. // MessageId: ERROR_FLOPPY_BAD_REGISTERS
  4565. //
  4566. // MessageText:
  4567. //
  4568. // The floppy disk controller returned inconsistent results in its registers.
  4569. //
  4570. const auto ERROR_FLOPPY_BAD_REGISTERS = 1125;
  4571. //
  4572. // MessageId: ERROR_DISK_RECALIBRATE_FAILED
  4573. //
  4574. // MessageText:
  4575. //
  4576. // While accessing the hard disk, a recalibrate operation failed, even after retries.
  4577. //
  4578. const auto ERROR_DISK_RECALIBRATE_FAILED = 1126;
  4579. //
  4580. // MessageId: ERROR_DISK_OPERATION_FAILED
  4581. //
  4582. // MessageText:
  4583. //
  4584. // While accessing the hard disk, a disk operation failed even after retries.
  4585. //
  4586. const auto ERROR_DISK_OPERATION_FAILED = 1127;
  4587. //
  4588. // MessageId: ERROR_DISK_RESET_FAILED
  4589. //
  4590. // MessageText:
  4591. //
  4592. // While accessing the hard disk, a disk controller reset was needed, but even that failed.
  4593. //
  4594. const auto ERROR_DISK_RESET_FAILED = 1128;
  4595. //
  4596. // MessageId: ERROR_EOM_OVERFLOW
  4597. //
  4598. // MessageText:
  4599. //
  4600. // Physical end of tape encountered.
  4601. //
  4602. const auto ERROR_EOM_OVERFLOW = 1129;
  4603. //
  4604. // MessageId: ERROR_NOT_ENOUGH_SERVER_MEMORY
  4605. //
  4606. // MessageText:
  4607. //
  4608. // Not enough server storage is available to process this command.
  4609. //
  4610. const auto ERROR_NOT_ENOUGH_SERVER_MEMORY = 1130;
  4611. //
  4612. // MessageId: ERROR_POSSIBLE_DEADLOCK
  4613. //
  4614. // MessageText:
  4615. //
  4616. // A potential deadlock condition has been detected.
  4617. //
  4618. const auto ERROR_POSSIBLE_DEADLOCK = 1131;
  4619. //
  4620. // MessageId: ERROR_MAPPED_ALIGNMENT
  4621. //
  4622. // MessageText:
  4623. //
  4624. // The base address or the file offset specified does not have the proper alignment.
  4625. //
  4626. const auto ERROR_MAPPED_ALIGNMENT = 1132;
  4627. //
  4628. // MessageId: ERROR_SET_POWER_STATE_VETOED
  4629. //
  4630. // MessageText:
  4631. //
  4632. // An attempt to change the system power state was vetoed by another application or driver.
  4633. //
  4634. const auto ERROR_SET_POWER_STATE_VETOED = 1140;
  4635. //
  4636. // MessageId: ERROR_SET_POWER_STATE_FAILED
  4637. //
  4638. // MessageText:
  4639. //
  4640. // The system BIOS failed an attempt to change the system power state.
  4641. //
  4642. const auto ERROR_SET_POWER_STATE_FAILED = 1141;
  4643. //
  4644. // MessageId: ERROR_TOO_MANY_LINKS
  4645. //
  4646. // MessageText:
  4647. //
  4648. // An attempt was made to create more links on a file than the file system supports.
  4649. //
  4650. const auto ERROR_TOO_MANY_LINKS = 1142;
  4651. //
  4652. // MessageId: ERROR_OLD_WIN_VERSION
  4653. //
  4654. // MessageText:
  4655. //
  4656. // The specified program requires a newer version of Windows.
  4657. //
  4658. const auto ERROR_OLD_WIN_VERSION = 1150;
  4659. //
  4660. // MessageId: ERROR_APP_WRONG_OS
  4661. //
  4662. // MessageText:
  4663. //
  4664. // The specified program is not a Windows or MS-DOS program.
  4665. //
  4666. const auto ERROR_APP_WRONG_OS = 1151;
  4667. //
  4668. // MessageId: ERROR_SINGLE_INSTANCE_APP
  4669. //
  4670. // MessageText:
  4671. //
  4672. // Cannot start more than one instance of the specified program.
  4673. //
  4674. const auto ERROR_SINGLE_INSTANCE_APP = 1152;
  4675. //
  4676. // MessageId: ERROR_RMODE_APP
  4677. //
  4678. // MessageText:
  4679. //
  4680. // The specified program was written for an earlier version of Windows.
  4681. //
  4682. const auto ERROR_RMODE_APP = 1153;
  4683. //
  4684. // MessageId: ERROR_INVALID_DLL
  4685. //
  4686. // MessageText:
  4687. //
  4688. // One of the library files needed to run this application is damaged.
  4689. //
  4690. const auto ERROR_INVALID_DLL = 1154;
  4691. //
  4692. // MessageId: ERROR_NO_ASSOCIATION
  4693. //
  4694. // MessageText:
  4695. //
  4696. // No application is associated with the specified file for this operation.
  4697. //
  4698. const auto ERROR_NO_ASSOCIATION = 1155;
  4699. //
  4700. // MessageId: ERROR_DDE_FAIL
  4701. //
  4702. // MessageText:
  4703. //
  4704. // An error occurred in sending the command to the application.
  4705. //
  4706. const auto ERROR_DDE_FAIL = 1156;
  4707. //
  4708. // MessageId: ERROR_DLL_NOT_FOUND
  4709. //
  4710. // MessageText:
  4711. //
  4712. // One of the library files needed to run this application cannot be found.
  4713. //
  4714. const auto ERROR_DLL_NOT_FOUND = 1157;
  4715. //
  4716. // MessageId: ERROR_NO_MORE_USER_HANDLES
  4717. //
  4718. // MessageText:
  4719. //
  4720. // The current process has used all of its system allowance of handles for Window Manager objects.
  4721. //
  4722. const auto ERROR_NO_MORE_USER_HANDLES = 1158;
  4723. //
  4724. // MessageId: ERROR_MESSAGE_SYNC_ONLY
  4725. //
  4726. // MessageText:
  4727. //
  4728. // The message can be used only with synchronous operations.
  4729. //
  4730. const auto ERROR_MESSAGE_SYNC_ONLY = 1159;
  4731. //
  4732. // MessageId: ERROR_SOURCE_ELEMENT_EMPTY
  4733. //
  4734. // MessageText:
  4735. //
  4736. // The indicated source element has no media.
  4737. //
  4738. const auto ERROR_SOURCE_ELEMENT_EMPTY = 1160;
  4739. //
  4740. // MessageId: ERROR_DESTINATION_ELEMENT_FULL
  4741. //
  4742. // MessageText:
  4743. //
  4744. // The indicated destination element already contains media.
  4745. //
  4746. const auto ERROR_DESTINATION_ELEMENT_FULL = 1161;
  4747. //
  4748. // MessageId: ERROR_ILLEGAL_ELEMENT_ADDRESS
  4749. //
  4750. // MessageText:
  4751. //
  4752. // The indicated element does not exist.
  4753. //
  4754. const auto ERROR_ILLEGAL_ELEMENT_ADDRESS = 1162;
  4755. //
  4756. // MessageId: ERROR_MAGAZINE_NOT_PRESENT
  4757. //
  4758. // MessageText:
  4759. //
  4760. // The indicated element is part of a magazine that is not present.
  4761. //
  4762. const auto ERROR_MAGAZINE_NOT_PRESENT = 1163;
  4763. //
  4764. // MessageId: ERROR_DEVICE_REINITIALIZATION_NEEDED
  4765. //
  4766. // MessageText:
  4767. //
  4768. // The indicated device requires reinitialization due to hardware errors.
  4769. //
  4770. const auto ERROR_DEVICE_REINITIALIZATION_NEEDED = 1164;
  4771. //
  4772. // MessageId: ERROR_DEVICE_REQUIRES_CLEANING
  4773. //
  4774. // MessageText:
  4775. //
  4776. // The device has indicated that cleaning is required before further operations are attempted.
  4777. //
  4778. const auto ERROR_DEVICE_REQUIRES_CLEANING = 1165;
  4779. //
  4780. // MessageId: ERROR_DEVICE_DOOR_OPEN
  4781. //
  4782. // MessageText:
  4783. //
  4784. // The device has indicated that its door is open.
  4785. //
  4786. const auto ERROR_DEVICE_DOOR_OPEN = 1166;
  4787. //
  4788. // MessageId: ERROR_DEVICE_NOT_CONNECTED
  4789. //
  4790. // MessageText:
  4791. //
  4792. // The device is not connected.
  4793. //
  4794. const auto ERROR_DEVICE_NOT_CONNECTED = 1167;
  4795. //
  4796. // MessageId: ERROR_NOT_FOUND
  4797. //
  4798. // MessageText:
  4799. //
  4800. // Element not found.
  4801. //
  4802. const auto ERROR_NOT_FOUND = 1168;
  4803. //
  4804. // MessageId: ERROR_NO_MATCH
  4805. //
  4806. // MessageText:
  4807. //
  4808. // There was no match for the specified key in the index.
  4809. //
  4810. const auto ERROR_NO_MATCH = 1169;
  4811. //
  4812. // MessageId: ERROR_SET_NOT_FOUND
  4813. //
  4814. // MessageText:
  4815. //
  4816. // The property set specified does not exist on the object.
  4817. //
  4818. const auto ERROR_SET_NOT_FOUND = 1170;
  4819. //
  4820. // MessageId: ERROR_POINT_NOT_FOUND
  4821. //
  4822. // MessageText:
  4823. //
  4824. // The point passed to GetMouseMovePoints is not in the buffer.
  4825. //
  4826. const auto ERROR_POINT_NOT_FOUND = 1171;
  4827. //
  4828. // MessageId: ERROR_NO_TRACKING_SERVICE
  4829. //
  4830. // MessageText:
  4831. //
  4832. // The tracking (workstation) service is not running.
  4833. //
  4834. const auto ERROR_NO_TRACKING_SERVICE = 1172;
  4835. //
  4836. // MessageId: ERROR_NO_VOLUME_ID
  4837. //
  4838. // MessageText:
  4839. //
  4840. // The Volume ID could not be found.
  4841. //
  4842. const auto ERROR_NO_VOLUME_ID = 1173;
  4843. //
  4844. // MessageId: ERROR_UNABLE_TO_REMOVE_REPLACED
  4845. //
  4846. // MessageText:
  4847. //
  4848. // Unable to remove the file to be replaced.
  4849. //
  4850. const auto ERROR_UNABLE_TO_REMOVE_REPLACED = 1175;
  4851. //
  4852. // MessageId: ERROR_UNABLE_TO_MOVE_REPLACEMENT
  4853. //
  4854. // MessageText:
  4855. //
  4856. // Unable to move the replacement file to the file to be replaced. The file to be replaced has retained its original name.
  4857. //
  4858. const auto ERROR_UNABLE_TO_MOVE_REPLACEMENT = 1176;
  4859. //
  4860. // MessageId: ERROR_UNABLE_TO_MOVE_REPLACEMENT_2
  4861. //
  4862. // MessageText:
  4863. //
  4864. // Unable to move the replacement file to the file to be replaced. The file to be replaced has been renamed using the backup name.
  4865. //
  4866. const auto ERROR_UNABLE_TO_MOVE_REPLACEMENT_2 = 1177;
  4867. //
  4868. // MessageId: ERROR_JOURNAL_DELETE_IN_PROGRESS
  4869. //
  4870. // MessageText:
  4871. //
  4872. // The volume change journal is being deleted.
  4873. //
  4874. const auto ERROR_JOURNAL_DELETE_IN_PROGRESS = 1178;
  4875. //
  4876. // MessageId: ERROR_JOURNAL_NOT_ACTIVE
  4877. //
  4878. // MessageText:
  4879. //
  4880. // The volume change journal is not active.
  4881. //
  4882. const auto ERROR_JOURNAL_NOT_ACTIVE = 1179;
  4883. //
  4884. // MessageId: ERROR_POTENTIAL_FILE_FOUND
  4885. //
  4886. // MessageText:
  4887. //
  4888. // A file was found, but it may not be the correct file.
  4889. //
  4890. const auto ERROR_POTENTIAL_FILE_FOUND = 1180;
  4891. //
  4892. // MessageId: ERROR_JOURNAL_ENTRY_DELETED
  4893. //
  4894. // MessageText:
  4895. //
  4896. // The journal entry has been deleted from the journal.
  4897. //
  4898. const auto ERROR_JOURNAL_ENTRY_DELETED = 1181;
  4899. //
  4900. // MessageId: ERROR_SHUTDOWN_IS_SCHEDULED
  4901. //
  4902. // MessageText:
  4903. //
  4904. // A system shutdown has already been scheduled.
  4905. //
  4906. const auto ERROR_SHUTDOWN_IS_SCHEDULED = 1190;
  4907. //
  4908. // MessageId: ERROR_SHUTDOWN_USERS_LOGGED_ON
  4909. //
  4910. // MessageText:
  4911. //
  4912. // The system shutdown cannot be initiated because there are other users logged on to the computer.
  4913. //
  4914. const auto ERROR_SHUTDOWN_USERS_LOGGED_ON = 1191;
  4915. //
  4916. // MessageId: ERROR_BAD_DEVICE
  4917. //
  4918. // MessageText:
  4919. //
  4920. // The specified device name is invalid.
  4921. //
  4922. const auto ERROR_BAD_DEVICE = 1200;
  4923. //
  4924. // MessageId: ERROR_CONNECTION_UNAVAIL
  4925. //
  4926. // MessageText:
  4927. //
  4928. // The device is not currently connected but it is a remembered connection.
  4929. //
  4930. const auto ERROR_CONNECTION_UNAVAIL = 1201;
  4931. //
  4932. // MessageId: ERROR_DEVICE_ALREADY_REMEMBERED
  4933. //
  4934. // MessageText:
  4935. //
  4936. // The local device name has a remembered connection to another network resource.
  4937. //
  4938. const auto ERROR_DEVICE_ALREADY_REMEMBERED = 1202;
  4939. //
  4940. // MessageId: ERROR_NO_NET_OR_BAD_PATH
  4941. //
  4942. // MessageText:
  4943. //
  4944. // The network path was either typed incorrectly, does not exist, or the network provider is not currently available. Please try retyping the path or contact your network administrator.
  4945. //
  4946. const auto ERROR_NO_NET_OR_BAD_PATH = 1203;
  4947. //
  4948. // MessageId: ERROR_BAD_PROVIDER
  4949. //
  4950. // MessageText:
  4951. //
  4952. // The specified network provider name is invalid.
  4953. //
  4954. const auto ERROR_BAD_PROVIDER = 1204;
  4955. //
  4956. // MessageId: ERROR_CANNOT_OPEN_PROFILE
  4957. //
  4958. // MessageText:
  4959. //
  4960. // Unable to open the network connection profile.
  4961. //
  4962. const auto ERROR_CANNOT_OPEN_PROFILE = 1205;
  4963. //
  4964. // MessageId: ERROR_BAD_PROFILE
  4965. //
  4966. // MessageText:
  4967. //
  4968. // The network connection profile is corrupted.
  4969. //
  4970. const auto ERROR_BAD_PROFILE = 1206;
  4971. //
  4972. // MessageId: ERROR_NOT_CONTAINER
  4973. //
  4974. // MessageText:
  4975. //
  4976. // Cannot enumerate a noncontainer.
  4977. //
  4978. const auto ERROR_NOT_CONTAINER = 1207;
  4979. //
  4980. // MessageId: ERROR_EXTENDED_ERROR
  4981. //
  4982. // MessageText:
  4983. //
  4984. // An extended error has occurred.
  4985. //
  4986. const auto ERROR_EXTENDED_ERROR = 1208;
  4987. //
  4988. // MessageId: ERROR_INVALID_GROUPNAME
  4989. //
  4990. // MessageText:
  4991. //
  4992. // The format of the specified group name is invalid.
  4993. //
  4994. const auto ERROR_INVALID_GROUPNAME = 1209;
  4995. //
  4996. // MessageId: ERROR_INVALID_COMPUTERNAME
  4997. //
  4998. // MessageText:
  4999. //
  5000. // The format of the specified computer name is invalid.
  5001. //
  5002. const auto ERROR_INVALID_COMPUTERNAME = 1210;
  5003. //
  5004. // MessageId: ERROR_INVALID_EVENTNAME
  5005. //
  5006. // MessageText:
  5007. //
  5008. // The format of the specified event name is invalid.
  5009. //
  5010. const auto ERROR_INVALID_EVENTNAME = 1211;
  5011. //
  5012. // MessageId: ERROR_INVALID_DOMAINNAME
  5013. //
  5014. // MessageText:
  5015. //
  5016. // The format of the specified domain name is invalid.
  5017. //
  5018. const auto ERROR_INVALID_DOMAINNAME = 1212;
  5019. //
  5020. // MessageId: ERROR_INVALID_SERVICENAME
  5021. //
  5022. // MessageText:
  5023. //
  5024. // The format of the specified service name is invalid.
  5025. //
  5026. const auto ERROR_INVALID_SERVICENAME = 1213;
  5027. //
  5028. // MessageId: ERROR_INVALID_NETNAME
  5029. //
  5030. // MessageText:
  5031. //
  5032. // The format of the specified network name is invalid.
  5033. //
  5034. const auto ERROR_INVALID_NETNAME = 1214;
  5035. //
  5036. // MessageId: ERROR_INVALID_SHARENAME
  5037. //
  5038. // MessageText:
  5039. //
  5040. // The format of the specified share name is invalid.
  5041. //
  5042. const auto ERROR_INVALID_SHARENAME = 1215;
  5043. //
  5044. // MessageId: ERROR_INVALID_PASSWORDNAME
  5045. //
  5046. // MessageText:
  5047. //
  5048. // The format of the specified password is invalid.
  5049. //
  5050. const auto ERROR_INVALID_PASSWORDNAME = 1216;
  5051. //
  5052. // MessageId: ERROR_INVALID_MESSAGENAME
  5053. //
  5054. // MessageText:
  5055. //
  5056. // The format of the specified message name is invalid.
  5057. //
  5058. const auto ERROR_INVALID_MESSAGENAME = 1217;
  5059. //
  5060. // MessageId: ERROR_INVALID_MESSAGEDEST
  5061. //
  5062. // MessageText:
  5063. //
  5064. // The format of the specified message destination is invalid.
  5065. //
  5066. const auto ERROR_INVALID_MESSAGEDEST = 1218;
  5067. //
  5068. // MessageId: ERROR_SESSION_CREDENTIAL_CONFLICT
  5069. //
  5070. // MessageText:
  5071. //
  5072. // 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.
  5073. //
  5074. const auto ERROR_SESSION_CREDENTIAL_CONFLICT = 1219;
  5075. //
  5076. // MessageId: ERROR_REMOTE_SESSION_LIMIT_EXCEEDED
  5077. //
  5078. // MessageText:
  5079. //
  5080. // An attempt was made to establish a session to a network server, but there are already too many sessions established to that server.
  5081. //
  5082. const auto ERROR_REMOTE_SESSION_LIMIT_EXCEEDED = 1220;
  5083. //
  5084. // MessageId: ERROR_DUP_DOMAINNAME
  5085. //
  5086. // MessageText:
  5087. //
  5088. // The workgroup or domain name is already in use by another computer on the network.
  5089. //
  5090. const auto ERROR_DUP_DOMAINNAME = 1221;
  5091. //
  5092. // MessageId: ERROR_NO_NETWORK
  5093. //
  5094. // MessageText:
  5095. //
  5096. // The network is not present or not started.
  5097. //
  5098. const auto ERROR_NO_NETWORK = 1222;
  5099. //
  5100. // MessageId: ERROR_CANCELLED
  5101. //
  5102. // MessageText:
  5103. //
  5104. // The operation was canceled by the user.
  5105. //
  5106. const auto ERROR_CANCELLED = 1223;
  5107. //
  5108. // MessageId: ERROR_USER_MAPPED_FILE
  5109. //
  5110. // MessageText:
  5111. //
  5112. // The requested operation cannot be performed on a file with a user-mapped section open.
  5113. //
  5114. const auto ERROR_USER_MAPPED_FILE = 1224;
  5115. //
  5116. // MessageId: ERROR_CONNECTION_REFUSED
  5117. //
  5118. // MessageText:
  5119. //
  5120. // The remote computer refused the network connection.
  5121. //
  5122. const auto ERROR_CONNECTION_REFUSED = 1225;
  5123. //
  5124. // MessageId: ERROR_GRACEFUL_DISCONNECT
  5125. //
  5126. // MessageText:
  5127. //
  5128. // The network connection was gracefully closed.
  5129. //
  5130. const auto ERROR_GRACEFUL_DISCONNECT = 1226;
  5131. //
  5132. // MessageId: ERROR_ADDRESS_ALREADY_ASSOCIATED
  5133. //
  5134. // MessageText:
  5135. //
  5136. // The network transport endpoint already has an address associated with it.
  5137. //
  5138. const auto ERROR_ADDRESS_ALREADY_ASSOCIATED = 1227;
  5139. //
  5140. // MessageId: ERROR_ADDRESS_NOT_ASSOCIATED
  5141. //
  5142. // MessageText:
  5143. //
  5144. // An address has not yet been associated with the network endpoint.
  5145. //
  5146. const auto ERROR_ADDRESS_NOT_ASSOCIATED = 1228;
  5147. //
  5148. // MessageId: ERROR_CONNECTION_INVALID
  5149. //
  5150. // MessageText:
  5151. //
  5152. // An operation was attempted on a nonexistent network connection.
  5153. //
  5154. const auto ERROR_CONNECTION_INVALID = 1229;
  5155. //
  5156. // MessageId: ERROR_CONNECTION_ACTIVE
  5157. //
  5158. // MessageText:
  5159. //
  5160. // An invalid operation was attempted on an active network connection.
  5161. //
  5162. const auto ERROR_CONNECTION_ACTIVE = 1230;
  5163. //
  5164. // MessageId: ERROR_NETWORK_UNREACHABLE
  5165. //
  5166. // MessageText:
  5167. //
  5168. // The network location cannot be reached. For information about network troubleshooting, see Windows Help.
  5169. //
  5170. const auto ERROR_NETWORK_UNREACHABLE = 1231;
  5171. //
  5172. // MessageId: ERROR_HOST_UNREACHABLE
  5173. //
  5174. // MessageText:
  5175. //
  5176. // The network location cannot be reached. For information about network troubleshooting, see Windows Help.
  5177. //
  5178. const auto ERROR_HOST_UNREACHABLE = 1232;
  5179. //
  5180. // MessageId: ERROR_PROTOCOL_UNREACHABLE
  5181. //
  5182. // MessageText:
  5183. //
  5184. // The network location cannot be reached. For information about network troubleshooting, see Windows Help.
  5185. //
  5186. const auto ERROR_PROTOCOL_UNREACHABLE = 1233;
  5187. //
  5188. // MessageId: ERROR_PORT_UNREACHABLE
  5189. //
  5190. // MessageText:
  5191. //
  5192. // No service is operating at the destination network endpoint on the remote system.
  5193. //
  5194. const auto ERROR_PORT_UNREACHABLE = 1234;
  5195. //
  5196. // MessageId: ERROR_REQUEST_ABORTED
  5197. //
  5198. // MessageText:
  5199. //
  5200. // The request was aborted.
  5201. //
  5202. const auto ERROR_REQUEST_ABORTED = 1235;
  5203. //
  5204. // MessageId: ERROR_CONNECTION_ABORTED
  5205. //
  5206. // MessageText:
  5207. //
  5208. // The network connection was aborted by the local system.
  5209. //
  5210. const auto ERROR_CONNECTION_ABORTED = 1236;
  5211. //
  5212. // MessageId: ERROR_RETRY
  5213. //
  5214. // MessageText:
  5215. //
  5216. // The operation could not be completed. A retry should be performed.
  5217. //
  5218. const auto ERROR_RETRY = 1237;
  5219. //
  5220. // MessageId: ERROR_CONNECTION_COUNT_LIMIT
  5221. //
  5222. // MessageText:
  5223. //
  5224. // A connection to the server could not be made because the limit on the number of concurrent connections for this account has been reached.
  5225. //
  5226. const auto ERROR_CONNECTION_COUNT_LIMIT = 1238;
  5227. //
  5228. // MessageId: ERROR_LOGIN_TIME_RESTRICTION
  5229. //
  5230. // MessageText:
  5231. //
  5232. // Attempting to log in during an unauthorized time of day for this account.
  5233. //
  5234. const auto ERROR_LOGIN_TIME_RESTRICTION = 1239;
  5235. //
  5236. // MessageId: ERROR_LOGIN_WKSTA_RESTRICTION
  5237. //
  5238. // MessageText:
  5239. //
  5240. // The account is not authorized to log in from this station.
  5241. //
  5242. const auto ERROR_LOGIN_WKSTA_RESTRICTION = 1240;
  5243. //
  5244. // MessageId: ERROR_INCORRECT_ADDRESS
  5245. //
  5246. // MessageText:
  5247. //
  5248. // The network address could not be used for the operation requested.
  5249. //
  5250. const auto ERROR_INCORRECT_ADDRESS = 1241;
  5251. //
  5252. // MessageId: ERROR_ALREADY_REGISTERED
  5253. //
  5254. // MessageText:
  5255. //
  5256. // The service is already registered.
  5257. //
  5258. const auto ERROR_ALREADY_REGISTERED = 1242;
  5259. //
  5260. // MessageId: ERROR_SERVICE_NOT_FOUND
  5261. //
  5262. // MessageText:
  5263. //
  5264. // The specified service does not exist.
  5265. //
  5266. const auto ERROR_SERVICE_NOT_FOUND = 1243;
  5267. //
  5268. // MessageId: ERROR_NOT_AUTHENTICATED
  5269. //
  5270. // MessageText:
  5271. //
  5272. // The operation being requested was not performed because the user has not been authenticated.
  5273. //
  5274. const auto ERROR_NOT_AUTHENTICATED = 1244;
  5275. //
  5276. // MessageId: ERROR_NOT_LOGGED_ON
  5277. //
  5278. // MessageText:
  5279. //
  5280. // The operation being requested was not performed because the user has not logged on to the network.
  5281. // The specified service does not exist.
  5282. //
  5283. const auto ERROR_NOT_LOGGED_ON = 1245;
  5284. //
  5285. // MessageId: ERROR_CONTINUE
  5286. //
  5287. // MessageText:
  5288. //
  5289. // Continue with work in progress.
  5290. //
  5291. const auto ERROR_CONTINUE = 1246;
  5292. //
  5293. // MessageId: ERROR_ALREADY_INITIALIZED
  5294. //
  5295. // MessageText:
  5296. //
  5297. // An attempt was made to perform an initialization operation when initialization has already been completed.
  5298. //
  5299. const auto ERROR_ALREADY_INITIALIZED = 1247;
  5300. //
  5301. // MessageId: ERROR_NO_MORE_DEVICES
  5302. //
  5303. // MessageText:
  5304. //
  5305. // No more local devices.
  5306. //
  5307. const auto ERROR_NO_MORE_DEVICES = 1248;
  5308. //
  5309. // MessageId: ERROR_NO_SUCH_SITE
  5310. //
  5311. // MessageText:
  5312. //
  5313. // The specified site does not exist.
  5314. //
  5315. const auto ERROR_NO_SUCH_SITE = 1249;
  5316. //
  5317. // MessageId: ERROR_DOMAIN_CONTROLLER_EXISTS
  5318. //
  5319. // MessageText:
  5320. //
  5321. // A domain controller with the specified name already exists.
  5322. //
  5323. const auto ERROR_DOMAIN_CONTROLLER_EXISTS = 1250;
  5324. //
  5325. // MessageId: ERROR_ONLY_IF_CONNECTED
  5326. //
  5327. // MessageText:
  5328. //
  5329. // This operation is supported only when you are connected to the server.
  5330. //
  5331. const auto ERROR_ONLY_IF_CONNECTED = 1251;
  5332. //
  5333. // MessageId: ERROR_OVERRIDE_NOCHANGES
  5334. //
  5335. // MessageText:
  5336. //
  5337. // The group policy framework should call the extension even if there are no changes.
  5338. //
  5339. const auto ERROR_OVERRIDE_NOCHANGES = 1252;
  5340. //
  5341. // MessageId: ERROR_BAD_USER_PROFILE
  5342. //
  5343. // MessageText:
  5344. //
  5345. // The specified user does not have a valid profile.
  5346. //
  5347. const auto ERROR_BAD_USER_PROFILE = 1253;
  5348. //
  5349. // MessageId: ERROR_NOT_SUPPORTED_ON_SBS
  5350. //
  5351. // MessageText:
  5352. //
  5353. // This operation is not supported on a computer running Windows Server 2003 for Small Business Server
  5354. //
  5355. const auto ERROR_NOT_SUPPORTED_ON_SBS = 1254;
  5356. //
  5357. // MessageId: ERROR_SERVER_SHUTDOWN_IN_PROGRESS
  5358. //
  5359. // MessageText:
  5360. //
  5361. // The server machine is shutting down.
  5362. //
  5363. const auto ERROR_SERVER_SHUTDOWN_IN_PROGRESS = 1255;
  5364. //
  5365. // MessageId: ERROR_HOST_DOWN
  5366. //
  5367. // MessageText:
  5368. //
  5369. // The remote system is not available. For information about network troubleshooting, see Windows Help.
  5370. //
  5371. const auto ERROR_HOST_DOWN = 1256;
  5372. //
  5373. // MessageId: ERROR_NON_ACCOUNT_SID
  5374. //
  5375. // MessageText:
  5376. //
  5377. // The security identifier provided is not from an account domain.
  5378. //
  5379. const auto ERROR_NON_ACCOUNT_SID = 1257;
  5380. //
  5381. // MessageId: ERROR_NON_DOMAIN_SID
  5382. //
  5383. // MessageText:
  5384. //
  5385. // The security identifier provided does not have a domain component.
  5386. //
  5387. const auto ERROR_NON_DOMAIN_SID = 1258;
  5388. //
  5389. // MessageId: ERROR_APPHELP_BLOCK
  5390. //
  5391. // MessageText:
  5392. //
  5393. // AppHelp dialog canceled thus preventing the application from starting.
  5394. //
  5395. const auto ERROR_APPHELP_BLOCK = 1259;
  5396. //
  5397. // MessageId: ERROR_ACCESS_DISABLED_BY_POLICY
  5398. //
  5399. // MessageText:
  5400. //
  5401. // This program is blocked by group policy. For more information, contact your system administrator.
  5402. //
  5403. const auto ERROR_ACCESS_DISABLED_BY_POLICY = 1260;
  5404. //
  5405. // MessageId: ERROR_REG_NAT_CONSUMPTION
  5406. //
  5407. // MessageText:
  5408. //
  5409. // A program attempt to use an invalid register value. Normally caused by an uninitialized register. This error is Itanium specific.
  5410. //
  5411. const auto ERROR_REG_NAT_CONSUMPTION = 1261;
  5412. //
  5413. // MessageId: ERROR_CSCSHARE_OFFLINE
  5414. //
  5415. // MessageText:
  5416. //
  5417. // The share is currently offline or does not exist.
  5418. //
  5419. const auto ERROR_CSCSHARE_OFFLINE = 1262;
  5420. //
  5421. // MessageId: ERROR_PKINIT_FAILURE
  5422. //
  5423. // MessageText:
  5424. //
  5425. // The kerberos protocol encountered an error while validating the KDC certificate during smartcard logon. There is more information in the system event log.
  5426. //
  5427. const auto ERROR_PKINIT_FAILURE = 1263;
  5428. //
  5429. // MessageId: ERROR_SMARTCARD_SUBSYSTEM_FAILURE
  5430. //
  5431. // MessageText:
  5432. //
  5433. // The kerberos protocol encountered an error while attempting to utilize the smartcard subsystem.
  5434. //
  5435. const auto ERROR_SMARTCARD_SUBSYSTEM_FAILURE = 1264;
  5436. //
  5437. // MessageId: ERROR_DOWNGRADE_DETECTED
  5438. //
  5439. // MessageText:
  5440. //
  5441. // The system detected a possible attempt to compromise security. Please ensure that you can contact the server that authenticated you.
  5442. //
  5443. const auto ERROR_DOWNGRADE_DETECTED = 1265;
  5444. //
  5445. // Do not use ID's 1266 - 1270 as the symbolicNames have been moved to SEC_E_*
  5446. //
  5447. //
  5448. // MessageId: ERROR_MACHINE_LOCKED
  5449. //
  5450. // MessageText:
  5451. //
  5452. // The machine is locked and cannot be shut down without the force option.
  5453. //
  5454. const auto ERROR_MACHINE_LOCKED = 1271;
  5455. //
  5456. // MessageId: ERROR_CALLBACK_SUPPLIED_INVALID_DATA
  5457. //
  5458. // MessageText:
  5459. //
  5460. // An application-defined callback gave invalid data when called.
  5461. //
  5462. const auto ERROR_CALLBACK_SUPPLIED_INVALID_DATA = 1273;
  5463. //
  5464. // MessageId: ERROR_SYNC_FOREGROUND_REFRESH_REQUIRED
  5465. //
  5466. // MessageText:
  5467. //
  5468. // The group policy framework should call the extension in the synchronous foreground policy refresh.
  5469. //
  5470. const auto ERROR_SYNC_FOREGROUND_REFRESH_REQUIRED = 1274;
  5471. //
  5472. // MessageId: ERROR_DRIVER_BLOCKED
  5473. //
  5474. // MessageText:
  5475. //
  5476. // This driver has been blocked from loading
  5477. //
  5478. const auto ERROR_DRIVER_BLOCKED = 1275;
  5479. //
  5480. // MessageId: ERROR_INVALID_IMPORT_OF_NON_DLL
  5481. //
  5482. // MessageText:
  5483. //
  5484. // A dynamic link library (DL referenced a module that was neither a DLL nor the process's executable image.
  5485. //
  5486. const auto ERROR_INVALID_IMPORT_OF_NON_DLL = 1276;
  5487. //
  5488. // MessageId: ERROR_ACCESS_DISABLED_WEBBLADE
  5489. //
  5490. // MessageText:
  5491. //
  5492. // Windows cannot open this program since it has been disabled.
  5493. //
  5494. const auto ERROR_ACCESS_DISABLED_WEBBLADE = 1277;
  5495. //
  5496. // MessageId: ERROR_ACCESS_DISABLED_WEBBLADE_TAMPER
  5497. //
  5498. // MessageText:
  5499. //
  5500. // Windows cannot open this program because the license enforcement system has been tampered with or become corrupted.
  5501. //
  5502. const auto ERROR_ACCESS_DISABLED_WEBBLADE_TAMPER = 1278;
  5503. //
  5504. // MessageId: ERROR_RECOVERY_FAILURE
  5505. //
  5506. // MessageText:
  5507. //
  5508. // A transaction recover failed.
  5509. //
  5510. const auto ERROR_RECOVERY_FAILURE = 1279;
  5511. //
  5512. // MessageId: ERROR_ALREADY_FIBER
  5513. //
  5514. // MessageText:
  5515. //
  5516. // The current thread has already been converted to a fiber.
  5517. //
  5518. const auto ERROR_ALREADY_FIBER = 1280;
  5519. //
  5520. // MessageId: ERROR_ALREADY_THREAD
  5521. //
  5522. // MessageText:
  5523. //
  5524. // The current thread has already been converted from a fiber.
  5525. //
  5526. const auto ERROR_ALREADY_THREAD = 1281;
  5527. //
  5528. // MessageId: ERROR_STACK_BUFFER_OVERRUN
  5529. //
  5530. // MessageText:
  5531. //
  5532. // The system detected an overrun of a stack-based buffer in this application. This overrun could potentially allow a malicious user to gain control of this application.
  5533. //
  5534. const auto ERROR_STACK_BUFFER_OVERRUN = 1282;
  5535. //
  5536. // MessageId: ERROR_PARAMETER_QUOTA_EXCEEDED
  5537. //
  5538. // MessageText:
  5539. //
  5540. // Data present in one of the parameters is more than the function can operate on.
  5541. //
  5542. const auto ERROR_PARAMETER_QUOTA_EXCEEDED = 1283;
  5543. //
  5544. // MessageId: ERROR_DEBUGGER_INACTIVE
  5545. //
  5546. // MessageText:
  5547. //
  5548. // An attempt to do an operation on a debug object failed because the object is in the process of being deleted.
  5549. //
  5550. const auto ERROR_DEBUGGER_INACTIVE = 1284;
  5551. //
  5552. // MessageId: ERROR_DELAY_LOAD_FAILED
  5553. //
  5554. // MessageText:
  5555. //
  5556. // An attempt to delay-load a .dll or get a function address in a delay-loaded .dll failed.
  5557. //
  5558. const auto ERROR_DELAY_LOAD_FAILED = 1285;
  5559. //
  5560. // MessageId: ERROR_VDM_DISALLOWED
  5561. //
  5562. // MessageText:
  5563. //
  5564. // %1 is a 16-bit application. You do not have permissions to execute 16-bit applications. Check your permissions with your system administrator.
  5565. //
  5566. const auto ERROR_VDM_DISALLOWED = 1286;
  5567. //
  5568. // MessageId: ERROR_UNIDENTIFIED_ERROR
  5569. //
  5570. // MessageText:
  5571. //
  5572. // Insufficient information exists to identify the cause of failure.
  5573. //
  5574. const auto ERROR_UNIDENTIFIED_ERROR = 1287;
  5575. //
  5576. // MessageId: ERROR_INVALID_CRUNTIME_PARAMETER
  5577. //
  5578. // MessageText:
  5579. //
  5580. // The parameter passed to a C runtime function is incorrect.
  5581. //
  5582. const auto ERROR_INVALID_CRUNTIME_PARAMETER = 1288;
  5583. //
  5584. // MessageId: ERROR_BEYOND_VDL
  5585. //
  5586. // MessageText:
  5587. //
  5588. // The operation occurred beyond the valid data length of the file.
  5589. //
  5590. const auto ERROR_BEYOND_VDL = 1289;
  5591. //
  5592. // MessageId: ERROR_INCOMPATIBLE_SERVICE_SID_TYPE
  5593. //
  5594. // MessageText:
  5595. //
  5596. // The service start failed since one or more services in the same process have an incompatible service SID type setting. A service with restricted service SID type can only coexist in the same process with other services with a restricted SID type. If the service SID type for this service was just configured, the hosting process must be restarted in order to start this service.
  5597. //
  5598. const auto ERROR_INCOMPATIBLE_SERVICE_SID_TYPE = 1290;
  5599. //
  5600. // MessageId: ERROR_DRIVER_PROCESS_TERMINATED
  5601. //
  5602. // MessageText:
  5603. //
  5604. // The process hosting the driver for this device has been terminated.
  5605. //
  5606. const auto ERROR_DRIVER_PROCESS_TERMINATED = 1291;
  5607. //
  5608. // MessageId: ERROR_IMPLEMENTATION_LIMIT
  5609. //
  5610. // MessageText:
  5611. //
  5612. // An operation attempted to exceed an implementation-defined limit.
  5613. //
  5614. const auto ERROR_IMPLEMENTATION_LIMIT = 1292;
  5615. //
  5616. // MessageId: ERROR_PROCESS_IS_PROTECTED
  5617. //
  5618. // MessageText:
  5619. //
  5620. // Either the target process, or the target thread's containing process, is a protected process.
  5621. //
  5622. const auto ERROR_PROCESS_IS_PROTECTED = 1293;
  5623. //
  5624. // MessageId: ERROR_SERVICE_NOTIFY_CLIENT_LAGGING
  5625. //
  5626. // MessageText:
  5627. //
  5628. // The service notification client is lagging too far behind the current state of services in the machine.
  5629. //
  5630. const auto ERROR_SERVICE_NOTIFY_CLIENT_LAGGING = 1294;
  5631. //
  5632. // MessageId: ERROR_DISK_QUOTA_EXCEEDED
  5633. //
  5634. // MessageText:
  5635. //
  5636. // The requested file operation failed because the storage quota was exceeded.
  5637. // To free up disk space, move files to a different location or delete unnecessary files. For more information, contact your system administrator.
  5638. //
  5639. const auto ERROR_DISK_QUOTA_EXCEEDED = 1295;
  5640. //
  5641. // MessageId: ERROR_CONTENT_BLOCKED
  5642. //
  5643. // MessageText:
  5644. //
  5645. // The requested file operation failed because the storage policy blocks that type of file. For more information, contact your system administrator.
  5646. //
  5647. const auto ERROR_CONTENT_BLOCKED = 1296;
  5648. //
  5649. // MessageId: ERROR_INCOMPATIBLE_SERVICE_PRIVILEGE
  5650. //
  5651. // MessageText:
  5652. //
  5653. // A privilege that the service requires to function properly does not exist in the service account configuration.
  5654. // You may use the Services Microsoft Management Console (MMC) snap-in (services.msc) and the Local Security Settings MMC snap-in (secpol.msc) to view the service configuration and the account configuration.
  5655. //
  5656. const auto ERROR_INCOMPATIBLE_SERVICE_PRIVILEGE = 1297;
  5657. ///////////////////////////////////////////////////
  5658. // //
  5659. // SECURITY Error codes //
  5660. // //
  5661. // 1299 to 1399 //
  5662. ///////////////////////////////////////////////////
  5663. //
  5664. // MessageId: ERROR_INVALID_LABEL
  5665. //
  5666. // MessageText:
  5667. //
  5668. // Indicates a particular Security ID may not be assigned as the label of an object.
  5669. //
  5670. const auto ERROR_INVALID_LABEL = 1299;
  5671. //
  5672. // MessageId: ERROR_NOT_ALL_ASSIGNED
  5673. //
  5674. // MessageText:
  5675. //
  5676. // Not all privileges or groups referenced are assigned to the caller.
  5677. //
  5678. const auto ERROR_NOT_ALL_ASSIGNED = 1300;
  5679. //
  5680. // MessageId: ERROR_SOME_NOT_MAPPED
  5681. //
  5682. // MessageText:
  5683. //
  5684. // Some mapping between account names and security IDs was not done.
  5685. //
  5686. const auto ERROR_SOME_NOT_MAPPED = 1301;
  5687. //
  5688. // MessageId: ERROR_NO_QUOTAS_FOR_ACCOUNT
  5689. //
  5690. // MessageText:
  5691. //
  5692. // No system quota limits are specifically set for this account.
  5693. //
  5694. const auto ERROR_NO_QUOTAS_FOR_ACCOUNT = 1302;
  5695. //
  5696. // MessageId: ERROR_LOCAL_USER_SESSION_KEY
  5697. //
  5698. // MessageText:
  5699. //
  5700. // No encryption key is available. A well-known encryption key was returned.
  5701. //
  5702. const auto ERROR_LOCAL_USER_SESSION_KEY = 1303;
  5703. //
  5704. // MessageId: ERROR_NULL_LM_PASSWORD
  5705. //
  5706. // MessageText:
  5707. //
  5708. // The password is too complex to be converted to a LAN Manager password. The LAN Manager password returned is a NULL string.
  5709. //
  5710. const auto ERROR_NULL_LM_PASSWORD = 1304;
  5711. //
  5712. // MessageId: ERROR_UNKNOWN_REVISION
  5713. //
  5714. // MessageText:
  5715. //
  5716. // The revision level is unknown.
  5717. //
  5718. const auto ERROR_UNKNOWN_REVISION = 1305;
  5719. //
  5720. // MessageId: ERROR_REVISION_MISMATCH
  5721. //
  5722. // MessageText:
  5723. //
  5724. // Indicates two revision levels are incompatible.
  5725. //
  5726. const auto ERROR_REVISION_MISMATCH = 1306;
  5727. //
  5728. // MessageId: ERROR_INVALID_OWNER
  5729. //
  5730. // MessageText:
  5731. //
  5732. // This security ID may not be assigned as the owner of this object.
  5733. //
  5734. const auto ERROR_INVALID_OWNER = 1307;
  5735. //
  5736. // MessageId: ERROR_INVALID_PRIMARY_GROUP
  5737. //
  5738. // MessageText:
  5739. //
  5740. // This security ID may not be assigned as the primary group of an object.
  5741. //
  5742. const auto ERROR_INVALID_PRIMARY_GROUP = 1308;
  5743. //
  5744. // MessageId: ERROR_NO_IMPERSONATION_TOKEN
  5745. //
  5746. // MessageText:
  5747. //
  5748. // An attempt has been made to operate on an impersonation token by a thread that is not currently impersonating a client.
  5749. //
  5750. const auto ERROR_NO_IMPERSONATION_TOKEN = 1309;
  5751. //
  5752. // MessageId: ERROR_CANT_DISABLE_MANDATORY
  5753. //
  5754. // MessageText:
  5755. //
  5756. // The group may not be disabled.
  5757. //
  5758. const auto ERROR_CANT_DISABLE_MANDATORY = 1310;
  5759. //
  5760. // MessageId: ERROR_NO_LOGON_SERVERS
  5761. //
  5762. // MessageText:
  5763. //
  5764. // There are currently no logon servers available to service the logon request.
  5765. //
  5766. const auto ERROR_NO_LOGON_SERVERS = 1311;
  5767. //
  5768. // MessageId: ERROR_NO_SUCH_LOGON_SESSION
  5769. //
  5770. // MessageText:
  5771. //
  5772. // A specified logon session does not exist. It may already have been terminated.
  5773. //
  5774. const auto ERROR_NO_SUCH_LOGON_SESSION = 1312;
  5775. //
  5776. // MessageId: ERROR_NO_SUCH_PRIVILEGE
  5777. //
  5778. // MessageText:
  5779. //
  5780. // A specified privilege does not exist.
  5781. //
  5782. const auto ERROR_NO_SUCH_PRIVILEGE = 1313;
  5783. //
  5784. // MessageId: ERROR_PRIVILEGE_NOT_HELD
  5785. //
  5786. // MessageText:
  5787. //
  5788. // A required privilege is not held by the client.
  5789. //
  5790. const auto ERROR_PRIVILEGE_NOT_HELD = 1314;
  5791. //
  5792. // MessageId: ERROR_INVALID_ACCOUNT_NAME
  5793. //
  5794. // MessageText:
  5795. //
  5796. // The name provided is not a properly formed account name.
  5797. //
  5798. const auto ERROR_INVALID_ACCOUNT_NAME = 1315;
  5799. //
  5800. // MessageId: ERROR_USER_EXISTS
  5801. //
  5802. // MessageText:
  5803. //
  5804. // The specified account already exists.
  5805. //
  5806. const auto ERROR_USER_EXISTS = 1316;
  5807. //
  5808. // MessageId: ERROR_NO_SUCH_USER
  5809. //
  5810. // MessageText:
  5811. //
  5812. // The specified account does not exist.
  5813. //
  5814. const auto ERROR_NO_SUCH_USER = 1317;
  5815. //
  5816. // MessageId: ERROR_GROUP_EXISTS
  5817. //
  5818. // MessageText:
  5819. //
  5820. // The specified group already exists.
  5821. //
  5822. const auto ERROR_GROUP_EXISTS = 1318;
  5823. //
  5824. // MessageId: ERROR_NO_SUCH_GROUP
  5825. //
  5826. // MessageText:
  5827. //
  5828. // The specified group does not exist.
  5829. //
  5830. const auto ERROR_NO_SUCH_GROUP = 1319;
  5831. //
  5832. // MessageId: ERROR_MEMBER_IN_GROUP
  5833. //
  5834. // MessageText:
  5835. //
  5836. // Either the specified user account is already a member of the specified group, or the specified group cannot be deleted because it contains a member.
  5837. //
  5838. const auto ERROR_MEMBER_IN_GROUP = 1320;
  5839. //
  5840. // MessageId: ERROR_MEMBER_NOT_IN_GROUP
  5841. //
  5842. // MessageText:
  5843. //
  5844. // The specified user account is not a member of the specified group account.
  5845. //
  5846. const auto ERROR_MEMBER_NOT_IN_GROUP = 1321;
  5847. //
  5848. // MessageId: ERROR_LAST_ADMIN
  5849. //
  5850. // MessageText:
  5851. //
  5852. // The last remaining administration account cannot be disabled or deleted.
  5853. //
  5854. const auto ERROR_LAST_ADMIN = 1322;
  5855. //
  5856. // MessageId: ERROR_WRONG_PASSWORD
  5857. //
  5858. // MessageText:
  5859. //
  5860. // Unable to update the password. The value provided as the current password is incorrect.
  5861. //
  5862. const auto ERROR_WRONG_PASSWORD = 1323;
  5863. //
  5864. // MessageId: ERROR_ILL_FORMED_PASSWORD
  5865. //
  5866. // MessageText:
  5867. //
  5868. // Unable to update the password. The value provided for the new password contains values that are not allowed in passwords.
  5869. //
  5870. const auto ERROR_ILL_FORMED_PASSWORD = 1324;
  5871. //
  5872. // MessageId: ERROR_PASSWORD_RESTRICTION
  5873. //
  5874. // MessageText:
  5875. //
  5876. // Unable to update the password. The value provided for the new password does not meet the length, complexity, or history requirements of the domain.
  5877. //
  5878. const auto ERROR_PASSWORD_RESTRICTION = 1325;
  5879. //
  5880. // MessageId: ERROR_LOGON_FAILURE
  5881. //
  5882. // MessageText:
  5883. //
  5884. // Logon failure: unknown user name or bad password.
  5885. //
  5886. const auto ERROR_LOGON_FAILURE = 1326;
  5887. //
  5888. // MessageId: ERROR_ACCOUNT_RESTRICTION
  5889. //
  5890. // MessageText:
  5891. //
  5892. // Logon failure: user account restriction. Possible reasons are blank passwords not allowed, logon hour restrictions, or a policy restriction has been enforced.
  5893. //
  5894. const auto ERROR_ACCOUNT_RESTRICTION = 1327;
  5895. //
  5896. // MessageId: ERROR_INVALID_LOGON_HOURS
  5897. //
  5898. // MessageText:
  5899. //
  5900. // Logon failure: account logon time restriction violation.
  5901. //
  5902. const auto ERROR_INVALID_LOGON_HOURS = 1328;
  5903. //
  5904. // MessageId: ERROR_INVALID_WORKSTATION
  5905. //
  5906. // MessageText:
  5907. //
  5908. // Logon failure: user not allowed to log on to this computer.
  5909. //
  5910. const auto ERROR_INVALID_WORKSTATION = 1329;
  5911. //
  5912. // MessageId: ERROR_PASSWORD_EXPIRED
  5913. //
  5914. // MessageText:
  5915. //
  5916. // Logon failure: the specified account password has expired.
  5917. //
  5918. const auto ERROR_PASSWORD_EXPIRED = 1330;
  5919. //
  5920. // MessageId: ERROR_ACCOUNT_DISABLED
  5921. //
  5922. // MessageText:
  5923. //
  5924. // Logon failure: account currently disabled.
  5925. //
  5926. const auto ERROR_ACCOUNT_DISABLED = 1331;
  5927. //
  5928. // MessageId: ERROR_NONE_MAPPED
  5929. //
  5930. // MessageText:
  5931. //
  5932. // No mapping between account names and security IDs was done.
  5933. //
  5934. const auto ERROR_NONE_MAPPED = 1332;
  5935. //
  5936. // MessageId: ERROR_TOO_MANY_LUIDS_REQUESTED
  5937. //
  5938. // MessageText:
  5939. //
  5940. // Too many local user identifiers (LUIDs) were requested at one time.
  5941. //
  5942. const auto ERROR_TOO_MANY_LUIDS_REQUESTED = 1333;
  5943. //
  5944. // MessageId: ERROR_LUIDS_EXHAUSTED
  5945. //
  5946. // MessageText:
  5947. //
  5948. // No more local user identifiers (LUIDs) are available.
  5949. //
  5950. const auto ERROR_LUIDS_EXHAUSTED = 1334;
  5951. //
  5952. // MessageId: ERROR_INVALID_SUB_AUTHORITY
  5953. //
  5954. // MessageText:
  5955. //
  5956. // The subauthority part of a security ID is invalid for this particular use.
  5957. //
  5958. const auto ERROR_INVALID_SUB_AUTHORITY = 1335;
  5959. //
  5960. // MessageId: ERROR_INVALID_ACL
  5961. //
  5962. // MessageText:
  5963. //
  5964. // The access control list (AC structure is invalid.
  5965. //
  5966. const auto ERROR_INVALID_ACL = 1336;
  5967. //
  5968. // MessageId: ERROR_INVALID_SID
  5969. //
  5970. // MessageText:
  5971. //
  5972. // The security ID structure is invalid.
  5973. //
  5974. const auto ERROR_INVALID_SID = 1337;
  5975. //
  5976. // MessageId: ERROR_INVALID_SECURITY_DESCR
  5977. //
  5978. // MessageText:
  5979. //
  5980. // The security descriptor structure is invalid.
  5981. //
  5982. const auto ERROR_INVALID_SECURITY_DESCR = 1338;
  5983. //
  5984. // MessageId: ERROR_BAD_INHERITANCE_ACL
  5985. //
  5986. // MessageText:
  5987. //
  5988. // The inherited access control list (AC or access control entry (ACE) could not be built.
  5989. //
  5990. const auto ERROR_BAD_INHERITANCE_ACL = 1340;
  5991. //
  5992. // MessageId: ERROR_SERVER_DISABLED
  5993. //
  5994. // MessageText:
  5995. //
  5996. // The server is currently disabled.
  5997. //
  5998. const auto ERROR_SERVER_DISABLED = 1341;
  5999. //
  6000. // MessageId: ERROR_SERVER_NOT_DISABLED
  6001. //
  6002. // MessageText:
  6003. //
  6004. // The server is currently enabled.
  6005. //
  6006. const auto ERROR_SERVER_NOT_DISABLED = 1342;
  6007. //
  6008. // MessageId: ERROR_INVALID_ID_AUTHORITY
  6009. //
  6010. // MessageText:
  6011. //
  6012. // The value provided was an invalid value for an identifier authority.
  6013. //
  6014. const auto ERROR_INVALID_ID_AUTHORITY = 1343;
  6015. //
  6016. // MessageId: ERROR_ALLOTTED_SPACE_EXCEEDED
  6017. //
  6018. // MessageText:
  6019. //
  6020. // No more memory is available for security information updates.
  6021. //
  6022. const auto ERROR_ALLOTTED_SPACE_EXCEEDED = 1344;
  6023. //
  6024. // MessageId: ERROR_INVALID_GROUP_ATTRIBUTES
  6025. //
  6026. // MessageText:
  6027. //
  6028. // The specified attributes are invalid, or incompatible with the attributes for the group as a whole.
  6029. //
  6030. const auto ERROR_INVALID_GROUP_ATTRIBUTES = 1345;
  6031. //
  6032. // MessageId: ERROR_BAD_IMPERSONATION_LEVEL
  6033. //
  6034. // MessageText:
  6035. //
  6036. // Either a required impersonation level was not provided, or the provided impersonation level is invalid.
  6037. //
  6038. const auto ERROR_BAD_IMPERSONATION_LEVEL = 1346;
  6039. //
  6040. // MessageId: ERROR_CANT_OPEN_ANONYMOUS
  6041. //
  6042. // MessageText:
  6043. //
  6044. // Cannot open an anonymous level security token.
  6045. //
  6046. const auto ERROR_CANT_OPEN_ANONYMOUS = 1347;
  6047. //
  6048. // MessageId: ERROR_BAD_VALIDATION_CLASS
  6049. //
  6050. // MessageText:
  6051. //
  6052. // The validation information class requested was invalid.
  6053. //
  6054. const auto ERROR_BAD_VALIDATION_CLASS = 1348;
  6055. //
  6056. // MessageId: ERROR_BAD_TOKEN_TYPE
  6057. //
  6058. // MessageText:
  6059. //
  6060. // The type of the token is inappropriate for its attempted use.
  6061. //
  6062. const auto ERROR_BAD_TOKEN_TYPE = 1349;
  6063. //
  6064. // MessageId: ERROR_NO_SECURITY_ON_OBJECT
  6065. //
  6066. // MessageText:
  6067. //
  6068. // Unable to perform a security operation on an object that has no associated security.
  6069. //
  6070. const auto ERROR_NO_SECURITY_ON_OBJECT = 1350;
  6071. //
  6072. // MessageId: ERROR_CANT_ACCESS_DOMAIN_INFO
  6073. //
  6074. // MessageText:
  6075. //
  6076. // Configuration information could not be read from the domain controller, either because the machine is unavailable, or access has been denied.
  6077. //
  6078. const auto ERROR_CANT_ACCESS_DOMAIN_INFO = 1351;
  6079. //
  6080. // MessageId: ERROR_INVALID_SERVER_STATE
  6081. //
  6082. // MessageText:
  6083. //
  6084. // The security account manager (SAM) or local security authority (LSA) server was in the wrong state to perform the security operation.
  6085. //
  6086. const auto ERROR_INVALID_SERVER_STATE = 1352;
  6087. //
  6088. // MessageId: ERROR_INVALID_DOMAIN_STATE
  6089. //
  6090. // MessageText:
  6091. //
  6092. // The domain was in the wrong state to perform the security operation.
  6093. //
  6094. const auto ERROR_INVALID_DOMAIN_STATE = 1353;
  6095. //
  6096. // MessageId: ERROR_INVALID_DOMAIN_ROLE
  6097. //
  6098. // MessageText:
  6099. //
  6100. // This operation is only allowed for the Primary Domain Controller of the domain.
  6101. //
  6102. const auto ERROR_INVALID_DOMAIN_ROLE = 1354;
  6103. //
  6104. // MessageId: ERROR_NO_SUCH_DOMAIN
  6105. //
  6106. // MessageText:
  6107. //
  6108. // The specified domain either does not exist or could not be contacted.
  6109. //
  6110. const auto ERROR_NO_SUCH_DOMAIN = 1355;
  6111. //
  6112. // MessageId: ERROR_DOMAIN_EXISTS
  6113. //
  6114. // MessageText:
  6115. //
  6116. // The specified domain already exists.
  6117. //
  6118. const auto ERROR_DOMAIN_EXISTS = 1356;
  6119. //
  6120. // MessageId: ERROR_DOMAIN_LIMIT_EXCEEDED
  6121. //
  6122. // MessageText:
  6123. //
  6124. // An attempt was made to exceed the limit on the number of domains per server.
  6125. //
  6126. const auto ERROR_DOMAIN_LIMIT_EXCEEDED = 1357;
  6127. //
  6128. // MessageId: ERROR_INTERNAL_DB_CORRUPTION
  6129. //
  6130. // MessageText:
  6131. //
  6132. // Unable to complete the requested operation because of either a catastrophic media failure or a data structure corruption on the disk.
  6133. //
  6134. const auto ERROR_INTERNAL_DB_CORRUPTION = 1358;
  6135. //
  6136. // MessageId: ERROR_INTERNAL_ERROR
  6137. //
  6138. // MessageText:
  6139. //
  6140. // An internal error occurred.
  6141. //
  6142. const auto ERROR_INTERNAL_ERROR = 1359;
  6143. //
  6144. // MessageId: ERROR_GENERIC_NOT_MAPPED
  6145. //
  6146. // MessageText:
  6147. //
  6148. // Generic access types were contained in an access mask which should already be mapped to nongeneric types.
  6149. //
  6150. const auto ERROR_GENERIC_NOT_MAPPED = 1360;
  6151. //
  6152. // MessageId: ERROR_BAD_DESCRIPTOR_FORMAT
  6153. //
  6154. // MessageText:
  6155. //
  6156. // A security descriptor is not in the right format (absolute or self-relative).
  6157. //
  6158. const auto ERROR_BAD_DESCRIPTOR_FORMAT = 1361;
  6159. //
  6160. // MessageId: ERROR_NOT_LOGON_PROCESS
  6161. //
  6162. // MessageText:
  6163. //
  6164. // The requested action is restricted for use by logon processes only. The calling process has not registered as a logon process.
  6165. //
  6166. const auto ERROR_NOT_LOGON_PROCESS = 1362;
  6167. //
  6168. // MessageId: ERROR_LOGON_SESSION_EXISTS
  6169. //
  6170. // MessageText:
  6171. //
  6172. // Cannot start a new logon session with an ID that is already in use.
  6173. //
  6174. const auto ERROR_LOGON_SESSION_EXISTS = 1363;
  6175. //
  6176. // MessageId: ERROR_NO_SUCH_PACKAGE
  6177. //
  6178. // MessageText:
  6179. //
  6180. // A specified authentication package is unknown.
  6181. //
  6182. const auto ERROR_NO_SUCH_PACKAGE = 1364;
  6183. //
  6184. // MessageId: ERROR_BAD_LOGON_SESSION_STATE
  6185. //
  6186. // MessageText:
  6187. //
  6188. // The logon session is not in a state that is consistent with the requested operation.
  6189. //
  6190. const auto ERROR_BAD_LOGON_SESSION_STATE = 1365;
  6191. //
  6192. // MessageId: ERROR_LOGON_SESSION_COLLISION
  6193. //
  6194. // MessageText:
  6195. //
  6196. // The logon session ID is already in use.
  6197. //
  6198. const auto ERROR_LOGON_SESSION_COLLISION = 1366;
  6199. //
  6200. // MessageId: ERROR_INVALID_LOGON_TYPE
  6201. //
  6202. // MessageText:
  6203. //
  6204. // A logon request contained an invalid logon type value.
  6205. //
  6206. const auto ERROR_INVALID_LOGON_TYPE = 1367;
  6207. //
  6208. // MessageId: ERROR_CANNOT_IMPERSONATE
  6209. //
  6210. // MessageText:
  6211. //
  6212. // Unable to impersonate using a named pipe until data has been read from that pipe.
  6213. //
  6214. const auto ERROR_CANNOT_IMPERSONATE = 1368;
  6215. //
  6216. // MessageId: ERROR_RXACT_INVALID_STATE
  6217. //
  6218. // MessageText:
  6219. //
  6220. // The transaction state of a registry subtree is incompatible with the requested operation.
  6221. //
  6222. const auto ERROR_RXACT_INVALID_STATE = 1369;
  6223. //
  6224. // MessageId: ERROR_RXACT_COMMIT_FAILURE
  6225. //
  6226. // MessageText:
  6227. //
  6228. // An internal security database corruption has been encountered.
  6229. //
  6230. const auto ERROR_RXACT_COMMIT_FAILURE = 1370;
  6231. //
  6232. // MessageId: ERROR_SPECIAL_ACCOUNT
  6233. //
  6234. // MessageText:
  6235. //
  6236. // Cannot perform this operation on built-in accounts.
  6237. //
  6238. const auto ERROR_SPECIAL_ACCOUNT = 1371;
  6239. //
  6240. // MessageId: ERROR_SPECIAL_GROUP
  6241. //
  6242. // MessageText:
  6243. //
  6244. // Cannot perform this operation on this built-in special group.
  6245. //
  6246. const auto ERROR_SPECIAL_GROUP = 1372;
  6247. //
  6248. // MessageId: ERROR_SPECIAL_USER
  6249. //
  6250. // MessageText:
  6251. //
  6252. // Cannot perform this operation on this built-in special user.
  6253. //
  6254. const auto ERROR_SPECIAL_USER = 1373;
  6255. //
  6256. // MessageId: ERROR_MEMBERS_PRIMARY_GROUP
  6257. //
  6258. // MessageText:
  6259. //
  6260. // The user cannot be removed from a group because the group is currently the user's primary group.
  6261. //
  6262. const auto ERROR_MEMBERS_PRIMARY_GROUP = 1374;
  6263. //
  6264. // MessageId: ERROR_TOKEN_ALREADY_IN_USE
  6265. //
  6266. // MessageText:
  6267. //
  6268. // The token is already in use as a primary token.
  6269. //
  6270. const auto ERROR_TOKEN_ALREADY_IN_USE = 1375;
  6271. //
  6272. // MessageId: ERROR_NO_SUCH_ALIAS
  6273. //
  6274. // MessageText:
  6275. //
  6276. // The specified local group does not exist.
  6277. //
  6278. const auto ERROR_NO_SUCH_ALIAS = 1376;
  6279. //
  6280. // MessageId: ERROR_MEMBER_NOT_IN_ALIAS
  6281. //
  6282. // MessageText:
  6283. //
  6284. // The specified account name is not a member of the group.
  6285. //
  6286. const auto ERROR_MEMBER_NOT_IN_ALIAS = 1377;
  6287. //
  6288. // MessageId: ERROR_MEMBER_IN_ALIAS
  6289. //
  6290. // MessageText:
  6291. //
  6292. // The specified account name is already a member of the group.
  6293. //
  6294. const auto ERROR_MEMBER_IN_ALIAS = 1378;
  6295. //
  6296. // MessageId: ERROR_ALIAS_EXISTS
  6297. //
  6298. // MessageText:
  6299. //
  6300. // The specified local group already exists.
  6301. //
  6302. const auto ERROR_ALIAS_EXISTS = 1379;
  6303. //
  6304. // MessageId: ERROR_LOGON_NOT_GRANTED
  6305. //
  6306. // MessageText:
  6307. //
  6308. // Logon failure: the user has not been granted the requested logon type at this computer.
  6309. //
  6310. const auto ERROR_LOGON_NOT_GRANTED = 1380;
  6311. //
  6312. // MessageId: ERROR_TOO_MANY_SECRETS
  6313. //
  6314. // MessageText:
  6315. //
  6316. // The maximum number of secrets that may be stored in a single system has been exceeded.
  6317. //
  6318. const auto ERROR_TOO_MANY_SECRETS = 1381;
  6319. //
  6320. // MessageId: ERROR_SECRET_TOO_LONG
  6321. //
  6322. // MessageText:
  6323. //
  6324. // The length of a secret exceeds the maximum length allowed.
  6325. //
  6326. const auto ERROR_SECRET_TOO_LONG = 1382;
  6327. //
  6328. // MessageId: ERROR_INTERNAL_DB_ERROR
  6329. //
  6330. // MessageText:
  6331. //
  6332. // The local security authority database contains an internal inconsistency.
  6333. //
  6334. const auto ERROR_INTERNAL_DB_ERROR = 1383;
  6335. //
  6336. // MessageId: ERROR_TOO_MANY_CONTEXT_IDS
  6337. //
  6338. // MessageText:
  6339. //
  6340. // During a logon attempt, the user's security context accumulated too many security IDs.
  6341. //
  6342. const auto ERROR_TOO_MANY_CONTEXT_IDS = 1384;
  6343. //
  6344. // MessageId: ERROR_LOGON_TYPE_NOT_GRANTED
  6345. //
  6346. // MessageText:
  6347. //
  6348. // Logon failure: the user has not been granted the requested logon type at this computer.
  6349. //
  6350. const auto ERROR_LOGON_TYPE_NOT_GRANTED = 1385;
  6351. //
  6352. // MessageId: ERROR_NT_CROSS_ENCRYPTION_REQUIRED
  6353. //
  6354. // MessageText:
  6355. //
  6356. // A cross-encrypted password is necessary to change a user password.
  6357. //
  6358. const auto ERROR_NT_CROSS_ENCRYPTION_REQUIRED = 1386;
  6359. //
  6360. // MessageId: ERROR_NO_SUCH_MEMBER
  6361. //
  6362. // MessageText:
  6363. //
  6364. // A member could not be added to or removed from the local group because the member does not exist.
  6365. //
  6366. const auto ERROR_NO_SUCH_MEMBER = 1387;
  6367. //
  6368. // MessageId: ERROR_INVALID_MEMBER
  6369. //
  6370. // MessageText:
  6371. //
  6372. // A new member could not be added to a local group because the member has the wrong account type.
  6373. //
  6374. const auto ERROR_INVALID_MEMBER = 1388;
  6375. //
  6376. // MessageId: ERROR_TOO_MANY_SIDS
  6377. //
  6378. // MessageText:
  6379. //
  6380. // Too many security IDs have been specified.
  6381. //
  6382. const auto ERROR_TOO_MANY_SIDS = 1389;
  6383. //
  6384. // MessageId: ERROR_LM_CROSS_ENCRYPTION_REQUIRED
  6385. //
  6386. // MessageText:
  6387. //
  6388. // A cross-encrypted password is necessary to change this user password.
  6389. //
  6390. const auto ERROR_LM_CROSS_ENCRYPTION_REQUIRED = 1390;
  6391. //
  6392. // MessageId: ERROR_NO_INHERITANCE
  6393. //
  6394. // MessageText:
  6395. //
  6396. // Indicates an ACL contains no inheritable components.
  6397. //
  6398. const auto ERROR_NO_INHERITANCE = 1391;
  6399. //
  6400. // MessageId: ERROR_FILE_CORRUPT
  6401. //
  6402. // MessageText:
  6403. //
  6404. // The file or directory is corrupted and unreadable.
  6405. //
  6406. const auto ERROR_FILE_CORRUPT = 1392;
  6407. //
  6408. // MessageId: ERROR_DISK_CORRUPT
  6409. //
  6410. // MessageText:
  6411. //
  6412. // The disk structure is corrupted and unreadable.
  6413. //
  6414. const auto ERROR_DISK_CORRUPT = 1393;
  6415. //
  6416. // MessageId: ERROR_NO_USER_SESSION_KEY
  6417. //
  6418. // MessageText:
  6419. //
  6420. // There is no user session key for the specified logon session.
  6421. //
  6422. const auto ERROR_NO_USER_SESSION_KEY = 1394;
  6423. //
  6424. // MessageId: ERROR_LICENSE_QUOTA_EXCEEDED
  6425. //
  6426. // MessageText:
  6427. //
  6428. // The service being accessed is licensed for a particular number of connections.
  6429. // No more connections can be made to the service at this time because there are already as many connections as the service can accept.
  6430. //
  6431. const auto ERROR_LICENSE_QUOTA_EXCEEDED = 1395;
  6432. //
  6433. // MessageId: ERROR_WRONG_TARGET_NAME
  6434. //
  6435. // MessageText:
  6436. //
  6437. // Logon Failure: The target account name is incorrect.
  6438. //
  6439. const auto ERROR_WRONG_TARGET_NAME = 1396;
  6440. //
  6441. // MessageId: ERROR_MUTUAL_AUTH_FAILED
  6442. //
  6443. // MessageText:
  6444. //
  6445. // Mutual Authentication failed. The server's password is out of date at the domain controller.
  6446. //
  6447. const auto ERROR_MUTUAL_AUTH_FAILED = 1397;
  6448. //
  6449. // MessageId: ERROR_TIME_SKEW
  6450. //
  6451. // MessageText:
  6452. //
  6453. // There is a time and/or date difference between the client and server.
  6454. //
  6455. const auto ERROR_TIME_SKEW = 1398;
  6456. //
  6457. // MessageId: ERROR_CURRENT_DOMAIN_NOT_ALLOWED
  6458. //
  6459. // MessageText:
  6460. //
  6461. // This operation cannot be performed on the current domain.
  6462. //
  6463. const auto ERROR_CURRENT_DOMAIN_NOT_ALLOWED = 1399;
  6464. ///////////////////////////////////////////////////
  6465. // //
  6466. // WinUser Error codes //
  6467. // //
  6468. // 1400 to 1499 //
  6469. ///////////////////////////////////////////////////
  6470. //
  6471. // MessageId: ERROR_INVALID_WINDOW_HANDLE
  6472. //
  6473. // MessageText:
  6474. //
  6475. // Invalid window handle.
  6476. //
  6477. const auto ERROR_INVALID_WINDOW_HANDLE = 1400;
  6478. //
  6479. // MessageId: ERROR_INVALID_MENU_HANDLE
  6480. //
  6481. // MessageText:
  6482. //
  6483. // Invalid menu handle.
  6484. //
  6485. const auto ERROR_INVALID_MENU_HANDLE = 1401;
  6486. //
  6487. // MessageId: ERROR_INVALID_CURSOR_HANDLE
  6488. //
  6489. // MessageText:
  6490. //
  6491. // Invalid cursor handle.
  6492. //
  6493. const auto ERROR_INVALID_CURSOR_HANDLE = 1402;
  6494. //
  6495. // MessageId: ERROR_INVALID_ACCEL_HANDLE
  6496. //
  6497. // MessageText:
  6498. //
  6499. // Invalid accelerator table handle.
  6500. //
  6501. const auto ERROR_INVALID_ACCEL_HANDLE = 1403;
  6502. //
  6503. // MessageId: ERROR_INVALID_HOOK_HANDLE
  6504. //
  6505. // MessageText:
  6506. //
  6507. // Invalid hook handle.
  6508. //
  6509. const auto ERROR_INVALID_HOOK_HANDLE = 1404;
  6510. //
  6511. // MessageId: ERROR_INVALID_DWP_HANDLE
  6512. //
  6513. // MessageText:
  6514. //
  6515. // Invalid handle to a multiple-window position structure.
  6516. //
  6517. const auto ERROR_INVALID_DWP_HANDLE = 1405;
  6518. //
  6519. // MessageId: ERROR_TLW_WITH_WSCHILD
  6520. //
  6521. // MessageText:
  6522. //
  6523. // Cannot create a top-level child window.
  6524. //
  6525. const auto ERROR_TLW_WITH_WSCHILD = 1406;
  6526. //
  6527. // MessageId: ERROR_CANNOT_FIND_WND_CLASS
  6528. //
  6529. // MessageText:
  6530. //
  6531. // Cannot find window class.
  6532. //
  6533. const auto ERROR_CANNOT_FIND_WND_CLASS = 1407;
  6534. //
  6535. // MessageId: ERROR_WINDOW_OF_OTHER_THREAD
  6536. //
  6537. // MessageText:
  6538. //
  6539. // Invalid window; it belongs to other thread.
  6540. //
  6541. const auto ERROR_WINDOW_OF_OTHER_THREAD = 1408;
  6542. //
  6543. // MessageId: ERROR_HOTKEY_ALREADY_REGISTERED
  6544. //
  6545. // MessageText:
  6546. //
  6547. // Hot key is already registered.
  6548. //
  6549. const auto ERROR_HOTKEY_ALREADY_REGISTERED = 1409;
  6550. //
  6551. // MessageId: ERROR_CLASS_ALREADY_EXISTS
  6552. //
  6553. // MessageText:
  6554. //
  6555. // Class already exists.
  6556. //
  6557. const auto ERROR_CLASS_ALREADY_EXISTS = 1410;
  6558. //
  6559. // MessageId: ERROR_CLASS_DOES_NOT_EXIST
  6560. //
  6561. // MessageText:
  6562. //
  6563. // Class does not exist.
  6564. //
  6565. const auto ERROR_CLASS_DOES_NOT_EXIST = 1411;
  6566. //
  6567. // MessageId: ERROR_CLASS_HAS_WINDOWS
  6568. //
  6569. // MessageText:
  6570. //
  6571. // Class still has open windows.
  6572. //
  6573. const auto ERROR_CLASS_HAS_WINDOWS = 1412;
  6574. //
  6575. // MessageId: ERROR_INVALID_INDEX
  6576. //
  6577. // MessageText:
  6578. //
  6579. // Invalid index.
  6580. //
  6581. const auto ERROR_INVALID_INDEX = 1413;
  6582. //
  6583. // MessageId: ERROR_INVALID_ICON_HANDLE
  6584. //
  6585. // MessageText:
  6586. //
  6587. // Invalid icon handle.
  6588. //
  6589. const auto ERROR_INVALID_ICON_HANDLE = 1414;
  6590. //
  6591. // MessageId: ERROR_PRIVATE_DIALOG_INDEX
  6592. //
  6593. // MessageText:
  6594. //
  6595. // Using private DIALOG window words.
  6596. //
  6597. const auto ERROR_PRIVATE_DIALOG_INDEX = 1415;
  6598. //
  6599. // MessageId: ERROR_LISTBOX_ID_NOT_FOUND
  6600. //
  6601. // MessageText:
  6602. //
  6603. // The list box identifier was not found.
  6604. //
  6605. const auto ERROR_LISTBOX_ID_NOT_FOUND = 1416;
  6606. //
  6607. // MessageId: ERROR_NO_WILDCARD_CHARACTERS
  6608. //
  6609. // MessageText:
  6610. //
  6611. // No wildcards were found.
  6612. //
  6613. const auto ERROR_NO_WILDCARD_CHARACTERS = 1417;
  6614. //
  6615. // MessageId: ERROR_CLIPBOARD_NOT_OPEN
  6616. //
  6617. // MessageText:
  6618. //
  6619. // Thread does not have a clipboard open.
  6620. //
  6621. const auto ERROR_CLIPBOARD_NOT_OPEN = 1418;
  6622. //
  6623. // MessageId: ERROR_HOTKEY_NOT_REGISTERED
  6624. //
  6625. // MessageText:
  6626. //
  6627. // Hot key is not registered.
  6628. //
  6629. const auto ERROR_HOTKEY_NOT_REGISTERED = 1419;
  6630. //
  6631. // MessageId: ERROR_WINDOW_NOT_DIALOG
  6632. //
  6633. // MessageText:
  6634. //
  6635. // The window is not a valid dialog window.
  6636. //
  6637. const auto ERROR_WINDOW_NOT_DIALOG = 1420;
  6638. //
  6639. // MessageId: ERROR_CONTROL_ID_NOT_FOUND
  6640. //
  6641. // MessageText:
  6642. //
  6643. // Control ID not found.
  6644. //
  6645. const auto ERROR_CONTROL_ID_NOT_FOUND = 1421;
  6646. //
  6647. // MessageId: ERROR_INVALID_COMBOBOX_MESSAGE
  6648. //
  6649. // MessageText:
  6650. //
  6651. // Invalid message for a combo box because it does not have an edit control.
  6652. //
  6653. const auto ERROR_INVALID_COMBOBOX_MESSAGE = 1422;
  6654. //
  6655. // MessageId: ERROR_WINDOW_NOT_COMBOBOX
  6656. //
  6657. // MessageText:
  6658. //
  6659. // The window is not a combo box.
  6660. //
  6661. const auto ERROR_WINDOW_NOT_COMBOBOX = 1423;
  6662. //
  6663. // MessageId: ERROR_INVALID_EDIT_HEIGHT
  6664. //
  6665. // MessageText:
  6666. //
  6667. // Height must be less than 256.
  6668. //
  6669. const auto ERROR_INVALID_EDIT_HEIGHT = 1424;
  6670. //
  6671. // MessageId: ERROR_DC_NOT_FOUND
  6672. //
  6673. // MessageText:
  6674. //
  6675. // Invalid device context (DC) handle.
  6676. //
  6677. const auto ERROR_DC_NOT_FOUND = 1425;
  6678. //
  6679. // MessageId: ERROR_INVALID_HOOK_FILTER
  6680. //
  6681. // MessageText:
  6682. //
  6683. // Invalid hook procedure type.
  6684. //
  6685. const auto ERROR_INVALID_HOOK_FILTER = 1426;
  6686. //
  6687. // MessageId: ERROR_INVALID_FILTER_PROC
  6688. //
  6689. // MessageText:
  6690. //
  6691. // Invalid hook procedure.
  6692. //
  6693. const auto ERROR_INVALID_FILTER_PROC = 1427;
  6694. //
  6695. // MessageId: ERROR_HOOK_NEEDS_HMOD
  6696. //
  6697. // MessageText:
  6698. //
  6699. // Cannot set nonlocal hook without a module handle.
  6700. //
  6701. const auto ERROR_HOOK_NEEDS_HMOD = 1428;
  6702. //
  6703. // MessageId: ERROR_GLOBAL_ONLY_HOOK
  6704. //
  6705. // MessageText:
  6706. //
  6707. // This hook procedure can only be set globally.
  6708. //
  6709. const auto ERROR_GLOBAL_ONLY_HOOK = 1429;
  6710. //
  6711. // MessageId: ERROR_JOURNAL_HOOK_SET
  6712. //
  6713. // MessageText:
  6714. //
  6715. // The journal hook procedure is already installed.
  6716. //
  6717. const auto ERROR_JOURNAL_HOOK_SET = 1430;
  6718. //
  6719. // MessageId: ERROR_HOOK_NOT_INSTALLED
  6720. //
  6721. // MessageText:
  6722. //
  6723. // The hook procedure is not installed.
  6724. //
  6725. const auto ERROR_HOOK_NOT_INSTALLED = 1431;
  6726. //
  6727. // MessageId: ERROR_INVALID_LB_MESSAGE
  6728. //
  6729. // MessageText:
  6730. //
  6731. // Invalid message for single-selection list box.
  6732. //
  6733. const auto ERROR_INVALID_LB_MESSAGE = 1432;
  6734. //
  6735. // MessageId: ERROR_SETCOUNT_ON_BAD_LB
  6736. //
  6737. // MessageText:
  6738. //
  6739. // LB_SETCOUNT sent to non-lazy list box.
  6740. //
  6741. const auto ERROR_SETCOUNT_ON_BAD_LB = 1433;
  6742. //
  6743. // MessageId: ERROR_LB_WITHOUT_TABSTOPS
  6744. //
  6745. // MessageText:
  6746. //
  6747. // This list box does not support tab stops.
  6748. //
  6749. const auto ERROR_LB_WITHOUT_TABSTOPS = 1434;
  6750. //
  6751. // MessageId: ERROR_DESTROY_OBJECT_OF_OTHER_THREAD
  6752. //
  6753. // MessageText:
  6754. //
  6755. // Cannot destroy object created by another thread.
  6756. //
  6757. const auto ERROR_DESTROY_OBJECT_OF_OTHER_THREAD = 1435;
  6758. //
  6759. // MessageId: ERROR_CHILD_WINDOW_MENU
  6760. //
  6761. // MessageText:
  6762. //
  6763. // Child windows cannot have menus.
  6764. //
  6765. const auto ERROR_CHILD_WINDOW_MENU = 1436;
  6766. //
  6767. // MessageId: ERROR_NO_SYSTEM_MENU
  6768. //
  6769. // MessageText:
  6770. //
  6771. // The window does not have a system menu.
  6772. //
  6773. const auto ERROR_NO_SYSTEM_MENU = 1437;
  6774. //
  6775. // MessageId: ERROR_INVALID_MSGBOX_STYLE
  6776. //
  6777. // MessageText:
  6778. //
  6779. // Invalid message box style.
  6780. //
  6781. const auto ERROR_INVALID_MSGBOX_STYLE = 1438;
  6782. //
  6783. // MessageId: ERROR_INVALID_SPI_VALUE
  6784. //
  6785. // MessageText:
  6786. //
  6787. // Invalid system-wide (SPI_*) parameter.
  6788. //
  6789. const auto ERROR_INVALID_SPI_VALUE = 1439;
  6790. //
  6791. // MessageId: ERROR_SCREEN_ALREADY_LOCKED
  6792. //
  6793. // MessageText:
  6794. //
  6795. // Screen already locked.
  6796. //
  6797. const auto ERROR_SCREEN_ALREADY_LOCKED = 1440;
  6798. //
  6799. // MessageId: ERROR_HWNDS_HAVE_DIFF_PARENT
  6800. //
  6801. // MessageText:
  6802. //
  6803. // All handles to windows in a multiple-window position structure must have the same parent.
  6804. //
  6805. const auto ERROR_HWNDS_HAVE_DIFF_PARENT = 1441;
  6806. //
  6807. // MessageId: ERROR_NOT_CHILD_WINDOW
  6808. //
  6809. // MessageText:
  6810. //
  6811. // The window is not a child window.
  6812. //
  6813. const auto ERROR_NOT_CHILD_WINDOW = 1442;
  6814. //
  6815. // MessageId: ERROR_INVALID_GW_COMMAND
  6816. //
  6817. // MessageText:
  6818. //
  6819. // Invalid GW_* command.
  6820. //
  6821. const auto ERROR_INVALID_GW_COMMAND = 1443;
  6822. //
  6823. // MessageId: ERROR_INVALID_THREAD_ID
  6824. //
  6825. // MessageText:
  6826. //
  6827. // Invalid thread identifier.
  6828. //
  6829. const auto ERROR_INVALID_THREAD_ID = 1444;
  6830. //
  6831. // MessageId: ERROR_NON_MDICHILD_WINDOW
  6832. //
  6833. // MessageText:
  6834. //
  6835. // Cannot process a message from a window that is not a multiple document interface (MDI) window.
  6836. //
  6837. const auto ERROR_NON_MDICHILD_WINDOW = 1445;
  6838. //
  6839. // MessageId: ERROR_POPUP_ALREADY_ACTIVE
  6840. //
  6841. // MessageText:
  6842. //
  6843. // Popup menu already active.
  6844. //
  6845. const auto ERROR_POPUP_ALREADY_ACTIVE = 1446;
  6846. //
  6847. // MessageId: ERROR_NO_SCROLLBARS
  6848. //
  6849. // MessageText:
  6850. //
  6851. // The window does not have scroll bars.
  6852. //
  6853. const auto ERROR_NO_SCROLLBARS = 1447;
  6854. //
  6855. // MessageId: ERROR_INVALID_SCROLLBAR_RANGE
  6856. //
  6857. // MessageText:
  6858. //
  6859. // Scroll bar range cannot be greater than MAXLONG.
  6860. //
  6861. const auto ERROR_INVALID_SCROLLBAR_RANGE = 1448;
  6862. //
  6863. // MessageId: ERROR_INVALID_SHOWWIN_COMMAND
  6864. //
  6865. // MessageText:
  6866. //
  6867. // Cannot show or remove the window in the way specified.
  6868. //
  6869. const auto ERROR_INVALID_SHOWWIN_COMMAND = 1449;
  6870. //
  6871. // MessageId: ERROR_NO_SYSTEM_RESOURCES
  6872. //
  6873. // MessageText:
  6874. //
  6875. // Insufficient system resources exist to complete the requested service.
  6876. //
  6877. const auto ERROR_NO_SYSTEM_RESOURCES = 1450;
  6878. //
  6879. // MessageId: ERROR_NONPAGED_SYSTEM_RESOURCES
  6880. //
  6881. // MessageText:
  6882. //
  6883. // Insufficient system resources exist to complete the requested service.
  6884. //
  6885. const auto ERROR_NONPAGED_SYSTEM_RESOURCES = 1451;
  6886. //
  6887. // MessageId: ERROR_PAGED_SYSTEM_RESOURCES
  6888. //
  6889. // MessageText:
  6890. //
  6891. // Insufficient system resources exist to complete the requested service.
  6892. //
  6893. const auto ERROR_PAGED_SYSTEM_RESOURCES = 1452;
  6894. //
  6895. // MessageId: ERROR_WORKING_SET_QUOTA
  6896. //
  6897. // MessageText:
  6898. //
  6899. // Insufficient quota to complete the requested service.
  6900. //
  6901. const auto ERROR_WORKING_SET_QUOTA = 1453;
  6902. //
  6903. // MessageId: ERROR_PAGEFILE_QUOTA
  6904. //
  6905. // MessageText:
  6906. //
  6907. // Insufficient quota to complete the requested service.
  6908. //
  6909. const auto ERROR_PAGEFILE_QUOTA = 1454;
  6910. //
  6911. // MessageId: ERROR_COMMITMENT_LIMIT
  6912. //
  6913. // MessageText:
  6914. //
  6915. // The paging file is too small for this operation to complete.
  6916. //
  6917. const auto ERROR_COMMITMENT_LIMIT = 1455;
  6918. //
  6919. // MessageId: ERROR_MENU_ITEM_NOT_FOUND
  6920. //
  6921. // MessageText:
  6922. //
  6923. // A menu item was not found.
  6924. //
  6925. const auto ERROR_MENU_ITEM_NOT_FOUND = 1456;
  6926. //
  6927. // MessageId: ERROR_INVALID_KEYBOARD_HANDLE
  6928. //
  6929. // MessageText:
  6930. //
  6931. // Invalid keyboard layout handle.
  6932. //
  6933. const auto ERROR_INVALID_KEYBOARD_HANDLE = 1457;
  6934. //
  6935. // MessageId: ERROR_HOOK_TYPE_NOT_ALLOWED
  6936. //
  6937. // MessageText:
  6938. //
  6939. // Hook type not allowed.
  6940. //
  6941. const auto ERROR_HOOK_TYPE_NOT_ALLOWED = 1458;
  6942. //
  6943. // MessageId: ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION
  6944. //
  6945. // MessageText:
  6946. //
  6947. // This operation requires an interactive window station.
  6948. //
  6949. const auto ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION = 1459;
  6950. //
  6951. // MessageId: ERROR_TIMEOUT
  6952. //
  6953. // MessageText:
  6954. //
  6955. // This operation returned because the timeout period expired.
  6956. //
  6957. const auto ERROR_TIMEOUT = 1460;
  6958. //
  6959. // MessageId: ERROR_INVALID_MONITOR_HANDLE
  6960. //
  6961. // MessageText:
  6962. //
  6963. // Invalid monitor handle.
  6964. //
  6965. const auto ERROR_INVALID_MONITOR_HANDLE = 1461;
  6966. //
  6967. // MessageId: ERROR_INCORRECT_SIZE
  6968. //
  6969. // MessageText:
  6970. //
  6971. // Incorrect size argument.
  6972. //
  6973. const auto ERROR_INCORRECT_SIZE = 1462;
  6974. //
  6975. // MessageId: ERROR_SYMLINK_CLASS_DISABLED
  6976. //
  6977. // MessageText:
  6978. //
  6979. // The symbolic link cannot be followed because its type is disabled.
  6980. //
  6981. const auto ERROR_SYMLINK_CLASS_DISABLED = 1463;
  6982. //
  6983. // MessageId: ERROR_SYMLINK_NOT_SUPPORTED
  6984. //
  6985. // MessageText:
  6986. //
  6987. // This application does not support the current operation on symbolic links.
  6988. //
  6989. const auto ERROR_SYMLINK_NOT_SUPPORTED = 1464;
  6990. //
  6991. // MessageId: ERROR_XML_PARSE_ERROR
  6992. //
  6993. // MessageText:
  6994. //
  6995. // Windows was unable to parse the requested XML data.
  6996. //
  6997. const auto ERROR_XML_PARSE_ERROR = 1465;
  6998. //
  6999. // MessageId: ERROR_XMLDSIG_ERROR
  7000. //
  7001. // MessageText:
  7002. //
  7003. // An error was encountered while processing an XML digital signature.
  7004. //
  7005. const auto ERROR_XMLDSIG_ERROR = 1466;
  7006. //
  7007. // MessageId: ERROR_RESTART_APPLICATION
  7008. //
  7009. // MessageText:
  7010. //
  7011. // This application must be restarted.
  7012. //
  7013. const auto ERROR_RESTART_APPLICATION = 1467;
  7014. //
  7015. // MessageId: ERROR_WRONG_COMPARTMENT
  7016. //
  7017. // MessageText:
  7018. //
  7019. // The caller made the connection request in the wrong routing compartment.
  7020. //
  7021. const auto ERROR_WRONG_COMPARTMENT = 1468;
  7022. //
  7023. // MessageId: ERROR_AUTHIP_FAILURE
  7024. //
  7025. // MessageText:
  7026. //
  7027. // There was an AuthIP failure when attempting to connect to the remote host.
  7028. //
  7029. const auto ERROR_AUTHIP_FAILURE = 1469;
  7030. ///////////////////////////////////////////////////
  7031. // //
  7032. // EventLog Error codes //
  7033. // //
  7034. // 1500 to 1549 //
  7035. ///////////////////////////////////////////////////
  7036. //
  7037. // MessageId: ERROR_EVENTLOG_FILE_CORRUPT
  7038. //
  7039. // MessageText:
  7040. //
  7041. // The event log file is corrupted.
  7042. //
  7043. const auto ERROR_EVENTLOG_FILE_CORRUPT = 1500;
  7044. //
  7045. // MessageId: ERROR_EVENTLOG_CANT_START
  7046. //
  7047. // MessageText:
  7048. //
  7049. // No event log file could be opened, so the event logging service did not start.
  7050. //
  7051. const auto ERROR_EVENTLOG_CANT_START = 1501;
  7052. //
  7053. // MessageId: ERROR_LOG_FILE_FULL
  7054. //
  7055. // MessageText:
  7056. //
  7057. // The event log file is full.
  7058. //
  7059. const auto ERROR_LOG_FILE_FULL = 1502;
  7060. //
  7061. // MessageId: ERROR_EVENTLOG_FILE_CHANGED
  7062. //
  7063. // MessageText:
  7064. //
  7065. // The event log file has changed between read operations.
  7066. //
  7067. const auto ERROR_EVENTLOG_FILE_CHANGED = 1503;
  7068. ///////////////////////////////////////////////////
  7069. // //
  7070. // Class Scheduler Error codes //
  7071. // //
  7072. // 1550 to 1599 //
  7073. ///////////////////////////////////////////////////
  7074. //
  7075. // MessageId: ERROR_INVALID_TASK_NAME
  7076. //
  7077. // MessageText:
  7078. //
  7079. // The specified task name is invalid.
  7080. //
  7081. const auto ERROR_INVALID_TASK_NAME = 1550;
  7082. //
  7083. // MessageId: ERROR_INVALID_TASK_INDEX
  7084. //
  7085. // MessageText:
  7086. //
  7087. // The specified task index is invalid.
  7088. //
  7089. const auto ERROR_INVALID_TASK_INDEX = 1551;
  7090. //
  7091. // MessageId: ERROR_THREAD_ALREADY_IN_TASK
  7092. //
  7093. // MessageText:
  7094. //
  7095. // The specified thread is already joining a task.
  7096. //
  7097. const auto ERROR_THREAD_ALREADY_IN_TASK = 1552;
  7098. ///////////////////////////////////////////////////
  7099. // //
  7100. // MSI Error codes //
  7101. // //
  7102. // 1600 to 1699 //
  7103. ///////////////////////////////////////////////////
  7104. //
  7105. // MessageId: ERROR_INSTALL_SERVICE_FAILURE
  7106. //
  7107. // MessageText:
  7108. //
  7109. // The Windows Installer Service could not be accessed. This can occur if the Windows Installer is not correctly installed. Contact your support personnel for assistance.
  7110. //
  7111. const auto ERROR_INSTALL_SERVICE_FAILURE = 1601;
  7112. //
  7113. // MessageId: ERROR_INSTALL_USEREXIT
  7114. //
  7115. // MessageText:
  7116. //
  7117. // User cancelled installation.
  7118. //
  7119. const auto ERROR_INSTALL_USEREXIT = 1602;
  7120. //
  7121. // MessageId: ERROR_INSTALL_FAILURE
  7122. //
  7123. // MessageText:
  7124. //
  7125. // Fatal error during installation.
  7126. //
  7127. const auto ERROR_INSTALL_FAILURE = 1603;
  7128. //
  7129. // MessageId: ERROR_INSTALL_SUSPEND
  7130. //
  7131. // MessageText:
  7132. //
  7133. // Installation suspended, incomplete.
  7134. //
  7135. const auto ERROR_INSTALL_SUSPEND = 1604;
  7136. //
  7137. // MessageId: ERROR_UNKNOWN_PRODUCT
  7138. //
  7139. // MessageText:
  7140. //
  7141. // This action is only valid for products that are currently installed.
  7142. //
  7143. const auto ERROR_UNKNOWN_PRODUCT = 1605;
  7144. //
  7145. // MessageId: ERROR_UNKNOWN_FEATURE
  7146. //
  7147. // MessageText:
  7148. //
  7149. // Feature ID not registered.
  7150. //
  7151. const auto ERROR_UNKNOWN_FEATURE = 1606;
  7152. //
  7153. // MessageId: ERROR_UNKNOWN_COMPONENT
  7154. //
  7155. // MessageText:
  7156. //
  7157. // Component ID not registered.
  7158. //
  7159. const auto ERROR_UNKNOWN_COMPONENT = 1607;
  7160. //
  7161. // MessageId: ERROR_UNKNOWN_PROPERTY
  7162. //
  7163. // MessageText:
  7164. //
  7165. // Unknown property.
  7166. //
  7167. const auto ERROR_UNKNOWN_PROPERTY = 1608;
  7168. //
  7169. // MessageId: ERROR_INVALID_HANDLE_STATE
  7170. //
  7171. // MessageText:
  7172. //
  7173. // Handle is in an invalid state.
  7174. //
  7175. const auto ERROR_INVALID_HANDLE_STATE = 1609;
  7176. //
  7177. // MessageId: ERROR_BAD_CONFIGURATION
  7178. //
  7179. // MessageText:
  7180. //
  7181. // The configuration data for this product is corrupt. Contact your support personnel.
  7182. //
  7183. const auto ERROR_BAD_CONFIGURATION = 1610;
  7184. //
  7185. // MessageId: ERROR_INDEX_ABSENT
  7186. //
  7187. // MessageText:
  7188. //
  7189. // Component qualifier not present.
  7190. //
  7191. const auto ERROR_INDEX_ABSENT = 1611;
  7192. //
  7193. // MessageId: ERROR_INSTALL_SOURCE_ABSENT
  7194. //
  7195. // MessageText:
  7196. //
  7197. // The installation source for this product is not available. Verify that the source exists and that you can access it.
  7198. //
  7199. const auto ERROR_INSTALL_SOURCE_ABSENT = 1612;
  7200. //
  7201. // MessageId: ERROR_INSTALL_PACKAGE_VERSION
  7202. //
  7203. // MessageText:
  7204. //
  7205. // This installation package cannot be installed by the Windows Installer service. You must install a Windows service pack that contains a newer version of the Windows Installer service.
  7206. //
  7207. const auto ERROR_INSTALL_PACKAGE_VERSION = 1613;
  7208. //
  7209. // MessageId: ERROR_PRODUCT_UNINSTALLED
  7210. //
  7211. // MessageText:
  7212. //
  7213. // Product is uninstalled.
  7214. //
  7215. const auto ERROR_PRODUCT_UNINSTALLED = 1614;
  7216. //
  7217. // MessageId: ERROR_BAD_QUERY_SYNTAX
  7218. //
  7219. // MessageText:
  7220. //
  7221. // SQL query syntax invalid or unsupported.
  7222. //
  7223. const auto ERROR_BAD_QUERY_SYNTAX = 1615;
  7224. //
  7225. // MessageId: ERROR_INVALID_FIELD
  7226. //
  7227. // MessageText:
  7228. //
  7229. // Record field does not exist.
  7230. //
  7231. const auto ERROR_INVALID_FIELD = 1616;
  7232. //
  7233. // MessageId: ERROR_DEVICE_REMOVED
  7234. //
  7235. // MessageText:
  7236. //
  7237. // The device has been removed.
  7238. //
  7239. const auto ERROR_DEVICE_REMOVED = 1617;
  7240. //
  7241. // MessageId: ERROR_INSTALL_ALREADY_RUNNING
  7242. //
  7243. // MessageText:
  7244. //
  7245. // Another installation is already in progress. Complete that installation before proceeding with this install.
  7246. //
  7247. const auto ERROR_INSTALL_ALREADY_RUNNING = 1618;
  7248. //
  7249. // MessageId: ERROR_INSTALL_PACKAGE_OPEN_FAILED
  7250. //
  7251. // MessageText:
  7252. //
  7253. // This installation package could not be opened. Verify that the package exists and that you can access it, or contact the application vendor to verify that this is a valid Windows Installer package.
  7254. //
  7255. const auto ERROR_INSTALL_PACKAGE_OPEN_FAILED = 1619;
  7256. //
  7257. // MessageId: ERROR_INSTALL_PACKAGE_INVALID
  7258. //
  7259. // MessageText:
  7260. //
  7261. // This installation package could not be opened. Contact the application vendor to verify that this is a valid Windows Installer package.
  7262. //
  7263. const auto ERROR_INSTALL_PACKAGE_INVALID = 1620;
  7264. //
  7265. // MessageId: ERROR_INSTALL_UI_FAILURE
  7266. //
  7267. // MessageText:
  7268. //
  7269. // There was an error starting the Windows Installer service user interface. Contact your support personnel.
  7270. //
  7271. const auto ERROR_INSTALL_UI_FAILURE = 1621;
  7272. //
  7273. // MessageId: ERROR_INSTALL_LOG_FAILURE
  7274. //
  7275. // MessageText:
  7276. //
  7277. // Error opening installation log file. Verify that the specified log file location exists and that you can write to it.
  7278. //
  7279. const auto ERROR_INSTALL_LOG_FAILURE = 1622;
  7280. //
  7281. // MessageId: ERROR_INSTALL_LANGUAGE_UNSUPPORTED
  7282. //
  7283. // MessageText:
  7284. //
  7285. // The language of this installation package is not supported by your system.
  7286. //
  7287. const auto ERROR_INSTALL_LANGUAGE_UNSUPPORTED = 1623;
  7288. //
  7289. // MessageId: ERROR_INSTALL_TRANSFORM_FAILURE
  7290. //
  7291. // MessageText:
  7292. //
  7293. // Error applying transforms. Verify that the specified transform paths are valid.
  7294. //
  7295. const auto ERROR_INSTALL_TRANSFORM_FAILURE = 1624;
  7296. //
  7297. // MessageId: ERROR_INSTALL_PACKAGE_REJECTED
  7298. //
  7299. // MessageText:
  7300. //
  7301. // This installation is forbidden by system policy. Contact your system administrator.
  7302. //
  7303. const auto ERROR_INSTALL_PACKAGE_REJECTED = 1625;
  7304. //
  7305. // MessageId: ERROR_FUNCTION_NOT_CALLED
  7306. //
  7307. // MessageText:
  7308. //
  7309. // Function could not be executed.
  7310. //
  7311. const auto ERROR_FUNCTION_NOT_CALLED = 1626;
  7312. //
  7313. // MessageId: ERROR_FUNCTION_FAILED
  7314. //
  7315. // MessageText:
  7316. //
  7317. // Function failed during execution.
  7318. //
  7319. const auto ERROR_FUNCTION_FAILED = 1627;
  7320. //
  7321. // MessageId: ERROR_INVALID_TABLE
  7322. //
  7323. // MessageText:
  7324. //
  7325. // Invalid or unknown table specified.
  7326. //
  7327. const auto ERROR_INVALID_TABLE = 1628;
  7328. //
  7329. // MessageId: ERROR_DATATYPE_MISMATCH
  7330. //
  7331. // MessageText:
  7332. //
  7333. // Data supplied is of wrong type.
  7334. //
  7335. const auto ERROR_DATATYPE_MISMATCH = 1629;
  7336. //
  7337. // MessageId: ERROR_UNSUPPORTED_TYPE
  7338. //
  7339. // MessageText:
  7340. //
  7341. // Data of this type is not supported.
  7342. //
  7343. const auto ERROR_UNSUPPORTED_TYPE = 1630;
  7344. //
  7345. // MessageId: ERROR_CREATE_FAILED
  7346. //
  7347. // MessageText:
  7348. //
  7349. // The Windows Installer service failed to start. Contact your support personnel.
  7350. //
  7351. const auto ERROR_CREATE_FAILED = 1631;
  7352. //
  7353. // MessageId: ERROR_INSTALL_TEMP_UNWRITABLE
  7354. //
  7355. // MessageText:
  7356. //
  7357. // The Temp folder is on a drive that is full or is inaccessible. Free up space on the drive or verify that you have write permission on the Temp folder.
  7358. //
  7359. const auto ERROR_INSTALL_TEMP_UNWRITABLE = 1632;
  7360. //
  7361. // MessageId: ERROR_INSTALL_PLATFORM_UNSUPPORTED
  7362. //
  7363. // MessageText:
  7364. //
  7365. // This installation package is not supported by this processor type. Contact your product vendor.
  7366. //
  7367. const auto ERROR_INSTALL_PLATFORM_UNSUPPORTED = 1633;
  7368. //
  7369. // MessageId: ERROR_INSTALL_NOTUSED
  7370. //
  7371. // MessageText:
  7372. //
  7373. // Component not used on this computer.
  7374. //
  7375. const auto ERROR_INSTALL_NOTUSED = 1634;
  7376. //
  7377. // MessageId: ERROR_PATCH_PACKAGE_OPEN_FAILED
  7378. //
  7379. // MessageText:
  7380. //
  7381. // This update package could not be opened. Verify that the update package exists and that you can access it, or contact the application vendor to verify that this is a valid Windows Installer update package.
  7382. //
  7383. const auto ERROR_PATCH_PACKAGE_OPEN_FAILED = 1635;
  7384. //
  7385. // MessageId: ERROR_PATCH_PACKAGE_INVALID
  7386. //
  7387. // MessageText:
  7388. //
  7389. // This update package could not be opened. Contact the application vendor to verify that this is a valid Windows Installer update package.
  7390. //
  7391. const auto ERROR_PATCH_PACKAGE_INVALID = 1636;
  7392. //
  7393. // MessageId: ERROR_PATCH_PACKAGE_UNSUPPORTED
  7394. //
  7395. // MessageText:
  7396. //
  7397. // This update package cannot be processed by the Windows Installer service. You must install a Windows service pack that contains a newer version of the Windows Installer service.
  7398. //
  7399. const auto ERROR_PATCH_PACKAGE_UNSUPPORTED = 1637;
  7400. //
  7401. // MessageId: ERROR_PRODUCT_VERSION
  7402. //
  7403. // MessageText:
  7404. //
  7405. // Another version of this product is already installed. Installation of this version cannot continue. To configure or remove the existing version of this product, use Add/Remove Programs on the Control Panel.
  7406. //
  7407. const auto ERROR_PRODUCT_VERSION = 1638;
  7408. //
  7409. // MessageId: ERROR_INVALID_COMMAND_LINE
  7410. //
  7411. // MessageText:
  7412. //
  7413. // Invalid command line argument. Consult the Windows Installer SDK for detailed command line help.
  7414. //
  7415. const auto ERROR_INVALID_COMMAND_LINE = 1639;
  7416. //
  7417. // MessageId: ERROR_INSTALL_REMOTE_DISALLOWED
  7418. //
  7419. // MessageText:
  7420. //
  7421. // Only administrators have permission to add, remove, or configure server software during a Terminal services remote session. If you want to install or configure software on the server, contact your network administrator.
  7422. //
  7423. const auto ERROR_INSTALL_REMOTE_DISALLOWED = 1640;
  7424. //
  7425. // MessageId: ERROR_SUCCESS_REBOOT_INITIATED
  7426. //
  7427. // MessageText:
  7428. //
  7429. // The requested operation completed successfully. The system will be restarted so the changes can take effect.
  7430. //
  7431. const auto ERROR_SUCCESS_REBOOT_INITIATED = 1641;
  7432. //
  7433. // MessageId: ERROR_PATCH_TARGET_NOT_FOUND
  7434. //
  7435. // MessageText:
  7436. //
  7437. // The upgrade cannot be installed by the Windows Installer service because the program to be upgraded may be missing, or the upgrade may update a different version of the program. Verify that the program to be upgraded exists on your computer and that you have the correct upgrade.
  7438. //
  7439. const auto ERROR_PATCH_TARGET_NOT_FOUND = 1642;
  7440. //
  7441. // MessageId: ERROR_PATCH_PACKAGE_REJECTED
  7442. //
  7443. // MessageText:
  7444. //
  7445. // The update package is not permitted by software restriction policy.
  7446. //
  7447. const auto ERROR_PATCH_PACKAGE_REJECTED = 1643;
  7448. //
  7449. // MessageId: ERROR_INSTALL_TRANSFORM_REJECTED
  7450. //
  7451. // MessageText:
  7452. //
  7453. // One or more customizations are not permitted by software restriction policy.
  7454. //
  7455. const auto ERROR_INSTALL_TRANSFORM_REJECTED = 1644;
  7456. //
  7457. // MessageId: ERROR_INSTALL_REMOTE_PROHIBITED
  7458. //
  7459. // MessageText:
  7460. //
  7461. // The Windows Installer does not permit installation from a Remote Desktop Connection.
  7462. //
  7463. const auto ERROR_INSTALL_REMOTE_PROHIBITED = 1645;
  7464. //
  7465. // MessageId: ERROR_PATCH_REMOVAL_UNSUPPORTED
  7466. //
  7467. // MessageText:
  7468. //
  7469. // Uninstallation of the update package is not supported.
  7470. //
  7471. const auto ERROR_PATCH_REMOVAL_UNSUPPORTED = 1646;
  7472. //
  7473. // MessageId: ERROR_UNKNOWN_PATCH
  7474. //
  7475. // MessageText:
  7476. //
  7477. // The update is not applied to this product.
  7478. //
  7479. const auto ERROR_UNKNOWN_PATCH = 1647;
  7480. //
  7481. // MessageId: ERROR_PATCH_NO_SEQUENCE
  7482. //
  7483. // MessageText:
  7484. //
  7485. // No valid sequence could be found for the set of updates.
  7486. //
  7487. const auto ERROR_PATCH_NO_SEQUENCE = 1648;
  7488. //
  7489. // MessageId: ERROR_PATCH_REMOVAL_DISALLOWED
  7490. //
  7491. // MessageText:
  7492. //
  7493. // Update removal was disallowed by policy.
  7494. //
  7495. const auto ERROR_PATCH_REMOVAL_DISALLOWED = 1649;
  7496. //
  7497. // MessageId: ERROR_INVALID_PATCH_XML
  7498. //
  7499. // MessageText:
  7500. //
  7501. // The XML update data is invalid.
  7502. //
  7503. const auto ERROR_INVALID_PATCH_XML = 1650;
  7504. //
  7505. // MessageId: ERROR_PATCH_MANAGED_ADVERTISED_PRODUCT
  7506. //
  7507. // MessageText:
  7508. //
  7509. // Windows Installer does not permit updating of managed advertised products. At least one feature of the product must be installed before applying the update.
  7510. //
  7511. const auto ERROR_PATCH_MANAGED_ADVERTISED_PRODUCT = 1651;
  7512. //
  7513. // MessageId: ERROR_INSTALL_SERVICE_SAFEBOOT
  7514. //
  7515. // MessageText:
  7516. //
  7517. // The Windows Installer service is not accessible in Safe Mode. Please try again when your computer is not in Safe Mode or you can use System Restore to return your machine to a previous good state.
  7518. //
  7519. const auto ERROR_INSTALL_SERVICE_SAFEBOOT = 1652;
  7520. ///////////////////////////////////////////////////
  7521. // //
  7522. // RPC Error codes //
  7523. // //
  7524. // 1700 to 1999 //
  7525. ///////////////////////////////////////////////////
  7526. //
  7527. // MessageId: RPC_S_INVALID_STRING_BINDING
  7528. //
  7529. // MessageText:
  7530. //
  7531. // The string binding is invalid.
  7532. //
  7533. const auto RPC_S_INVALID_STRING_BINDING = 1700;
  7534. //
  7535. // MessageId: RPC_S_WRONG_KIND_OF_BINDING
  7536. //
  7537. // MessageText:
  7538. //
  7539. // The binding handle is not the correct type.
  7540. //
  7541. const auto RPC_S_WRONG_KIND_OF_BINDING = 1701;
  7542. //
  7543. // MessageId: RPC_S_INVALID_BINDING
  7544. //
  7545. // MessageText:
  7546. //
  7547. // The binding handle is invalid.
  7548. //
  7549. const auto RPC_S_INVALID_BINDING = 1702;
  7550. //
  7551. // MessageId: RPC_S_PROTSEQ_NOT_SUPPORTED
  7552. //
  7553. // MessageText:
  7554. //
  7555. // The RPC protocol sequence is not supported.
  7556. //
  7557. const auto RPC_S_PROTSEQ_NOT_SUPPORTED = 1703;
  7558. //
  7559. // MessageId: RPC_S_INVALID_RPC_PROTSEQ
  7560. //
  7561. // MessageText:
  7562. //
  7563. // The RPC protocol sequence is invalid.
  7564. //
  7565. const auto RPC_S_INVALID_RPC_PROTSEQ = 1704;
  7566. //
  7567. // MessageId: RPC_S_INVALID_STRING_UUID
  7568. //
  7569. // MessageText:
  7570. //
  7571. // The string universal unique identifier (UUID) is invalid.
  7572. //
  7573. const auto RPC_S_INVALID_STRING_UUID = 1705;
  7574. //
  7575. // MessageId: RPC_S_INVALID_ENDPOINT_FORMAT
  7576. //
  7577. // MessageText:
  7578. //
  7579. // The endpoint format is invalid.
  7580. //
  7581. const auto RPC_S_INVALID_ENDPOINT_FORMAT = 1706;
  7582. //
  7583. // MessageId: RPC_S_INVALID_NET_ADDR
  7584. //
  7585. // MessageText:
  7586. //
  7587. // The network address is invalid.
  7588. //
  7589. const auto RPC_S_INVALID_NET_ADDR = 1707;
  7590. //
  7591. // MessageId: RPC_S_NO_ENDPOINT_FOUND
  7592. //
  7593. // MessageText:
  7594. //
  7595. // No endpoint was found.
  7596. //
  7597. const auto RPC_S_NO_ENDPOINT_FOUND = 1708;
  7598. //
  7599. // MessageId: RPC_S_INVALID_TIMEOUT
  7600. //
  7601. // MessageText:
  7602. //
  7603. // The timeout value is invalid.
  7604. //
  7605. const auto RPC_S_INVALID_TIMEOUT = 1709;
  7606. //
  7607. // MessageId: RPC_S_OBJECT_NOT_FOUND
  7608. //
  7609. // MessageText:
  7610. //
  7611. // The object universal unique identifier (UUID) was not found.
  7612. //
  7613. const auto RPC_S_OBJECT_NOT_FOUND = 1710;
  7614. //
  7615. // MessageId: RPC_S_ALREADY_REGISTERED
  7616. //
  7617. // MessageText:
  7618. //
  7619. // The object universal unique identifier (UUID) has already been registered.
  7620. //
  7621. const auto RPC_S_ALREADY_REGISTERED = 1711;
  7622. //
  7623. // MessageId: RPC_S_TYPE_ALREADY_REGISTERED
  7624. //
  7625. // MessageText:
  7626. //
  7627. // The type universal unique identifier (UUID) has already been registered.
  7628. //
  7629. const auto RPC_S_TYPE_ALREADY_REGISTERED = 1712;
  7630. //
  7631. // MessageId: RPC_S_ALREADY_LISTENING
  7632. //
  7633. // MessageText:
  7634. //
  7635. // The RPC server is already listening.
  7636. //
  7637. const auto RPC_S_ALREADY_LISTENING = 1713;
  7638. //
  7639. // MessageId: RPC_S_NO_PROTSEQS_REGISTERED
  7640. //
  7641. // MessageText:
  7642. //
  7643. // No protocol sequences have been registered.
  7644. //
  7645. const auto RPC_S_NO_PROTSEQS_REGISTERED = 1714;
  7646. //
  7647. // MessageId: RPC_S_NOT_LISTENING
  7648. //
  7649. // MessageText:
  7650. //
  7651. // The RPC server is not listening.
  7652. //
  7653. const auto RPC_S_NOT_LISTENING = 1715;
  7654. //
  7655. // MessageId: RPC_S_UNKNOWN_MGR_TYPE
  7656. //
  7657. // MessageText:
  7658. //
  7659. // The manager type is unknown.
  7660. //
  7661. const auto RPC_S_UNKNOWN_MGR_TYPE = 1716;
  7662. //
  7663. // MessageId: RPC_S_UNKNOWN_IF
  7664. //
  7665. // MessageText:
  7666. //
  7667. // The interface is unknown.
  7668. //
  7669. const auto RPC_S_UNKNOWN_IF = 1717;
  7670. //
  7671. // MessageId: RPC_S_NO_BINDINGS
  7672. //
  7673. // MessageText:
  7674. //
  7675. // There are no bindings.
  7676. //
  7677. const auto RPC_S_NO_BINDINGS = 1718;
  7678. //
  7679. // MessageId: RPC_S_NO_PROTSEQS
  7680. //
  7681. // MessageText:
  7682. //
  7683. // There are no protocol sequences.
  7684. //
  7685. const auto RPC_S_NO_PROTSEQS = 1719;
  7686. //
  7687. // MessageId: RPC_S_CANT_CREATE_ENDPOINT
  7688. //
  7689. // MessageText:
  7690. //
  7691. // The endpoint cannot be created.
  7692. //
  7693. const auto RPC_S_CANT_CREATE_ENDPOINT = 1720;
  7694. //
  7695. // MessageId: RPC_S_OUT_OF_RESOURCES
  7696. //
  7697. // MessageText:
  7698. //
  7699. // Not enough resources are available to complete this operation.
  7700. //
  7701. const auto RPC_S_OUT_OF_RESOURCES = 1721;
  7702. //
  7703. // MessageId: RPC_S_SERVER_UNAVAILABLE
  7704. //
  7705. // MessageText:
  7706. //
  7707. // The RPC server is unavailable.
  7708. //
  7709. const auto RPC_S_SERVER_UNAVAILABLE = 1722;
  7710. //
  7711. // MessageId: RPC_S_SERVER_TOO_BUSY
  7712. //
  7713. // MessageText:
  7714. //
  7715. // The RPC server is too busy to complete this operation.
  7716. //
  7717. const auto RPC_S_SERVER_TOO_BUSY = 1723;
  7718. //
  7719. // MessageId: RPC_S_INVALID_NETWORK_OPTIONS
  7720. //
  7721. // MessageText:
  7722. //
  7723. // The network options are invalid.
  7724. //
  7725. const auto RPC_S_INVALID_NETWORK_OPTIONS = 1724;
  7726. //
  7727. // MessageId: RPC_S_NO_CALL_ACTIVE
  7728. //
  7729. // MessageText:
  7730. //
  7731. // There are no remote procedure calls active on this thread.
  7732. //
  7733. const auto RPC_S_NO_CALL_ACTIVE = 1725;
  7734. //
  7735. // MessageId: RPC_S_CALL_FAILED
  7736. //
  7737. // MessageText:
  7738. //
  7739. // The remote procedure call failed.
  7740. //
  7741. const auto RPC_S_CALL_FAILED = 1726;
  7742. //
  7743. // MessageId: RPC_S_CALL_FAILED_DNE
  7744. //
  7745. // MessageText:
  7746. //
  7747. // The remote procedure call failed and did not execute.
  7748. //
  7749. const auto RPC_S_CALL_FAILED_DNE = 1727;
  7750. //
  7751. // MessageId: RPC_S_PROTOCOL_ERROR
  7752. //
  7753. // MessageText:
  7754. //
  7755. // A remote procedure call (RPC) protocol error occurred.
  7756. //
  7757. const auto RPC_S_PROTOCOL_ERROR = 1728;
  7758. //
  7759. // MessageId: RPC_S_PROXY_ACCESS_DENIED
  7760. //
  7761. // MessageText:
  7762. //
  7763. // Access to the HTTP proxy is denied.
  7764. //
  7765. const auto RPC_S_PROXY_ACCESS_DENIED = 1729;
  7766. //
  7767. // MessageId: RPC_S_UNSUPPORTED_TRANS_SYN
  7768. //
  7769. // MessageText:
  7770. //
  7771. // The transfer syntax is not supported by the RPC server.
  7772. //
  7773. const auto RPC_S_UNSUPPORTED_TRANS_SYN = 1730;
  7774. //
  7775. // MessageId: RPC_S_UNSUPPORTED_TYPE
  7776. //
  7777. // MessageText:
  7778. //
  7779. // The universal unique identifier (UUID) type is not supported.
  7780. //
  7781. const auto RPC_S_UNSUPPORTED_TYPE = 1732;
  7782. //
  7783. // MessageId: RPC_S_INVALID_TAG
  7784. //
  7785. // MessageText:
  7786. //
  7787. // The tag is invalid.
  7788. //
  7789. const auto RPC_S_INVALID_TAG = 1733;
  7790. //
  7791. // MessageId: RPC_S_INVALID_BOUND
  7792. //
  7793. // MessageText:
  7794. //
  7795. // The array bounds are invalid.
  7796. //
  7797. const auto RPC_S_INVALID_BOUND = 1734;
  7798. //
  7799. // MessageId: RPC_S_NO_ENTRY_NAME
  7800. //
  7801. // MessageText:
  7802. //
  7803. // The binding does not contain an entry name.
  7804. //
  7805. const auto RPC_S_NO_ENTRY_NAME = 1735;
  7806. //
  7807. // MessageId: RPC_S_INVALID_NAME_SYNTAX
  7808. //
  7809. // MessageText:
  7810. //
  7811. // The name syntax is invalid.
  7812. //
  7813. const auto RPC_S_INVALID_NAME_SYNTAX = 1736;
  7814. //
  7815. // MessageId: RPC_S_UNSUPPORTED_NAME_SYNTAX
  7816. //
  7817. // MessageText:
  7818. //
  7819. // The name syntax is not supported.
  7820. //
  7821. const auto RPC_S_UNSUPPORTED_NAME_SYNTAX = 1737;
  7822. //
  7823. // MessageId: RPC_S_UUID_NO_ADDRESS
  7824. //
  7825. // MessageText:
  7826. //
  7827. // No network address is available to use to construct a universal unique identifier (UUID).
  7828. //
  7829. const auto RPC_S_UUID_NO_ADDRESS = 1739;
  7830. //
  7831. // MessageId: RPC_S_DUPLICATE_ENDPOINT
  7832. //
  7833. // MessageText:
  7834. //
  7835. // The endpoint is a duplicate.
  7836. //
  7837. const auto RPC_S_DUPLICATE_ENDPOINT = 1740;
  7838. //
  7839. // MessageId: RPC_S_UNKNOWN_AUTHN_TYPE
  7840. //
  7841. // MessageText:
  7842. //
  7843. // The authentication type is unknown.
  7844. //
  7845. const auto RPC_S_UNKNOWN_AUTHN_TYPE = 1741;
  7846. //
  7847. // MessageId: RPC_S_MAX_CALLS_TOO_SMALL
  7848. //
  7849. // MessageText:
  7850. //
  7851. // The maximum number of calls is too small.
  7852. //
  7853. const auto RPC_S_MAX_CALLS_TOO_SMALL = 1742;
  7854. //
  7855. // MessageId: RPC_S_STRING_TOO_LONG
  7856. //
  7857. // MessageText:
  7858. //
  7859. // The string is too long.
  7860. //
  7861. const auto RPC_S_STRING_TOO_LONG = 1743;
  7862. //
  7863. // MessageId: RPC_S_PROTSEQ_NOT_FOUND
  7864. //
  7865. // MessageText:
  7866. //
  7867. // The RPC protocol sequence was not found.
  7868. //
  7869. const auto RPC_S_PROTSEQ_NOT_FOUND = 1744;
  7870. //
  7871. // MessageId: RPC_S_PROCNUM_OUT_OF_RANGE
  7872. //
  7873. // MessageText:
  7874. //
  7875. // The procedure number is out of range.
  7876. //
  7877. const auto RPC_S_PROCNUM_OUT_OF_RANGE = 1745;
  7878. //
  7879. // MessageId: RPC_S_BINDING_HAS_NO_AUTH
  7880. //
  7881. // MessageText:
  7882. //
  7883. // The binding does not contain any authentication information.
  7884. //
  7885. const auto RPC_S_BINDING_HAS_NO_AUTH = 1746;
  7886. //
  7887. // MessageId: RPC_S_UNKNOWN_AUTHN_SERVICE
  7888. //
  7889. // MessageText:
  7890. //
  7891. // The authentication service is unknown.
  7892. //
  7893. const auto RPC_S_UNKNOWN_AUTHN_SERVICE = 1747;
  7894. //
  7895. // MessageId: RPC_S_UNKNOWN_AUTHN_LEVEL
  7896. //
  7897. // MessageText:
  7898. //
  7899. // The authentication level is unknown.
  7900. //
  7901. const auto RPC_S_UNKNOWN_AUTHN_LEVEL = 1748;
  7902. //
  7903. // MessageId: RPC_S_INVALID_AUTH_IDENTITY
  7904. //
  7905. // MessageText:
  7906. //
  7907. // The security context is invalid.
  7908. //
  7909. const auto RPC_S_INVALID_AUTH_IDENTITY = 1749;
  7910. //
  7911. // MessageId: RPC_S_UNKNOWN_AUTHZ_SERVICE
  7912. //
  7913. // MessageText:
  7914. //
  7915. // The authorization service is unknown.
  7916. //
  7917. const auto RPC_S_UNKNOWN_AUTHZ_SERVICE = 1750;
  7918. //
  7919. // MessageId: EPT_S_INVALID_ENTRY
  7920. //
  7921. // MessageText:
  7922. //
  7923. // The entry is invalid.
  7924. //
  7925. const auto EPT_S_INVALID_ENTRY = 1751;
  7926. //
  7927. // MessageId: EPT_S_CANT_PERFORM_OP
  7928. //
  7929. // MessageText:
  7930. //
  7931. // The server endpoint cannot perform the operation.
  7932. //
  7933. const auto EPT_S_CANT_PERFORM_OP = 1752;
  7934. //
  7935. // MessageId: EPT_S_NOT_REGISTERED
  7936. //
  7937. // MessageText:
  7938. //
  7939. // There are no more endpoints available from the endpoint mapper.
  7940. //
  7941. const auto EPT_S_NOT_REGISTERED = 1753;
  7942. //
  7943. // MessageId: RPC_S_NOTHING_TO_EXPORT
  7944. //
  7945. // MessageText:
  7946. //
  7947. // No interfaces have been exported.
  7948. //
  7949. const auto RPC_S_NOTHING_TO_EXPORT = 1754;
  7950. //
  7951. // MessageId: RPC_S_INCOMPLETE_NAME
  7952. //
  7953. // MessageText:
  7954. //
  7955. // The entry name is incomplete.
  7956. //
  7957. const auto RPC_S_INCOMPLETE_NAME = 1755;
  7958. //
  7959. // MessageId: RPC_S_INVALID_VERS_OPTION
  7960. //
  7961. // MessageText:
  7962. //
  7963. // The version option is invalid.
  7964. //
  7965. const auto RPC_S_INVALID_VERS_OPTION = 1756;
  7966. //
  7967. // MessageId: RPC_S_NO_MORE_MEMBERS
  7968. //
  7969. // MessageText:
  7970. //
  7971. // There are no more members.
  7972. //
  7973. const auto RPC_S_NO_MORE_MEMBERS = 1757;
  7974. //
  7975. // MessageId: RPC_S_NOT_ALL_OBJS_UNEXPORTED
  7976. //
  7977. // MessageText:
  7978. //
  7979. // There is nothing to unexport.
  7980. //
  7981. const auto RPC_S_NOT_ALL_OBJS_UNEXPORTED = 1758;
  7982. //
  7983. // MessageId: RPC_S_INTERFACE_NOT_FOUND
  7984. //
  7985. // MessageText:
  7986. //
  7987. // The interface was not found.
  7988. //
  7989. const auto RPC_S_INTERFACE_NOT_FOUND = 1759;
  7990. //
  7991. // MessageId: RPC_S_ENTRY_ALREADY_EXISTS
  7992. //
  7993. // MessageText:
  7994. //
  7995. // The entry already exists.
  7996. //
  7997. const auto RPC_S_ENTRY_ALREADY_EXISTS = 1760;
  7998. //
  7999. // MessageId: RPC_S_ENTRY_NOT_FOUND
  8000. //
  8001. // MessageText:
  8002. //
  8003. // The entry is not found.
  8004. //
  8005. const auto RPC_S_ENTRY_NOT_FOUND = 1761;
  8006. //
  8007. // MessageId: RPC_S_NAME_SERVICE_UNAVAILABLE
  8008. //
  8009. // MessageText:
  8010. //
  8011. // The name service is unavailable.
  8012. //
  8013. const auto RPC_S_NAME_SERVICE_UNAVAILABLE = 1762;
  8014. //
  8015. // MessageId: RPC_S_INVALID_NAF_ID
  8016. //
  8017. // MessageText:
  8018. //
  8019. // The network address family is invalid.
  8020. //
  8021. const auto RPC_S_INVALID_NAF_ID = 1763;
  8022. //
  8023. // MessageId: RPC_S_CANNOT_SUPPORT
  8024. //
  8025. // MessageText:
  8026. //
  8027. // The requested operation is not supported.
  8028. //
  8029. const auto RPC_S_CANNOT_SUPPORT = 1764;
  8030. //
  8031. // MessageId: RPC_S_NO_CONTEXT_AVAILABLE
  8032. //
  8033. // MessageText:
  8034. //
  8035. // No security context is available to allow impersonation.
  8036. //
  8037. const auto RPC_S_NO_CONTEXT_AVAILABLE = 1765;
  8038. //
  8039. // MessageId: RPC_S_INTERNAL_ERROR
  8040. //
  8041. // MessageText:
  8042. //
  8043. // An internal error occurred in a remote procedure call (RPC).
  8044. //
  8045. const auto RPC_S_INTERNAL_ERROR = 1766;
  8046. //
  8047. // MessageId: RPC_S_ZERO_DIVIDE
  8048. //
  8049. // MessageText:
  8050. //
  8051. // The RPC server attempted an integer division by zero.
  8052. //
  8053. const auto RPC_S_ZERO_DIVIDE = 1767;
  8054. //
  8055. // MessageId: RPC_S_ADDRESS_ERROR
  8056. //
  8057. // MessageText:
  8058. //
  8059. // An addressing error occurred in the RPC server.
  8060. //
  8061. const auto RPC_S_ADDRESS_ERROR = 1768;
  8062. //
  8063. // MessageId: RPC_S_FP_DIV_ZERO
  8064. //
  8065. // MessageText:
  8066. //
  8067. // A floating-point operation at the RPC server caused a division by zero.
  8068. //
  8069. const auto RPC_S_FP_DIV_ZERO = 1769;
  8070. //
  8071. // MessageId: RPC_S_FP_UNDERFLOW
  8072. //
  8073. // MessageText:
  8074. //
  8075. // A floating-point underflow occurred at the RPC server.
  8076. //
  8077. const auto RPC_S_FP_UNDERFLOW = 1770;
  8078. //
  8079. // MessageId: RPC_S_FP_OVERFLOW
  8080. //
  8081. // MessageText:
  8082. //
  8083. // A floating-point overflow occurred at the RPC server.
  8084. //
  8085. const auto RPC_S_FP_OVERFLOW = 1771;
  8086. //
  8087. // MessageId: RPC_X_NO_MORE_ENTRIES
  8088. //
  8089. // MessageText:
  8090. //
  8091. // The list of RPC servers available for the binding of auto handles has been exhausted.
  8092. //
  8093. const auto RPC_X_NO_MORE_ENTRIES = 1772;
  8094. //
  8095. // MessageId: RPC_X_SS_CHAR_TRANS_OPEN_FAIL
  8096. //
  8097. // MessageText:
  8098. //
  8099. // Unable to open the character translation table file.
  8100. //
  8101. const auto RPC_X_SS_CHAR_TRANS_OPEN_FAIL = 1773;
  8102. //
  8103. // MessageId: RPC_X_SS_CHAR_TRANS_SHORT_FILE
  8104. //
  8105. // MessageText:
  8106. //
  8107. // The file containing the character translation table has fewer than 512 bytes.
  8108. //
  8109. const auto RPC_X_SS_CHAR_TRANS_SHORT_FILE = 1774;
  8110. //
  8111. // MessageId: RPC_X_SS_IN_NULL_CONTEXT
  8112. //
  8113. // MessageText:
  8114. //
  8115. // A null context handle was passed from the client to the host during a remote procedure call.
  8116. //
  8117. const auto RPC_X_SS_IN_NULL_CONTEXT = 1775;
  8118. //
  8119. // MessageId: RPC_X_SS_CONTEXT_DAMAGED
  8120. //
  8121. // MessageText:
  8122. //
  8123. // The context handle changed during a remote procedure call.
  8124. //
  8125. const auto RPC_X_SS_CONTEXT_DAMAGED = 1777;
  8126. //
  8127. // MessageId: RPC_X_SS_HANDLES_MISMATCH
  8128. //
  8129. // MessageText:
  8130. //
  8131. // The binding handles passed to a remote procedure call do not match.
  8132. //
  8133. const auto RPC_X_SS_HANDLES_MISMATCH = 1778;
  8134. //
  8135. // MessageId: RPC_X_SS_CANNOT_GET_CALL_HANDLE
  8136. //
  8137. // MessageText:
  8138. //
  8139. // The stub is unable to get the remote procedure call handle.
  8140. //
  8141. const auto RPC_X_SS_CANNOT_GET_CALL_HANDLE = 1779;
  8142. //
  8143. // MessageId: RPC_X_NULL_REF_POINTER
  8144. //
  8145. // MessageText:
  8146. //
  8147. // A null reference pointer was passed to the stub.
  8148. //
  8149. const auto RPC_X_NULL_REF_POINTER = 1780;
  8150. //
  8151. // MessageId: RPC_X_ENUM_VALUE_OUT_OF_RANGE
  8152. //
  8153. // MessageText:
  8154. //
  8155. // The enumeration value is out of range.
  8156. //
  8157. const auto RPC_X_ENUM_VALUE_OUT_OF_RANGE = 1781;
  8158. //
  8159. // MessageId: RPC_X_BYTE_COUNT_TOO_SMALL
  8160. //
  8161. // MessageText:
  8162. //
  8163. // The byte count is too small.
  8164. //
  8165. const auto RPC_X_BYTE_COUNT_TOO_SMALL = 1782;
  8166. //
  8167. // MessageId: RPC_X_BAD_STUB_DATA
  8168. //
  8169. // MessageText:
  8170. //
  8171. // The stub received bad data.
  8172. //
  8173. const auto RPC_X_BAD_STUB_DATA = 1783;
  8174. //
  8175. // MessageId: ERROR_INVALID_USER_BUFFER
  8176. //
  8177. // MessageText:
  8178. //
  8179. // The supplied user buffer is not valid for the requested operation.
  8180. //
  8181. const auto ERROR_INVALID_USER_BUFFER = 1784;
  8182. //
  8183. // MessageId: ERROR_UNRECOGNIZED_MEDIA
  8184. //
  8185. // MessageText:
  8186. //
  8187. // The disk media is not recognized. It may not be formatted.
  8188. //
  8189. const auto ERROR_UNRECOGNIZED_MEDIA = 1785;
  8190. //
  8191. // MessageId: ERROR_NO_TRUST_LSA_SECRET
  8192. //
  8193. // MessageText:
  8194. //
  8195. // The workstation does not have a trust secret.
  8196. //
  8197. const auto ERROR_NO_TRUST_LSA_SECRET = 1786;
  8198. //
  8199. // MessageId: ERROR_NO_TRUST_SAM_ACCOUNT
  8200. //
  8201. // MessageText:
  8202. //
  8203. // The security database on the server does not have a computer account for this workstation trust relationship.
  8204. //
  8205. const auto ERROR_NO_TRUST_SAM_ACCOUNT = 1787;
  8206. //
  8207. // MessageId: ERROR_TRUSTED_DOMAIN_FAILURE
  8208. //
  8209. // MessageText:
  8210. //
  8211. // The trust relationship between the primary domain and the trusted domain failed.
  8212. //
  8213. const auto ERROR_TRUSTED_DOMAIN_FAILURE = 1788;
  8214. //
  8215. // MessageId: ERROR_TRUSTED_RELATIONSHIP_FAILURE
  8216. //
  8217. // MessageText:
  8218. //
  8219. // The trust relationship between this workstation and the primary domain failed.
  8220. //
  8221. const auto ERROR_TRUSTED_RELATIONSHIP_FAILURE = 1789;
  8222. //
  8223. // MessageId: ERROR_TRUST_FAILURE
  8224. //
  8225. // MessageText:
  8226. //
  8227. // The network logon failed.
  8228. //
  8229. const auto ERROR_TRUST_FAILURE = 1790;
  8230. //
  8231. // MessageId: RPC_S_CALL_IN_PROGRESS
  8232. //
  8233. // MessageText:
  8234. //
  8235. // A remote procedure call is already in progress for this thread.
  8236. //
  8237. const auto RPC_S_CALL_IN_PROGRESS = 1791;
  8238. //
  8239. // MessageId: ERROR_NETLOGON_NOT_STARTED
  8240. //
  8241. // MessageText:
  8242. //
  8243. // An attempt was made to logon, but the network logon service was not started.
  8244. //
  8245. const auto ERROR_NETLOGON_NOT_STARTED = 1792;
  8246. //
  8247. // MessageId: ERROR_ACCOUNT_EXPIRED
  8248. //
  8249. // MessageText:
  8250. //
  8251. // The user's account has expired.
  8252. //
  8253. const auto ERROR_ACCOUNT_EXPIRED = 1793;
  8254. //
  8255. // MessageId: ERROR_REDIRECTOR_HAS_OPEN_HANDLES
  8256. //
  8257. // MessageText:
  8258. //
  8259. // The redirector is in use and cannot be unloaded.
  8260. //
  8261. const auto ERROR_REDIRECTOR_HAS_OPEN_HANDLES = 1794;
  8262. //
  8263. // MessageId: ERROR_PRINTER_DRIVER_ALREADY_INSTALLED
  8264. //
  8265. // MessageText:
  8266. //
  8267. // The specified printer driver is already installed.
  8268. //
  8269. const auto ERROR_PRINTER_DRIVER_ALREADY_INSTALLED = 1795;
  8270. //
  8271. // MessageId: ERROR_UNKNOWN_PORT
  8272. //
  8273. // MessageText:
  8274. //
  8275. // The specified port is unknown.
  8276. //
  8277. const auto ERROR_UNKNOWN_PORT = 1796;
  8278. //
  8279. // MessageId: ERROR_UNKNOWN_PRINTER_DRIVER
  8280. //
  8281. // MessageText:
  8282. //
  8283. // The printer driver is unknown.
  8284. //
  8285. const auto ERROR_UNKNOWN_PRINTER_DRIVER = 1797;
  8286. //
  8287. // MessageId: ERROR_UNKNOWN_PRINTPROCESSOR
  8288. //
  8289. // MessageText:
  8290. //
  8291. // The print processor is unknown.
  8292. //
  8293. const auto ERROR_UNKNOWN_PRINTPROCESSOR = 1798;
  8294. //
  8295. // MessageId: ERROR_INVALID_SEPARATOR_FILE
  8296. //
  8297. // MessageText:
  8298. //
  8299. // The specified separator file is invalid.
  8300. //
  8301. const auto ERROR_INVALID_SEPARATOR_FILE = 1799;
  8302. //
  8303. // MessageId: ERROR_INVALID_PRIORITY
  8304. //
  8305. // MessageText:
  8306. //
  8307. // The specified priority is invalid.
  8308. //
  8309. const auto ERROR_INVALID_PRIORITY = 1800;
  8310. //
  8311. // MessageId: ERROR_INVALID_PRINTER_NAME
  8312. //
  8313. // MessageText:
  8314. //
  8315. // The printer name is invalid.
  8316. //
  8317. const auto ERROR_INVALID_PRINTER_NAME = 1801;
  8318. //
  8319. // MessageId: ERROR_PRINTER_ALREADY_EXISTS
  8320. //
  8321. // MessageText:
  8322. //
  8323. // The printer already exists.
  8324. //
  8325. const auto ERROR_PRINTER_ALREADY_EXISTS = 1802;
  8326. //
  8327. // MessageId: ERROR_INVALID_PRINTER_COMMAND
  8328. //
  8329. // MessageText:
  8330. //
  8331. // The printer command is invalid.
  8332. //
  8333. const auto ERROR_INVALID_PRINTER_COMMAND = 1803;
  8334. //
  8335. // MessageId: ERROR_INVALID_DATATYPE
  8336. //
  8337. // MessageText:
  8338. //
  8339. // The specified datatype is invalid.
  8340. //
  8341. const auto ERROR_INVALID_DATATYPE = 1804;
  8342. //
  8343. // MessageId: ERROR_INVALID_ENVIRONMENT
  8344. //
  8345. // MessageText:
  8346. //
  8347. // The environment specified is invalid.
  8348. //
  8349. const auto ERROR_INVALID_ENVIRONMENT = 1805;
  8350. //
  8351. // MessageId: RPC_S_NO_MORE_BINDINGS
  8352. //
  8353. // MessageText:
  8354. //
  8355. // There are no more bindings.
  8356. //
  8357. const auto RPC_S_NO_MORE_BINDINGS = 1806;
  8358. //
  8359. // MessageId: ERROR_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT
  8360. //
  8361. // MessageText:
  8362. //
  8363. // The account used is an interdomain trust account. Use your global user account or local user account to access this server.
  8364. //
  8365. const auto ERROR_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT = 1807;
  8366. //
  8367. // MessageId: ERROR_NOLOGON_WORKSTATION_TRUST_ACCOUNT
  8368. //
  8369. // MessageText:
  8370. //
  8371. // The account used is a computer account. Use your global user account or local user account to access this server.
  8372. //
  8373. const auto ERROR_NOLOGON_WORKSTATION_TRUST_ACCOUNT = 1808;
  8374. //
  8375. // MessageId: ERROR_NOLOGON_SERVER_TRUST_ACCOUNT
  8376. //
  8377. // MessageText:
  8378. //
  8379. // The account used is a server trust account. Use your global user account or local user account to access this server.
  8380. //
  8381. const auto ERROR_NOLOGON_SERVER_TRUST_ACCOUNT = 1809;
  8382. //
  8383. // MessageId: ERROR_DOMAIN_TRUST_INCONSISTENT
  8384. //
  8385. // MessageText:
  8386. //
  8387. // The name or security ID (SID) of the domain specified is inconsistent with the trust information for that domain.
  8388. //
  8389. const auto ERROR_DOMAIN_TRUST_INCONSISTENT = 1810;
  8390. //
  8391. // MessageId: ERROR_SERVER_HAS_OPEN_HANDLES
  8392. //
  8393. // MessageText:
  8394. //
  8395. // The server is in use and cannot be unloaded.
  8396. //
  8397. const auto ERROR_SERVER_HAS_OPEN_HANDLES = 1811;
  8398. //
  8399. // MessageId: ERROR_RESOURCE_DATA_NOT_FOUND
  8400. //
  8401. // MessageText:
  8402. //
  8403. // The specified image file did not contain a resource section.
  8404. //
  8405. const auto ERROR_RESOURCE_DATA_NOT_FOUND = 1812;
  8406. //
  8407. // MessageId: ERROR_RESOURCE_TYPE_NOT_FOUND
  8408. //
  8409. // MessageText:
  8410. //
  8411. // The specified resource type cannot be found in the image file.
  8412. //
  8413. const auto ERROR_RESOURCE_TYPE_NOT_FOUND = 1813;
  8414. //
  8415. // MessageId: ERROR_RESOURCE_NAME_NOT_FOUND
  8416. //
  8417. // MessageText:
  8418. //
  8419. // The specified resource name cannot be found in the image file.
  8420. //
  8421. const auto ERROR_RESOURCE_NAME_NOT_FOUND = 1814;
  8422. //
  8423. // MessageId: ERROR_RESOURCE_LANG_NOT_FOUND
  8424. //
  8425. // MessageText:
  8426. //
  8427. // The specified resource language ID cannot be found in the image file.
  8428. //
  8429. const auto ERROR_RESOURCE_LANG_NOT_FOUND = 1815;
  8430. //
  8431. // MessageId: ERROR_NOT_ENOUGH_QUOTA
  8432. //
  8433. // MessageText:
  8434. //
  8435. // Not enough quota is available to process this command.
  8436. //
  8437. const auto ERROR_NOT_ENOUGH_QUOTA = 1816;
  8438. //
  8439. // MessageId: RPC_S_NO_INTERFACES
  8440. //
  8441. // MessageText:
  8442. //
  8443. // No interfaces have been registered.
  8444. //
  8445. const auto RPC_S_NO_INTERFACES = 1817;
  8446. //
  8447. // MessageId: RPC_S_CALL_CANCELLED
  8448. //
  8449. // MessageText:
  8450. //
  8451. // The remote procedure call was cancelled.
  8452. //
  8453. const auto RPC_S_CALL_CANCELLED = 1818;
  8454. //
  8455. // MessageId: RPC_S_BINDING_INCOMPLETE
  8456. //
  8457. // MessageText:
  8458. //
  8459. // The binding handle does not contain all required information.
  8460. //
  8461. const auto RPC_S_BINDING_INCOMPLETE = 1819;
  8462. //
  8463. // MessageId: RPC_S_COMM_FAILURE
  8464. //
  8465. // MessageText:
  8466. //
  8467. // A communications failure occurred during a remote procedure call.
  8468. //
  8469. const auto RPC_S_COMM_FAILURE = 1820;
  8470. //
  8471. // MessageId: RPC_S_UNSUPPORTED_AUTHN_LEVEL
  8472. //
  8473. // MessageText:
  8474. //
  8475. // The requested authentication level is not supported.
  8476. //
  8477. const auto RPC_S_UNSUPPORTED_AUTHN_LEVEL = 1821;
  8478. //
  8479. // MessageId: RPC_S_NO_PRINC_NAME
  8480. //
  8481. // MessageText:
  8482. //
  8483. // No principal name registered.
  8484. //
  8485. const auto RPC_S_NO_PRINC_NAME = 1822;
  8486. //
  8487. // MessageId: RPC_S_NOT_RPC_ERROR
  8488. //
  8489. // MessageText:
  8490. //
  8491. // The error specified is not a valid Windows RPC error code.
  8492. //
  8493. const auto RPC_S_NOT_RPC_ERROR = 1823;
  8494. //
  8495. // MessageId: RPC_S_UUID_LOCAL_ONLY
  8496. //
  8497. // MessageText:
  8498. //
  8499. // A UUID that is valid only on this computer has been allocated.
  8500. //
  8501. const auto RPC_S_UUID_LOCAL_ONLY = 1824;
  8502. //
  8503. // MessageId: RPC_S_SEC_PKG_ERROR
  8504. //
  8505. // MessageText:
  8506. //
  8507. // A security package specific error occurred.
  8508. //
  8509. const auto RPC_S_SEC_PKG_ERROR = 1825;
  8510. //
  8511. // MessageId: RPC_S_NOT_CANCELLED
  8512. //
  8513. // MessageText:
  8514. //
  8515. // Thread is not canceled.
  8516. //
  8517. const auto RPC_S_NOT_CANCELLED = 1826;
  8518. //
  8519. // MessageId: RPC_X_INVALID_ES_ACTION
  8520. //
  8521. // MessageText:
  8522. //
  8523. // Invalid operation on the encoding/decoding handle.
  8524. //
  8525. const auto RPC_X_INVALID_ES_ACTION = 1827;
  8526. //
  8527. // MessageId: RPC_X_WRONG_ES_VERSION
  8528. //
  8529. // MessageText:
  8530. //
  8531. // Incompatible version of the serializing package.
  8532. //
  8533. const auto RPC_X_WRONG_ES_VERSION = 1828;
  8534. //
  8535. // MessageId: RPC_X_WRONG_STUB_VERSION
  8536. //
  8537. // MessageText:
  8538. //
  8539. // Incompatible version of the RPC stub.
  8540. //
  8541. const auto RPC_X_WRONG_STUB_VERSION = 1829;
  8542. //
  8543. // MessageId: RPC_X_INVALID_PIPE_OBJECT
  8544. //
  8545. // MessageText:
  8546. //
  8547. // The RPC pipe object is invalid or corrupted.
  8548. //
  8549. const auto RPC_X_INVALID_PIPE_OBJECT = 1830;
  8550. //
  8551. // MessageId: RPC_X_WRONG_PIPE_ORDER
  8552. //
  8553. // MessageText:
  8554. //
  8555. // An invalid operation was attempted on an RPC pipe object.
  8556. //
  8557. const auto RPC_X_WRONG_PIPE_ORDER = 1831;
  8558. //
  8559. // MessageId: RPC_X_WRONG_PIPE_VERSION
  8560. //
  8561. // MessageText:
  8562. //
  8563. // Unsupported RPC pipe version.
  8564. //
  8565. const auto RPC_X_WRONG_PIPE_VERSION = 1832;
  8566. //
  8567. // MessageId: RPC_S_GROUP_MEMBER_NOT_FOUND
  8568. //
  8569. // MessageText:
  8570. //
  8571. // The group member was not found.
  8572. //
  8573. const auto RPC_S_GROUP_MEMBER_NOT_FOUND = 1898;
  8574. //
  8575. // MessageId: EPT_S_CANT_CREATE
  8576. //
  8577. // MessageText:
  8578. //
  8579. // The endpoint mapper database entry could not be created.
  8580. //
  8581. const auto EPT_S_CANT_CREATE = 1899;
  8582. //
  8583. // MessageId: RPC_S_INVALID_OBJECT
  8584. //
  8585. // MessageText:
  8586. //
  8587. // The object universal unique identifier (UUID) is the nil UUID.
  8588. //
  8589. const auto RPC_S_INVALID_OBJECT = 1900;
  8590. //
  8591. // MessageId: ERROR_INVALID_TIME
  8592. //
  8593. // MessageText:
  8594. //
  8595. // The specified time is invalid.
  8596. //
  8597. const auto ERROR_INVALID_TIME = 1901;
  8598. //
  8599. // MessageId: ERROR_INVALID_FORM_NAME
  8600. //
  8601. // MessageText:
  8602. //
  8603. // The specified form name is invalid.
  8604. //
  8605. const auto ERROR_INVALID_FORM_NAME = 1902;
  8606. //
  8607. // MessageId: ERROR_INVALID_FORM_SIZE
  8608. //
  8609. // MessageText:
  8610. //
  8611. // The specified form size is invalid.
  8612. //
  8613. const auto ERROR_INVALID_FORM_SIZE = 1903;
  8614. //
  8615. // MessageId: ERROR_ALREADY_WAITING
  8616. //
  8617. // MessageText:
  8618. //
  8619. // The specified printer handle is already being waited on
  8620. //
  8621. const auto ERROR_ALREADY_WAITING = 1904;
  8622. //
  8623. // MessageId: ERROR_PRINTER_DELETED
  8624. //
  8625. // MessageText:
  8626. //
  8627. // The specified printer has been deleted.
  8628. //
  8629. const auto ERROR_PRINTER_DELETED = 1905;
  8630. //
  8631. // MessageId: ERROR_INVALID_PRINTER_STATE
  8632. //
  8633. // MessageText:
  8634. //
  8635. // The state of the printer is invalid.
  8636. //
  8637. const auto ERROR_INVALID_PRINTER_STATE = 1906;
  8638. //
  8639. // MessageId: ERROR_PASSWORD_MUST_CHANGE
  8640. //
  8641. // MessageText:
  8642. //
  8643. // The user's password must be changed before logging on the first time.
  8644. //
  8645. const auto ERROR_PASSWORD_MUST_CHANGE = 1907;
  8646. //
  8647. // MessageId: ERROR_DOMAIN_CONTROLLER_NOT_FOUND
  8648. //
  8649. // MessageText:
  8650. //
  8651. // Could not find the domain controller for this domain.
  8652. //
  8653. const auto ERROR_DOMAIN_CONTROLLER_NOT_FOUND = 1908;
  8654. //
  8655. // MessageId: ERROR_ACCOUNT_LOCKED_OUT
  8656. //
  8657. // MessageText:
  8658. //
  8659. // The referenced account is currently locked out and may not be logged on to.
  8660. //
  8661. const auto ERROR_ACCOUNT_LOCKED_OUT = 1909;
  8662. //
  8663. // MessageId: OR_INVALID_OXID
  8664. //
  8665. // MessageText:
  8666. //
  8667. // The object exporter specified was not found.
  8668. //
  8669. const auto OR_INVALID_OXID = 1910;
  8670. //
  8671. // MessageId: OR_INVALID_OID
  8672. //
  8673. // MessageText:
  8674. //
  8675. // The object specified was not found.
  8676. //
  8677. const auto OR_INVALID_OID = 1911;
  8678. //
  8679. // MessageId: OR_INVALID_SET
  8680. //
  8681. // MessageText:
  8682. //
  8683. // The object resolver set specified was not found.
  8684. //
  8685. const auto OR_INVALID_SET = 1912;
  8686. //
  8687. // MessageId: RPC_S_SEND_INCOMPLETE
  8688. //
  8689. // MessageText:
  8690. //
  8691. // Some data remains to be sent in the request buffer.
  8692. //
  8693. const auto RPC_S_SEND_INCOMPLETE = 1913;
  8694. //
  8695. // MessageId: RPC_S_INVALID_ASYNC_HANDLE
  8696. //
  8697. // MessageText:
  8698. //
  8699. // Invalid asynchronous remote procedure call handle.
  8700. //
  8701. const auto RPC_S_INVALID_ASYNC_HANDLE = 1914;
  8702. //
  8703. // MessageId: RPC_S_INVALID_ASYNC_CALL
  8704. //
  8705. // MessageText:
  8706. //
  8707. // Invalid asynchronous RPC call handle for this operation.
  8708. //
  8709. const auto RPC_S_INVALID_ASYNC_CALL = 1915;
  8710. //
  8711. // MessageId: RPC_X_PIPE_CLOSED
  8712. //
  8713. // MessageText:
  8714. //
  8715. // The RPC pipe object has already been closed.
  8716. //
  8717. const auto RPC_X_PIPE_CLOSED = 1916;
  8718. //
  8719. // MessageId: RPC_X_PIPE_DISCIPLINE_ERROR
  8720. //
  8721. // MessageText:
  8722. //
  8723. // The RPC call completed before all pipes were processed.
  8724. //
  8725. const auto RPC_X_PIPE_DISCIPLINE_ERROR = 1917;
  8726. //
  8727. // MessageId: RPC_X_PIPE_EMPTY
  8728. //
  8729. // MessageText:
  8730. //
  8731. // No more data is available from the RPC pipe.
  8732. //
  8733. const auto RPC_X_PIPE_EMPTY = 1918;
  8734. //
  8735. // MessageId: ERROR_NO_SITENAME
  8736. //
  8737. // MessageText:
  8738. //
  8739. // No site name is available for this machine.
  8740. //
  8741. const auto ERROR_NO_SITENAME = 1919;
  8742. //
  8743. // MessageId: ERROR_CANT_ACCESS_FILE
  8744. //
  8745. // MessageText:
  8746. //
  8747. // The file cannot be accessed by the system.
  8748. //
  8749. const auto ERROR_CANT_ACCESS_FILE = 1920;
  8750. //
  8751. // MessageId: ERROR_CANT_RESOLVE_FILENAME
  8752. //
  8753. // MessageText:
  8754. //
  8755. // The name of the file cannot be resolved by the system.
  8756. //
  8757. const auto ERROR_CANT_RESOLVE_FILENAME = 1921;
  8758. //
  8759. // MessageId: RPC_S_ENTRY_TYPE_MISMATCH
  8760. //
  8761. // MessageText:
  8762. //
  8763. // The entry is not of the expected type.
  8764. //
  8765. const auto RPC_S_ENTRY_TYPE_MISMATCH = 1922;
  8766. //
  8767. // MessageId: RPC_S_NOT_ALL_OBJS_EXPORTED
  8768. //
  8769. // MessageText:
  8770. //
  8771. // Not all object UUIDs could be exported to the specified entry.
  8772. //
  8773. const auto RPC_S_NOT_ALL_OBJS_EXPORTED = 1923;
  8774. //
  8775. // MessageId: RPC_S_INTERFACE_NOT_EXPORTED
  8776. //
  8777. // MessageText:
  8778. //
  8779. // Interface could not be exported to the specified entry.
  8780. //
  8781. const auto RPC_S_INTERFACE_NOT_EXPORTED = 1924;
  8782. //
  8783. // MessageId: RPC_S_PROFILE_NOT_ADDED
  8784. //
  8785. // MessageText:
  8786. //
  8787. // The specified profile entry could not be added.
  8788. //
  8789. const auto RPC_S_PROFILE_NOT_ADDED = 1925;
  8790. //
  8791. // MessageId: RPC_S_PRF_ELT_NOT_ADDED
  8792. //
  8793. // MessageText:
  8794. //
  8795. // The specified profile element could not be added.
  8796. //
  8797. const auto RPC_S_PRF_ELT_NOT_ADDED = 1926;
  8798. //
  8799. // MessageId: RPC_S_PRF_ELT_NOT_REMOVED
  8800. //
  8801. // MessageText:
  8802. //
  8803. // The specified profile element could not be removed.
  8804. //
  8805. const auto RPC_S_PRF_ELT_NOT_REMOVED = 1927;
  8806. //
  8807. // MessageId: RPC_S_GRP_ELT_NOT_ADDED
  8808. //
  8809. // MessageText:
  8810. //
  8811. // The group element could not be added.
  8812. //
  8813. const auto RPC_S_GRP_ELT_NOT_ADDED = 1928;
  8814. //
  8815. // MessageId: RPC_S_GRP_ELT_NOT_REMOVED
  8816. //
  8817. // MessageText:
  8818. //
  8819. // The group element could not be removed.
  8820. //
  8821. const auto RPC_S_GRP_ELT_NOT_REMOVED = 1929;
  8822. //
  8823. // MessageId: ERROR_KM_DRIVER_BLOCKED
  8824. //
  8825. // MessageText:
  8826. //
  8827. // The printer driver is not compatible with a policy enabled on your computer that blocks NT 4.0 drivers.
  8828. //
  8829. const auto ERROR_KM_DRIVER_BLOCKED = 1930;
  8830. //
  8831. // MessageId: ERROR_CONTEXT_EXPIRED
  8832. //
  8833. // MessageText:
  8834. //
  8835. // The context has expired and can no longer be used.
  8836. //
  8837. const auto ERROR_CONTEXT_EXPIRED = 1931;
  8838. //
  8839. // MessageId: ERROR_PER_USER_TRUST_QUOTA_EXCEEDED
  8840. //
  8841. // MessageText:
  8842. //
  8843. // The current user's delegated trust creation quota has been exceeded.
  8844. //
  8845. const auto ERROR_PER_USER_TRUST_QUOTA_EXCEEDED = 1932;
  8846. //
  8847. // MessageId: ERROR_ALL_USER_TRUST_QUOTA_EXCEEDED
  8848. //
  8849. // MessageText:
  8850. //
  8851. // The total delegated trust creation quota has been exceeded.
  8852. //
  8853. const auto ERROR_ALL_USER_TRUST_QUOTA_EXCEEDED = 1933;
  8854. //
  8855. // MessageId: ERROR_USER_DELETE_TRUST_QUOTA_EXCEEDED
  8856. //
  8857. // MessageText:
  8858. //
  8859. // The current user's delegated trust deletion quota has been exceeded.
  8860. //
  8861. const auto ERROR_USER_DELETE_TRUST_QUOTA_EXCEEDED = 1934;
  8862. //
  8863. // MessageId: ERROR_AUTHENTICATION_FIREWALL_FAILED
  8864. //
  8865. // MessageText:
  8866. //
  8867. // 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.
  8868. //
  8869. const auto ERROR_AUTHENTICATION_FIREWALL_FAILED = 1935;
  8870. //
  8871. // MessageId: ERROR_REMOTE_PRINT_CONNECTIONS_BLOCKED
  8872. //
  8873. // MessageText:
  8874. //
  8875. // Remote connections to the Print Spooler are blocked by a policy set on your machine.
  8876. //
  8877. const auto ERROR_REMOTE_PRINT_CONNECTIONS_BLOCKED = 1936;
  8878. //
  8879. // MessageId: ERROR_NTLM_BLOCKED
  8880. //
  8881. // MessageText:
  8882. //
  8883. // Logon Failure: Authentication failed because NTLM authentication has been disabled.
  8884. //
  8885. const auto ERROR_NTLM_BLOCKED = 1937;
  8886. ///////////////////////////////////////////////////
  8887. // //
  8888. // OpenGL Error codes //
  8889. // //
  8890. // 2000 to 2009 //
  8891. ///////////////////////////////////////////////////
  8892. //
  8893. // MessageId: ERROR_INVALID_PIXEL_FORMAT
  8894. //
  8895. // MessageText:
  8896. //
  8897. // The pixel format is invalid.
  8898. //
  8899. const auto ERROR_INVALID_PIXEL_FORMAT = 2000;
  8900. //
  8901. // MessageId: ERROR_BAD_DRIVER
  8902. //
  8903. // MessageText:
  8904. //
  8905. // The specified driver is invalid.
  8906. //
  8907. const auto ERROR_BAD_DRIVER = 2001;
  8908. //
  8909. // MessageId: ERROR_INVALID_WINDOW_STYLE
  8910. //
  8911. // MessageText:
  8912. //
  8913. // The window style or class attribute is invalid for this operation.
  8914. //
  8915. const auto ERROR_INVALID_WINDOW_STYLE = 2002;
  8916. //
  8917. // MessageId: ERROR_METAFILE_NOT_SUPPORTED
  8918. //
  8919. // MessageText:
  8920. //
  8921. // The requested metafile operation is not supported.
  8922. //
  8923. const auto ERROR_METAFILE_NOT_SUPPORTED = 2003;
  8924. //
  8925. // MessageId: ERROR_TRANSFORM_NOT_SUPPORTED
  8926. //
  8927. // MessageText:
  8928. //
  8929. // The requested transformation operation is not supported.
  8930. //
  8931. const auto ERROR_TRANSFORM_NOT_SUPPORTED = 2004;
  8932. //
  8933. // MessageId: ERROR_CLIPPING_NOT_SUPPORTED
  8934. //
  8935. // MessageText:
  8936. //
  8937. // The requested clipping operation is not supported.
  8938. //
  8939. const auto ERROR_CLIPPING_NOT_SUPPORTED = 2005;
  8940. ///////////////////////////////////////////////////
  8941. // //
  8942. // Image Color Management Error codes //
  8943. // //
  8944. // 2010 to 2049 //
  8945. ///////////////////////////////////////////////////
  8946. //
  8947. // MessageId: ERROR_INVALID_CMM
  8948. //
  8949. // MessageText:
  8950. //
  8951. // The specified color management module is invalid.
  8952. //
  8953. const auto ERROR_INVALID_CMM = 2010;
  8954. //
  8955. // MessageId: ERROR_INVALID_PROFILE
  8956. //
  8957. // MessageText:
  8958. //
  8959. // The specified color profile is invalid.
  8960. //
  8961. const auto ERROR_INVALID_PROFILE = 2011;
  8962. //
  8963. // MessageId: ERROR_TAG_NOT_FOUND
  8964. //
  8965. // MessageText:
  8966. //
  8967. // The specified tag was not found.
  8968. //
  8969. const auto ERROR_TAG_NOT_FOUND = 2012;
  8970. //
  8971. // MessageId: ERROR_TAG_NOT_PRESENT
  8972. //
  8973. // MessageText:
  8974. //
  8975. // A required tag is not present.
  8976. //
  8977. const auto ERROR_TAG_NOT_PRESENT = 2013;
  8978. //
  8979. // MessageId: ERROR_DUPLICATE_TAG
  8980. //
  8981. // MessageText:
  8982. //
  8983. // The specified tag is already present.
  8984. //
  8985. const auto ERROR_DUPLICATE_TAG = 2014;
  8986. //
  8987. // MessageId: ERROR_PROFILE_NOT_ASSOCIATED_WITH_DEVICE
  8988. //
  8989. // MessageText:
  8990. //
  8991. // The specified color profile is not associated with the specified device.
  8992. //
  8993. const auto ERROR_PROFILE_NOT_ASSOCIATED_WITH_DEVICE = 2015;
  8994. //
  8995. // MessageId: ERROR_PROFILE_NOT_FOUND
  8996. //
  8997. // MessageText:
  8998. //
  8999. // The specified color profile was not found.
  9000. //
  9001. const auto ERROR_PROFILE_NOT_FOUND = 2016;
  9002. //
  9003. // MessageId: ERROR_INVALID_COLORSPACE
  9004. //
  9005. // MessageText:
  9006. //
  9007. // The specified color space is invalid.
  9008. //
  9009. const auto ERROR_INVALID_COLORSPACE = 2017;
  9010. //
  9011. // MessageId: ERROR_ICM_NOT_ENABLED
  9012. //
  9013. // MessageText:
  9014. //
  9015. // Image Color Management is not enabled.
  9016. //
  9017. const auto ERROR_ICM_NOT_ENABLED = 2018;
  9018. //
  9019. // MessageId: ERROR_DELETING_ICM_XFORM
  9020. //
  9021. // MessageText:
  9022. //
  9023. // There was an error while deleting the color transform.
  9024. //
  9025. const auto ERROR_DELETING_ICM_XFORM = 2019;
  9026. //
  9027. // MessageId: ERROR_INVALID_TRANSFORM
  9028. //
  9029. // MessageText:
  9030. //
  9031. // The specified color transform is invalid.
  9032. //
  9033. const auto ERROR_INVALID_TRANSFORM = 2020;
  9034. //
  9035. // MessageId: ERROR_COLORSPACE_MISMATCH
  9036. //
  9037. // MessageText:
  9038. //
  9039. // The specified transform does not match the bitmap's color space.
  9040. //
  9041. const auto ERROR_COLORSPACE_MISMATCH = 2021;
  9042. //
  9043. // MessageId: ERROR_INVALID_COLORINDEX
  9044. //
  9045. // MessageText:
  9046. //
  9047. // The specified named color index is not present in the profile.
  9048. //
  9049. const auto ERROR_INVALID_COLORINDEX = 2022;
  9050. //
  9051. // MessageId: ERROR_PROFILE_DOES_NOT_MATCH_DEVICE
  9052. //
  9053. // MessageText:
  9054. //
  9055. // The specified profile is intended for a device of a different type than the specified device.
  9056. //
  9057. const auto ERROR_PROFILE_DOES_NOT_MATCH_DEVICE = 2023;
  9058. ///////////////////////////////////////////////////
  9059. // //
  9060. // Winnet32 Error codes //
  9061. // //
  9062. // 2100 to 2999 //
  9063. // //
  9064. // The range 2100 through 2999 is reserved for //
  9065. // network status codes. See lmerr.h for a //
  9066. // complete listing //
  9067. ///////////////////////////////////////////////////
  9068. //
  9069. // MessageId: ERROR_CONNECTED_OTHER_PASSWORD
  9070. //
  9071. // MessageText:
  9072. //
  9073. // The network connection was made successfully, but the user had to be prompted for a password other than the one originally specified.
  9074. //
  9075. const auto ERROR_CONNECTED_OTHER_PASSWORD = 2108;
  9076. //
  9077. // MessageId: ERROR_CONNECTED_OTHER_PASSWORD_DEFAULT
  9078. //
  9079. // MessageText:
  9080. //
  9081. // The network connection was made successfully using default credentials.
  9082. //
  9083. const auto ERROR_CONNECTED_OTHER_PASSWORD_DEFAULT = 2109;
  9084. //
  9085. // MessageId: ERROR_BAD_USERNAME
  9086. //
  9087. // MessageText:
  9088. //
  9089. // The specified username is invalid.
  9090. //
  9091. const auto ERROR_BAD_USERNAME = 2202;
  9092. //
  9093. // MessageId: ERROR_NOT_CONNECTED
  9094. //
  9095. // MessageText:
  9096. //
  9097. // This network connection does not exist.
  9098. //
  9099. const auto ERROR_NOT_CONNECTED = 2250;
  9100. //
  9101. // MessageId: ERROR_OPEN_FILES
  9102. //
  9103. // MessageText:
  9104. //
  9105. // This network connection has files open or requests pending.
  9106. //
  9107. const auto ERROR_OPEN_FILES = 2401;
  9108. //
  9109. // MessageId: ERROR_ACTIVE_CONNECTIONS
  9110. //
  9111. // MessageText:
  9112. //
  9113. // Active connections still exist.
  9114. //
  9115. const auto ERROR_ACTIVE_CONNECTIONS = 2402;
  9116. //
  9117. // MessageId: ERROR_DEVICE_IN_USE
  9118. //
  9119. // MessageText:
  9120. //
  9121. // The device is in use by an active process and cannot be disconnected.
  9122. //
  9123. const auto ERROR_DEVICE_IN_USE = 2404;
  9124. ///////////////////////////////////////////////////
  9125. // //
  9126. // Win32 Spooler Error codes //
  9127. // //
  9128. // 3000 to 3049 //
  9129. ///////////////////////////////////////////////////
  9130. //
  9131. // MessageId: ERROR_UNKNOWN_PRINT_MONITOR
  9132. //
  9133. // MessageText:
  9134. //
  9135. // The specified print monitor is unknown.
  9136. //
  9137. const auto ERROR_UNKNOWN_PRINT_MONITOR = 3000;
  9138. //
  9139. // MessageId: ERROR_PRINTER_DRIVER_IN_USE
  9140. //
  9141. // MessageText:
  9142. //
  9143. // The specified printer driver is currently in use.
  9144. //
  9145. const auto ERROR_PRINTER_DRIVER_IN_USE = 3001;
  9146. //
  9147. // MessageId: ERROR_SPOOL_FILE_NOT_FOUND
  9148. //
  9149. // MessageText:
  9150. //
  9151. // The spool file was not found.
  9152. //
  9153. const auto ERROR_SPOOL_FILE_NOT_FOUND = 3002;
  9154. //
  9155. // MessageId: ERROR_SPL_NO_STARTDOC
  9156. //
  9157. // MessageText:
  9158. //
  9159. // A StartDocPrinter call was not issued.
  9160. //
  9161. const auto ERROR_SPL_NO_STARTDOC = 3003;
  9162. //
  9163. // MessageId: ERROR_SPL_NO_ADDJOB
  9164. //
  9165. // MessageText:
  9166. //
  9167. // An AddJob call was not issued.
  9168. //
  9169. const auto ERROR_SPL_NO_ADDJOB = 3004;
  9170. //
  9171. // MessageId: ERROR_PRINT_PROCESSOR_ALREADY_INSTALLED
  9172. //
  9173. // MessageText:
  9174. //
  9175. // The specified print processor has already been installed.
  9176. //
  9177. const auto ERROR_PRINT_PROCESSOR_ALREADY_INSTALLED = 3005;
  9178. //
  9179. // MessageId: ERROR_PRINT_MONITOR_ALREADY_INSTALLED
  9180. //
  9181. // MessageText:
  9182. //
  9183. // The specified print monitor has already been installed.
  9184. //
  9185. const auto ERROR_PRINT_MONITOR_ALREADY_INSTALLED = 3006;
  9186. //
  9187. // MessageId: ERROR_INVALID_PRINT_MONITOR
  9188. //
  9189. // MessageText:
  9190. //
  9191. // The specified print monitor does not have the required functions.
  9192. //
  9193. const auto ERROR_INVALID_PRINT_MONITOR = 3007;
  9194. //
  9195. // MessageId: ERROR_PRINT_MONITOR_IN_USE
  9196. //
  9197. // MessageText:
  9198. //
  9199. // The specified print monitor is currently in use.
  9200. //
  9201. const auto ERROR_PRINT_MONITOR_IN_USE = 3008;
  9202. //
  9203. // MessageId: ERROR_PRINTER_HAS_JOBS_QUEUED
  9204. //
  9205. // MessageText:
  9206. //
  9207. // The requested operation is not allowed when there are jobs queued to the printer.
  9208. //
  9209. const auto ERROR_PRINTER_HAS_JOBS_QUEUED = 3009;
  9210. //
  9211. // MessageId: ERROR_SUCCESS_REBOOT_REQUIRED
  9212. //
  9213. // MessageText:
  9214. //
  9215. // The requested operation is successful. Changes will not be effective until the system is rebooted.
  9216. //
  9217. const auto ERROR_SUCCESS_REBOOT_REQUIRED = 3010;
  9218. //
  9219. // MessageId: ERROR_SUCCESS_RESTART_REQUIRED
  9220. //
  9221. // MessageText:
  9222. //
  9223. // The requested operation is successful. Changes will not be effective until the service is restarted.
  9224. //
  9225. const auto ERROR_SUCCESS_RESTART_REQUIRED = 3011;
  9226. //
  9227. // MessageId: ERROR_PRINTER_NOT_FOUND
  9228. //
  9229. // MessageText:
  9230. //
  9231. // No printers were found.
  9232. //
  9233. const auto ERROR_PRINTER_NOT_FOUND = 3012;
  9234. //
  9235. // MessageId: ERROR_PRINTER_DRIVER_WARNED
  9236. //
  9237. // MessageText:
  9238. //
  9239. // The printer driver is known to be unreliable.
  9240. //
  9241. const auto ERROR_PRINTER_DRIVER_WARNED = 3013;
  9242. //
  9243. // MessageId: ERROR_PRINTER_DRIVER_BLOCKED
  9244. //
  9245. // MessageText:
  9246. //
  9247. // The printer driver is known to harm the system.
  9248. //
  9249. const auto ERROR_PRINTER_DRIVER_BLOCKED = 3014;
  9250. //
  9251. // MessageId: ERROR_PRINTER_DRIVER_PACKAGE_IN_USE
  9252. //
  9253. // MessageText:
  9254. //
  9255. // The specified printer driver package is currently in use.
  9256. //
  9257. const auto ERROR_PRINTER_DRIVER_PACKAGE_IN_USE = 3015;
  9258. //
  9259. // MessageId: ERROR_CORE_DRIVER_PACKAGE_NOT_FOUND
  9260. //
  9261. // MessageText:
  9262. //
  9263. // Unable to find a core driver package that is required by the printer driver package.
  9264. //
  9265. const auto ERROR_CORE_DRIVER_PACKAGE_NOT_FOUND = 3016;
  9266. //
  9267. // MessageId: ERROR_FAIL_REBOOT_REQUIRED
  9268. //
  9269. // MessageText:
  9270. //
  9271. // The requested operation failed. A system reboot is required to roll back changes made.
  9272. //
  9273. const auto ERROR_FAIL_REBOOT_REQUIRED = 3017;
  9274. //
  9275. // MessageId: ERROR_FAIL_REBOOT_INITIATED
  9276. //
  9277. // MessageText:
  9278. //
  9279. // The requested operation failed. A system reboot has been initiated to roll back changes made.
  9280. //
  9281. const auto ERROR_FAIL_REBOOT_INITIATED = 3018;
  9282. //
  9283. // MessageId: ERROR_PRINTER_DRIVER_DOWNLOAD_NEEDED
  9284. //
  9285. // MessageText:
  9286. //
  9287. // The specified printer driver was not found on the system and needs to be downloaded.
  9288. //
  9289. const auto ERROR_PRINTER_DRIVER_DOWNLOAD_NEEDED = 3019;
  9290. //
  9291. // MessageId: ERROR_PRINT_JOB_RESTART_REQUIRED
  9292. //
  9293. // MessageText:
  9294. //
  9295. // The requested print job has failed to print. A print system update requires the job to be resubmitted.
  9296. //
  9297. const auto ERROR_PRINT_JOB_RESTART_REQUIRED = 3020;
  9298. ///////////////////////////////////////////////////
  9299. // //
  9300. // Available //
  9301. // //
  9302. // 3050 to 3899 //
  9303. ///////////////////////////////////////////////////
  9304. ///////////////////////////////////////////////////
  9305. // //
  9306. // IO Error Codes //
  9307. // //
  9308. // 3900 to 3999 //
  9309. ///////////////////////////////////////////////////
  9310. //
  9311. // MessageId: ERROR_IO_REISSUE_AS_CACHED
  9312. //
  9313. // MessageText:
  9314. //
  9315. // Reissue the given operation as a cached IO operation
  9316. //
  9317. const auto ERROR_IO_REISSUE_AS_CACHED = 3950;
  9318. ///////////////////////////////////////////////////
  9319. // //
  9320. // Wins Error codes //
  9321. // //
  9322. // 4000 to 4049 //
  9323. ///////////////////////////////////////////////////
  9324. //
  9325. // MessageId: ERROR_WINS_INTERNAL
  9326. //
  9327. // MessageText:
  9328. //
  9329. // WINS encountered an error while processing the command.
  9330. //
  9331. const auto ERROR_WINS_INTERNAL = 4000;
  9332. //
  9333. // MessageId: ERROR_CAN_NOT_DEL_LOCAL_WINS
  9334. //
  9335. // MessageText:
  9336. //
  9337. // The local WINS cannot be deleted.
  9338. //
  9339. const auto ERROR_CAN_NOT_DEL_LOCAL_WINS = 4001;
  9340. //
  9341. // MessageId: ERROR_STATIC_INIT
  9342. //
  9343. // MessageText:
  9344. //
  9345. // The importation from the file failed.
  9346. //
  9347. const auto ERROR_STATIC_INIT = 4002;
  9348. //
  9349. // MessageId: ERROR_INC_BACKUP
  9350. //
  9351. // MessageText:
  9352. //
  9353. // The backup failed. Was a full backup done before?
  9354. //
  9355. const auto ERROR_INC_BACKUP = 4003;
  9356. //
  9357. // MessageId: ERROR_FULL_BACKUP
  9358. //
  9359. // MessageText:
  9360. //
  9361. // The backup failed. Check the directory to which you are backing the database.
  9362. //
  9363. const auto ERROR_FULL_BACKUP = 4004;
  9364. //
  9365. // MessageId: ERROR_REC_NON_EXISTENT
  9366. //
  9367. // MessageText:
  9368. //
  9369. // The name does not exist in the WINS database.
  9370. //
  9371. const auto ERROR_REC_NON_EXISTENT = 4005;
  9372. //
  9373. // MessageId: ERROR_RPL_NOT_ALLOWED
  9374. //
  9375. // MessageText:
  9376. //
  9377. // Replication with a nonconfigured partner is not allowed.
  9378. //
  9379. const auto ERROR_RPL_NOT_ALLOWED = 4006;
  9380. ///////////////////////////////////////////////////
  9381. // //
  9382. // Available //
  9383. // //
  9384. // 4050 to 4099 //
  9385. ///////////////////////////////////////////////////
  9386. ///////////////////////////////////////////////////
  9387. // //
  9388. // DHCP Error codes //
  9389. // //
  9390. // 4100 to 4149 //
  9391. ///////////////////////////////////////////////////
  9392. //
  9393. // MessageId: ERROR_DHCP_ADDRESS_CONFLICT
  9394. //
  9395. // MessageText:
  9396. //
  9397. // The DHCP client has obtained an IP address that is already in use on the network. The local interface will be disabled until the DHCP client can obtain a new address.
  9398. //
  9399. const auto ERROR_DHCP_ADDRESS_CONFLICT = 4100;
  9400. ///////////////////////////////////////////////////
  9401. // //
  9402. // Available //
  9403. // //
  9404. // 4150 to 4199 //
  9405. ///////////////////////////////////////////////////
  9406. ///////////////////////////////////////////////////
  9407. // //
  9408. // WMI Error codes //
  9409. // //
  9410. // 4200 to 4249 //
  9411. ///////////////////////////////////////////////////
  9412. //
  9413. // MessageId: ERROR_WMI_GUID_NOT_FOUND
  9414. //
  9415. // MessageText:
  9416. //
  9417. // The GUID passed was not recognized as valid by a WMI data provider.
  9418. //
  9419. const auto ERROR_WMI_GUID_NOT_FOUND = 4200;
  9420. //
  9421. // MessageId: ERROR_WMI_INSTANCE_NOT_FOUND
  9422. //
  9423. // MessageText:
  9424. //
  9425. // The instance name passed was not recognized as valid by a WMI data provider.
  9426. //
  9427. const auto ERROR_WMI_INSTANCE_NOT_FOUND = 4201;
  9428. //
  9429. // MessageId: ERROR_WMI_ITEMID_NOT_FOUND
  9430. //
  9431. // MessageText:
  9432. //
  9433. // The data item ID passed was not recognized as valid by a WMI data provider.
  9434. //
  9435. const auto ERROR_WMI_ITEMID_NOT_FOUND = 4202;
  9436. //
  9437. // MessageId: ERROR_WMI_TRY_AGAIN
  9438. //
  9439. // MessageText:
  9440. //
  9441. // The WMI request could not be completed and should be retried.
  9442. //
  9443. const auto ERROR_WMI_TRY_AGAIN = 4203;
  9444. //
  9445. // MessageId: ERROR_WMI_DP_NOT_FOUND
  9446. //
  9447. // MessageText:
  9448. //
  9449. // The WMI data provider could not be located.
  9450. //
  9451. const auto ERROR_WMI_DP_NOT_FOUND = 4204;
  9452. //
  9453. // MessageId: ERROR_WMI_UNRESOLVED_INSTANCE_REF
  9454. //
  9455. // MessageText:
  9456. //
  9457. // The WMI data provider references an instance set that has not been registered.
  9458. //
  9459. const auto ERROR_WMI_UNRESOLVED_INSTANCE_REF = 4205;
  9460. //
  9461. // MessageId: ERROR_WMI_ALREADY_ENABLED
  9462. //
  9463. // MessageText:
  9464. //
  9465. // The WMI data block or event notification has already been enabled.
  9466. //
  9467. const auto ERROR_WMI_ALREADY_ENABLED = 4206;
  9468. //
  9469. // MessageId: ERROR_WMI_GUID_DISCONNECTED
  9470. //
  9471. // MessageText:
  9472. //
  9473. // The WMI data block is no longer available.
  9474. //
  9475. const auto ERROR_WMI_GUID_DISCONNECTED = 4207;
  9476. //
  9477. // MessageId: ERROR_WMI_SERVER_UNAVAILABLE
  9478. //
  9479. // MessageText:
  9480. //
  9481. // The WMI data service is not available.
  9482. //
  9483. const auto ERROR_WMI_SERVER_UNAVAILABLE = 4208;
  9484. //
  9485. // MessageId: ERROR_WMI_DP_FAILED
  9486. //
  9487. // MessageText:
  9488. //
  9489. // The WMI data provider failed to carry out the request.
  9490. //
  9491. const auto ERROR_WMI_DP_FAILED = 4209;
  9492. //
  9493. // MessageId: ERROR_WMI_INVALID_MOF
  9494. //
  9495. // MessageText:
  9496. //
  9497. // The WMI MOF information is not valid.
  9498. //
  9499. const auto ERROR_WMI_INVALID_MOF = 4210;
  9500. //
  9501. // MessageId: ERROR_WMI_INVALID_REGINFO
  9502. //
  9503. // MessageText:
  9504. //
  9505. // The WMI registration information is not valid.
  9506. //
  9507. const auto ERROR_WMI_INVALID_REGINFO = 4211;
  9508. //
  9509. // MessageId: ERROR_WMI_ALREADY_DISABLED
  9510. //
  9511. // MessageText:
  9512. //
  9513. // The WMI data block or event notification has already been disabled.
  9514. //
  9515. const auto ERROR_WMI_ALREADY_DISABLED = 4212;
  9516. //
  9517. // MessageId: ERROR_WMI_READ_ONLY
  9518. //
  9519. // MessageText:
  9520. //
  9521. // The WMI data item or data block is read only.
  9522. //
  9523. const auto ERROR_WMI_READ_ONLY = 4213;
  9524. //
  9525. // MessageId: ERROR_WMI_SET_FAILURE
  9526. //
  9527. // MessageText:
  9528. //
  9529. // The WMI data item or data block could not be changed.
  9530. //
  9531. const auto ERROR_WMI_SET_FAILURE = 4214;
  9532. ///////////////////////////////////////////////////
  9533. // //
  9534. // Available //
  9535. // //
  9536. // 4250 to 4299 //
  9537. ///////////////////////////////////////////////////
  9538. ///////////////////////////////////////////////////
  9539. // //
  9540. // RSM (Media Services) Error codes //
  9541. // //
  9542. // 4300 to 4349 //
  9543. ///////////////////////////////////////////////////
  9544. //
  9545. // MessageId: ERROR_INVALID_MEDIA
  9546. //
  9547. // MessageText:
  9548. //
  9549. // The media identifier does not represent a valid medium.
  9550. //
  9551. const auto ERROR_INVALID_MEDIA = 4300;
  9552. //
  9553. // MessageId: ERROR_INVALID_LIBRARY
  9554. //
  9555. // MessageText:
  9556. //
  9557. // The library identifier does not represent a valid library.
  9558. //
  9559. const auto ERROR_INVALID_LIBRARY = 4301;
  9560. //
  9561. // MessageId: ERROR_INVALID_MEDIA_POOL
  9562. //
  9563. // MessageText:
  9564. //
  9565. // The media pool identifier does not represent a valid media pool.
  9566. //
  9567. const auto ERROR_INVALID_MEDIA_POOL = 4302;
  9568. //
  9569. // MessageId: ERROR_DRIVE_MEDIA_MISMATCH
  9570. //
  9571. // MessageText:
  9572. //
  9573. // The drive and medium are not compatible or exist in different libraries.
  9574. //
  9575. const auto ERROR_DRIVE_MEDIA_MISMATCH = 4303;
  9576. //
  9577. // MessageId: ERROR_MEDIA_OFFLINE
  9578. //
  9579. // MessageText:
  9580. //
  9581. // The medium currently exists in an offline library and must be online to perform this operation.
  9582. //
  9583. const auto ERROR_MEDIA_OFFLINE = 4304;
  9584. //
  9585. // MessageId: ERROR_LIBRARY_OFFLINE
  9586. //
  9587. // MessageText:
  9588. //
  9589. // The operation cannot be performed on an offline library.
  9590. //
  9591. const auto ERROR_LIBRARY_OFFLINE = 4305;
  9592. //
  9593. // MessageId: ERROR_EMPTY
  9594. //
  9595. // MessageText:
  9596. //
  9597. // The library, drive, or media pool is empty.
  9598. //
  9599. const auto ERROR_EMPTY = 4306;
  9600. //
  9601. // MessageId: ERROR_NOT_EMPTY
  9602. //
  9603. // MessageText:
  9604. //
  9605. // The library, drive, or media pool must be empty to perform this operation.
  9606. //
  9607. const auto ERROR_NOT_EMPTY = 4307;
  9608. //
  9609. // MessageId: ERROR_MEDIA_UNAVAILABLE
  9610. //
  9611. // MessageText:
  9612. //
  9613. // No media is currently available in this media pool or library.
  9614. //
  9615. const auto ERROR_MEDIA_UNAVAILABLE = 4308;
  9616. //
  9617. // MessageId: ERROR_RESOURCE_DISABLED
  9618. //
  9619. // MessageText:
  9620. //
  9621. // A resource required for this operation is disabled.
  9622. //
  9623. const auto ERROR_RESOURCE_DISABLED = 4309;
  9624. //
  9625. // MessageId: ERROR_INVALID_CLEANER
  9626. //
  9627. // MessageText:
  9628. //
  9629. // The media identifier does not represent a valid cleaner.
  9630. //
  9631. const auto ERROR_INVALID_CLEANER = 4310;
  9632. //
  9633. // MessageId: ERROR_UNABLE_TO_CLEAN
  9634. //
  9635. // MessageText:
  9636. //
  9637. // The drive cannot be cleaned or does not support cleaning.
  9638. //
  9639. const auto ERROR_UNABLE_TO_CLEAN = 4311;
  9640. //
  9641. // MessageId: ERROR_OBJECT_NOT_FOUND
  9642. //
  9643. // MessageText:
  9644. //
  9645. // The object identifier does not represent a valid object.
  9646. //
  9647. const auto ERROR_OBJECT_NOT_FOUND = 4312;
  9648. //
  9649. // MessageId: ERROR_DATABASE_FAILURE
  9650. //
  9651. // MessageText:
  9652. //
  9653. // Unable to read from or write to the database.
  9654. //
  9655. const auto ERROR_DATABASE_FAILURE = 4313;
  9656. //
  9657. // MessageId: ERROR_DATABASE_FULL
  9658. //
  9659. // MessageText:
  9660. //
  9661. // The database is full.
  9662. //
  9663. const auto ERROR_DATABASE_FULL = 4314;
  9664. //
  9665. // MessageId: ERROR_MEDIA_INCOMPATIBLE
  9666. //
  9667. // MessageText:
  9668. //
  9669. // The medium is not compatible with the device or media pool.
  9670. //
  9671. const auto ERROR_MEDIA_INCOMPATIBLE = 4315;
  9672. //
  9673. // MessageId: ERROR_RESOURCE_NOT_PRESENT
  9674. //
  9675. // MessageText:
  9676. //
  9677. // The resource required for this operation does not exist.
  9678. //
  9679. const auto ERROR_RESOURCE_NOT_PRESENT = 4316;
  9680. //
  9681. // MessageId: ERROR_INVALID_OPERATION
  9682. //
  9683. // MessageText:
  9684. //
  9685. // The operation identifier is not valid.
  9686. //
  9687. const auto ERROR_INVALID_OPERATION = 4317;
  9688. //
  9689. // MessageId: ERROR_MEDIA_NOT_AVAILABLE
  9690. //
  9691. // MessageText:
  9692. //
  9693. // The media is not mounted or ready for use.
  9694. //
  9695. const auto ERROR_MEDIA_NOT_AVAILABLE = 4318;
  9696. //
  9697. // MessageId: ERROR_DEVICE_NOT_AVAILABLE
  9698. //
  9699. // MessageText:
  9700. //
  9701. // The device is not ready for use.
  9702. //
  9703. const auto ERROR_DEVICE_NOT_AVAILABLE = 4319;
  9704. //
  9705. // MessageId: ERROR_REQUEST_REFUSED
  9706. //
  9707. // MessageText:
  9708. //
  9709. // The operator or administrator has refused the request.
  9710. //
  9711. const auto ERROR_REQUEST_REFUSED = 4320;
  9712. //
  9713. // MessageId: ERROR_INVALID_DRIVE_OBJECT
  9714. //
  9715. // MessageText:
  9716. //
  9717. // The drive identifier does not represent a valid drive.
  9718. //
  9719. const auto ERROR_INVALID_DRIVE_OBJECT = 4321;
  9720. //
  9721. // MessageId: ERROR_LIBRARY_FULL
  9722. //
  9723. // MessageText:
  9724. //
  9725. // Library is full. No slot is available for use.
  9726. //
  9727. const auto ERROR_LIBRARY_FULL = 4322;
  9728. //
  9729. // MessageId: ERROR_MEDIUM_NOT_ACCESSIBLE
  9730. //
  9731. // MessageText:
  9732. //
  9733. // The transport cannot access the medium.
  9734. //
  9735. const auto ERROR_MEDIUM_NOT_ACCESSIBLE = 4323;
  9736. //
  9737. // MessageId: ERROR_UNABLE_TO_LOAD_MEDIUM
  9738. //
  9739. // MessageText:
  9740. //
  9741. // Unable to load the medium into the drive.
  9742. //
  9743. const auto ERROR_UNABLE_TO_LOAD_MEDIUM = 4324;
  9744. //
  9745. // MessageId: ERROR_UNABLE_TO_INVENTORY_DRIVE
  9746. //
  9747. // MessageText:
  9748. //
  9749. // Unable to retrieve the drive status.
  9750. //
  9751. const auto ERROR_UNABLE_TO_INVENTORY_DRIVE = 4325;
  9752. //
  9753. // MessageId: ERROR_UNABLE_TO_INVENTORY_SLOT
  9754. //
  9755. // MessageText:
  9756. //
  9757. // Unable to retrieve the slot status.
  9758. //
  9759. const auto ERROR_UNABLE_TO_INVENTORY_SLOT = 4326;
  9760. //
  9761. // MessageId: ERROR_UNABLE_TO_INVENTORY_TRANSPORT
  9762. //
  9763. // MessageText:
  9764. //
  9765. // Unable to retrieve status about the transport.
  9766. //
  9767. const auto ERROR_UNABLE_TO_INVENTORY_TRANSPORT = 4327;
  9768. //
  9769. // MessageId: ERROR_TRANSPORT_FULL
  9770. //
  9771. // MessageText:
  9772. //
  9773. // Cannot use the transport because it is already in use.
  9774. //
  9775. const auto ERROR_TRANSPORT_FULL = 4328;
  9776. //
  9777. // MessageId: ERROR_CONTROLLING_IEPORT
  9778. //
  9779. // MessageText:
  9780. //
  9781. // Unable to open or close the inject/eject port.
  9782. //
  9783. const auto ERROR_CONTROLLING_IEPORT = 4329;
  9784. //
  9785. // MessageId: ERROR_UNABLE_TO_EJECT_MOUNTED_MEDIA
  9786. //
  9787. // MessageText:
  9788. //
  9789. // Unable to eject the medium because it is in a drive.
  9790. //
  9791. const auto ERROR_UNABLE_TO_EJECT_MOUNTED_MEDIA = 4330;
  9792. //
  9793. // MessageId: ERROR_CLEANER_SLOT_SET
  9794. //
  9795. // MessageText:
  9796. //
  9797. // A cleaner slot is already reserved.
  9798. //
  9799. const auto ERROR_CLEANER_SLOT_SET = 4331;
  9800. //
  9801. // MessageId: ERROR_CLEANER_SLOT_NOT_SET
  9802. //
  9803. // MessageText:
  9804. //
  9805. // A cleaner slot is not reserved.
  9806. //
  9807. const auto ERROR_CLEANER_SLOT_NOT_SET = 4332;
  9808. //
  9809. // MessageId: ERROR_CLEANER_CARTRIDGE_SPENT
  9810. //
  9811. // MessageText:
  9812. //
  9813. // The cleaner cartridge has performed the maximum number of drive cleanings.
  9814. //
  9815. const auto ERROR_CLEANER_CARTRIDGE_SPENT = 4333;
  9816. //
  9817. // MessageId: ERROR_UNEXPECTED_OMID
  9818. //
  9819. // MessageText:
  9820. //
  9821. // Unexpected on-medium identifier.
  9822. //
  9823. const auto ERROR_UNEXPECTED_OMID = 4334;
  9824. //
  9825. // MessageId: ERROR_CANT_DELETE_LAST_ITEM
  9826. //
  9827. // MessageText:
  9828. //
  9829. // The last remaining item in this group or resource cannot be deleted.
  9830. //
  9831. const auto ERROR_CANT_DELETE_LAST_ITEM = 4335;
  9832. //
  9833. // MessageId: ERROR_MESSAGE_EXCEEDS_MAX_SIZE
  9834. //
  9835. // MessageText:
  9836. //
  9837. // The message provided exceeds the maximum size allowed for this parameter.
  9838. //
  9839. const auto ERROR_MESSAGE_EXCEEDS_MAX_SIZE = 4336;
  9840. //
  9841. // MessageId: ERROR_VOLUME_CONTAINS_SYS_FILES
  9842. //
  9843. // MessageText:
  9844. //
  9845. // The volume contains system or paging files.
  9846. //
  9847. const auto ERROR_VOLUME_CONTAINS_SYS_FILES = 4337;
  9848. //
  9849. // MessageId: ERROR_INDIGENOUS_TYPE
  9850. //
  9851. // MessageText:
  9852. //
  9853. // The media type cannot be removed from this library since at least one drive in the library reports it can support this media type.
  9854. //
  9855. const auto ERROR_INDIGENOUS_TYPE = 4338;
  9856. //
  9857. // MessageId: ERROR_NO_SUPPORTING_DRIVES
  9858. //
  9859. // MessageText:
  9860. //
  9861. // This offline media cannot be mounted on this system since no enabled drives are present which can be used.
  9862. //
  9863. const auto ERROR_NO_SUPPORTING_DRIVES = 4339;
  9864. //
  9865. // MessageId: ERROR_CLEANER_CARTRIDGE_INSTALLED
  9866. //
  9867. // MessageText:
  9868. //
  9869. // A cleaner cartridge is present in the tape library.
  9870. //
  9871. const auto ERROR_CLEANER_CARTRIDGE_INSTALLED = 4340;
  9872. //
  9873. // MessageId: ERROR_IEPORT_FULL
  9874. //
  9875. // MessageText:
  9876. //
  9877. // Cannot use the ieport because it is not empty.
  9878. //
  9879. const auto ERROR_IEPORT_FULL = 4341;
  9880. ///////////////////////////////////////////////////
  9881. // //
  9882. // Remote Storage Service Error codes //
  9883. // //
  9884. // 4350 to 4389 //
  9885. ///////////////////////////////////////////////////
  9886. //
  9887. // MessageId: ERROR_FILE_OFFLINE
  9888. //
  9889. // MessageText:
  9890. //
  9891. // This file is currently not available for use on this computer.
  9892. //
  9893. const auto ERROR_FILE_OFFLINE = 4350;
  9894. //
  9895. // MessageId: ERROR_REMOTE_STORAGE_NOT_ACTIVE
  9896. //
  9897. // MessageText:
  9898. //
  9899. // The remote storage service is not operational at this time.
  9900. //
  9901. const auto ERROR_REMOTE_STORAGE_NOT_ACTIVE = 4351;
  9902. //
  9903. // MessageId: ERROR_REMOTE_STORAGE_MEDIA_ERROR
  9904. //
  9905. // MessageText:
  9906. //
  9907. // The remote storage service encountered a media error.
  9908. //
  9909. const auto ERROR_REMOTE_STORAGE_MEDIA_ERROR = 4352;
  9910. ///////////////////////////////////////////////////
  9911. // //
  9912. // Reparse Point Error codes //
  9913. // //
  9914. // 4390 to 4399 //
  9915. ///////////////////////////////////////////////////
  9916. //
  9917. // MessageId: ERROR_NOT_A_REPARSE_POINT
  9918. //
  9919. // MessageText:
  9920. //
  9921. // The file or directory is not a reparse point.
  9922. //
  9923. const auto ERROR_NOT_A_REPARSE_POINT = 4390;
  9924. //
  9925. // MessageId: ERROR_REPARSE_ATTRIBUTE_CONFLICT
  9926. //
  9927. // MessageText:
  9928. //
  9929. // The reparse point attribute cannot be set because it conflicts with an existing attribute.
  9930. //
  9931. const auto ERROR_REPARSE_ATTRIBUTE_CONFLICT = 4391;
  9932. //
  9933. // MessageId: ERROR_INVALID_REPARSE_DATA
  9934. //
  9935. // MessageText:
  9936. //
  9937. // The data present in the reparse point buffer is invalid.
  9938. //
  9939. const auto ERROR_INVALID_REPARSE_DATA = 4392;
  9940. //
  9941. // MessageId: ERROR_REPARSE_TAG_INVALID
  9942. //
  9943. // MessageText:
  9944. //
  9945. // The tag present in the reparse point buffer is invalid.
  9946. //
  9947. const auto ERROR_REPARSE_TAG_INVALID = 4393;
  9948. //
  9949. // MessageId: ERROR_REPARSE_TAG_MISMATCH
  9950. //
  9951. // MessageText:
  9952. //
  9953. // There is a mismatch between the tag specified in the request and the tag present in the reparse point.
  9954. //
  9955. //
  9956. const auto ERROR_REPARSE_TAG_MISMATCH = 4394;
  9957. ///////////////////////////////////////////////////
  9958. // //
  9959. // Available //
  9960. // //
  9961. // 4400 to 4499 //
  9962. ///////////////////////////////////////////////////
  9963. ///////////////////////////////////////////////////
  9964. // //
  9965. // Single Instance Store (SIS) Error codes //
  9966. // //
  9967. // 4500 to 4549 //
  9968. ///////////////////////////////////////////////////
  9969. //
  9970. // MessageId: ERROR_VOLUME_NOT_SIS_ENABLED
  9971. //
  9972. // MessageText:
  9973. //
  9974. // Single Instance Storage is not available on this volume.
  9975. //
  9976. const auto ERROR_VOLUME_NOT_SIS_ENABLED = 4500;
  9977. ///////////////////////////////////////////////////
  9978. // //
  9979. // Available //
  9980. // //
  9981. // 4550 to 4599 //
  9982. ///////////////////////////////////////////////////
  9983. ///////////////////////////////////////////////////
  9984. // //
  9985. // Cluster Error codes //
  9986. // //
  9987. // 5000 to 5999 //
  9988. ///////////////////////////////////////////////////
  9989. //
  9990. // MessageId: ERROR_DEPENDENT_RESOURCE_EXISTS
  9991. //
  9992. // MessageText:
  9993. //
  9994. // The operation cannot be completed because other resources are dependent on this resource.
  9995. //
  9996. const auto ERROR_DEPENDENT_RESOURCE_EXISTS = 5001;
  9997. //
  9998. // MessageId: ERROR_DEPENDENCY_NOT_FOUND
  9999. //
  10000. // MessageText:
  10001. //
  10002. // The cluster resource dependency cannot be found.
  10003. //
  10004. const auto ERROR_DEPENDENCY_NOT_FOUND = 5002;
  10005. //
  10006. // MessageId: ERROR_DEPENDENCY_ALREADY_EXISTS
  10007. //
  10008. // MessageText:
  10009. //
  10010. // The cluster resource cannot be made dependent on the specified resource because it is already dependent.
  10011. //
  10012. const auto ERROR_DEPENDENCY_ALREADY_EXISTS = 5003;
  10013. //
  10014. // MessageId: ERROR_RESOURCE_NOT_ONLINE
  10015. //
  10016. // MessageText:
  10017. //
  10018. // The cluster resource is not online.
  10019. //
  10020. const auto ERROR_RESOURCE_NOT_ONLINE = 5004;
  10021. //
  10022. // MessageId: ERROR_HOST_NODE_NOT_AVAILABLE
  10023. //
  10024. // MessageText:
  10025. //
  10026. // A cluster node is not available for this operation.
  10027. //
  10028. const auto ERROR_HOST_NODE_NOT_AVAILABLE = 5005;
  10029. //
  10030. // MessageId: ERROR_RESOURCE_NOT_AVAILABLE
  10031. //
  10032. // MessageText:
  10033. //
  10034. // The cluster resource is not available.
  10035. //
  10036. const auto ERROR_RESOURCE_NOT_AVAILABLE = 5006;
  10037. //
  10038. // MessageId: ERROR_RESOURCE_NOT_FOUND
  10039. //
  10040. // MessageText:
  10041. //
  10042. // The cluster resource could not be found.
  10043. //
  10044. const auto ERROR_RESOURCE_NOT_FOUND = 5007;
  10045. //
  10046. // MessageId: ERROR_SHUTDOWN_CLUSTER
  10047. //
  10048. // MessageText:
  10049. //
  10050. // The cluster is being shut down.
  10051. //
  10052. const auto ERROR_SHUTDOWN_CLUSTER = 5008;
  10053. //
  10054. // MessageId: ERROR_CANT_EVICT_ACTIVE_NODE
  10055. //
  10056. // MessageText:
  10057. //
  10058. // A cluster node cannot be evicted from the cluster unless the node is down or it is the last node.
  10059. //
  10060. const auto ERROR_CANT_EVICT_ACTIVE_NODE = 5009;
  10061. //
  10062. // MessageId: ERROR_OBJECT_ALREADY_EXISTS
  10063. //
  10064. // MessageText:
  10065. //
  10066. // The object already exists.
  10067. //
  10068. const auto ERROR_OBJECT_ALREADY_EXISTS = 5010;
  10069. //
  10070. // MessageId: ERROR_OBJECT_IN_LIST
  10071. //
  10072. // MessageText:
  10073. //
  10074. // The object is already in the list.
  10075. //
  10076. const auto ERROR_OBJECT_IN_LIST = 5011;
  10077. //
  10078. // MessageId: ERROR_GROUP_NOT_AVAILABLE
  10079. //
  10080. // MessageText:
  10081. //
  10082. // The cluster group is not available for any new requests.
  10083. //
  10084. const auto ERROR_GROUP_NOT_AVAILABLE = 5012;
  10085. //
  10086. // MessageId: ERROR_GROUP_NOT_FOUND
  10087. //
  10088. // MessageText:
  10089. //
  10090. // The cluster group could not be found.
  10091. //
  10092. const auto ERROR_GROUP_NOT_FOUND = 5013;
  10093. //
  10094. // MessageId: ERROR_GROUP_NOT_ONLINE
  10095. //
  10096. // MessageText:
  10097. //
  10098. // The operation could not be completed because the cluster group is not online.
  10099. //
  10100. const auto ERROR_GROUP_NOT_ONLINE = 5014;
  10101. //
  10102. // MessageId: ERROR_HOST_NODE_NOT_RESOURCE_OWNER
  10103. //
  10104. // MessageText:
  10105. //
  10106. // The operation failed because either the specified cluster node is not the owner of the resource, or the node
  10107. // is not a possible owner of the resource.
  10108. //
  10109. const auto ERROR_HOST_NODE_NOT_RESOURCE_OWNER = 5015;
  10110. //
  10111. // MessageId: ERROR_HOST_NODE_NOT_GROUP_OWNER
  10112. //
  10113. // MessageText:
  10114. //
  10115. // The operation failed because either the specified cluster node is not the owner of the group, or the node
  10116. // is not a possible owner of the group.
  10117. //
  10118. const auto ERROR_HOST_NODE_NOT_GROUP_OWNER = 5016;
  10119. //
  10120. // MessageId: ERROR_RESMON_CREATE_FAILED
  10121. //
  10122. // MessageText:
  10123. //
  10124. // The cluster resource could not be created in the specified resource monitor.
  10125. //
  10126. const auto ERROR_RESMON_CREATE_FAILED = 5017;
  10127. //
  10128. // MessageId: ERROR_RESMON_ONLINE_FAILED
  10129. //
  10130. // MessageText:
  10131. //
  10132. // The cluster resource could not be brought online by the resource monitor.
  10133. //
  10134. const auto ERROR_RESMON_ONLINE_FAILED = 5018;
  10135. //
  10136. // MessageId: ERROR_RESOURCE_ONLINE
  10137. //
  10138. // MessageText:
  10139. //
  10140. // The operation could not be completed because the cluster resource is online.
  10141. //
  10142. const auto ERROR_RESOURCE_ONLINE = 5019;
  10143. //
  10144. // MessageId: ERROR_QUORUM_RESOURCE
  10145. //
  10146. // MessageText:
  10147. //
  10148. // The cluster resource could not be deleted or brought offline because it is the quorum resource.
  10149. //
  10150. const auto ERROR_QUORUM_RESOURCE = 5020;
  10151. //
  10152. // MessageId: ERROR_NOT_QUORUM_CAPABLE
  10153. //
  10154. // MessageText:
  10155. //
  10156. // The cluster could not make the specified resource a quorum resource because it is not capable of being a quorum resource.
  10157. //
  10158. const auto ERROR_NOT_QUORUM_CAPABLE = 5021;
  10159. //
  10160. // MessageId: ERROR_CLUSTER_SHUTTING_DOWN
  10161. //
  10162. // MessageText:
  10163. //
  10164. // The cluster software is shutting down.
  10165. //
  10166. const auto ERROR_CLUSTER_SHUTTING_DOWN = 5022;
  10167. //
  10168. // MessageId: ERROR_INVALID_STATE
  10169. //
  10170. // MessageText:
  10171. //
  10172. // The group or resource is not in the correct state to perform the requested operation.
  10173. //
  10174. const auto ERROR_INVALID_STATE = 5023;
  10175. //
  10176. // MessageId: ERROR_RESOURCE_PROPERTIES_STORED
  10177. //
  10178. // MessageText:
  10179. //
  10180. // The properties were stored but not all changes will take effect until the next time the resource is brought online.
  10181. //
  10182. const auto ERROR_RESOURCE_PROPERTIES_STORED = 5024;
  10183. //
  10184. // MessageId: ERROR_NOT_QUORUM_CLASS
  10185. //
  10186. // MessageText:
  10187. //
  10188. // The cluster could not make the specified resource a quorum resource because it does not belong to a shared storage class.
  10189. //
  10190. const auto ERROR_NOT_QUORUM_CLASS = 5025;
  10191. //
  10192. // MessageId: ERROR_CORE_RESOURCE
  10193. //
  10194. // MessageText:
  10195. //
  10196. // The cluster resource could not be deleted since it is a core resource.
  10197. //
  10198. const auto ERROR_CORE_RESOURCE = 5026;
  10199. //
  10200. // MessageId: ERROR_QUORUM_RESOURCE_ONLINE_FAILED
  10201. //
  10202. // MessageText:
  10203. //
  10204. // The quorum resource failed to come online.
  10205. //
  10206. const auto ERROR_QUORUM_RESOURCE_ONLINE_FAILED = 5027;
  10207. //
  10208. // MessageId: ERROR_QUORUMLOG_OPEN_FAILED
  10209. //
  10210. // MessageText:
  10211. //
  10212. // The quorum log could not be created or mounted successfully.
  10213. //
  10214. const auto ERROR_QUORUMLOG_OPEN_FAILED = 5028;
  10215. //
  10216. // MessageId: ERROR_CLUSTERLOG_CORRUPT
  10217. //
  10218. // MessageText:
  10219. //
  10220. // The cluster log is corrupt.
  10221. //
  10222. const auto ERROR_CLUSTERLOG_CORRUPT = 5029;
  10223. //
  10224. // MessageId: ERROR_CLUSTERLOG_RECORD_EXCEEDS_MAXSIZE
  10225. //
  10226. // MessageText:
  10227. //
  10228. // The record could not be written to the cluster log since it exceeds the maximum size.
  10229. //
  10230. const auto ERROR_CLUSTERLOG_RECORD_EXCEEDS_MAXSIZE = 5030;
  10231. //
  10232. // MessageId: ERROR_CLUSTERLOG_EXCEEDS_MAXSIZE
  10233. //
  10234. // MessageText:
  10235. //
  10236. // The cluster log exceeds its maximum size.
  10237. //
  10238. const auto ERROR_CLUSTERLOG_EXCEEDS_MAXSIZE = 5031;
  10239. //
  10240. // MessageId: ERROR_CLUSTERLOG_CHKPOINT_NOT_FOUND
  10241. //
  10242. // MessageText:
  10243. //
  10244. // No checkpoint record was found in the cluster log.
  10245. //
  10246. const auto ERROR_CLUSTERLOG_CHKPOINT_NOT_FOUND = 5032;
  10247. //
  10248. // MessageId: ERROR_CLUSTERLOG_NOT_ENOUGH_SPACE
  10249. //
  10250. // MessageText:
  10251. //
  10252. // The minimum required disk space needed for logging is not available.
  10253. //
  10254. const auto ERROR_CLUSTERLOG_NOT_ENOUGH_SPACE = 5033;
  10255. //
  10256. // MessageId: ERROR_QUORUM_OWNER_ALIVE
  10257. //
  10258. // MessageText:
  10259. //
  10260. // The cluster node failed to take control of the quorum resource because the resource is owned by another active node.
  10261. //
  10262. const auto ERROR_QUORUM_OWNER_ALIVE = 5034;
  10263. //
  10264. // MessageId: ERROR_NETWORK_NOT_AVAILABLE
  10265. //
  10266. // MessageText:
  10267. //
  10268. // A cluster network is not available for this operation.
  10269. //
  10270. const auto ERROR_NETWORK_NOT_AVAILABLE = 5035;
  10271. //
  10272. // MessageId: ERROR_NODE_NOT_AVAILABLE
  10273. //
  10274. // MessageText:
  10275. //
  10276. // A cluster node is not available for this operation.
  10277. //
  10278. const auto ERROR_NODE_NOT_AVAILABLE = 5036;
  10279. //
  10280. // MessageId: ERROR_ALL_NODES_NOT_AVAILABLE
  10281. //
  10282. // MessageText:
  10283. //
  10284. // All cluster nodes must be running to perform this operation.
  10285. //
  10286. const auto ERROR_ALL_NODES_NOT_AVAILABLE = 5037;
  10287. //
  10288. // MessageId: ERROR_RESOURCE_FAILED
  10289. //
  10290. // MessageText:
  10291. //
  10292. // A cluster resource failed.
  10293. //
  10294. const auto ERROR_RESOURCE_FAILED = 5038;
  10295. //
  10296. // MessageId: ERROR_CLUSTER_INVALID_NODE
  10297. //
  10298. // MessageText:
  10299. //
  10300. // The cluster node is not valid.
  10301. //
  10302. const auto ERROR_CLUSTER_INVALID_NODE = 5039;
  10303. //
  10304. // MessageId: ERROR_CLUSTER_NODE_EXISTS
  10305. //
  10306. // MessageText:
  10307. //
  10308. // The cluster node already exists.
  10309. //
  10310. const auto ERROR_CLUSTER_NODE_EXISTS = 5040;
  10311. //
  10312. // MessageId: ERROR_CLUSTER_JOIN_IN_PROGRESS
  10313. //
  10314. // MessageText:
  10315. //
  10316. // A node is in the process of joining the cluster.
  10317. //
  10318. const auto ERROR_CLUSTER_JOIN_IN_PROGRESS = 5041;
  10319. //
  10320. // MessageId: ERROR_CLUSTER_NODE_NOT_FOUND
  10321. //
  10322. // MessageText:
  10323. //
  10324. // The cluster node was not found.
  10325. //
  10326. const auto ERROR_CLUSTER_NODE_NOT_FOUND = 5042;
  10327. //
  10328. // MessageId: ERROR_CLUSTER_LOCAL_NODE_NOT_FOUND
  10329. //
  10330. // MessageText:
  10331. //
  10332. // The cluster local node information was not found.
  10333. //
  10334. const auto ERROR_CLUSTER_LOCAL_NODE_NOT_FOUND = 5043;
  10335. //
  10336. // MessageId: ERROR_CLUSTER_NETWORK_EXISTS
  10337. //
  10338. // MessageText:
  10339. //
  10340. // The cluster network already exists.
  10341. //
  10342. const auto ERROR_CLUSTER_NETWORK_EXISTS = 5044;
  10343. //
  10344. // MessageId: ERROR_CLUSTER_NETWORK_NOT_FOUND
  10345. //
  10346. // MessageText:
  10347. //
  10348. // The cluster network was not found.
  10349. //
  10350. const auto ERROR_CLUSTER_NETWORK_NOT_FOUND = 5045;
  10351. //
  10352. // MessageId: ERROR_CLUSTER_NETINTERFACE_EXISTS
  10353. //
  10354. // MessageText:
  10355. //
  10356. // The cluster network interface already exists.
  10357. //
  10358. const auto ERROR_CLUSTER_NETINTERFACE_EXISTS = 5046;
  10359. //
  10360. // MessageId: ERROR_CLUSTER_NETINTERFACE_NOT_FOUND
  10361. //
  10362. // MessageText:
  10363. //
  10364. // The cluster network interface was not found.
  10365. //
  10366. const auto ERROR_CLUSTER_NETINTERFACE_NOT_FOUND = 5047;
  10367. //
  10368. // MessageId: ERROR_CLUSTER_INVALID_REQUEST
  10369. //
  10370. // MessageText:
  10371. //
  10372. // The cluster request is not valid for this object.
  10373. //
  10374. const auto ERROR_CLUSTER_INVALID_REQUEST = 5048;
  10375. //
  10376. // MessageId: ERROR_CLUSTER_INVALID_NETWORK_PROVIDER
  10377. //
  10378. // MessageText:
  10379. //
  10380. // The cluster network provider is not valid.
  10381. //
  10382. const auto ERROR_CLUSTER_INVALID_NETWORK_PROVIDER = 5049;
  10383. //
  10384. // MessageId: ERROR_CLUSTER_NODE_DOWN
  10385. //
  10386. // MessageText:
  10387. //
  10388. // The cluster node is down.
  10389. //
  10390. const auto ERROR_CLUSTER_NODE_DOWN = 5050;
  10391. //
  10392. // MessageId: ERROR_CLUSTER_NODE_UNREACHABLE
  10393. //
  10394. // MessageText:
  10395. //
  10396. // The cluster node is not reachable.
  10397. //
  10398. const auto ERROR_CLUSTER_NODE_UNREACHABLE = 5051;
  10399. //
  10400. // MessageId: ERROR_CLUSTER_NODE_NOT_MEMBER
  10401. //
  10402. // MessageText:
  10403. //
  10404. // The cluster node is not a member of the cluster.
  10405. //
  10406. const auto ERROR_CLUSTER_NODE_NOT_MEMBER = 5052;
  10407. //
  10408. // MessageId: ERROR_CLUSTER_JOIN_NOT_IN_PROGRESS
  10409. //
  10410. // MessageText:
  10411. //
  10412. // A cluster join operation is not in progress.
  10413. //
  10414. const auto ERROR_CLUSTER_JOIN_NOT_IN_PROGRESS = 5053;
  10415. //
  10416. // MessageId: ERROR_CLUSTER_INVALID_NETWORK
  10417. //
  10418. // MessageText:
  10419. //
  10420. // The cluster network is not valid.
  10421. //
  10422. const auto ERROR_CLUSTER_INVALID_NETWORK = 5054;
  10423. //
  10424. // MessageId: ERROR_CLUSTER_NODE_UP
  10425. //
  10426. // MessageText:
  10427. //
  10428. // The cluster node is up.
  10429. //
  10430. const auto ERROR_CLUSTER_NODE_UP = 5056;
  10431. //
  10432. // MessageId: ERROR_CLUSTER_IPADDR_IN_USE
  10433. //
  10434. // MessageText:
  10435. //
  10436. // The cluster IP address is already in use.
  10437. //
  10438. const auto ERROR_CLUSTER_IPADDR_IN_USE = 5057;
  10439. //
  10440. // MessageId: ERROR_CLUSTER_NODE_NOT_PAUSED
  10441. //
  10442. // MessageText:
  10443. //
  10444. // The cluster node is not paused.
  10445. //
  10446. const auto ERROR_CLUSTER_NODE_NOT_PAUSED = 5058;
  10447. //
  10448. // MessageId: ERROR_CLUSTER_NO_SECURITY_CONTEXT
  10449. //
  10450. // MessageText:
  10451. //
  10452. // No cluster security context is available.
  10453. //
  10454. const auto ERROR_CLUSTER_NO_SECURITY_CONTEXT = 5059;
  10455. //
  10456. // MessageId: ERROR_CLUSTER_NETWORK_NOT_INTERNAL
  10457. //
  10458. // MessageText:
  10459. //
  10460. // The cluster network is not configured for internal cluster communication.
  10461. //
  10462. const auto ERROR_CLUSTER_NETWORK_NOT_INTERNAL = 5060;
  10463. //
  10464. // MessageId: ERROR_CLUSTER_NODE_ALREADY_UP
  10465. //
  10466. // MessageText:
  10467. //
  10468. // The cluster node is already up.
  10469. //
  10470. const auto ERROR_CLUSTER_NODE_ALREADY_UP = 5061;
  10471. //
  10472. // MessageId: ERROR_CLUSTER_NODE_ALREADY_DOWN
  10473. //
  10474. // MessageText:
  10475. //
  10476. // The cluster node is already down.
  10477. //
  10478. const auto ERROR_CLUSTER_NODE_ALREADY_DOWN = 5062;
  10479. //
  10480. // MessageId: ERROR_CLUSTER_NETWORK_ALREADY_ONLINE
  10481. //
  10482. // MessageText:
  10483. //
  10484. // The cluster network is already online.
  10485. //
  10486. const auto ERROR_CLUSTER_NETWORK_ALREADY_ONLINE = 5063;
  10487. //
  10488. // MessageId: ERROR_CLUSTER_NETWORK_ALREADY_OFFLINE
  10489. //
  10490. // MessageText:
  10491. //
  10492. // The cluster network is already offline.
  10493. //
  10494. const auto ERROR_CLUSTER_NETWORK_ALREADY_OFFLINE = 5064;
  10495. //
  10496. // MessageId: ERROR_CLUSTER_NODE_ALREADY_MEMBER
  10497. //
  10498. // MessageText:
  10499. //
  10500. // The cluster node is already a member of the cluster.
  10501. //
  10502. const auto ERROR_CLUSTER_NODE_ALREADY_MEMBER = 5065;
  10503. //
  10504. // MessageId: ERROR_CLUSTER_LAST_INTERNAL_NETWORK
  10505. //
  10506. // MessageText:
  10507. //
  10508. // The cluster network is the only one configured for internal cluster communication between two or more active cluster nodes. The internal communication capability cannot be removed from the network.
  10509. //
  10510. const auto ERROR_CLUSTER_LAST_INTERNAL_NETWORK = 5066;
  10511. //
  10512. // MessageId: ERROR_CLUSTER_NETWORK_HAS_DEPENDENTS
  10513. //
  10514. // MessageText:
  10515. //
  10516. // One or more cluster resources depend on the network to provide service to clients. The client access capability cannot be removed from the network.
  10517. //
  10518. const auto ERROR_CLUSTER_NETWORK_HAS_DEPENDENTS = 5067;
  10519. //
  10520. // MessageId: ERROR_INVALID_OPERATION_ON_QUORUM
  10521. //
  10522. // MessageText:
  10523. //
  10524. // This operation cannot be performed on the cluster resource as it the quorum resource. You may not bring the quorum resource offline or modify its possible owners list.
  10525. //
  10526. const auto ERROR_INVALID_OPERATION_ON_QUORUM = 5068;
  10527. //
  10528. // MessageId: ERROR_DEPENDENCY_NOT_ALLOWED
  10529. //
  10530. // MessageText:
  10531. //
  10532. // The cluster quorum resource is not allowed to have any dependencies.
  10533. //
  10534. const auto ERROR_DEPENDENCY_NOT_ALLOWED = 5069;
  10535. //
  10536. // MessageId: ERROR_CLUSTER_NODE_PAUSED
  10537. //
  10538. // MessageText:
  10539. //
  10540. // The cluster node is paused.
  10541. //
  10542. const auto ERROR_CLUSTER_NODE_PAUSED = 5070;
  10543. //
  10544. // MessageId: ERROR_NODE_CANT_HOST_RESOURCE
  10545. //
  10546. // MessageText:
  10547. //
  10548. // The cluster resource cannot be brought online. The owner node cannot run this resource.
  10549. //
  10550. const auto ERROR_NODE_CANT_HOST_RESOURCE = 5071;
  10551. //
  10552. // MessageId: ERROR_CLUSTER_NODE_NOT_READY
  10553. //
  10554. // MessageText:
  10555. //
  10556. // The cluster node is not ready to perform the requested operation.
  10557. //
  10558. const auto ERROR_CLUSTER_NODE_NOT_READY = 5072;
  10559. //
  10560. // MessageId: ERROR_CLUSTER_NODE_SHUTTING_DOWN
  10561. //
  10562. // MessageText:
  10563. //
  10564. // The cluster node is shutting down.
  10565. //
  10566. const auto ERROR_CLUSTER_NODE_SHUTTING_DOWN = 5073;
  10567. //
  10568. // MessageId: ERROR_CLUSTER_JOIN_ABORTED
  10569. //
  10570. // MessageText:
  10571. //
  10572. // The cluster join operation was aborted.
  10573. //
  10574. const auto ERROR_CLUSTER_JOIN_ABORTED = 5074;
  10575. //
  10576. // MessageId: ERROR_CLUSTER_INCOMPATIBLE_VERSIONS
  10577. //
  10578. // MessageText:
  10579. //
  10580. // The cluster join operation failed due to incompatible software versions between the joining node and its sponsor.
  10581. //
  10582. const auto ERROR_CLUSTER_INCOMPATIBLE_VERSIONS = 5075;
  10583. //
  10584. // MessageId: ERROR_CLUSTER_MAXNUM_OF_RESOURCES_EXCEEDED
  10585. //
  10586. // MessageText:
  10587. //
  10588. // This resource cannot be created because the cluster has reached the limit on the number of resources it can monitor.
  10589. //
  10590. const auto ERROR_CLUSTER_MAXNUM_OF_RESOURCES_EXCEEDED = 5076;
  10591. //
  10592. // MessageId: ERROR_CLUSTER_SYSTEM_CONFIG_CHANGED
  10593. //
  10594. // MessageText:
  10595. //
  10596. // The system configuration changed during the cluster join or form operation. The join or form operation was aborted.
  10597. //
  10598. const auto ERROR_CLUSTER_SYSTEM_CONFIG_CHANGED = 5077;
  10599. //
  10600. // MessageId: ERROR_CLUSTER_RESOURCE_TYPE_NOT_FOUND
  10601. //
  10602. // MessageText:
  10603. //
  10604. // The specified resource type was not found.
  10605. //
  10606. const auto ERROR_CLUSTER_RESOURCE_TYPE_NOT_FOUND = 5078;
  10607. //
  10608. // MessageId: ERROR_CLUSTER_RESTYPE_NOT_SUPPORTED
  10609. //
  10610. // MessageText:
  10611. //
  10612. // The specified node does not support a resource of this type. This may be due to version inconsistencies or due to the absence of the resource DLL on this node.
  10613. //
  10614. const auto ERROR_CLUSTER_RESTYPE_NOT_SUPPORTED = 5079;
  10615. //
  10616. // MessageId: ERROR_CLUSTER_RESNAME_NOT_FOUND
  10617. //
  10618. // MessageText:
  10619. //
  10620. // The specified resource name is not supported by this resource DLL. This may be due to a bad (or changed) name supplied to the resource DLL.
  10621. //
  10622. const auto ERROR_CLUSTER_RESNAME_NOT_FOUND = 5080;
  10623. //
  10624. // MessageId: ERROR_CLUSTER_NO_RPC_PACKAGES_REGISTERED
  10625. //
  10626. // MessageText:
  10627. //
  10628. // No authentication package could be registered with the RPC server.
  10629. //
  10630. const auto ERROR_CLUSTER_NO_RPC_PACKAGES_REGISTERED = 5081;
  10631. //
  10632. // MessageId: ERROR_CLUSTER_OWNER_NOT_IN_PREFLIST
  10633. //
  10634. // MessageText:
  10635. //
  10636. // You cannot bring the group online because the owner of the group is not in the preferred list for the group. To change the owner node for the group, move the group.
  10637. //
  10638. const auto ERROR_CLUSTER_OWNER_NOT_IN_PREFLIST = 5082;
  10639. //
  10640. // MessageId: ERROR_CLUSTER_DATABASE_SEQMISMATCH
  10641. //
  10642. // MessageText:
  10643. //
  10644. // The join operation failed because the cluster database sequence number has changed or is incompatible with the locker node. This may happen during a join operation if the cluster database was changing during the join.
  10645. //
  10646. const auto ERROR_CLUSTER_DATABASE_SEQMISMATCH = 5083;
  10647. //
  10648. // MessageId: ERROR_RESMON_INVALID_STATE
  10649. //
  10650. // MessageText:
  10651. //
  10652. // The resource monitor will not allow the fail operation to be performed while the resource is in its current state. This may happen if the resource is in a pending state.
  10653. //
  10654. const auto ERROR_RESMON_INVALID_STATE = 5084;
  10655. //
  10656. // MessageId: ERROR_CLUSTER_GUM_NOT_LOCKER
  10657. //
  10658. // MessageText:
  10659. //
  10660. // A non locker code got a request to reserve the lock for making global updates.
  10661. //
  10662. const auto ERROR_CLUSTER_GUM_NOT_LOCKER = 5085;
  10663. //
  10664. // MessageId: ERROR_QUORUM_DISK_NOT_FOUND
  10665. //
  10666. // MessageText:
  10667. //
  10668. // The quorum disk could not be located by the cluster service.
  10669. //
  10670. const auto ERROR_QUORUM_DISK_NOT_FOUND = 5086;
  10671. //
  10672. // MessageId: ERROR_DATABASE_BACKUP_CORRUPT
  10673. //
  10674. // MessageText:
  10675. //
  10676. // The backed up cluster database is possibly corrupt.
  10677. //
  10678. const auto ERROR_DATABASE_BACKUP_CORRUPT = 5087;
  10679. //
  10680. // MessageId: ERROR_CLUSTER_NODE_ALREADY_HAS_DFS_ROOT
  10681. //
  10682. // MessageText:
  10683. //
  10684. // A DFS root already exists in this cluster node.
  10685. //
  10686. const auto ERROR_CLUSTER_NODE_ALREADY_HAS_DFS_ROOT = 5088;
  10687. //
  10688. // MessageId: ERROR_RESOURCE_PROPERTY_UNCHANGEABLE
  10689. //
  10690. // MessageText:
  10691. //
  10692. // An attempt to modify a resource property failed because it conflicts with another existing property.
  10693. //
  10694. const auto ERROR_RESOURCE_PROPERTY_UNCHANGEABLE = 5089;
  10695. /*
  10696. Codes from 4300 through 5889 overlap with codes in ds\published\inc\apperr2.w.
  10697. Do not add any more error codes in that range.
  10698. */
  10699. //
  10700. // MessageId: ERROR_CLUSTER_MEMBERSHIP_INVALID_STATE
  10701. //
  10702. // MessageText:
  10703. //
  10704. // An operation was attempted that is incompatible with the current membership state of the node.
  10705. //
  10706. const auto ERROR_CLUSTER_MEMBERSHIP_INVALID_STATE = 5890;
  10707. //
  10708. // MessageId: ERROR_CLUSTER_QUORUMLOG_NOT_FOUND
  10709. //
  10710. // MessageText:
  10711. //
  10712. // The quorum resource does not contain the quorum log.
  10713. //
  10714. const auto ERROR_CLUSTER_QUORUMLOG_NOT_FOUND = 5891;
  10715. //
  10716. // MessageId: ERROR_CLUSTER_MEMBERSHIP_HALT
  10717. //
  10718. // MessageText:
  10719. //
  10720. // The membership engine requested shutdown of the cluster service on this node.
  10721. //
  10722. const auto ERROR_CLUSTER_MEMBERSHIP_HALT = 5892;
  10723. //
  10724. // MessageId: ERROR_CLUSTER_INSTANCE_ID_MISMATCH
  10725. //
  10726. // MessageText:
  10727. //
  10728. // The join operation failed because the cluster instance ID of the joining node does not match the cluster instance ID of the sponsor node.
  10729. //
  10730. const auto ERROR_CLUSTER_INSTANCE_ID_MISMATCH = 5893;
  10731. //
  10732. // MessageId: ERROR_CLUSTER_NETWORK_NOT_FOUND_FOR_IP
  10733. //
  10734. // MessageText:
  10735. //
  10736. // A matching cluster network for the specified IP address could not be found.
  10737. //
  10738. const auto ERROR_CLUSTER_NETWORK_NOT_FOUND_FOR_IP = 5894;
  10739. //
  10740. // MessageId: ERROR_CLUSTER_PROPERTY_DATA_TYPE_MISMATCH
  10741. //
  10742. // MessageText:
  10743. //
  10744. // The actual data type of the property did not match the expected data type of the property.
  10745. //
  10746. const auto ERROR_CLUSTER_PROPERTY_DATA_TYPE_MISMATCH = 5895;
  10747. //
  10748. // MessageId: ERROR_CLUSTER_EVICT_WITHOUT_CLEANUP
  10749. //
  10750. // MessageText:
  10751. //
  10752. // The cluster node was evicted from the cluster successfully, but the node was not cleaned up. To determine what cleanup steps failed and how to recover, see the Failover Clustering application event log using Event Viewer.
  10753. //
  10754. const auto ERROR_CLUSTER_EVICT_WITHOUT_CLEANUP = 5896;
  10755. //
  10756. // MessageId: ERROR_CLUSTER_PARAMETER_MISMATCH
  10757. //
  10758. // MessageText:
  10759. //
  10760. // Two or more parameter values specified for a resource's properties are in conflict.
  10761. //
  10762. const auto ERROR_CLUSTER_PARAMETER_MISMATCH = 5897;
  10763. //
  10764. // MessageId: ERROR_NODE_CANNOT_BE_CLUSTERED
  10765. //
  10766. // MessageText:
  10767. //
  10768. // This computer cannot be made a member of a cluster.
  10769. //
  10770. const auto ERROR_NODE_CANNOT_BE_CLUSTERED = 5898;
  10771. //
  10772. // MessageId: ERROR_CLUSTER_WRONG_OS_VERSION
  10773. //
  10774. // MessageText:
  10775. //
  10776. // This computer cannot be made a member of a cluster because it does not have the correct version of Windows installed.
  10777. //
  10778. const auto ERROR_CLUSTER_WRONG_OS_VERSION = 5899;
  10779. //
  10780. // MessageId: ERROR_CLUSTER_CANT_CREATE_DUP_CLUSTER_NAME
  10781. //
  10782. // MessageText:
  10783. //
  10784. // A cluster cannot be created with the specified cluster name because that cluster name is already in use. Specify a different name for the cluster.
  10785. //
  10786. const auto ERROR_CLUSTER_CANT_CREATE_DUP_CLUSTER_NAME = 5900;
  10787. //
  10788. // MessageId: ERROR_CLUSCFG_ALREADY_COMMITTED
  10789. //
  10790. // MessageText:
  10791. //
  10792. // The cluster configuration action has already been committed.
  10793. //
  10794. const auto ERROR_CLUSCFG_ALREADY_COMMITTED = 5901;
  10795. //
  10796. // MessageId: ERROR_CLUSCFG_ROLLBACK_FAILED
  10797. //
  10798. // MessageText:
  10799. //
  10800. // The cluster configuration action could not be rolled back.
  10801. //
  10802. const auto ERROR_CLUSCFG_ROLLBACK_FAILED = 5902;
  10803. //
  10804. // MessageId: ERROR_CLUSCFG_SYSTEM_DISK_DRIVE_LETTER_CONFLICT
  10805. //
  10806. // MessageText:
  10807. //
  10808. // The drive letter assigned to a system disk on one node conflicted with the drive letter assigned to a disk on another node.
  10809. //
  10810. const auto ERROR_CLUSCFG_SYSTEM_DISK_DRIVE_LETTER_CONFLICT = 5903;
  10811. //
  10812. // MessageId: ERROR_CLUSTER_OLD_VERSION
  10813. //
  10814. // MessageText:
  10815. //
  10816. // One or more nodes in the cluster are running a version of Windows that does not support this operation.
  10817. //
  10818. const auto ERROR_CLUSTER_OLD_VERSION = 5904;
  10819. //
  10820. // MessageId: ERROR_CLUSTER_MISMATCHED_COMPUTER_ACCT_NAME
  10821. //
  10822. // MessageText:
  10823. //
  10824. // The name of the corresponding computer account doesn't match the Network Name for this resource.
  10825. //
  10826. const auto ERROR_CLUSTER_MISMATCHED_COMPUTER_ACCT_NAME = 5905;
  10827. //
  10828. // MessageId: ERROR_CLUSTER_NO_NET_ADAPTERS
  10829. //
  10830. // MessageText:
  10831. //
  10832. // No network adapters are available.
  10833. //
  10834. const auto ERROR_CLUSTER_NO_NET_ADAPTERS = 5906;
  10835. //
  10836. // MessageId: ERROR_CLUSTER_POISONED
  10837. //
  10838. // MessageText:
  10839. //
  10840. // The cluster node has been poisoned.
  10841. //
  10842. const auto ERROR_CLUSTER_POISONED = 5907;
  10843. //
  10844. // MessageId: ERROR_CLUSTER_GROUP_MOVING
  10845. //
  10846. // MessageText:
  10847. //
  10848. // The group is unable to accept the request since it is moving to another node.
  10849. //
  10850. const auto ERROR_CLUSTER_GROUP_MOVING = 5908;
  10851. //
  10852. // MessageId: ERROR_CLUSTER_RESOURCE_TYPE_BUSY
  10853. //
  10854. // MessageText:
  10855. //
  10856. // The resource type cannot accept the request since is too busy performing another operation.
  10857. //
  10858. const auto ERROR_CLUSTER_RESOURCE_TYPE_BUSY = 5909;
  10859. //
  10860. // MessageId: ERROR_RESOURCE_CALL_TIMED_OUT
  10861. //
  10862. // MessageText:
  10863. //
  10864. // The call to the cluster resource DLL timed out.
  10865. //
  10866. const auto ERROR_RESOURCE_CALL_TIMED_OUT = 5910;
  10867. //
  10868. // MessageId: ERROR_INVALID_CLUSTER_IPV6_ADDRESS
  10869. //
  10870. // MessageText:
  10871. //
  10872. // The address is not valid for an IPv6 Address resource. A global IPv6 address is required, and it must match a cluster network. Compatibility addresses are not permitted.
  10873. //
  10874. const auto ERROR_INVALID_CLUSTER_IPV6_ADDRESS = 5911;
  10875. //
  10876. // MessageId: ERROR_CLUSTER_INTERNAL_INVALID_FUNCTION
  10877. //
  10878. // MessageText:
  10879. //
  10880. // An internal cluster error occurred. A call to an invalid function was attempted.
  10881. //
  10882. const auto ERROR_CLUSTER_INTERNAL_INVALID_FUNCTION = 5912;
  10883. //
  10884. // MessageId: ERROR_CLUSTER_PARAMETER_OUT_OF_BOUNDS
  10885. //
  10886. // MessageText:
  10887. //
  10888. // A parameter value is out of acceptable range.
  10889. //
  10890. const auto ERROR_CLUSTER_PARAMETER_OUT_OF_BOUNDS = 5913;
  10891. //
  10892. // MessageId: ERROR_CLUSTER_PARTIAL_SEND
  10893. //
  10894. // MessageText:
  10895. //
  10896. // A network error occurred while sending data to another node in the cluster. The number of bytes transmitted was less than required.
  10897. //
  10898. const auto ERROR_CLUSTER_PARTIAL_SEND = 5914;
  10899. //
  10900. // MessageId: ERROR_CLUSTER_REGISTRY_INVALID_FUNCTION
  10901. //
  10902. // MessageText:
  10903. //
  10904. // An invalid cluster registry operation was attempted.
  10905. //
  10906. const auto ERROR_CLUSTER_REGISTRY_INVALID_FUNCTION = 5915;
  10907. //
  10908. // MessageId: ERROR_CLUSTER_INVALID_STRING_TERMINATION
  10909. //
  10910. // MessageText:
  10911. //
  10912. // An input string of characters is not properly terminated.
  10913. //
  10914. const auto ERROR_CLUSTER_INVALID_STRING_TERMINATION = 5916;
  10915. //
  10916. // MessageId: ERROR_CLUSTER_INVALID_STRING_FORMAT
  10917. //
  10918. // MessageText:
  10919. //
  10920. // An input string of characters is not in a valid format for the data it represents.
  10921. //
  10922. const auto ERROR_CLUSTER_INVALID_STRING_FORMAT = 5917;
  10923. //
  10924. // MessageId: ERROR_CLUSTER_DATABASE_TRANSACTION_IN_PROGRESS
  10925. //
  10926. // MessageText:
  10927. //
  10928. // An internal cluster error occurred. A cluster database transaction was attempted while a transaction was already in progress.
  10929. //
  10930. const auto ERROR_CLUSTER_DATABASE_TRANSACTION_IN_PROGRESS = 5918;
  10931. //
  10932. // MessageId: ERROR_CLUSTER_DATABASE_TRANSACTION_NOT_IN_PROGRESS
  10933. //
  10934. // MessageText:
  10935. //
  10936. // An internal cluster error occurred. There was an attempt to commit a cluster database transaction while no transaction was in progress.
  10937. //
  10938. const auto ERROR_CLUSTER_DATABASE_TRANSACTION_NOT_IN_PROGRESS = 5919;
  10939. //
  10940. // MessageId: ERROR_CLUSTER_NULL_DATA
  10941. //
  10942. // MessageText:
  10943. //
  10944. // An internal cluster error occurred. Data was not properly initialized.
  10945. //
  10946. const auto ERROR_CLUSTER_NULL_DATA = 5920;
  10947. //
  10948. // MessageId: ERROR_CLUSTER_PARTIAL_READ
  10949. //
  10950. // MessageText:
  10951. //
  10952. // An error occurred while reading from a stream of data. An unexpected number of bytes was returned.
  10953. //
  10954. const auto ERROR_CLUSTER_PARTIAL_READ = 5921;
  10955. //
  10956. // MessageId: ERROR_CLUSTER_PARTIAL_WRITE
  10957. //
  10958. // MessageText:
  10959. //
  10960. // An error occurred while writing to a stream of data. The required number of bytes could not be written.
  10961. //
  10962. const auto ERROR_CLUSTER_PARTIAL_WRITE = 5922;
  10963. //
  10964. // MessageId: ERROR_CLUSTER_CANT_DESERIALIZE_DATA
  10965. //
  10966. // MessageText:
  10967. //
  10968. // An error occurred while deserializing a stream of cluster data.
  10969. //
  10970. const auto ERROR_CLUSTER_CANT_DESERIALIZE_DATA = 5923;
  10971. //
  10972. // MessageId: ERROR_DEPENDENT_RESOURCE_PROPERTY_CONFLICT
  10973. //
  10974. // MessageText:
  10975. //
  10976. // One or more property values for this resource are in conflict with one or more property values associated with its dependent resource(s).
  10977. //
  10978. const auto ERROR_DEPENDENT_RESOURCE_PROPERTY_CONFLICT = 5924;
  10979. //
  10980. // MessageId: ERROR_CLUSTER_NO_QUORUM
  10981. //
  10982. // MessageText:
  10983. //
  10984. // A quorum of cluster nodes was not present to form a cluster.
  10985. //
  10986. const auto ERROR_CLUSTER_NO_QUORUM = 5925;
  10987. //
  10988. // MessageId: ERROR_CLUSTER_INVALID_IPV6_NETWORK
  10989. //
  10990. // MessageText:
  10991. //
  10992. // The cluster network is not valid for an IPv6 Address resource, or it does not match the configured address.
  10993. //
  10994. const auto ERROR_CLUSTER_INVALID_IPV6_NETWORK = 5926;
  10995. //
  10996. // MessageId: ERROR_CLUSTER_INVALID_IPV6_TUNNEL_NETWORK
  10997. //
  10998. // MessageText:
  10999. //
  11000. // The cluster network is not valid for an IPv6 Tunnel resource. Check the configuration of the IP Address resource on which the IPv6 Tunnel resource depends.
  11001. //
  11002. const auto ERROR_CLUSTER_INVALID_IPV6_TUNNEL_NETWORK = 5927;
  11003. //
  11004. // MessageId: ERROR_QUORUM_NOT_ALLOWED_IN_THIS_GROUP
  11005. //
  11006. // MessageText:
  11007. //
  11008. // Quorum resource cannot reside in the Available Storage group.
  11009. //
  11010. const auto ERROR_QUORUM_NOT_ALLOWED_IN_THIS_GROUP = 5928;
  11011. //
  11012. // MessageId: ERROR_DEPENDENCY_TREE_TOO_COMPLEX
  11013. //
  11014. // MessageText:
  11015. //
  11016. // The dependencies for this resource are nested too deeply.
  11017. //
  11018. const auto ERROR_DEPENDENCY_TREE_TOO_COMPLEX = 5929;
  11019. //
  11020. // MessageId: ERROR_EXCEPTION_IN_RESOURCE_CALL
  11021. //
  11022. // MessageText:
  11023. //
  11024. // The call into the resource DLL raised an unhandled exception.
  11025. //
  11026. const auto ERROR_EXCEPTION_IN_RESOURCE_CALL = 5930;
  11027. //
  11028. // MessageId: ERROR_CLUSTER_RHS_FAILED_INITIALIZATION
  11029. //
  11030. // MessageText:
  11031. //
  11032. // The RHS process failed to initialize.
  11033. //
  11034. const auto ERROR_CLUSTER_RHS_FAILED_INITIALIZATION = 5931;
  11035. //
  11036. // MessageId: ERROR_CLUSTER_NOT_INSTALLED
  11037. //
  11038. // MessageText:
  11039. //
  11040. // The Failover Clustering feature is not installed on this node.
  11041. //
  11042. const auto ERROR_CLUSTER_NOT_INSTALLED = 5932;
  11043. //
  11044. // MessageId: ERROR_CLUSTER_RESOURCES_MUST_BE_ONLINE_ON_THE_SAME_NODE
  11045. //
  11046. // MessageText:
  11047. //
  11048. // The resources must be online on the same node for this operation
  11049. //
  11050. const auto ERROR_CLUSTER_RESOURCES_MUST_BE_ONLINE_ON_THE_SAME_NODE = 5933;
  11051. ///////////////////////////////////////////////////
  11052. // //
  11053. // EFS Error codes //
  11054. // //
  11055. // 6000 to 6099 //
  11056. ///////////////////////////////////////////////////
  11057. //
  11058. // MessageId: ERROR_ENCRYPTION_FAILED
  11059. //
  11060. // MessageText:
  11061. //
  11062. // The specified file could not be encrypted.
  11063. //
  11064. const auto ERROR_ENCRYPTION_FAILED = 6000;
  11065. //
  11066. // MessageId: ERROR_DECRYPTION_FAILED
  11067. //
  11068. // MessageText:
  11069. //
  11070. // The specified file could not be decrypted.
  11071. //
  11072. const auto ERROR_DECRYPTION_FAILED = 6001;
  11073. //
  11074. // MessageId: ERROR_FILE_ENCRYPTED
  11075. //
  11076. // MessageText:
  11077. //
  11078. // The specified file is encrypted and the user does not have the ability to decrypt it.
  11079. //
  11080. const auto ERROR_FILE_ENCRYPTED = 6002;
  11081. //
  11082. // MessageId: ERROR_NO_RECOVERY_POLICY
  11083. //
  11084. // MessageText:
  11085. //
  11086. // There is no valid encryption recovery policy configured for this system.
  11087. //
  11088. const auto ERROR_NO_RECOVERY_POLICY = 6003;
  11089. //
  11090. // MessageId: ERROR_NO_EFS
  11091. //
  11092. // MessageText:
  11093. //
  11094. // The required encryption driver is not loaded for this system.
  11095. //
  11096. const auto ERROR_NO_EFS = 6004;
  11097. //
  11098. // MessageId: ERROR_WRONG_EFS
  11099. //
  11100. // MessageText:
  11101. //
  11102. // The file was encrypted with a different encryption driver than is currently loaded.
  11103. //
  11104. const auto ERROR_WRONG_EFS = 6005;
  11105. //
  11106. // MessageId: ERROR_NO_USER_KEYS
  11107. //
  11108. // MessageText:
  11109. //
  11110. // There are no EFS keys defined for the user.
  11111. //
  11112. const auto ERROR_NO_USER_KEYS = 6006;
  11113. //
  11114. // MessageId: ERROR_FILE_NOT_ENCRYPTED
  11115. //
  11116. // MessageText:
  11117. //
  11118. // The specified file is not encrypted.
  11119. //
  11120. const auto ERROR_FILE_NOT_ENCRYPTED = 6007;
  11121. //
  11122. // MessageId: ERROR_NOT_EXPORT_FORMAT
  11123. //
  11124. // MessageText:
  11125. //
  11126. // The specified file is not in the defined EFS export format.
  11127. //
  11128. const auto ERROR_NOT_EXPORT_FORMAT = 6008;
  11129. //
  11130. // MessageId: ERROR_FILE_READ_ONLY
  11131. //
  11132. // MessageText:
  11133. //
  11134. // The specified file is read only.
  11135. //
  11136. const auto ERROR_FILE_READ_ONLY = 6009;
  11137. //
  11138. // MessageId: ERROR_DIR_EFS_DISALLOWED
  11139. //
  11140. // MessageText:
  11141. //
  11142. // The directory has been disabled for encryption.
  11143. //
  11144. const auto ERROR_DIR_EFS_DISALLOWED = 6010;
  11145. //
  11146. // MessageId: ERROR_EFS_SERVER_NOT_TRUSTED
  11147. //
  11148. // MessageText:
  11149. //
  11150. // The server is not trusted for remote encryption operation.
  11151. //
  11152. const auto ERROR_EFS_SERVER_NOT_TRUSTED = 6011;
  11153. //
  11154. // MessageId: ERROR_BAD_RECOVERY_POLICY
  11155. //
  11156. // MessageText:
  11157. //
  11158. // Recovery policy configured for this system contains invalid recovery certificate.
  11159. //
  11160. const auto ERROR_BAD_RECOVERY_POLICY = 6012;
  11161. //
  11162. // MessageId: ERROR_EFS_ALG_BLOB_TOO_BIG
  11163. //
  11164. // MessageText:
  11165. //
  11166. // The encryption algorithm used on the source file needs a bigger key buffer than the one on the destination file.
  11167. //
  11168. const auto ERROR_EFS_ALG_BLOB_TOO_BIG = 6013;
  11169. //
  11170. // MessageId: ERROR_VOLUME_NOT_SUPPORT_EFS
  11171. //
  11172. // MessageText:
  11173. //
  11174. // The disk partition does not support file encryption.
  11175. //
  11176. const auto ERROR_VOLUME_NOT_SUPPORT_EFS = 6014;
  11177. //
  11178. // MessageId: ERROR_EFS_DISABLED
  11179. //
  11180. // MessageText:
  11181. //
  11182. // This machine is disabled for file encryption.
  11183. //
  11184. const auto ERROR_EFS_DISABLED = 6015;
  11185. //
  11186. // MessageId: ERROR_EFS_VERSION_NOT_SUPPORT
  11187. //
  11188. // MessageText:
  11189. //
  11190. // A newer system is required to decrypt this encrypted file.
  11191. //
  11192. const auto ERROR_EFS_VERSION_NOT_SUPPORT = 6016;
  11193. //
  11194. // MessageId: ERROR_CS_ENCRYPTION_INVALID_SERVER_RESPONSE
  11195. //
  11196. // MessageText:
  11197. //
  11198. // The remote server sent an invalid response for a file being opened with Client Side Encryption.
  11199. //
  11200. const auto ERROR_CS_ENCRYPTION_INVALID_SERVER_RESPONSE = 6017;
  11201. //
  11202. // MessageId: ERROR_CS_ENCRYPTION_UNSUPPORTED_SERVER
  11203. //
  11204. // MessageText:
  11205. //
  11206. // Client Side Encryption is not supported by the remote server even though it claims to support it.
  11207. //
  11208. const auto ERROR_CS_ENCRYPTION_UNSUPPORTED_SERVER = 6018;
  11209. //
  11210. // MessageId: ERROR_CS_ENCRYPTION_EXISTING_ENCRYPTED_FILE
  11211. //
  11212. // MessageText:
  11213. //
  11214. // File is encrypted and should be opened in Client Side Encryption mode.
  11215. //
  11216. const auto ERROR_CS_ENCRYPTION_EXISTING_ENCRYPTED_FILE = 6019;
  11217. //
  11218. // MessageId: ERROR_CS_ENCRYPTION_NEW_ENCRYPTED_FILE
  11219. //
  11220. // MessageText:
  11221. //
  11222. // A new encrypted file is being created and a $EFS needs to be provided.
  11223. //
  11224. const auto ERROR_CS_ENCRYPTION_NEW_ENCRYPTED_FILE = 6020;
  11225. //
  11226. // MessageId: ERROR_CS_ENCRYPTION_FILE_NOT_CSE
  11227. //
  11228. // MessageText:
  11229. //
  11230. // The SMB client requested a CSE FSCTL on a non-CSE file.
  11231. //
  11232. const auto ERROR_CS_ENCRYPTION_FILE_NOT_CSE = 6021;
  11233. ///////////////////////////////////////////////////
  11234. // //
  11235. // BROWSER Error codes //
  11236. // //
  11237. // 6100 to 6199 //
  11238. ///////////////////////////////////////////////////
  11239. // This message number is for historical purposes and cannot be changed or re-used.
  11240. //
  11241. // MessageId: ERROR_NO_BROWSER_SERVERS_FOUND
  11242. //
  11243. // MessageText:
  11244. //
  11245. // The list of servers for this workgroup is not currently available
  11246. //
  11247. const auto ERROR_NO_BROWSER_SERVERS_FOUND = 6118;
  11248. ///////////////////////////////////////////////////
  11249. // //
  11250. // Task Scheduler Error codes //
  11251. // NET START must understand //
  11252. // //
  11253. // 6200 to 6249 //
  11254. ///////////////////////////////////////////////////
  11255. //
  11256. // MessageId: SCHED_E_SERVICE_NOT_LOCALSYSTEM
  11257. //
  11258. // MessageText:
  11259. //
  11260. // The Task Scheduler service must be configured to run in the System account to function properly. Individual tasks may be configured to run in other accounts.
  11261. //
  11262. const auto SCHED_E_SERVICE_NOT_LOCALSYSTEM = 6200;
  11263. ///////////////////////////////////////////////////
  11264. // //
  11265. // Available //
  11266. // //
  11267. // 6250 to 6599 //
  11268. ///////////////////////////////////////////////////
  11269. ///////////////////////////////////////////////////
  11270. // //
  11271. // Common Log (CLFS) Error codes //
  11272. // //
  11273. // 6600 to 6699 //
  11274. ///////////////////////////////////////////////////
  11275. //
  11276. // MessageId: ERROR_LOG_SECTOR_INVALID
  11277. //
  11278. // MessageText:
  11279. //
  11280. // Log service encountered an invalid log sector.
  11281. //
  11282. const auto ERROR_LOG_SECTOR_INVALID = 6600;
  11283. //
  11284. // MessageId: ERROR_LOG_SECTOR_PARITY_INVALID
  11285. //
  11286. // MessageText:
  11287. //
  11288. // Log service encountered a log sector with invalid block parity.
  11289. //
  11290. const auto ERROR_LOG_SECTOR_PARITY_INVALID = 6601;
  11291. //
  11292. // MessageId: ERROR_LOG_SECTOR_REMAPPED
  11293. //
  11294. // MessageText:
  11295. //
  11296. // Log service encountered a remapped log sector.
  11297. //
  11298. const auto ERROR_LOG_SECTOR_REMAPPED = 6602;
  11299. //
  11300. // MessageId: ERROR_LOG_BLOCK_INCOMPLETE
  11301. //
  11302. // MessageText:
  11303. //
  11304. // Log service encountered a partial or incomplete log block.
  11305. //
  11306. const auto ERROR_LOG_BLOCK_INCOMPLETE = 6603;
  11307. //
  11308. // MessageId: ERROR_LOG_INVALID_RANGE
  11309. //
  11310. // MessageText:
  11311. //
  11312. // Log service encountered an attempt access data outside the active log range.
  11313. //
  11314. const auto ERROR_LOG_INVALID_RANGE = 6604;
  11315. //
  11316. // MessageId: ERROR_LOG_BLOCKS_EXHAUSTED
  11317. //
  11318. // MessageText:
  11319. //
  11320. // Log service user marshalling buffers are exhausted.
  11321. //
  11322. const auto ERROR_LOG_BLOCKS_EXHAUSTED = 6605;
  11323. //
  11324. // MessageId: ERROR_LOG_READ_CONTEXT_INVALID
  11325. //
  11326. // MessageText:
  11327. //
  11328. // Log service encountered an attempt read from a marshalling area with an invalid read context.
  11329. //
  11330. const auto ERROR_LOG_READ_CONTEXT_INVALID = 6606;
  11331. //
  11332. // MessageId: ERROR_LOG_RESTART_INVALID
  11333. //
  11334. // MessageText:
  11335. //
  11336. // Log service encountered an invalid log restart area.
  11337. //
  11338. const auto ERROR_LOG_RESTART_INVALID = 6607;
  11339. //
  11340. // MessageId: ERROR_LOG_BLOCK_VERSION
  11341. //
  11342. // MessageText:
  11343. //
  11344. // Log service encountered an invalid log block version.
  11345. //
  11346. const auto ERROR_LOG_BLOCK_VERSION = 6608;
  11347. //
  11348. // MessageId: ERROR_LOG_BLOCK_INVALID
  11349. //
  11350. // MessageText:
  11351. //
  11352. // Log service encountered an invalid log block.
  11353. //
  11354. const auto ERROR_LOG_BLOCK_INVALID = 6609;
  11355. //
  11356. // MessageId: ERROR_LOG_READ_MODE_INVALID
  11357. //
  11358. // MessageText:
  11359. //
  11360. // Log service encountered an attempt to read the log with an invalid read mode.
  11361. //
  11362. const auto ERROR_LOG_READ_MODE_INVALID = 6610;
  11363. //
  11364. // MessageId: ERROR_LOG_NO_RESTART
  11365. //
  11366. // MessageText:
  11367. //
  11368. // Log service encountered a log stream with no restart area.
  11369. //
  11370. const auto ERROR_LOG_NO_RESTART = 6611;
  11371. //
  11372. // MessageId: ERROR_LOG_METADATA_CORRUPT
  11373. //
  11374. // MessageText:
  11375. //
  11376. // Log service encountered a corrupted metadata file.
  11377. //
  11378. const auto ERROR_LOG_METADATA_CORRUPT = 6612;
  11379. //
  11380. // MessageId: ERROR_LOG_METADATA_INVALID
  11381. //
  11382. // MessageText:
  11383. //
  11384. // Log service encountered a metadata file that could not be created by the log file system.
  11385. //
  11386. const auto ERROR_LOG_METADATA_INVALID = 6613;
  11387. //
  11388. // MessageId: ERROR_LOG_METADATA_INCONSISTENT
  11389. //
  11390. // MessageText:
  11391. //
  11392. // Log service encountered a metadata file with inconsistent data.
  11393. //
  11394. const auto ERROR_LOG_METADATA_INCONSISTENT = 6614;
  11395. //
  11396. // MessageId: ERROR_LOG_RESERVATION_INVALID
  11397. //
  11398. // MessageText:
  11399. //
  11400. // Log service encountered an attempt to erroneous allocate or dispose reservation space.
  11401. //
  11402. const auto ERROR_LOG_RESERVATION_INVALID = 6615;
  11403. //
  11404. // MessageId: ERROR_LOG_CANT_DELETE
  11405. //
  11406. // MessageText:
  11407. //
  11408. // Log service cannot delete log file or file system container.
  11409. //
  11410. const auto ERROR_LOG_CANT_DELETE = 6616;
  11411. //
  11412. // MessageId: ERROR_LOG_CONTAINER_LIMIT_EXCEEDED
  11413. //
  11414. // MessageText:
  11415. //
  11416. // Log service has reached the maximum allowable containers allocated to a log file.
  11417. //
  11418. const auto ERROR_LOG_CONTAINER_LIMIT_EXCEEDED = 6617;
  11419. //
  11420. // MessageId: ERROR_LOG_START_OF_LOG
  11421. //
  11422. // MessageText:
  11423. //
  11424. // Log service has attempted to read or write backward past the start of the log.
  11425. //
  11426. const auto ERROR_LOG_START_OF_LOG = 6618;
  11427. //
  11428. // MessageId: ERROR_LOG_POLICY_ALREADY_INSTALLED
  11429. //
  11430. // MessageText:
  11431. //
  11432. // Log policy could not be installed because a policy of the same type is already present.
  11433. //
  11434. const auto ERROR_LOG_POLICY_ALREADY_INSTALLED = 6619;
  11435. //
  11436. // MessageId: ERROR_LOG_POLICY_NOT_INSTALLED
  11437. //
  11438. // MessageText:
  11439. //
  11440. // Log policy in question was not installed at the time of the request.
  11441. //
  11442. const auto ERROR_LOG_POLICY_NOT_INSTALLED = 6620;
  11443. //
  11444. // MessageId: ERROR_LOG_POLICY_INVALID
  11445. //
  11446. // MessageText:
  11447. //
  11448. // The installed set of policies on the log is invalid.
  11449. //
  11450. const auto ERROR_LOG_POLICY_INVALID = 6621;
  11451. //
  11452. // MessageId: ERROR_LOG_POLICY_CONFLICT
  11453. //
  11454. // MessageText:
  11455. //
  11456. // A policy on the log in question prevented the operation from completing.
  11457. //
  11458. const auto ERROR_LOG_POLICY_CONFLICT = 6622;
  11459. //
  11460. // MessageId: ERROR_LOG_PINNED_ARCHIVE_TAIL
  11461. //
  11462. // MessageText:
  11463. //
  11464. // Log space cannot be reclaimed because the log is pinned by the archive tail.
  11465. //
  11466. const auto ERROR_LOG_PINNED_ARCHIVE_TAIL = 6623;
  11467. //
  11468. // MessageId: ERROR_LOG_RECORD_NONEXISTENT
  11469. //
  11470. // MessageText:
  11471. //
  11472. // Log record is not a record in the log file.
  11473. //
  11474. const auto ERROR_LOG_RECORD_NONEXISTENT = 6624;
  11475. //
  11476. // MessageId: ERROR_LOG_RECORDS_RESERVED_INVALID
  11477. //
  11478. // MessageText:
  11479. //
  11480. // Number of reserved log records or the adjustment of the number of reserved log records is invalid.
  11481. //
  11482. const auto ERROR_LOG_RECORDS_RESERVED_INVALID = 6625;
  11483. //
  11484. // MessageId: ERROR_LOG_SPACE_RESERVED_INVALID
  11485. //
  11486. // MessageText:
  11487. //
  11488. // Reserved log space or the adjustment of the log space is invalid.
  11489. //
  11490. const auto ERROR_LOG_SPACE_RESERVED_INVALID = 6626;
  11491. //
  11492. // MessageId: ERROR_LOG_TAIL_INVALID
  11493. //
  11494. // MessageText:
  11495. //
  11496. // An new or existing archive tail or base of the active log is invalid.
  11497. //
  11498. const auto ERROR_LOG_TAIL_INVALID = 6627;
  11499. //
  11500. // MessageId: ERROR_LOG_FULL
  11501. //
  11502. // MessageText:
  11503. //
  11504. // Log space is exhausted.
  11505. //
  11506. const auto ERROR_LOG_FULL = 6628;
  11507. //
  11508. // MessageId: ERROR_COULD_NOT_RESIZE_LOG
  11509. //
  11510. // MessageText:
  11511. //
  11512. // The log could not be set to the requested size.
  11513. //
  11514. const auto ERROR_COULD_NOT_RESIZE_LOG = 6629;
  11515. //
  11516. // MessageId: ERROR_LOG_MULTIPLEXED
  11517. //
  11518. // MessageText:
  11519. //
  11520. // Log is multiplexed, no direct writes to the physical log is allowed.
  11521. //
  11522. const auto ERROR_LOG_MULTIPLEXED = 6630;
  11523. //
  11524. // MessageId: ERROR_LOG_DEDICATED
  11525. //
  11526. // MessageText:
  11527. //
  11528. // The operation failed because the log is a dedicated log.
  11529. //
  11530. const auto ERROR_LOG_DEDICATED = 6631;
  11531. //
  11532. // MessageId: ERROR_LOG_ARCHIVE_NOT_IN_PROGRESS
  11533. //
  11534. // MessageText:
  11535. //
  11536. // The operation requires an archive context.
  11537. //
  11538. const auto ERROR_LOG_ARCHIVE_NOT_IN_PROGRESS = 6632;
  11539. //
  11540. // MessageId: ERROR_LOG_ARCHIVE_IN_PROGRESS
  11541. //
  11542. // MessageText:
  11543. //
  11544. // Log archival is in progress.
  11545. //
  11546. const auto ERROR_LOG_ARCHIVE_IN_PROGRESS = 6633;
  11547. //
  11548. // MessageId: ERROR_LOG_EPHEMERAL
  11549. //
  11550. // MessageText:
  11551. //
  11552. // The operation requires a non-ephemeral log, but the log is ephemeral.
  11553. //
  11554. const auto ERROR_LOG_EPHEMERAL = 6634;
  11555. //
  11556. // MessageId: ERROR_LOG_NOT_ENOUGH_CONTAINERS
  11557. //
  11558. // MessageText:
  11559. //
  11560. // The log must have at least two containers before it can be read from or written to.
  11561. //
  11562. const auto ERROR_LOG_NOT_ENOUGH_CONTAINERS = 6635;
  11563. //
  11564. // MessageId: ERROR_LOG_CLIENT_ALREADY_REGISTERED
  11565. //
  11566. // MessageText:
  11567. //
  11568. // A log client has already registered on the stream.
  11569. //
  11570. const auto ERROR_LOG_CLIENT_ALREADY_REGISTERED = 6636;
  11571. //
  11572. // MessageId: ERROR_LOG_CLIENT_NOT_REGISTERED
  11573. //
  11574. // MessageText:
  11575. //
  11576. // A log client has not been registered on the stream.
  11577. //
  11578. const auto ERROR_LOG_CLIENT_NOT_REGISTERED = 6637;
  11579. //
  11580. // MessageId: ERROR_LOG_FULL_HANDLER_IN_PROGRESS
  11581. //
  11582. // MessageText:
  11583. //
  11584. // A request has already been made to handle the log full condition.
  11585. //
  11586. const auto ERROR_LOG_FULL_HANDLER_IN_PROGRESS = 6638;
  11587. //
  11588. // MessageId: ERROR_LOG_CONTAINER_READ_FAILED
  11589. //
  11590. // MessageText:
  11591. //
  11592. // Log service enountered an error when attempting to read from a log container.
  11593. //
  11594. const auto ERROR_LOG_CONTAINER_READ_FAILED = 6639;
  11595. //
  11596. // MessageId: ERROR_LOG_CONTAINER_WRITE_FAILED
  11597. //
  11598. // MessageText:
  11599. //
  11600. // Log service enountered an error when attempting to write to a log container.
  11601. //
  11602. const auto ERROR_LOG_CONTAINER_WRITE_FAILED = 6640;
  11603. //
  11604. // MessageId: ERROR_LOG_CONTAINER_OPEN_FAILED
  11605. //
  11606. // MessageText:
  11607. //
  11608. // Log service enountered an error when attempting open a log container.
  11609. //
  11610. const auto ERROR_LOG_CONTAINER_OPEN_FAILED = 6641;
  11611. //
  11612. // MessageId: ERROR_LOG_CONTAINER_STATE_INVALID
  11613. //
  11614. // MessageText:
  11615. //
  11616. // Log service enountered an invalid container state when attempting a requested action.
  11617. //
  11618. const auto ERROR_LOG_CONTAINER_STATE_INVALID = 6642;
  11619. //
  11620. // MessageId: ERROR_LOG_STATE_INVALID
  11621. //
  11622. // MessageText:
  11623. //
  11624. // Log service is not in the correct state to perform a requested action.
  11625. //
  11626. const auto ERROR_LOG_STATE_INVALID = 6643;
  11627. //
  11628. // MessageId: ERROR_LOG_PINNED
  11629. //
  11630. // MessageText:
  11631. //
  11632. // Log space cannot be reclaimed because the log is pinned.
  11633. //
  11634. const auto ERROR_LOG_PINNED = 6644;
  11635. //
  11636. // MessageId: ERROR_LOG_METADATA_FLUSH_FAILED
  11637. //
  11638. // MessageText:
  11639. //
  11640. // Log metadata flush failed.
  11641. //
  11642. const auto ERROR_LOG_METADATA_FLUSH_FAILED = 6645;
  11643. //
  11644. // MessageId: ERROR_LOG_INCONSISTENT_SECURITY
  11645. //
  11646. // MessageText:
  11647. //
  11648. // Security on the log and its containers is inconsistent.
  11649. //
  11650. const auto ERROR_LOG_INCONSISTENT_SECURITY = 6646;
  11651. //
  11652. // MessageId: ERROR_LOG_APPENDED_FLUSH_FAILED
  11653. //
  11654. // MessageText:
  11655. //
  11656. // Records were appended to the log or reservation changes were made, but the log could not be flushed.
  11657. //
  11658. const auto ERROR_LOG_APPENDED_FLUSH_FAILED = 6647;
  11659. //
  11660. // MessageId: ERROR_LOG_PINNED_RESERVATION
  11661. //
  11662. // MessageText:
  11663. //
  11664. // The log is pinned due to reservation consuming most of the log space. Free some reserved records to make space available.
  11665. //
  11666. const auto ERROR_LOG_PINNED_RESERVATION = 6648;
  11667. ///////////////////////////////////////////////////
  11668. // //
  11669. // Transaction (KTM) Error codes //
  11670. // //
  11671. // 6700 to 6799 //
  11672. ///////////////////////////////////////////////////
  11673. //
  11674. // MessageId: ERROR_INVALID_TRANSACTION
  11675. //
  11676. // MessageText:
  11677. //
  11678. // The transaction handle associated with this operation is not valid.
  11679. //
  11680. const auto ERROR_INVALID_TRANSACTION = 6700;
  11681. //
  11682. // MessageId: ERROR_TRANSACTION_NOT_ACTIVE
  11683. //
  11684. // MessageText:
  11685. //
  11686. // The requested operation was made in the context of a transaction that is no longer active.
  11687. //
  11688. const auto ERROR_TRANSACTION_NOT_ACTIVE = 6701;
  11689. //
  11690. // MessageId: ERROR_TRANSACTION_REQUEST_NOT_VALID
  11691. //
  11692. // MessageText:
  11693. //
  11694. // The requested operation is not valid on the Transaction object in its current state.
  11695. //
  11696. const auto ERROR_TRANSACTION_REQUEST_NOT_VALID = 6702;
  11697. //
  11698. // MessageId: ERROR_TRANSACTION_NOT_REQUESTED
  11699. //
  11700. // MessageText:
  11701. //
  11702. // The caller has called a response API, but the response is not expected because the TM did not issue the corresponding request to the caller.
  11703. //
  11704. const auto ERROR_TRANSACTION_NOT_REQUESTED = 6703;
  11705. //
  11706. // MessageId: ERROR_TRANSACTION_ALREADY_ABORTED
  11707. //
  11708. // MessageText:
  11709. //
  11710. // It is too late to perform the requested operation, since the Transaction has already been aborted.
  11711. //
  11712. const auto ERROR_TRANSACTION_ALREADY_ABORTED = 6704;
  11713. //
  11714. // MessageId: ERROR_TRANSACTION_ALREADY_COMMITTED
  11715. //
  11716. // MessageText:
  11717. //
  11718. // It is too late to perform the requested operation, since the Transaction has already been committed.
  11719. //
  11720. const auto ERROR_TRANSACTION_ALREADY_COMMITTED = 6705;
  11721. //
  11722. // MessageId: ERROR_TM_INITIALIZATION_FAILED
  11723. //
  11724. // MessageText:
  11725. //
  11726. // The Transaction Manager was unable to be successfully initialized. Transacted operations are not supported.
  11727. //
  11728. const auto ERROR_TM_INITIALIZATION_FAILED = 6706;
  11729. //
  11730. // MessageId: ERROR_RESOURCEMANAGER_READ_ONLY
  11731. //
  11732. // MessageText:
  11733. //
  11734. // The specified ResourceManager made no changes or updates to the resource under this transaction.
  11735. //
  11736. const auto ERROR_RESOURCEMANAGER_READ_ONLY = 6707;
  11737. //
  11738. // MessageId: ERROR_TRANSACTION_NOT_JOINED
  11739. //
  11740. // MessageText:
  11741. //
  11742. // The resource manager has attempted to prepare a transaction that it has not successfully joined.
  11743. //
  11744. const auto ERROR_TRANSACTION_NOT_JOINED = 6708;
  11745. //
  11746. // MessageId: ERROR_TRANSACTION_SUPERIOR_EXISTS
  11747. //
  11748. // MessageText:
  11749. //
  11750. // The Transaction object already has a superior enlistment, and the caller attempted an operation that would have created a new superior. Only a single superior enlistment is allow.
  11751. //
  11752. const auto ERROR_TRANSACTION_SUPERIOR_EXISTS = 6709;
  11753. //
  11754. // MessageId: ERROR_CRM_PROTOCOL_ALREADY_EXISTS
  11755. //
  11756. // MessageText:
  11757. //
  11758. // The RM tried to register a protocol that already exists.
  11759. //
  11760. const auto ERROR_CRM_PROTOCOL_ALREADY_EXISTS = 6710;
  11761. //
  11762. // MessageId: ERROR_TRANSACTION_PROPAGATION_FAILED
  11763. //
  11764. // MessageText:
  11765. //
  11766. // The attempt to propagate the Transaction failed.
  11767. //
  11768. const auto ERROR_TRANSACTION_PROPAGATION_FAILED = 6711;
  11769. //
  11770. // MessageId: ERROR_CRM_PROTOCOL_NOT_FOUND
  11771. //
  11772. // MessageText:
  11773. //
  11774. // The requested propagation protocol was not registered as a CRM.
  11775. //
  11776. const auto ERROR_CRM_PROTOCOL_NOT_FOUND = 6712;
  11777. //
  11778. // MessageId: ERROR_TRANSACTION_INVALID_MARSHALL_BUFFER
  11779. //
  11780. // MessageText:
  11781. //
  11782. // The buffer passed in to PushTransaction or PullTransaction is not in a valid format.
  11783. //
  11784. const auto ERROR_TRANSACTION_INVALID_MARSHALL_BUFFER = 6713;
  11785. //
  11786. // MessageId: ERROR_CURRENT_TRANSACTION_NOT_VALID
  11787. //
  11788. // MessageText:
  11789. //
  11790. // The current transaction context associated with the thread is not a valid handle to a transaction object.
  11791. //
  11792. const auto ERROR_CURRENT_TRANSACTION_NOT_VALID = 6714;
  11793. //
  11794. // MessageId: ERROR_TRANSACTION_NOT_FOUND
  11795. //
  11796. // MessageText:
  11797. //
  11798. // The specified Transaction object could not be opened, because it was not found.
  11799. //
  11800. const auto ERROR_TRANSACTION_NOT_FOUND = 6715;
  11801. //
  11802. // MessageId: ERROR_RESOURCEMANAGER_NOT_FOUND
  11803. //
  11804. // MessageText:
  11805. //
  11806. // The specified ResourceManager object could not be opened, because it was not found.
  11807. //
  11808. const auto ERROR_RESOURCEMANAGER_NOT_FOUND = 6716;
  11809. //
  11810. // MessageId: ERROR_ENLISTMENT_NOT_FOUND
  11811. //
  11812. // MessageText:
  11813. //
  11814. // The specified Enlistment object could not be opened, because it was not found.
  11815. //
  11816. const auto ERROR_ENLISTMENT_NOT_FOUND = 6717;
  11817. //
  11818. // MessageId: ERROR_TRANSACTIONMANAGER_NOT_FOUND
  11819. //
  11820. // MessageText:
  11821. //
  11822. // The specified TransactionManager object could not be opened, because it was not found.
  11823. //
  11824. const auto ERROR_TRANSACTIONMANAGER_NOT_FOUND = 6718;
  11825. //
  11826. // MessageId: ERROR_TRANSACTIONMANAGER_NOT_ONLINE
  11827. //
  11828. // MessageText:
  11829. //
  11830. // The specified ResourceManager was unable to create an enlistment, because its associated TransactionManager is not online.
  11831. //
  11832. const auto ERROR_TRANSACTIONMANAGER_NOT_ONLINE = 6719;
  11833. //
  11834. // MessageId: ERROR_TRANSACTIONMANAGER_RECOVERY_NAME_COLLISION
  11835. //
  11836. // MessageText:
  11837. //
  11838. // The specified TransactionManager was unable to create the objects contained in its logfile in the Ob namespace. Therefore, the TransactionManager was unable to recover.
  11839. //
  11840. const auto ERROR_TRANSACTIONMANAGER_RECOVERY_NAME_COLLISION = 6720;
  11841. //
  11842. // MessageId: ERROR_TRANSACTION_NOT_ROOT
  11843. //
  11844. // MessageText:
  11845. //
  11846. // The call to create a superior Enlistment on this Transaction object could not be completed, because the Transaction object specified for the enlistment is a subordinate branch of the Transaction. Only the root of the Transactoin can be enlisted on as a superior.
  11847. //
  11848. const auto ERROR_TRANSACTION_NOT_ROOT = 6721;
  11849. //
  11850. // MessageId: ERROR_TRANSACTION_OBJECT_EXPIRED
  11851. //
  11852. // MessageText:
  11853. //
  11854. // Because the associated transaction manager or resource manager has been closed, the handle is no longer valid.
  11855. //
  11856. const auto ERROR_TRANSACTION_OBJECT_EXPIRED = 6722;
  11857. //
  11858. // MessageId: ERROR_TRANSACTION_RESPONSE_NOT_ENLISTED
  11859. //
  11860. // MessageText:
  11861. //
  11862. // The specified operation could not be performed on this Superior enlistment, because the enlistment was not created with the corresponding completion response in the NotificationMask.
  11863. //
  11864. const auto ERROR_TRANSACTION_RESPONSE_NOT_ENLISTED = 6723;
  11865. //
  11866. // MessageId: ERROR_TRANSACTION_RECORD_TOO_LONG
  11867. //
  11868. // MessageText:
  11869. //
  11870. // The specified operation could not be performed, because the record that would be logged was too long. This can occur because of two conditions: either there are too many Enlistments on this Transaction, or the combined RecoveryInformation being logged on behalf of those Enlistments is too long.
  11871. //
  11872. const auto ERROR_TRANSACTION_RECORD_TOO_LONG = 6724;
  11873. //
  11874. // MessageId: ERROR_IMPLICIT_TRANSACTION_NOT_SUPPORTED
  11875. //
  11876. // MessageText:
  11877. //
  11878. // Implicit transaction are not supported.
  11879. //
  11880. const auto ERROR_IMPLICIT_TRANSACTION_NOT_SUPPORTED = 6725;
  11881. //
  11882. // MessageId: ERROR_TRANSACTION_INTEGRITY_VIOLATED
  11883. //
  11884. // MessageText:
  11885. //
  11886. // The kernel transaction manager had to abort or forget the transaction because it blocked forward progress.
  11887. //
  11888. const auto ERROR_TRANSACTION_INTEGRITY_VIOLATED = 6726;
  11889. ///////////////////////////////////////////////////
  11890. // //
  11891. // Transactional File Services (TxF) //
  11892. // Error codes //
  11893. // //
  11894. // 6800 to 6899 //
  11895. ///////////////////////////////////////////////////
  11896. //
  11897. // MessageId: ERROR_TRANSACTIONAL_CONFLICT
  11898. //
  11899. // MessageText:
  11900. //
  11901. // The function attempted to use a name that is reserved for use by another transaction.
  11902. //
  11903. const auto ERROR_TRANSACTIONAL_CONFLICT = 6800;
  11904. //
  11905. // MessageId: ERROR_RM_NOT_ACTIVE
  11906. //
  11907. // MessageText:
  11908. //
  11909. // Transaction support within the specified file system resource manager is not started or was shutdown due to an error.
  11910. //
  11911. const auto ERROR_RM_NOT_ACTIVE = 6801;
  11912. //
  11913. // MessageId: ERROR_RM_METADATA_CORRUPT
  11914. //
  11915. // MessageText:
  11916. //
  11917. // The metadata of the RM has been corrupted. The RM will not function.
  11918. //
  11919. const auto ERROR_RM_METADATA_CORRUPT = 6802;
  11920. //
  11921. // MessageId: ERROR_DIRECTORY_NOT_RM
  11922. //
  11923. // MessageText:
  11924. //
  11925. // The specified directory does not contain a resource manager.
  11926. //
  11927. const auto ERROR_DIRECTORY_NOT_RM = 6803;
  11928. //
  11929. // MessageId: ERROR_TRANSACTIONS_UNSUPPORTED_REMOTE
  11930. //
  11931. // MessageText:
  11932. //
  11933. // The remote server or share does not support transacted file operations.
  11934. //
  11935. const auto ERROR_TRANSACTIONS_UNSUPPORTED_REMOTE = 6805;
  11936. //
  11937. // MessageId: ERROR_LOG_RESIZE_INVALID_SIZE
  11938. //
  11939. // MessageText:
  11940. //
  11941. // The requested log size is invalid.
  11942. //
  11943. const auto ERROR_LOG_RESIZE_INVALID_SIZE = 6806;
  11944. //
  11945. // MessageId: ERROR_OBJECT_NO_LONGER_EXISTS
  11946. //
  11947. // MessageText:
  11948. //
  11949. // The object (file, stream, link) corresponding to the handle has been deleted by a Transaction Savepoint Rollback.
  11950. //
  11951. const auto ERROR_OBJECT_NO_LONGER_EXISTS = 6807;
  11952. //
  11953. // MessageId: ERROR_STREAM_MINIVERSION_NOT_FOUND
  11954. //
  11955. // MessageText:
  11956. //
  11957. // The specified file miniversion was not found for this transacted file open.
  11958. //
  11959. const auto ERROR_STREAM_MINIVERSION_NOT_FOUND = 6808;
  11960. //
  11961. // MessageId: ERROR_STREAM_MINIVERSION_NOT_VALID
  11962. //
  11963. // MessageText:
  11964. //
  11965. // The specified file miniversion was found but has been invalidated. Most likely cause is a transaction savepoint rollback.
  11966. //
  11967. const auto ERROR_STREAM_MINIVERSION_NOT_VALID = 6809;
  11968. //
  11969. // MessageId: ERROR_MINIVERSION_INACCESSIBLE_FROM_SPECIFIED_TRANSACTION
  11970. //
  11971. // MessageText:
  11972. //
  11973. // A miniversion may only be opened in the context of the transaction that created it.
  11974. //
  11975. const auto ERROR_MINIVERSION_INACCESSIBLE_FROM_SPECIFIED_TRANSACTION = 6810;
  11976. //
  11977. // MessageId: ERROR_CANT_OPEN_MINIVERSION_WITH_MODIFY_INTENT
  11978. //
  11979. // MessageText:
  11980. //
  11981. // It is not possible to open a miniversion with modify access.
  11982. //
  11983. const auto ERROR_CANT_OPEN_MINIVERSION_WITH_MODIFY_INTENT = 6811;
  11984. //
  11985. // MessageId: ERROR_CANT_CREATE_MORE_STREAM_MINIVERSIONS
  11986. //
  11987. // MessageText:
  11988. //
  11989. // It is not possible to create any more miniversions for this stream.
  11990. //
  11991. const auto ERROR_CANT_CREATE_MORE_STREAM_MINIVERSIONS = 6812;
  11992. //
  11993. // MessageId: ERROR_REMOTE_FILE_VERSION_MISMATCH
  11994. //
  11995. // MessageText:
  11996. //
  11997. // The remote server sent mismatching version number or Fid for a file opened with transactions.
  11998. //
  11999. const auto ERROR_REMOTE_FILE_VERSION_MISMATCH = 6814;
  12000. //
  12001. // MessageId: ERROR_HANDLE_NO_LONGER_VALID
  12002. //
  12003. // MessageText:
  12004. //
  12005. // The handle has been invalidated by a transaction. The most likely cause is the presence of memory mapping on a file or an open handle when the transaction ended or rolled back to savepoint.
  12006. //
  12007. const auto ERROR_HANDLE_NO_LONGER_VALID = 6815;
  12008. //
  12009. // MessageId: ERROR_NO_TXF_METADATA
  12010. //
  12011. // MessageText:
  12012. //
  12013. // There is no transaction metadata on the file.
  12014. //
  12015. const auto ERROR_NO_TXF_METADATA = 6816;
  12016. //
  12017. // MessageId: ERROR_LOG_CORRUPTION_DETECTED
  12018. //
  12019. // MessageText:
  12020. //
  12021. // The log data is corrupt.
  12022. //
  12023. const auto ERROR_LOG_CORRUPTION_DETECTED = 6817;
  12024. //
  12025. // MessageId: ERROR_CANT_RECOVER_WITH_HANDLE_OPEN
  12026. //
  12027. // MessageText:
  12028. //
  12029. // The file can't be recovered because there is a handle still open on it.
  12030. //
  12031. const auto ERROR_CANT_RECOVER_WITH_HANDLE_OPEN = 6818;
  12032. //
  12033. // MessageId: ERROR_RM_DISCONNECTED
  12034. //
  12035. // MessageText:
  12036. //
  12037. // The transaction outcome is unavailable because the resource manager responsible for it has disconnected.
  12038. //
  12039. const auto ERROR_RM_DISCONNECTED = 6819;
  12040. //
  12041. // MessageId: ERROR_ENLISTMENT_NOT_SUPERIOR
  12042. //
  12043. // MessageText:
  12044. //
  12045. // The request was rejected because the enlistment in question is not a superior enlistment.
  12046. //
  12047. const auto ERROR_ENLISTMENT_NOT_SUPERIOR = 6820;
  12048. //
  12049. // MessageId: ERROR_RECOVERY_NOT_NEEDED
  12050. //
  12051. // MessageText:
  12052. //
  12053. // The transactional resource manager is already consistent. Recovery is not needed.
  12054. //
  12055. const auto ERROR_RECOVERY_NOT_NEEDED = 6821;
  12056. //
  12057. // MessageId: ERROR_RM_ALREADY_STARTED
  12058. //
  12059. // MessageText:
  12060. //
  12061. // The transactional resource manager has already been started.
  12062. //
  12063. const auto ERROR_RM_ALREADY_STARTED = 6822;
  12064. //
  12065. // MessageId: ERROR_FILE_IDENTITY_NOT_PERSISTENT
  12066. //
  12067. // MessageText:
  12068. //
  12069. // The file cannot be opened transactionally, because its identity depends on the outcome of an unresolved transaction.
  12070. //
  12071. const auto ERROR_FILE_IDENTITY_NOT_PERSISTENT = 6823;
  12072. //
  12073. // MessageId: ERROR_CANT_BREAK_TRANSACTIONAL_DEPENDENCY
  12074. //
  12075. // MessageText:
  12076. //
  12077. // The operation cannot be performed because another transaction is depending on the fact that this property will not change.
  12078. //
  12079. const auto ERROR_CANT_BREAK_TRANSACTIONAL_DEPENDENCY = 6824;
  12080. //
  12081. // MessageId: ERROR_CANT_CROSS_RM_BOUNDARY
  12082. //
  12083. // MessageText:
  12084. //
  12085. // The operation would involve a single file with two transactional resource managers and is therefore not allowed.
  12086. //
  12087. const auto ERROR_CANT_CROSS_RM_BOUNDARY = 6825;
  12088. //
  12089. // MessageId: ERROR_TXF_DIR_NOT_EMPTY
  12090. //
  12091. // MessageText:
  12092. //
  12093. // The $Txf directory must be empty for this operation to succeed.
  12094. //
  12095. const auto ERROR_TXF_DIR_NOT_EMPTY = 6826;
  12096. //
  12097. // MessageId: ERROR_INDOUBT_TRANSACTIONS_EXIST
  12098. //
  12099. // MessageText:
  12100. //
  12101. // The operation would leave a transactional resource manager in an inconsistent state and is therefore not allowed.
  12102. //
  12103. const auto ERROR_INDOUBT_TRANSACTIONS_EXIST = 6827;
  12104. //
  12105. // MessageId: ERROR_TM_VOLATILE
  12106. //
  12107. // MessageText:
  12108. //
  12109. // The operation could not be completed because the transaction manager does not have a log.
  12110. //
  12111. const auto ERROR_TM_VOLATILE = 6828;
  12112. //
  12113. // MessageId: ERROR_ROLLBACK_TIMER_EXPIRED
  12114. //
  12115. // MessageText:
  12116. //
  12117. // A rollback could not be scheduled because a previously scheduled rollback has already executed or been queued for execution.
  12118. //
  12119. const auto ERROR_ROLLBACK_TIMER_EXPIRED = 6829;
  12120. //
  12121. // MessageId: ERROR_TXF_ATTRIBUTE_CORRUPT
  12122. //
  12123. // MessageText:
  12124. //
  12125. // The transactional metadata attribute on the file or directory is corrupt and unreadable.
  12126. //
  12127. const auto ERROR_TXF_ATTRIBUTE_CORRUPT = 6830;
  12128. //
  12129. // MessageId: ERROR_EFS_NOT_ALLOWED_IN_TRANSACTION
  12130. //
  12131. // MessageText:
  12132. //
  12133. // The encryption operation could not be completed because a transaction is active.
  12134. //
  12135. const auto ERROR_EFS_NOT_ALLOWED_IN_TRANSACTION = 6831;
  12136. //
  12137. // MessageId: ERROR_TRANSACTIONAL_OPEN_NOT_ALLOWED
  12138. //
  12139. // MessageText:
  12140. //
  12141. // This object is not allowed to be opened in a transaction.
  12142. //
  12143. const auto ERROR_TRANSACTIONAL_OPEN_NOT_ALLOWED = 6832;
  12144. //
  12145. // MessageId: ERROR_LOG_GROWTH_FAILED
  12146. //
  12147. // MessageText:
  12148. //
  12149. // An attempt to create space in the transactional resource manager's log failed. The failure status has been recorded in the event log.
  12150. //
  12151. const auto ERROR_LOG_GROWTH_FAILED = 6833;
  12152. //
  12153. // MessageId: ERROR_TRANSACTED_MAPPING_UNSUPPORTED_REMOTE
  12154. //
  12155. // MessageText:
  12156. //
  12157. // Memory mapping (creating a mapped section) a remote file under a transaction is not supported.
  12158. //
  12159. const auto ERROR_TRANSACTED_MAPPING_UNSUPPORTED_REMOTE = 6834;
  12160. //
  12161. // MessageId: ERROR_TXF_METADATA_ALREADY_PRESENT
  12162. //
  12163. // MessageText:
  12164. //
  12165. // Transaction metadata is already present on this file and cannot be superseded.
  12166. //
  12167. const auto ERROR_TXF_METADATA_ALREADY_PRESENT = 6835;
  12168. //
  12169. // MessageId: ERROR_TRANSACTION_SCOPE_CALLBACKS_NOT_SET
  12170. //
  12171. // MessageText:
  12172. //
  12173. // A transaction scope could not be entered because the scope handler has not been initialized.
  12174. //
  12175. const auto ERROR_TRANSACTION_SCOPE_CALLBACKS_NOT_SET = 6836;
  12176. //
  12177. // MessageId: ERROR_TRANSACTION_REQUIRED_PROMOTION
  12178. //
  12179. // MessageText:
  12180. //
  12181. // Promotion was required in order to allow the resource manager to enlist, but the transaction was set to disallow it.
  12182. //
  12183. const auto ERROR_TRANSACTION_REQUIRED_PROMOTION = 6837;
  12184. //
  12185. // MessageId: ERROR_CANNOT_EXECUTE_FILE_IN_TRANSACTION
  12186. //
  12187. // MessageText:
  12188. //
  12189. // This file is open for modification in an unresolved transaction and may be opened for execute only by a transacted reader.
  12190. //
  12191. const auto ERROR_CANNOT_EXECUTE_FILE_IN_TRANSACTION = 6838;
  12192. //
  12193. // MessageId: ERROR_TRANSACTIONS_NOT_FROZEN
  12194. //
  12195. // MessageText:
  12196. //
  12197. // The request to thaw frozen transactions was ignored because transactions had not previously been frozen.
  12198. //
  12199. const auto ERROR_TRANSACTIONS_NOT_FROZEN = 6839;
  12200. //
  12201. // MessageId: ERROR_TRANSACTION_FREEZE_IN_PROGRESS
  12202. //
  12203. // MessageText:
  12204. //
  12205. // Transactions cannot be frozen because a freeze is already in progress.
  12206. //
  12207. const auto ERROR_TRANSACTION_FREEZE_IN_PROGRESS = 6840;
  12208. //
  12209. // MessageId: ERROR_NOT_SNAPSHOT_VOLUME
  12210. //
  12211. // MessageText:
  12212. //
  12213. // The target volume is not a snapshot volume. This operation is only valid on a volume mounted as a snapshot.
  12214. //
  12215. const auto ERROR_NOT_SNAPSHOT_VOLUME = 6841;
  12216. //
  12217. // MessageId: ERROR_NO_SAVEPOINT_WITH_OPEN_FILES
  12218. //
  12219. // MessageText:
  12220. //
  12221. // The savepoint operation failed because files are open on the transaction. This is not permitted.
  12222. //
  12223. const auto ERROR_NO_SAVEPOINT_WITH_OPEN_FILES = 6842;
  12224. //
  12225. // MessageId: ERROR_DATA_LOST_REPAIR
  12226. //
  12227. // MessageText:
  12228. //
  12229. // Windows has discovered corruption in a file, and that file has since been repaired. Data loss may have occurred.
  12230. //
  12231. const auto ERROR_DATA_LOST_REPAIR = 6843;
  12232. //
  12233. // MessageId: ERROR_SPARSE_NOT_ALLOWED_IN_TRANSACTION
  12234. //
  12235. // MessageText:
  12236. //
  12237. // The sparse operation could not be completed because a transaction is active on the file.
  12238. //
  12239. const auto ERROR_SPARSE_NOT_ALLOWED_IN_TRANSACTION = 6844;
  12240. //
  12241. // MessageId: ERROR_TM_IDENTITY_MISMATCH
  12242. //
  12243. // MessageText:
  12244. //
  12245. // The call to create a TransactionManager object failed because the Tm Identity stored in the logfile does not match the Tm Identity that was passed in as an argument.
  12246. //
  12247. const auto ERROR_TM_IDENTITY_MISMATCH = 6845;
  12248. //
  12249. // MessageId: ERROR_FLOATED_SECTION
  12250. //
  12251. // MessageText:
  12252. //
  12253. // I/O was attempted on a section object that has been floated as a result of a transaction ending. There is no valid data.
  12254. //
  12255. const auto ERROR_FLOATED_SECTION = 6846;
  12256. //
  12257. // MessageId: ERROR_CANNOT_ACCEPT_TRANSACTED_WORK
  12258. //
  12259. // MessageText:
  12260. //
  12261. // The transactional resource manager cannot currently accept transacted work due to a transient condition such as low resources.
  12262. //
  12263. const auto ERROR_CANNOT_ACCEPT_TRANSACTED_WORK = 6847;
  12264. //
  12265. // MessageId: ERROR_CANNOT_ABORT_TRANSACTIONS
  12266. //
  12267. // MessageText:
  12268. //
  12269. // The transactional resource manager had too many tranactions outstanding that could not be aborted. The transactional resource manger has been shut down.
  12270. //
  12271. const auto ERROR_CANNOT_ABORT_TRANSACTIONS = 6848;
  12272. //
  12273. // MessageId: ERROR_BAD_CLUSTERS
  12274. //
  12275. // MessageText:
  12276. //
  12277. // The operation could not be completed due to bad clusters on disk.
  12278. //
  12279. const auto ERROR_BAD_CLUSTERS = 6849;
  12280. //
  12281. // MessageId: ERROR_COMPRESSION_NOT_ALLOWED_IN_TRANSACTION
  12282. //
  12283. // MessageText:
  12284. //
  12285. // The compression operation could not be completed because a transaction is active on the file.
  12286. //
  12287. const auto ERROR_COMPRESSION_NOT_ALLOWED_IN_TRANSACTION = 6850;
  12288. //
  12289. // MessageId: ERROR_VOLUME_DIRTY
  12290. //
  12291. // MessageText:
  12292. //
  12293. // The operation could not be completed because the volume is dirty. Please run chkdsk and try again.
  12294. //
  12295. const auto ERROR_VOLUME_DIRTY = 6851;
  12296. //
  12297. // MessageId: ERROR_NO_LINK_TRACKING_IN_TRANSACTION
  12298. //
  12299. // MessageText:
  12300. //
  12301. // The link tracking operation could not be completed because a transaction is active.
  12302. //
  12303. const auto ERROR_NO_LINK_TRACKING_IN_TRANSACTION = 6852;
  12304. //
  12305. // MessageId: ERROR_OPERATION_NOT_SUPPORTED_IN_TRANSACTION
  12306. //
  12307. // MessageText:
  12308. //
  12309. // This operation cannot be performed in a transaction.
  12310. //
  12311. const auto ERROR_OPERATION_NOT_SUPPORTED_IN_TRANSACTION = 6853;
  12312. ///////////////////////////////////////////////////
  12313. // //
  12314. // Available //
  12315. // //
  12316. // 6900 to 6999 //
  12317. ///////////////////////////////////////////////////
  12318. ///////////////////////////////////////////////////
  12319. // //
  12320. // Terminal Server Error codes //
  12321. // //
  12322. // 7000 to 7099 //
  12323. ///////////////////////////////////////////////////
  12324. //
  12325. // MessageId: ERROR_CTX_WINSTATION_NAME_INVALID
  12326. //
  12327. // MessageText:
  12328. //
  12329. // The specified session name is invalid.
  12330. //
  12331. const auto ERROR_CTX_WINSTATION_NAME_INVALID = 7001;
  12332. //
  12333. // MessageId: ERROR_CTX_INVALID_PD
  12334. //
  12335. // MessageText:
  12336. //
  12337. // The specified protocol driver is invalid.
  12338. //
  12339. const auto ERROR_CTX_INVALID_PD = 7002;
  12340. //
  12341. // MessageId: ERROR_CTX_PD_NOT_FOUND
  12342. //
  12343. // MessageText:
  12344. //
  12345. // The specified protocol driver was not found in the system path.
  12346. //
  12347. const auto ERROR_CTX_PD_NOT_FOUND = 7003;
  12348. //
  12349. // MessageId: ERROR_CTX_WD_NOT_FOUND
  12350. //
  12351. // MessageText:
  12352. //
  12353. // The specified terminal connection driver was not found in the system path.
  12354. //
  12355. const auto ERROR_CTX_WD_NOT_FOUND = 7004;
  12356. //
  12357. // MessageId: ERROR_CTX_CANNOT_MAKE_EVENTLOG_ENTRY
  12358. //
  12359. // MessageText:
  12360. //
  12361. // A registry key for event logging could not be created for this session.
  12362. //
  12363. const auto ERROR_CTX_CANNOT_MAKE_EVENTLOG_ENTRY = 7005;
  12364. //
  12365. // MessageId: ERROR_CTX_SERVICE_NAME_COLLISION
  12366. //
  12367. // MessageText:
  12368. //
  12369. // A service with the same name already exists on the system.
  12370. //
  12371. const auto ERROR_CTX_SERVICE_NAME_COLLISION = 7006;
  12372. //
  12373. // MessageId: ERROR_CTX_CLOSE_PENDING
  12374. //
  12375. // MessageText:
  12376. //
  12377. // A close operation is pending on the session.
  12378. //
  12379. const auto ERROR_CTX_CLOSE_PENDING = 7007;
  12380. //
  12381. // MessageId: ERROR_CTX_NO_OUTBUF
  12382. //
  12383. // MessageText:
  12384. //
  12385. // There are no free output buffers available.
  12386. //
  12387. const auto ERROR_CTX_NO_OUTBUF = 7008;
  12388. //
  12389. // MessageId: ERROR_CTX_MODEM_INF_NOT_FOUND
  12390. //
  12391. // MessageText:
  12392. //
  12393. // The MODEM.INF file was not found.
  12394. //
  12395. const auto ERROR_CTX_MODEM_INF_NOT_FOUND = 7009;
  12396. //
  12397. // MessageId: ERROR_CTX_INVALID_MODEMNAME
  12398. //
  12399. // MessageText:
  12400. //
  12401. // The modem name was not found in MODEM.INF.
  12402. //
  12403. const auto ERROR_CTX_INVALID_MODEMNAME = 7010;
  12404. //
  12405. // MessageId: ERROR_CTX_MODEM_RESPONSE_ERROR
  12406. //
  12407. // MessageText:
  12408. //
  12409. // The modem did not accept the command sent to it. Verify that the configured modem name matches the attached modem.
  12410. //
  12411. const auto ERROR_CTX_MODEM_RESPONSE_ERROR = 7011;
  12412. //
  12413. // MessageId: ERROR_CTX_MODEM_RESPONSE_TIMEOUT
  12414. //
  12415. // MessageText:
  12416. //
  12417. // The modem did not respond to the command sent to it. Verify that the modem is properly cabled and powered on.
  12418. //
  12419. const auto ERROR_CTX_MODEM_RESPONSE_TIMEOUT = 7012;
  12420. //
  12421. // MessageId: ERROR_CTX_MODEM_RESPONSE_NO_CARRIER
  12422. //
  12423. // MessageText:
  12424. //
  12425. // Carrier detect has failed or carrier has been dropped due to disconnect.
  12426. //
  12427. const auto ERROR_CTX_MODEM_RESPONSE_NO_CARRIER = 7013;
  12428. //
  12429. // MessageId: ERROR_CTX_MODEM_RESPONSE_NO_DIALTONE
  12430. //
  12431. // MessageText:
  12432. //
  12433. // Dial tone not detected within the required time. Verify that the phone cable is properly attached and functional.
  12434. //
  12435. const auto ERROR_CTX_MODEM_RESPONSE_NO_DIALTONE = 7014;
  12436. //
  12437. // MessageId: ERROR_CTX_MODEM_RESPONSE_BUSY
  12438. //
  12439. // MessageText:
  12440. //
  12441. // Busy signal detected at remote site on callback.
  12442. //
  12443. const auto ERROR_CTX_MODEM_RESPONSE_BUSY = 7015;
  12444. //
  12445. // MessageId: ERROR_CTX_MODEM_RESPONSE_VOICE
  12446. //
  12447. // MessageText:
  12448. //
  12449. // Voice detected at remote site on callback.
  12450. //
  12451. const auto ERROR_CTX_MODEM_RESPONSE_VOICE = 7016;
  12452. //
  12453. // MessageId: ERROR_CTX_TD_ERROR
  12454. //
  12455. // MessageText:
  12456. //
  12457. // Transport driver error
  12458. //
  12459. const auto ERROR_CTX_TD_ERROR = 7017;
  12460. //
  12461. // MessageId: ERROR_CTX_WINSTATION_NOT_FOUND
  12462. //
  12463. // MessageText:
  12464. //
  12465. // The specified session cannot be found.
  12466. //
  12467. const auto ERROR_CTX_WINSTATION_NOT_FOUND = 7022;
  12468. //
  12469. // MessageId: ERROR_CTX_WINSTATION_ALREADY_EXISTS
  12470. //
  12471. // MessageText:
  12472. //
  12473. // The specified session name is already in use.
  12474. //
  12475. const auto ERROR_CTX_WINSTATION_ALREADY_EXISTS = 7023;
  12476. //
  12477. // MessageId: ERROR_CTX_WINSTATION_BUSY
  12478. //
  12479. // MessageText:
  12480. //
  12481. // The requested operation cannot be completed because the terminal connection is currently busy processing a connect, disconnect, reset, or delete operation.
  12482. //
  12483. const auto ERROR_CTX_WINSTATION_BUSY = 7024;
  12484. //
  12485. // MessageId: ERROR_CTX_BAD_VIDEO_MODE
  12486. //
  12487. // MessageText:
  12488. //
  12489. // An attempt has been made to connect to a session whose video mode is not supported by the current client.
  12490. //
  12491. const auto ERROR_CTX_BAD_VIDEO_MODE = 7025;
  12492. //
  12493. // MessageId: ERROR_CTX_GRAPHICS_INVALID
  12494. //
  12495. // MessageText:
  12496. //
  12497. // The application attempted to enable DOS graphics mode.
  12498. // DOS graphics mode is not supported.
  12499. //
  12500. const auto ERROR_CTX_GRAPHICS_INVALID = 7035;
  12501. //
  12502. // MessageId: ERROR_CTX_LOGON_DISABLED
  12503. //
  12504. // MessageText:
  12505. //
  12506. // Your interactive logon privilege has been disabled.
  12507. // Please contact your administrator.
  12508. //
  12509. const auto ERROR_CTX_LOGON_DISABLED = 7037;
  12510. //
  12511. // MessageId: ERROR_CTX_NOT_CONSOLE
  12512. //
  12513. // MessageText:
  12514. //
  12515. // The requested operation can be performed only on the system console.
  12516. // This is most often the result of a driver or system DLL requiring direct console access.
  12517. //
  12518. const auto ERROR_CTX_NOT_CONSOLE = 7038;
  12519. //
  12520. // MessageId: ERROR_CTX_CLIENT_QUERY_TIMEOUT
  12521. //
  12522. // MessageText:
  12523. //
  12524. // The client failed to respond to the server connect message.
  12525. //
  12526. const auto ERROR_CTX_CLIENT_QUERY_TIMEOUT = 7040;
  12527. //
  12528. // MessageId: ERROR_CTX_CONSOLE_DISCONNECT
  12529. //
  12530. // MessageText:
  12531. //
  12532. // Disconnecting the console session is not supported.
  12533. //
  12534. const auto ERROR_CTX_CONSOLE_DISCONNECT = 7041;
  12535. //
  12536. // MessageId: ERROR_CTX_CONSOLE_CONNECT
  12537. //
  12538. // MessageText:
  12539. //
  12540. // Reconnecting a disconnected session to the console is not supported.
  12541. //
  12542. const auto ERROR_CTX_CONSOLE_CONNECT = 7042;
  12543. //
  12544. // MessageId: ERROR_CTX_SHADOW_DENIED
  12545. //
  12546. // MessageText:
  12547. //
  12548. // The request to control another session remotely was denied.
  12549. //
  12550. const auto ERROR_CTX_SHADOW_DENIED = 7044;
  12551. //
  12552. // MessageId: ERROR_CTX_WINSTATION_ACCESS_DENIED
  12553. //
  12554. // MessageText:
  12555. //
  12556. // The requested session access is denied.
  12557. //
  12558. const auto ERROR_CTX_WINSTATION_ACCESS_DENIED = 7045;
  12559. //
  12560. // MessageId: ERROR_CTX_INVALID_WD
  12561. //
  12562. // MessageText:
  12563. //
  12564. // The specified terminal connection driver is invalid.
  12565. //
  12566. const auto ERROR_CTX_INVALID_WD = 7049;
  12567. //
  12568. // MessageId: ERROR_CTX_SHADOW_INVALID
  12569. //
  12570. // MessageText:
  12571. //
  12572. // The requested session cannot be controlled remotely.
  12573. // This may be because the session is disconnected or does not currently have a user logged on.
  12574. //
  12575. const auto ERROR_CTX_SHADOW_INVALID = 7050;
  12576. //
  12577. // MessageId: ERROR_CTX_SHADOW_DISABLED
  12578. //
  12579. // MessageText:
  12580. //
  12581. // The requested session is not configured to allow remote control.
  12582. //
  12583. const auto ERROR_CTX_SHADOW_DISABLED = 7051;
  12584. //
  12585. // MessageId: ERROR_CTX_CLIENT_LICENSE_IN_USE
  12586. //
  12587. // MessageText:
  12588. //
  12589. // Your request to connect to this Terminal Server has been rejected. Your Terminal Server client license number is currently being used by another user.
  12590. // Please call your system administrator to obtain a unique license number.
  12591. //
  12592. const auto ERROR_CTX_CLIENT_LICENSE_IN_USE = 7052;
  12593. //
  12594. // MessageId: ERROR_CTX_CLIENT_LICENSE_NOT_SET
  12595. //
  12596. // MessageText:
  12597. //
  12598. // Your request to connect to this Terminal Server has been rejected. Your Terminal Server client license number has not been entered for this copy of the Terminal Server client.
  12599. // Please contact your system administrator.
  12600. //
  12601. const auto ERROR_CTX_CLIENT_LICENSE_NOT_SET = 7053;
  12602. //
  12603. // MessageId: ERROR_CTX_LICENSE_NOT_AVAILABLE
  12604. //
  12605. // MessageText:
  12606. //
  12607. // The number of connections to this computer is limited and all connections are in use right now.
  12608. // Try connecting later or contact your system administrator.
  12609. //
  12610. const auto ERROR_CTX_LICENSE_NOT_AVAILABLE = 7054;
  12611. //
  12612. // MessageId: ERROR_CTX_LICENSE_CLIENT_INVALID
  12613. //
  12614. // MessageText:
  12615. //
  12616. // The client you are using is not licensed to use this system. Your logon request is denied.
  12617. //
  12618. const auto ERROR_CTX_LICENSE_CLIENT_INVALID = 7055;
  12619. //
  12620. // MessageId: ERROR_CTX_LICENSE_EXPIRED
  12621. //
  12622. // MessageText:
  12623. //
  12624. // The system license has expired. Your logon request is denied.
  12625. //
  12626. const auto ERROR_CTX_LICENSE_EXPIRED = 7056;
  12627. //
  12628. // MessageId: ERROR_CTX_SHADOW_NOT_RUNNING
  12629. //
  12630. // MessageText:
  12631. //
  12632. // Remote control could not be terminated because the specified session is not currently being remotely controlled.
  12633. //
  12634. const auto ERROR_CTX_SHADOW_NOT_RUNNING = 7057;
  12635. //
  12636. // MessageId: ERROR_CTX_SHADOW_ENDED_BY_MODE_CHANGE
  12637. //
  12638. // MessageText:
  12639. //
  12640. // 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.
  12641. //
  12642. const auto ERROR_CTX_SHADOW_ENDED_BY_MODE_CHANGE = 7058;
  12643. //
  12644. // MessageId: ERROR_ACTIVATION_COUNT_EXCEEDED
  12645. //
  12646. // MessageText:
  12647. //
  12648. // Activation has already been reset the maximum number of times for this installation. Your activation timer will not be cleared.
  12649. //
  12650. const auto ERROR_ACTIVATION_COUNT_EXCEEDED = 7059;
  12651. //
  12652. // MessageId: ERROR_CTX_WINSTATIONS_DISABLED
  12653. //
  12654. // MessageText:
  12655. //
  12656. // Remote logins are currently disabled.
  12657. //
  12658. const auto ERROR_CTX_WINSTATIONS_DISABLED = 7060;
  12659. //
  12660. // MessageId: ERROR_CTX_ENCRYPTION_LEVEL_REQUIRED
  12661. //
  12662. // MessageText:
  12663. //
  12664. // You do not have the proper encryption level to access this Session.
  12665. //
  12666. const auto ERROR_CTX_ENCRYPTION_LEVEL_REQUIRED = 7061;
  12667. //
  12668. // MessageId: ERROR_CTX_SESSION_IN_USE
  12669. //
  12670. // MessageText:
  12671. //
  12672. // The user %s\\%s is currently logged on to this computer. Only the current user or an administrator can log on to this computer.
  12673. //
  12674. const auto ERROR_CTX_SESSION_IN_USE = 7062;
  12675. //
  12676. // MessageId: ERROR_CTX_NO_FORCE_LOGOFF
  12677. //
  12678. // MessageText:
  12679. //
  12680. // The user %s\\%s is already logged on to the console of this computer. You do not have permission to log in at this time. To resolve this issue, contact %s\\%s and have them log off.
  12681. //
  12682. const auto ERROR_CTX_NO_FORCE_LOGOFF = 7063;
  12683. //
  12684. // MessageId: ERROR_CTX_ACCOUNT_RESTRICTION
  12685. //
  12686. // MessageText:
  12687. //
  12688. // Unable to log you on because of an account restriction.
  12689. //
  12690. const auto ERROR_CTX_ACCOUNT_RESTRICTION = 7064;
  12691. //
  12692. // MessageId: ERROR_RDP_PROTOCOL_ERROR
  12693. //
  12694. // MessageText:
  12695. //
  12696. // The RDP protocol component %2 detected an error in the protocol stream and has disconnected the client.
  12697. //
  12698. const auto ERROR_RDP_PROTOCOL_ERROR = 7065;
  12699. //
  12700. // MessageId: ERROR_CTX_CDM_CONNECT
  12701. //
  12702. // MessageText:
  12703. //
  12704. // The Client Drive Mapping Service Has Connected on Terminal Connection.
  12705. //
  12706. const auto ERROR_CTX_CDM_CONNECT = 7066;
  12707. //
  12708. // MessageId: ERROR_CTX_CDM_DISCONNECT
  12709. //
  12710. // MessageText:
  12711. //
  12712. // The Client Drive Mapping Service Has Disconnected on Terminal Connection.
  12713. //
  12714. const auto ERROR_CTX_CDM_DISCONNECT = 7067;
  12715. //
  12716. // MessageId: ERROR_CTX_SECURITY_LAYER_ERROR
  12717. //
  12718. // MessageText:
  12719. //
  12720. // The Terminal Server security layer detected an error in the protocol stream and has disconnected the client.
  12721. //
  12722. const auto ERROR_CTX_SECURITY_LAYER_ERROR = 7068;
  12723. //
  12724. // MessageId: ERROR_TS_INCOMPATIBLE_SESSIONS
  12725. //
  12726. // MessageText:
  12727. //
  12728. // The target session is incompatible with the current session.
  12729. //
  12730. const auto ERROR_TS_INCOMPATIBLE_SESSIONS = 7069;
  12731. ///////////////////////////////////////////////////
  12732. // //
  12733. // Available //
  12734. // //
  12735. // 7100 to 7499 //
  12736. ///////////////////////////////////////////////////
  12737. ///////////////////////////////////////////////////
  12738. // /
  12739. // Traffic Control Error Codes /
  12740. // /
  12741. // 7500 to 7999 /
  12742. // /
  12743. // defined in: tcerror.h /
  12744. ///////////////////////////////////////////////////
  12745. ///////////////////////////////////////////////////
  12746. // //
  12747. // Active Directory Error codes //
  12748. // //
  12749. // 8000 to 8999 //
  12750. ///////////////////////////////////////////////////
  12751. // *****************
  12752. // FACILITY_FILE_REPLICATION_SERVICE
  12753. // *****************
  12754. //
  12755. // MessageId: FRS_ERR_INVALID_API_SEQUENCE
  12756. //
  12757. // MessageText:
  12758. //
  12759. // The file replication service API was called incorrectly.
  12760. //
  12761. const auto FRS_ERR_INVALID_API_SEQUENCE = 8001;
  12762. //
  12763. // MessageId: FRS_ERR_STARTING_SERVICE
  12764. //
  12765. // MessageText:
  12766. //
  12767. // The file replication service cannot be started.
  12768. //
  12769. const auto FRS_ERR_STARTING_SERVICE = 8002;
  12770. //
  12771. // MessageId: FRS_ERR_STOPPING_SERVICE
  12772. //
  12773. // MessageText:
  12774. //
  12775. // The file replication service cannot be stopped.
  12776. //
  12777. const auto FRS_ERR_STOPPING_SERVICE = 8003;
  12778. //
  12779. // MessageId: FRS_ERR_INTERNAL_API
  12780. //
  12781. // MessageText:
  12782. //
  12783. // The file replication service API terminated the request.
  12784. // The event log may have more information.
  12785. //
  12786. const auto FRS_ERR_INTERNAL_API = 8004;
  12787. //
  12788. // MessageId: FRS_ERR_INTERNAL
  12789. //
  12790. // MessageText:
  12791. //
  12792. // The file replication service terminated the request.
  12793. // The event log may have more information.
  12794. //
  12795. const auto FRS_ERR_INTERNAL = 8005;
  12796. //
  12797. // MessageId: FRS_ERR_SERVICE_COMM
  12798. //
  12799. // MessageText:
  12800. //
  12801. // The file replication service cannot be contacted.
  12802. // The event log may have more information.
  12803. //
  12804. const auto FRS_ERR_SERVICE_COMM = 8006;
  12805. //
  12806. // MessageId: FRS_ERR_INSUFFICIENT_PRIV
  12807. //
  12808. // MessageText:
  12809. //
  12810. // The file replication service cannot satisfy the request because the user has insufficient privileges.
  12811. // The event log may have more information.
  12812. //
  12813. const auto FRS_ERR_INSUFFICIENT_PRIV = 8007;
  12814. //
  12815. // MessageId: FRS_ERR_AUTHENTICATION
  12816. //
  12817. // MessageText:
  12818. //
  12819. // The file replication service cannot satisfy the request because authenticated RPC is not available.
  12820. // The event log may have more information.
  12821. //
  12822. const auto FRS_ERR_AUTHENTICATION = 8008;
  12823. //
  12824. // MessageId: FRS_ERR_PARENT_INSUFFICIENT_PRIV
  12825. //
  12826. // MessageText:
  12827. //
  12828. // The file replication service cannot satisfy the request because the user has insufficient privileges on the domain controller.
  12829. // The event log may have more information.
  12830. //
  12831. const auto FRS_ERR_PARENT_INSUFFICIENT_PRIV = 8009;
  12832. //
  12833. // MessageId: FRS_ERR_PARENT_AUTHENTICATION
  12834. //
  12835. // MessageText:
  12836. //
  12837. // The file replication service cannot satisfy the request because authenticated RPC is not available on the domain controller.
  12838. // The event log may have more information.
  12839. //
  12840. const auto FRS_ERR_PARENT_AUTHENTICATION = 8010;
  12841. //
  12842. // MessageId: FRS_ERR_CHILD_TO_PARENT_COMM
  12843. //
  12844. // MessageText:
  12845. //
  12846. // The file replication service cannot communicate with the file replication service on the domain controller.
  12847. // The event log may have more information.
  12848. //
  12849. const auto FRS_ERR_CHILD_TO_PARENT_COMM = 8011;
  12850. //
  12851. // MessageId: FRS_ERR_PARENT_TO_CHILD_COMM
  12852. //
  12853. // MessageText:
  12854. //
  12855. // The file replication service on the domain controller cannot communicate with the file replication service on this computer.
  12856. // The event log may have more information.
  12857. //
  12858. const auto FRS_ERR_PARENT_TO_CHILD_COMM = 8012;
  12859. //
  12860. // MessageId: FRS_ERR_SYSVOL_POPULATE
  12861. //
  12862. // MessageText:
  12863. //
  12864. // The file replication service cannot populate the system volume because of an internal error.
  12865. // The event log may have more information.
  12866. //
  12867. const auto FRS_ERR_SYSVOL_POPULATE = 8013;
  12868. //
  12869. // MessageId: FRS_ERR_SYSVOL_POPULATE_TIMEOUT
  12870. //
  12871. // MessageText:
  12872. //
  12873. // The file replication service cannot populate the system volume because of an internal timeout.
  12874. // The event log may have more information.
  12875. //
  12876. const auto FRS_ERR_SYSVOL_POPULATE_TIMEOUT = 8014;
  12877. //
  12878. // MessageId: FRS_ERR_SYSVOL_IS_BUSY
  12879. //
  12880. // MessageText:
  12881. //
  12882. // The file replication service cannot process the request. The system volume is busy with a previous request.
  12883. //
  12884. const auto FRS_ERR_SYSVOL_IS_BUSY = 8015;
  12885. //
  12886. // MessageId: FRS_ERR_SYSVOL_DEMOTE
  12887. //
  12888. // MessageText:
  12889. //
  12890. // The file replication service cannot stop replicating the system volume because of an internal error.
  12891. // The event log may have more information.
  12892. //
  12893. const auto FRS_ERR_SYSVOL_DEMOTE = 8016;
  12894. //
  12895. // MessageId: FRS_ERR_INVALID_SERVICE_PARAMETER
  12896. //
  12897. // MessageText:
  12898. //
  12899. // The file replication service detected an invalid parameter.
  12900. //
  12901. const auto FRS_ERR_INVALID_SERVICE_PARAMETER = 8017;
  12902. // *****************
  12903. // FACILITY DIRECTORY SERVICE
  12904. // *****************
  12905. //
  12906. alias NO_ERROR DS_S_SUCCESS;
  12907. // MessageId: ERROR_DS_NOT_INSTALLED
  12908. //
  12909. // MessageText:
  12910. //
  12911. // An error occurred while installing the directory service. For more information, see the event log.
  12912. //
  12913. const auto ERROR_DS_NOT_INSTALLED = 8200;
  12914. //
  12915. // MessageId: ERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY
  12916. //
  12917. // MessageText:
  12918. //
  12919. // The directory service evaluated group memberships locally.
  12920. //
  12921. const auto ERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY = 8201;
  12922. //
  12923. // MessageId: ERROR_DS_NO_ATTRIBUTE_OR_VALUE
  12924. //
  12925. // MessageText:
  12926. //
  12927. // The specified directory service attribute or value does not exist.
  12928. //
  12929. const auto ERROR_DS_NO_ATTRIBUTE_OR_VALUE = 8202;
  12930. //
  12931. // MessageId: ERROR_DS_INVALID_ATTRIBUTE_SYNTAX
  12932. //
  12933. // MessageText:
  12934. //
  12935. // The attribute syntax specified to the directory service is invalid.
  12936. //
  12937. const auto ERROR_DS_INVALID_ATTRIBUTE_SYNTAX = 8203;
  12938. //
  12939. // MessageId: ERROR_DS_ATTRIBUTE_TYPE_UNDEFINED
  12940. //
  12941. // MessageText:
  12942. //
  12943. // The attribute type specified to the directory service is not defined.
  12944. //
  12945. const auto ERROR_DS_ATTRIBUTE_TYPE_UNDEFINED = 8204;
  12946. //
  12947. // MessageId: ERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS
  12948. //
  12949. // MessageText:
  12950. //
  12951. // The specified directory service attribute or value already exists.
  12952. //
  12953. const auto ERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS = 8205;
  12954. //
  12955. // MessageId: ERROR_DS_BUSY
  12956. //
  12957. // MessageText:
  12958. //
  12959. // The directory service is busy.
  12960. //
  12961. const auto ERROR_DS_BUSY = 8206;
  12962. //
  12963. // MessageId: ERROR_DS_UNAVAILABLE
  12964. //
  12965. // MessageText:
  12966. //
  12967. // The directory service is unavailable.
  12968. //
  12969. const auto ERROR_DS_UNAVAILABLE = 8207;
  12970. //
  12971. // MessageId: ERROR_DS_NO_RIDS_ALLOCATED
  12972. //
  12973. // MessageText:
  12974. //
  12975. // The directory service was unable to allocate a relative identifier.
  12976. //
  12977. const auto ERROR_DS_NO_RIDS_ALLOCATED = 8208;
  12978. //
  12979. // MessageId: ERROR_DS_NO_MORE_RIDS
  12980. //
  12981. // MessageText:
  12982. //
  12983. // The directory service has exhausted the pool of relative identifiers.
  12984. //
  12985. const auto ERROR_DS_NO_MORE_RIDS = 8209;
  12986. //
  12987. // MessageId: ERROR_DS_INCORRECT_ROLE_OWNER
  12988. //
  12989. // MessageText:
  12990. //
  12991. // The requested operation could not be performed because the directory service is not the master for that type of operation.
  12992. //
  12993. const auto ERROR_DS_INCORRECT_ROLE_OWNER = 8210;
  12994. //
  12995. // MessageId: ERROR_DS_RIDMGR_INIT_ERROR
  12996. //
  12997. // MessageText:
  12998. //
  12999. // The directory service was unable to initialize the subsystem that allocates relative identifiers.
  13000. //
  13001. const auto ERROR_DS_RIDMGR_INIT_ERROR = 8211;
  13002. //
  13003. // MessageId: ERROR_DS_OBJ_CLASS_VIOLATION
  13004. //
  13005. // MessageText:
  13006. //
  13007. // The requested operation did not satisfy one or more constraints associated with the class of the object.
  13008. //
  13009. const auto ERROR_DS_OBJ_CLASS_VIOLATION = 8212;
  13010. //
  13011. // MessageId: ERROR_DS_CANT_ON_NON_LEAF
  13012. //
  13013. // MessageText:
  13014. //
  13015. // The directory service can perform the requested operation only on a leaf object.
  13016. //
  13017. const auto ERROR_DS_CANT_ON_NON_LEAF = 8213;
  13018. //
  13019. // MessageId: ERROR_DS_CANT_ON_RDN
  13020. //
  13021. // MessageText:
  13022. //
  13023. // The directory service cannot perform the requested operation on the RDN attribute of an object.
  13024. //
  13025. const auto ERROR_DS_CANT_ON_RDN = 8214;
  13026. //
  13027. // MessageId: ERROR_DS_CANT_MOD_OBJ_CLASS
  13028. //
  13029. // MessageText:
  13030. //
  13031. // The directory service detected an attempt to modify the object class of an object.
  13032. //
  13033. const auto ERROR_DS_CANT_MOD_OBJ_CLASS = 8215;
  13034. //
  13035. // MessageId: ERROR_DS_CROSS_DOM_MOVE_ERROR
  13036. //
  13037. // MessageText:
  13038. //
  13039. // The requested cross-domain move operation could not be performed.
  13040. //
  13041. const auto ERROR_DS_CROSS_DOM_MOVE_ERROR = 8216;
  13042. //
  13043. // MessageId: ERROR_DS_GC_NOT_AVAILABLE
  13044. //
  13045. // MessageText:
  13046. //
  13047. // Unable to contact the global catalog server.
  13048. //
  13049. const auto ERROR_DS_GC_NOT_AVAILABLE = 8217;
  13050. //
  13051. // MessageId: ERROR_SHARED_POLICY
  13052. //
  13053. // MessageText:
  13054. //
  13055. // The policy object is shared and can only be modified at the root.
  13056. //
  13057. const auto ERROR_SHARED_POLICY = 8218;
  13058. //
  13059. // MessageId: ERROR_POLICY_OBJECT_NOT_FOUND
  13060. //
  13061. // MessageText:
  13062. //
  13063. // The policy object does not exist.
  13064. //
  13065. const auto ERROR_POLICY_OBJECT_NOT_FOUND = 8219;
  13066. //
  13067. // MessageId: ERROR_POLICY_ONLY_IN_DS
  13068. //
  13069. // MessageText:
  13070. //
  13071. // The requested policy information is only in the directory service.
  13072. //
  13073. const auto ERROR_POLICY_ONLY_IN_DS = 8220;
  13074. //
  13075. // MessageId: ERROR_PROMOTION_ACTIVE
  13076. //
  13077. // MessageText:
  13078. //
  13079. // A domain controller promotion is currently active.
  13080. //
  13081. const auto ERROR_PROMOTION_ACTIVE = 8221;
  13082. //
  13083. // MessageId: ERROR_NO_PROMOTION_ACTIVE
  13084. //
  13085. // MessageText:
  13086. //
  13087. // A domain controller promotion is not currently active
  13088. //
  13089. const auto ERROR_NO_PROMOTION_ACTIVE = 8222;
  13090. // 8223 unused
  13091. //
  13092. // MessageId: ERROR_DS_OPERATIONS_ERROR
  13093. //
  13094. // MessageText:
  13095. //
  13096. // An operations error occurred.
  13097. //
  13098. const auto ERROR_DS_OPERATIONS_ERROR = 8224;
  13099. //
  13100. // MessageId: ERROR_DS_PROTOCOL_ERROR
  13101. //
  13102. // MessageText:
  13103. //
  13104. // A protocol error occurred.
  13105. //
  13106. const auto ERROR_DS_PROTOCOL_ERROR = 8225;
  13107. //
  13108. // MessageId: ERROR_DS_TIMELIMIT_EXCEEDED
  13109. //
  13110. // MessageText:
  13111. //
  13112. // The time limit for this request was exceeded.
  13113. //
  13114. const auto ERROR_DS_TIMELIMIT_EXCEEDED = 8226;
  13115. //
  13116. // MessageId: ERROR_DS_SIZELIMIT_EXCEEDED
  13117. //
  13118. // MessageText:
  13119. //
  13120. // The size limit for this request was exceeded.
  13121. //
  13122. const auto ERROR_DS_SIZELIMIT_EXCEEDED = 8227;
  13123. //
  13124. // MessageId: ERROR_DS_ADMIN_LIMIT_EXCEEDED
  13125. //
  13126. // MessageText:
  13127. //
  13128. // The administrative limit for this request was exceeded.
  13129. //
  13130. const auto ERROR_DS_ADMIN_LIMIT_EXCEEDED = 8228;
  13131. //
  13132. // MessageId: ERROR_DS_COMPARE_FALSE
  13133. //
  13134. // MessageText:
  13135. //
  13136. // The compare response was false.
  13137. //
  13138. const auto ERROR_DS_COMPARE_FALSE = 8229;
  13139. //
  13140. // MessageId: ERROR_DS_COMPARE_TRUE
  13141. //
  13142. // MessageText:
  13143. //
  13144. // The compare response was true.
  13145. //
  13146. const auto ERROR_DS_COMPARE_TRUE = 8230;
  13147. //
  13148. // MessageId: ERROR_DS_AUTH_METHOD_NOT_SUPPORTED
  13149. //
  13150. // MessageText:
  13151. //
  13152. // The requested authentication method is not supported by the server.
  13153. //
  13154. const auto ERROR_DS_AUTH_METHOD_NOT_SUPPORTED = 8231;
  13155. //
  13156. // MessageId: ERROR_DS_STRONG_AUTH_REQUIRED
  13157. //
  13158. // MessageText:
  13159. //
  13160. // A more secure authentication method is required for this server.
  13161. //
  13162. const auto ERROR_DS_STRONG_AUTH_REQUIRED = 8232;
  13163. //
  13164. // MessageId: ERROR_DS_INAPPROPRIATE_AUTH
  13165. //
  13166. // MessageText:
  13167. //
  13168. // Inappropriate authentication.
  13169. //
  13170. const auto ERROR_DS_INAPPROPRIATE_AUTH = 8233;
  13171. //
  13172. // MessageId: ERROR_DS_AUTH_UNKNOWN
  13173. //
  13174. // MessageText:
  13175. //
  13176. // The authentication mechanism is unknown.
  13177. //
  13178. const auto ERROR_DS_AUTH_UNKNOWN = 8234;
  13179. //
  13180. // MessageId: ERROR_DS_REFERRAL
  13181. //
  13182. // MessageText:
  13183. //
  13184. // A referral was returned from the server.
  13185. //
  13186. const auto ERROR_DS_REFERRAL = 8235;
  13187. //
  13188. // MessageId: ERROR_DS_UNAVAILABLE_CRIT_EXTENSION
  13189. //
  13190. // MessageText:
  13191. //
  13192. // The server does not support the requested critical extension.
  13193. //
  13194. const auto ERROR_DS_UNAVAILABLE_CRIT_EXTENSION = 8236;
  13195. //
  13196. // MessageId: ERROR_DS_CONFIDENTIALITY_REQUIRED
  13197. //
  13198. // MessageText:
  13199. //
  13200. // This request requires a secure connection.
  13201. //
  13202. const auto ERROR_DS_CONFIDENTIALITY_REQUIRED = 8237;
  13203. //
  13204. // MessageId: ERROR_DS_INAPPROPRIATE_MATCHING
  13205. //
  13206. // MessageText:
  13207. //
  13208. // Inappropriate matching.
  13209. //
  13210. const auto ERROR_DS_INAPPROPRIATE_MATCHING = 8238;
  13211. //
  13212. // MessageId: ERROR_DS_CONSTRAINT_VIOLATION
  13213. //
  13214. // MessageText:
  13215. //
  13216. // A constraint violation occurred.
  13217. //
  13218. const auto ERROR_DS_CONSTRAINT_VIOLATION = 8239;
  13219. //
  13220. // MessageId: ERROR_DS_NO_SUCH_OBJECT
  13221. //
  13222. // MessageText:
  13223. //
  13224. // There is no such object on the server.
  13225. //
  13226. const auto ERROR_DS_NO_SUCH_OBJECT = 8240;
  13227. //
  13228. // MessageId: ERROR_DS_ALIAS_PROBLEM
  13229. //
  13230. // MessageText:
  13231. //
  13232. // There is an alias problem.
  13233. //
  13234. const auto ERROR_DS_ALIAS_PROBLEM = 8241;
  13235. //
  13236. // MessageId: ERROR_DS_INVALID_DN_SYNTAX
  13237. //
  13238. // MessageText:
  13239. //
  13240. // An invalid dn syntax has been specified.
  13241. //
  13242. const auto ERROR_DS_INVALID_DN_SYNTAX = 8242;
  13243. //
  13244. // MessageId: ERROR_DS_IS_LEAF
  13245. //
  13246. // MessageText:
  13247. //
  13248. // The object is a leaf object.
  13249. //
  13250. const auto ERROR_DS_IS_LEAF = 8243;
  13251. //
  13252. // MessageId: ERROR_DS_ALIAS_DEREF_PROBLEM
  13253. //
  13254. // MessageText:
  13255. //
  13256. // There is an alias dereferencing problem.
  13257. //
  13258. const auto ERROR_DS_ALIAS_DEREF_PROBLEM = 8244;
  13259. //
  13260. // MessageId: ERROR_DS_UNWILLING_TO_PERFORM
  13261. //
  13262. // MessageText:
  13263. //
  13264. // The server is unwilling to process the request.
  13265. //
  13266. const auto ERROR_DS_UNWILLING_TO_PERFORM = 8245;
  13267. //
  13268. // MessageId: ERROR_DS_LOOP_DETECT
  13269. //
  13270. // MessageText:
  13271. //
  13272. // A loop has been detected.
  13273. //
  13274. const auto ERROR_DS_LOOP_DETECT = 8246;
  13275. //
  13276. // MessageId: ERROR_DS_NAMING_VIOLATION
  13277. //
  13278. // MessageText:
  13279. //
  13280. // There is a naming violation.
  13281. //
  13282. const auto ERROR_DS_NAMING_VIOLATION = 8247;
  13283. //
  13284. // MessageId: ERROR_DS_OBJECT_RESULTS_TOO_LARGE
  13285. //
  13286. // MessageText:
  13287. //
  13288. // The result set is too large.
  13289. //
  13290. const auto ERROR_DS_OBJECT_RESULTS_TOO_LARGE = 8248;
  13291. //
  13292. // MessageId: ERROR_DS_AFFECTS_MULTIPLE_DSAS
  13293. //
  13294. // MessageText:
  13295. //
  13296. // The operation affects multiple DSAs
  13297. //
  13298. const auto ERROR_DS_AFFECTS_MULTIPLE_DSAS = 8249;
  13299. //
  13300. // MessageId: ERROR_DS_SERVER_DOWN
  13301. //
  13302. // MessageText:
  13303. //
  13304. // The server is not operational.
  13305. //
  13306. const auto ERROR_DS_SERVER_DOWN = 8250;
  13307. //
  13308. // MessageId: ERROR_DS_LOCAL_ERROR
  13309. //
  13310. // MessageText:
  13311. //
  13312. // A local error has occurred.
  13313. //
  13314. const auto ERROR_DS_LOCAL_ERROR = 8251;
  13315. //
  13316. // MessageId: ERROR_DS_ENCODING_ERROR
  13317. //
  13318. // MessageText:
  13319. //
  13320. // An encoding error has occurred.
  13321. //
  13322. const auto ERROR_DS_ENCODING_ERROR = 8252;
  13323. //
  13324. // MessageId: ERROR_DS_DECODING_ERROR
  13325. //
  13326. // MessageText:
  13327. //
  13328. // A decoding error has occurred.
  13329. //
  13330. const auto ERROR_DS_DECODING_ERROR = 8253;
  13331. //
  13332. // MessageId: ERROR_DS_FILTER_UNKNOWN
  13333. //
  13334. // MessageText:
  13335. //
  13336. // The search filter cannot be recognized.
  13337. //
  13338. const auto ERROR_DS_FILTER_UNKNOWN = 8254;
  13339. //
  13340. // MessageId: ERROR_DS_PARAM_ERROR
  13341. //
  13342. // MessageText:
  13343. //
  13344. // One or more parameters are illegal.
  13345. //
  13346. const auto ERROR_DS_PARAM_ERROR = 8255;
  13347. //
  13348. // MessageId: ERROR_DS_NOT_SUPPORTED
  13349. //
  13350. // MessageText:
  13351. //
  13352. // The specified method is not supported.
  13353. //
  13354. const auto ERROR_DS_NOT_SUPPORTED = 8256;
  13355. //
  13356. // MessageId: ERROR_DS_NO_RESULTS_RETURNED
  13357. //
  13358. // MessageText:
  13359. //
  13360. // No results were returned.
  13361. //
  13362. const auto ERROR_DS_NO_RESULTS_RETURNED = 8257;
  13363. //
  13364. // MessageId: ERROR_DS_CONTROL_NOT_FOUND
  13365. //
  13366. // MessageText:
  13367. //
  13368. // The specified control is not supported by the server.
  13369. //
  13370. const auto ERROR_DS_CONTROL_NOT_FOUND = 8258;
  13371. //
  13372. // MessageId: ERROR_DS_CLIENT_LOOP
  13373. //
  13374. // MessageText:
  13375. //
  13376. // A referral loop was detected by the client.
  13377. //
  13378. const auto ERROR_DS_CLIENT_LOOP = 8259;
  13379. //
  13380. // MessageId: ERROR_DS_REFERRAL_LIMIT_EXCEEDED
  13381. //
  13382. // MessageText:
  13383. //
  13384. // The preset referral limit was exceeded.
  13385. //
  13386. const auto ERROR_DS_REFERRAL_LIMIT_EXCEEDED = 8260;
  13387. //
  13388. // MessageId: ERROR_DS_SORT_CONTROL_MISSING
  13389. //
  13390. // MessageText:
  13391. //
  13392. // The search requires a SORT control.
  13393. //
  13394. const auto ERROR_DS_SORT_CONTROL_MISSING = 8261;
  13395. //
  13396. // MessageId: ERROR_DS_OFFSET_RANGE_ERROR
  13397. //
  13398. // MessageText:
  13399. //
  13400. // The search results exceed the offset range specified.
  13401. //
  13402. const auto ERROR_DS_OFFSET_RANGE_ERROR = 8262;
  13403. //
  13404. // MessageId: ERROR_DS_ROOT_MUST_BE_NC
  13405. //
  13406. // MessageText:
  13407. //
  13408. // The root object must be the head of a naming context. The root object cannot have an instantiated parent.
  13409. //
  13410. const auto ERROR_DS_ROOT_MUST_BE_NC = 8301;
  13411. //
  13412. // MessageId: ERROR_DS_ADD_REPLICA_INHIBITED
  13413. //
  13414. // MessageText:
  13415. //
  13416. // The add replica operation cannot be performed. The naming context must be writeable in order to create the replica.
  13417. //
  13418. const auto ERROR_DS_ADD_REPLICA_INHIBITED = 8302;
  13419. //
  13420. // MessageId: ERROR_DS_ATT_NOT_DEF_IN_SCHEMA
  13421. //
  13422. // MessageText:
  13423. //
  13424. // A reference to an attribute that is not defined in the schema occurred.
  13425. //
  13426. const auto ERROR_DS_ATT_NOT_DEF_IN_SCHEMA = 8303;
  13427. //
  13428. // MessageId: ERROR_DS_MAX_OBJ_SIZE_EXCEEDED
  13429. //
  13430. // MessageText:
  13431. //
  13432. // The maximum size of an object has been exceeded.
  13433. //
  13434. const auto ERROR_DS_MAX_OBJ_SIZE_EXCEEDED = 8304;
  13435. //
  13436. // MessageId: ERROR_DS_OBJ_STRING_NAME_EXISTS
  13437. //
  13438. // MessageText:
  13439. //
  13440. // An attempt was made to add an object to the directory with a name that is already in use.
  13441. //
  13442. const auto ERROR_DS_OBJ_STRING_NAME_EXISTS = 8305;
  13443. //
  13444. // MessageId: ERROR_DS_NO_RDN_DEFINED_IN_SCHEMA
  13445. //
  13446. // MessageText:
  13447. //
  13448. // An attempt was made to add an object of a class that does not have an RDN defined in the schema.
  13449. //
  13450. const auto ERROR_DS_NO_RDN_DEFINED_IN_SCHEMA = 8306;
  13451. //
  13452. // MessageId: ERROR_DS_RDN_DOESNT_MATCH_SCHEMA
  13453. //
  13454. // MessageText:
  13455. //
  13456. // An attempt was made to add an object using an RDN that is not the RDN defined in the schema.
  13457. //
  13458. const auto ERROR_DS_RDN_DOESNT_MATCH_SCHEMA = 8307;
  13459. //
  13460. // MessageId: ERROR_DS_NO_REQUESTED_ATTS_FOUND
  13461. //
  13462. // MessageText:
  13463. //
  13464. // None of the requested attributes were found on the objects.
  13465. //
  13466. const auto ERROR_DS_NO_REQUESTED_ATTS_FOUND = 8308;
  13467. //
  13468. // MessageId: ERROR_DS_USER_BUFFER_TO_SMALL
  13469. //
  13470. // MessageText:
  13471. //
  13472. // The user buffer is too small.
  13473. //
  13474. const auto ERROR_DS_USER_BUFFER_TO_SMALL = 8309;
  13475. //
  13476. // MessageId: ERROR_DS_ATT_IS_NOT_ON_OBJ
  13477. //
  13478. // MessageText:
  13479. //
  13480. // The attribute specified in the operation is not present on the object.
  13481. //
  13482. const auto ERROR_DS_ATT_IS_NOT_ON_OBJ = 8310;
  13483. //
  13484. // MessageId: ERROR_DS_ILLEGAL_MOD_OPERATION
  13485. //
  13486. // MessageText:
  13487. //
  13488. // Illegal modify operation. Some aspect of the modification is not permitted.
  13489. //
  13490. const auto ERROR_DS_ILLEGAL_MOD_OPERATION = 8311;
  13491. //
  13492. // MessageId: ERROR_DS_OBJ_TOO_LARGE
  13493. //
  13494. // MessageText:
  13495. //
  13496. // The specified object is too large.
  13497. //
  13498. const auto ERROR_DS_OBJ_TOO_LARGE = 8312;
  13499. //
  13500. // MessageId: ERROR_DS_BAD_INSTANCE_TYPE
  13501. //
  13502. // MessageText:
  13503. //
  13504. // The specified instance type is not valid.
  13505. //
  13506. const auto ERROR_DS_BAD_INSTANCE_TYPE = 8313;
  13507. //
  13508. // MessageId: ERROR_DS_MASTERDSA_REQUIRED
  13509. //
  13510. // MessageText:
  13511. //
  13512. // The operation must be performed at a master DSA.
  13513. //
  13514. const auto ERROR_DS_MASTERDSA_REQUIRED = 8314;
  13515. //
  13516. // MessageId: ERROR_DS_OBJECT_CLASS_REQUIRED
  13517. //
  13518. // MessageText:
  13519. //
  13520. // The object class attribute must be specified.
  13521. //
  13522. const auto ERROR_DS_OBJECT_CLASS_REQUIRED = 8315;
  13523. //
  13524. // MessageId: ERROR_DS_MISSING_REQUIRED_ATT
  13525. //
  13526. // MessageText:
  13527. //
  13528. // A required attribute is missing.
  13529. //
  13530. const auto ERROR_DS_MISSING_REQUIRED_ATT = 8316;
  13531. //
  13532. // MessageId: ERROR_DS_ATT_NOT_DEF_FOR_CLASS
  13533. //
  13534. // MessageText:
  13535. //
  13536. // An attempt was made to modify an object to include an attribute that is not legal for its class.
  13537. //
  13538. const auto ERROR_DS_ATT_NOT_DEF_FOR_CLASS = 8317;
  13539. //
  13540. // MessageId: ERROR_DS_ATT_ALREADY_EXISTS
  13541. //
  13542. // MessageText:
  13543. //
  13544. // The specified attribute is already present on the object.
  13545. //
  13546. const auto ERROR_DS_ATT_ALREADY_EXISTS = 8318;
  13547. // 8319 unused
  13548. //
  13549. // MessageId: ERROR_DS_CANT_ADD_ATT_VALUES
  13550. //
  13551. // MessageText:
  13552. //
  13553. // The specified attribute is not present, or has no values.
  13554. //
  13555. const auto ERROR_DS_CANT_ADD_ATT_VALUES = 8320;
  13556. //
  13557. // MessageId: ERROR_DS_SINGLE_VALUE_CONSTRAINT
  13558. //
  13559. // MessageText:
  13560. //
  13561. // Multiple values were specified for an attribute that can have only one value.
  13562. //
  13563. const auto ERROR_DS_SINGLE_VALUE_CONSTRAINT = 8321;
  13564. //
  13565. // MessageId: ERROR_DS_RANGE_CONSTRAINT
  13566. //
  13567. // MessageText:
  13568. //
  13569. // A value for the attribute was not in the acceptable range of values.
  13570. //
  13571. const auto ERROR_DS_RANGE_CONSTRAINT = 8322;
  13572. //
  13573. // MessageId: ERROR_DS_ATT_VAL_ALREADY_EXISTS
  13574. //
  13575. // MessageText:
  13576. //
  13577. // The specified value already exists.
  13578. //
  13579. const auto ERROR_DS_ATT_VAL_ALREADY_EXISTS = 8323;
  13580. //
  13581. // MessageId: ERROR_DS_CANT_REM_MISSING_ATT
  13582. //
  13583. // MessageText:
  13584. //
  13585. // The attribute cannot be removed because it is not present on the object.
  13586. //
  13587. const auto ERROR_DS_CANT_REM_MISSING_ATT = 8324;
  13588. //
  13589. // MessageId: ERROR_DS_CANT_REM_MISSING_ATT_VAL
  13590. //
  13591. // MessageText:
  13592. //
  13593. // The attribute value cannot be removed because it is not present on the object.
  13594. //
  13595. const auto ERROR_DS_CANT_REM_MISSING_ATT_VAL = 8325;
  13596. //
  13597. // MessageId: ERROR_DS_ROOT_CANT_BE_SUBREF
  13598. //
  13599. // MessageText:
  13600. //
  13601. // The specified root object cannot be a subref.
  13602. //
  13603. const auto ERROR_DS_ROOT_CANT_BE_SUBREF = 8326;
  13604. //
  13605. // MessageId: ERROR_DS_NO_CHAINING
  13606. //
  13607. // MessageText:
  13608. //
  13609. // Chaining is not permitted.
  13610. //
  13611. const auto ERROR_DS_NO_CHAINING = 8327;
  13612. //
  13613. // MessageId: ERROR_DS_NO_CHAINED_EVAL
  13614. //
  13615. // MessageText:
  13616. //
  13617. // Chained evaluation is not permitted.
  13618. //
  13619. const auto ERROR_DS_NO_CHAINED_EVAL = 8328;
  13620. //
  13621. // MessageId: ERROR_DS_NO_PARENT_OBJECT
  13622. //
  13623. // MessageText:
  13624. //
  13625. // The operation could not be performed because the object's parent is either uninstantiated or deleted.
  13626. //
  13627. const auto ERROR_DS_NO_PARENT_OBJECT = 8329;
  13628. //
  13629. // MessageId: ERROR_DS_PARENT_IS_AN_ALIAS
  13630. //
  13631. // MessageText:
  13632. //
  13633. // Having a parent that is an alias is not permitted. Aliases are leaf objects.
  13634. //
  13635. const auto ERROR_DS_PARENT_IS_AN_ALIAS = 8330;
  13636. //
  13637. // MessageId: ERROR_DS_CANT_MIX_MASTER_AND_REPS
  13638. //
  13639. // MessageText:
  13640. //
  13641. // The object and parent must be of the same type, either both masters or both replicas.
  13642. //
  13643. const auto ERROR_DS_CANT_MIX_MASTER_AND_REPS = 8331;
  13644. //
  13645. // MessageId: ERROR_DS_CHILDREN_EXIST
  13646. //
  13647. // MessageText:
  13648. //
  13649. // The operation cannot be performed because child objects exist. This operation can only be performed on a leaf object.
  13650. //
  13651. const auto ERROR_DS_CHILDREN_EXIST = 8332;
  13652. //
  13653. // MessageId: ERROR_DS_OBJ_NOT_FOUND
  13654. //
  13655. // MessageText:
  13656. //
  13657. // Directory object not found.
  13658. //
  13659. const auto ERROR_DS_OBJ_NOT_FOUND = 8333;
  13660. //
  13661. // MessageId: ERROR_DS_ALIASED_OBJ_MISSING
  13662. //
  13663. // MessageText:
  13664. //
  13665. // The aliased object is missing.
  13666. //
  13667. const auto ERROR_DS_ALIASED_OBJ_MISSING = 8334;
  13668. //
  13669. // MessageId: ERROR_DS_BAD_NAME_SYNTAX
  13670. //
  13671. // MessageText:
  13672. //
  13673. // The object name has bad syntax.
  13674. //
  13675. const auto ERROR_DS_BAD_NAME_SYNTAX = 8335;
  13676. //
  13677. // MessageId: ERROR_DS_ALIAS_POINTS_TO_ALIAS
  13678. //
  13679. // MessageText:
  13680. //
  13681. // It is not permitted for an alias to refer to another alias.
  13682. //
  13683. const auto ERROR_DS_ALIAS_POINTS_TO_ALIAS = 8336;
  13684. //
  13685. // MessageId: ERROR_DS_CANT_DEREF_ALIAS
  13686. //
  13687. // MessageText:
  13688. //
  13689. // The alias cannot be dereferenced.
  13690. //
  13691. const auto ERROR_DS_CANT_DEREF_ALIAS = 8337;
  13692. //
  13693. // MessageId: ERROR_DS_OUT_OF_SCOPE
  13694. //
  13695. // MessageText:
  13696. //
  13697. // The operation is out of scope.
  13698. //
  13699. const auto ERROR_DS_OUT_OF_SCOPE = 8338;
  13700. //
  13701. // MessageId: ERROR_DS_OBJECT_BEING_REMOVED
  13702. //
  13703. // MessageText:
  13704. //
  13705. // The operation cannot continue because the object is in the process of being removed.
  13706. //
  13707. const auto ERROR_DS_OBJECT_BEING_REMOVED = 8339;
  13708. //
  13709. // MessageId: ERROR_DS_CANT_DELETE_DSA_OBJ
  13710. //
  13711. // MessageText:
  13712. //
  13713. // The DSA object cannot be deleted.
  13714. //
  13715. const auto ERROR_DS_CANT_DELETE_DSA_OBJ = 8340;
  13716. //
  13717. // MessageId: ERROR_DS_GENERIC_ERROR
  13718. //
  13719. // MessageText:
  13720. //
  13721. // A directory service error has occurred.
  13722. //
  13723. const auto ERROR_DS_GENERIC_ERROR = 8341;
  13724. //
  13725. // MessageId: ERROR_DS_DSA_MUST_BE_INT_MASTER
  13726. //
  13727. // MessageText:
  13728. //
  13729. // The operation can only be performed on an internal master DSA object.
  13730. //
  13731. const auto ERROR_DS_DSA_MUST_BE_INT_MASTER = 8342;
  13732. //
  13733. // MessageId: ERROR_DS_CLASS_NOT_DSA
  13734. //
  13735. // MessageText:
  13736. //
  13737. // The object must be of class DSA.
  13738. //
  13739. const auto ERROR_DS_CLASS_NOT_DSA = 8343;
  13740. //
  13741. // MessageId: ERROR_DS_INSUFF_ACCESS_RIGHTS
  13742. //
  13743. // MessageText:
  13744. //
  13745. // Insufficient access rights to perform the operation.
  13746. //
  13747. const auto ERROR_DS_INSUFF_ACCESS_RIGHTS = 8344;
  13748. //
  13749. // MessageId: ERROR_DS_ILLEGAL_SUPERIOR
  13750. //
  13751. // MessageText:
  13752. //
  13753. // The object cannot be added because the parent is not on the list of possible superiors.
  13754. //
  13755. const auto ERROR_DS_ILLEGAL_SUPERIOR = 8345;
  13756. //
  13757. // MessageId: ERROR_DS_ATTRIBUTE_OWNED_BY_SAM
  13758. //
  13759. // MessageText:
  13760. //
  13761. // Access to the attribute is not permitted because the attribute is owned by the Security Accounts Manager (SAM).
  13762. //
  13763. const auto ERROR_DS_ATTRIBUTE_OWNED_BY_SAM = 8346;
  13764. //
  13765. // MessageId: ERROR_DS_NAME_TOO_MANY_PARTS
  13766. //
  13767. // MessageText:
  13768. //
  13769. // The name has too many parts.
  13770. //
  13771. const auto ERROR_DS_NAME_TOO_MANY_PARTS = 8347;
  13772. //
  13773. // MessageId: ERROR_DS_NAME_TOO_LONG
  13774. //
  13775. // MessageText:
  13776. //
  13777. // The name is too long.
  13778. //
  13779. const auto ERROR_DS_NAME_TOO_LONG = 8348;
  13780. //
  13781. // MessageId: ERROR_DS_NAME_VALUE_TOO_LONG
  13782. //
  13783. // MessageText:
  13784. //
  13785. // The name value is too long.
  13786. //
  13787. const auto ERROR_DS_NAME_VALUE_TOO_LONG = 8349;
  13788. //
  13789. // MessageId: ERROR_DS_NAME_UNPARSEABLE
  13790. //
  13791. // MessageText:
  13792. //
  13793. // The directory service encountered an error parsing a name.
  13794. //
  13795. const auto ERROR_DS_NAME_UNPARSEABLE = 8350;
  13796. //
  13797. // MessageId: ERROR_DS_NAME_TYPE_UNKNOWN
  13798. //
  13799. // MessageText:
  13800. //
  13801. // The directory service cannot get the attribute type for a name.
  13802. //
  13803. const auto ERROR_DS_NAME_TYPE_UNKNOWN = 8351;
  13804. //
  13805. // MessageId: ERROR_DS_NOT_AN_OBJECT
  13806. //
  13807. // MessageText:
  13808. //
  13809. // The name does not identify an object; the name identifies a phantom.
  13810. //
  13811. const auto ERROR_DS_NOT_AN_OBJECT = 8352;
  13812. //
  13813. // MessageId: ERROR_DS_SEC_DESC_TOO_SHORT
  13814. //
  13815. // MessageText:
  13816. //
  13817. // The security descriptor is too short.
  13818. //
  13819. const auto ERROR_DS_SEC_DESC_TOO_SHORT = 8353;
  13820. //
  13821. // MessageId: ERROR_DS_SEC_DESC_INVALID
  13822. //
  13823. // MessageText:
  13824. //
  13825. // The security descriptor is invalid.
  13826. //
  13827. const auto ERROR_DS_SEC_DESC_INVALID = 8354;
  13828. //
  13829. // MessageId: ERROR_DS_NO_DELETED_NAME
  13830. //
  13831. // MessageText:
  13832. //
  13833. // Failed to create name for deleted object.
  13834. //
  13835. const auto ERROR_DS_NO_DELETED_NAME = 8355;
  13836. //
  13837. // MessageId: ERROR_DS_SUBREF_MUST_HAVE_PARENT
  13838. //
  13839. // MessageText:
  13840. //
  13841. // The parent of a new subref must exist.
  13842. //
  13843. const auto ERROR_DS_SUBREF_MUST_HAVE_PARENT = 8356;
  13844. //
  13845. // MessageId: ERROR_DS_NCNAME_MUST_BE_NC
  13846. //
  13847. // MessageText:
  13848. //
  13849. // The object must be a naming context.
  13850. //
  13851. const auto ERROR_DS_NCNAME_MUST_BE_NC = 8357;
  13852. //
  13853. // MessageId: ERROR_DS_CANT_ADD_SYSTEM_ONLY
  13854. //
  13855. // MessageText:
  13856. //
  13857. // It is not permitted to add an attribute which is owned by the system.
  13858. //
  13859. const auto ERROR_DS_CANT_ADD_SYSTEM_ONLY = 8358;
  13860. //
  13861. // MessageId: ERROR_DS_CLASS_MUST_BE_CONCRETE
  13862. //
  13863. // MessageText:
  13864. //
  13865. // The class of the object must be structural; you cannot instantiate an abstract class.
  13866. //
  13867. const auto ERROR_DS_CLASS_MUST_BE_CONCRETE = 8359;
  13868. //
  13869. // MessageId: ERROR_DS_INVALID_DMD
  13870. //
  13871. // MessageText:
  13872. //
  13873. // The schema object could not be found.
  13874. //
  13875. const auto ERROR_DS_INVALID_DMD = 8360;
  13876. //
  13877. // MessageId: ERROR_DS_OBJ_GUID_EXISTS
  13878. //
  13879. // MessageText:
  13880. //
  13881. // A local object with this GUID (dead or alive) already exists.
  13882. //
  13883. const auto ERROR_DS_OBJ_GUID_EXISTS = 8361;
  13884. //
  13885. // MessageId: ERROR_DS_NOT_ON_BACKLINK
  13886. //
  13887. // MessageText:
  13888. //
  13889. // The operation cannot be performed on a back link.
  13890. //
  13891. const auto ERROR_DS_NOT_ON_BACKLINK = 8362;
  13892. //
  13893. // MessageId: ERROR_DS_NO_CROSSREF_FOR_NC
  13894. //
  13895. // MessageText:
  13896. //
  13897. // The cross reference for the specified naming context could not be found.
  13898. //
  13899. const auto ERROR_DS_NO_CROSSREF_FOR_NC = 8363;
  13900. //
  13901. // MessageId: ERROR_DS_SHUTTING_DOWN
  13902. //
  13903. // MessageText:
  13904. //
  13905. // The operation could not be performed because the directory service is shutting down.
  13906. //
  13907. const auto ERROR_DS_SHUTTING_DOWN = 8364;
  13908. //
  13909. // MessageId: ERROR_DS_UNKNOWN_OPERATION
  13910. //
  13911. // MessageText:
  13912. //
  13913. // The directory service request is invalid.
  13914. //
  13915. const auto ERROR_DS_UNKNOWN_OPERATION = 8365;
  13916. //
  13917. // MessageId: ERROR_DS_INVALID_ROLE_OWNER
  13918. //
  13919. // MessageText:
  13920. //
  13921. // The role owner attribute could not be read.
  13922. //
  13923. const auto ERROR_DS_INVALID_ROLE_OWNER = 8366;
  13924. //
  13925. // MessageId: ERROR_DS_COULDNT_CONTACT_FSMO
  13926. //
  13927. // MessageText:
  13928. //
  13929. // The requested FSMO operation failed. The current FSMO holder could not be contacted.
  13930. //
  13931. const auto ERROR_DS_COULDNT_CONTACT_FSMO = 8367;
  13932. //
  13933. // MessageId: ERROR_DS_CROSS_NC_DN_RENAME
  13934. //
  13935. // MessageText:
  13936. //
  13937. // Modification of a DN across a naming context is not permitted.
  13938. //
  13939. const auto ERROR_DS_CROSS_NC_DN_RENAME = 8368;
  13940. //
  13941. // MessageId: ERROR_DS_CANT_MOD_SYSTEM_ONLY
  13942. //
  13943. // MessageText:
  13944. //
  13945. // The attribute cannot be modified because it is owned by the system.
  13946. //
  13947. const auto ERROR_DS_CANT_MOD_SYSTEM_ONLY = 8369;
  13948. //
  13949. // MessageId: ERROR_DS_REPLICATOR_ONLY
  13950. //
  13951. // MessageText:
  13952. //
  13953. // Only the replicator can perform this function.
  13954. //
  13955. const auto ERROR_DS_REPLICATOR_ONLY = 8370;
  13956. //
  13957. // MessageId: ERROR_DS_OBJ_CLASS_NOT_DEFINED
  13958. //
  13959. // MessageText:
  13960. //
  13961. // The specified class is not defined.
  13962. //
  13963. const auto ERROR_DS_OBJ_CLASS_NOT_DEFINED = 8371;
  13964. //
  13965. // MessageId: ERROR_DS_OBJ_CLASS_NOT_SUBCLASS
  13966. //
  13967. // MessageText:
  13968. //
  13969. // The specified class is not a subclass.
  13970. //
  13971. const auto ERROR_DS_OBJ_CLASS_NOT_SUBCLASS = 8372;
  13972. //
  13973. // MessageId: ERROR_DS_NAME_REFERENCE_INVALID
  13974. //
  13975. // MessageText:
  13976. //
  13977. // The name reference is invalid.
  13978. //
  13979. const auto ERROR_DS_NAME_REFERENCE_INVALID = 8373;
  13980. //
  13981. // MessageId: ERROR_DS_CROSS_REF_EXISTS
  13982. //
  13983. // MessageText:
  13984. //
  13985. // A cross reference already exists.
  13986. //
  13987. const auto ERROR_DS_CROSS_REF_EXISTS = 8374;
  13988. //
  13989. // MessageId: ERROR_DS_CANT_DEL_MASTER_CROSSREF
  13990. //
  13991. // MessageText:
  13992. //
  13993. // It is not permitted to delete a master cross reference.
  13994. //
  13995. const auto ERROR_DS_CANT_DEL_MASTER_CROSSREF = 8375;
  13996. //
  13997. // MessageId: ERROR_DS_SUBTREE_NOTIFY_NOT_NC_HEAD
  13998. //
  13999. // MessageText:
  14000. //
  14001. // Subtree notifications are only supported on NC heads.
  14002. //
  14003. const auto ERROR_DS_SUBTREE_NOTIFY_NOT_NC_HEAD = 8376;
  14004. //
  14005. // MessageId: ERROR_DS_NOTIFY_FILTER_TOO_COMPLEX
  14006. //
  14007. // MessageText:
  14008. //
  14009. // Notification filter is too complex.
  14010. //
  14011. const auto ERROR_DS_NOTIFY_FILTER_TOO_COMPLEX = 8377;
  14012. //
  14013. // MessageId: ERROR_DS_DUP_RDN
  14014. //
  14015. // MessageText:
  14016. //
  14017. // Schema update failed: duplicate RDN.
  14018. //
  14019. const auto ERROR_DS_DUP_RDN = 8378;
  14020. //
  14021. // MessageId: ERROR_DS_DUP_OID
  14022. //
  14023. // MessageText:
  14024. //
  14025. // Schema update failed: duplicate OID.
  14026. //
  14027. const auto ERROR_DS_DUP_OID = 8379;
  14028. //
  14029. // MessageId: ERROR_DS_DUP_MAPI_ID
  14030. //
  14031. // MessageText:
  14032. //
  14033. // Schema update failed: duplicate MAPI identifier.
  14034. //
  14035. const auto ERROR_DS_DUP_MAPI_ID = 8380;
  14036. //
  14037. // MessageId: ERROR_DS_DUP_SCHEMA_ID_GUID
  14038. //
  14039. // MessageText:
  14040. //
  14041. // Schema update failed: duplicate schema-id GUID.
  14042. //
  14043. const auto ERROR_DS_DUP_SCHEMA_ID_GUID = 8381;
  14044. //
  14045. // MessageId: ERROR_DS_DUP_LDAP_DISPLAY_NAME
  14046. //
  14047. // MessageText:
  14048. //
  14049. // Schema update failed: duplicate LDAP display name.
  14050. //
  14051. const auto ERROR_DS_DUP_LDAP_DISPLAY_NAME = 8382;
  14052. //
  14053. // MessageId: ERROR_DS_SEMANTIC_ATT_TEST
  14054. //
  14055. // MessageText:
  14056. //
  14057. // Schema update failed: range-lower less than range upper.
  14058. //
  14059. const auto ERROR_DS_SEMANTIC_ATT_TEST = 8383;
  14060. //
  14061. // MessageId: ERROR_DS_SYNTAX_MISMATCH
  14062. //
  14063. // MessageText:
  14064. //
  14065. // Schema update failed: syntax mismatch.
  14066. //
  14067. const auto ERROR_DS_SYNTAX_MISMATCH = 8384;
  14068. //
  14069. // MessageId: ERROR_DS_EXISTS_IN_MUST_HAVE
  14070. //
  14071. // MessageText:
  14072. //
  14073. // Schema deletion failed: attribute is used in must-contain.
  14074. //
  14075. const auto ERROR_DS_EXISTS_IN_MUST_HAVE = 8385;
  14076. //
  14077. // MessageId: ERROR_DS_EXISTS_IN_MAY_HAVE
  14078. //
  14079. // MessageText:
  14080. //
  14081. // Schema deletion failed: attribute is used in may-contain.
  14082. //
  14083. const auto ERROR_DS_EXISTS_IN_MAY_HAVE = 8386;
  14084. //
  14085. // MessageId: ERROR_DS_NONEXISTENT_MAY_HAVE
  14086. //
  14087. // MessageText:
  14088. //
  14089. // Schema update failed: attribute in may-contain does not exist.
  14090. //
  14091. const auto ERROR_DS_NONEXISTENT_MAY_HAVE = 8387;
  14092. //
  14093. // MessageId: ERROR_DS_NONEXISTENT_MUST_HAVE
  14094. //
  14095. // MessageText:
  14096. //
  14097. // Schema update failed: attribute in must-contain does not exist.
  14098. //
  14099. const auto ERROR_DS_NONEXISTENT_MUST_HAVE = 8388;
  14100. //
  14101. // MessageId: ERROR_DS_AUX_CLS_TEST_FAIL
  14102. //
  14103. // MessageText:
  14104. //
  14105. // Schema update failed: class in aux-class list does not exist or is not an auxiliary class.
  14106. //
  14107. const auto ERROR_DS_AUX_CLS_TEST_FAIL = 8389;
  14108. //
  14109. // MessageId: ERROR_DS_NONEXISTENT_POSS_SUP
  14110. //
  14111. // MessageText:
  14112. //
  14113. // Schema update failed: class in poss-superiors does not exist.
  14114. //
  14115. const auto ERROR_DS_NONEXISTENT_POSS_SUP = 8390;
  14116. //
  14117. // MessageId: ERROR_DS_SUB_CLS_TEST_FAIL
  14118. //
  14119. // MessageText:
  14120. //
  14121. // Schema update failed: class in subclassof list does not exist or does not satisfy hierarchy rules.
  14122. //
  14123. const auto ERROR_DS_SUB_CLS_TEST_FAIL = 8391;
  14124. //
  14125. // MessageId: ERROR_DS_BAD_RDN_ATT_ID_SYNTAX
  14126. //
  14127. // MessageText:
  14128. //
  14129. // Schema update failed: Rdn-Att-Id has wrong syntax.
  14130. //
  14131. const auto ERROR_DS_BAD_RDN_ATT_ID_SYNTAX = 8392;
  14132. //
  14133. // MessageId: ERROR_DS_EXISTS_IN_AUX_CLS
  14134. //
  14135. // MessageText:
  14136. //
  14137. // Schema deletion failed: class is used as auxiliary class.
  14138. //
  14139. const auto ERROR_DS_EXISTS_IN_AUX_CLS = 8393;
  14140. //
  14141. // MessageId: ERROR_DS_EXISTS_IN_SUB_CLS
  14142. //
  14143. // MessageText:
  14144. //
  14145. // Schema deletion failed: class is used as sub class.
  14146. //
  14147. const auto ERROR_DS_EXISTS_IN_SUB_CLS = 8394;
  14148. //
  14149. // MessageId: ERROR_DS_EXISTS_IN_POSS_SUP
  14150. //
  14151. // MessageText:
  14152. //
  14153. // Schema deletion failed: class is used as poss superior.
  14154. //
  14155. const auto ERROR_DS_EXISTS_IN_POSS_SUP = 8395;
  14156. //
  14157. // MessageId: ERROR_DS_RECALCSCHEMA_FAILED
  14158. //
  14159. // MessageText:
  14160. //
  14161. // Schema update failed in recalculating validation cache.
  14162. //
  14163. const auto ERROR_DS_RECALCSCHEMA_FAILED = 8396;
  14164. //
  14165. // MessageId: ERROR_DS_TREE_DELETE_NOT_FINISHED
  14166. //
  14167. // MessageText:
  14168. //
  14169. // The tree deletion is not finished. The request must be made again to continue deleting the tree.
  14170. //
  14171. const auto ERROR_DS_TREE_DELETE_NOT_FINISHED = 8397;
  14172. //
  14173. // MessageId: ERROR_DS_CANT_DELETE
  14174. //
  14175. // MessageText:
  14176. //
  14177. // The requested delete operation could not be performed.
  14178. //
  14179. const auto ERROR_DS_CANT_DELETE = 8398;
  14180. //
  14181. // MessageId: ERROR_DS_ATT_SCHEMA_REQ_ID
  14182. //
  14183. // MessageText:
  14184. //
  14185. // Cannot read the governs class identifier for the schema record.
  14186. //
  14187. const auto ERROR_DS_ATT_SCHEMA_REQ_ID = 8399;
  14188. //
  14189. // MessageId: ERROR_DS_BAD_ATT_SCHEMA_SYNTAX
  14190. //
  14191. // MessageText:
  14192. //
  14193. // The attribute schema has bad syntax.
  14194. //
  14195. const auto ERROR_DS_BAD_ATT_SCHEMA_SYNTAX = 8400;
  14196. //
  14197. // MessageId: ERROR_DS_CANT_CACHE_ATT
  14198. //
  14199. // MessageText:
  14200. //
  14201. // The attribute could not be cached.
  14202. //
  14203. const auto ERROR_DS_CANT_CACHE_ATT = 8401;
  14204. //
  14205. // MessageId: ERROR_DS_CANT_CACHE_CLASS
  14206. //
  14207. // MessageText:
  14208. //
  14209. // The class could not be cached.
  14210. //
  14211. const auto ERROR_DS_CANT_CACHE_CLASS = 8402;
  14212. //
  14213. // MessageId: ERROR_DS_CANT_REMOVE_ATT_CACHE
  14214. //
  14215. // MessageText:
  14216. //
  14217. // The attribute could not be removed from the cache.
  14218. //
  14219. const auto ERROR_DS_CANT_REMOVE_ATT_CACHE = 8403;
  14220. //
  14221. // MessageId: ERROR_DS_CANT_REMOVE_CLASS_CACHE
  14222. //
  14223. // MessageText:
  14224. //
  14225. // The class could not be removed from the cache.
  14226. //
  14227. const auto ERROR_DS_CANT_REMOVE_CLASS_CACHE = 8404;
  14228. //
  14229. // MessageId: ERROR_DS_CANT_RETRIEVE_DN
  14230. //
  14231. // MessageText:
  14232. //
  14233. // The distinguished name attribute could not be read.
  14234. //
  14235. const auto ERROR_DS_CANT_RETRIEVE_DN = 8405;
  14236. //
  14237. // MessageId: ERROR_DS_MISSING_SUPREF
  14238. //
  14239. // MessageText:
  14240. //
  14241. // No superior reference has been configured for the directory service. The directory service is therefore unable to issue referrals to objects outside this forest.
  14242. //
  14243. const auto ERROR_DS_MISSING_SUPREF = 8406;
  14244. //
  14245. // MessageId: ERROR_DS_CANT_RETRIEVE_INSTANCE
  14246. //
  14247. // MessageText:
  14248. //
  14249. // The instance type attribute could not be retrieved.
  14250. //
  14251. const auto ERROR_DS_CANT_RETRIEVE_INSTANCE = 8407;
  14252. //
  14253. // MessageId: ERROR_DS_CODE_INCONSISTENCY
  14254. //
  14255. // MessageText:
  14256. //
  14257. // An internal error has occurred.
  14258. //
  14259. const auto ERROR_DS_CODE_INCONSISTENCY = 8408;
  14260. //
  14261. // MessageId: ERROR_DS_DATABASE_ERROR
  14262. //
  14263. // MessageText:
  14264. //
  14265. // A database error has occurred.
  14266. //
  14267. const auto ERROR_DS_DATABASE_ERROR = 8409;
  14268. //
  14269. // MessageId: ERROR_DS_GOVERNSID_MISSING
  14270. //
  14271. // MessageText:
  14272. //
  14273. // The attribute GOVERNSID is missing.
  14274. //
  14275. const auto ERROR_DS_GOVERNSID_MISSING = 8410;
  14276. //
  14277. // MessageId: ERROR_DS_MISSING_EXPECTED_ATT
  14278. //
  14279. // MessageText:
  14280. //
  14281. // An expected attribute is missing.
  14282. //
  14283. const auto ERROR_DS_MISSING_EXPECTED_ATT = 8411;
  14284. //
  14285. // MessageId: ERROR_DS_NCNAME_MISSING_CR_REF
  14286. //
  14287. // MessageText:
  14288. //
  14289. // The specified naming context is missing a cross reference.
  14290. //
  14291. const auto ERROR_DS_NCNAME_MISSING_CR_REF = 8412;
  14292. //
  14293. // MessageId: ERROR_DS_SECURITY_CHECKING_ERROR
  14294. //
  14295. // MessageText:
  14296. //
  14297. // A security checking error has occurred.
  14298. //
  14299. const auto ERROR_DS_SECURITY_CHECKING_ERROR = 8413;
  14300. //
  14301. // MessageId: ERROR_DS_SCHEMA_NOT_LOADED
  14302. //
  14303. // MessageText:
  14304. //
  14305. // The schema is not loaded.
  14306. //
  14307. const auto ERROR_DS_SCHEMA_NOT_LOADED = 8414;
  14308. //
  14309. // MessageId: ERROR_DS_SCHEMA_ALLOC_FAILED
  14310. //
  14311. // MessageText:
  14312. //
  14313. // Schema allocation failed. Please check if the machine is running low on memory.
  14314. //
  14315. const auto ERROR_DS_SCHEMA_ALLOC_FAILED = 8415;
  14316. //
  14317. // MessageId: ERROR_DS_ATT_SCHEMA_REQ_SYNTAX
  14318. //
  14319. // MessageText:
  14320. //
  14321. // Failed to obtain the required syntax for the attribute schema.
  14322. //
  14323. const auto ERROR_DS_ATT_SCHEMA_REQ_SYNTAX = 8416;
  14324. //
  14325. // MessageId: ERROR_DS_GCVERIFY_ERROR
  14326. //
  14327. // MessageText:
  14328. //
  14329. // The global catalog verification failed. The global catalog is not available or does not support the operation. Some part of the directory is currently not available.
  14330. //
  14331. const auto ERROR_DS_GCVERIFY_ERROR = 8417;
  14332. //
  14333. // MessageId: ERROR_DS_DRA_SCHEMA_MISMATCH
  14334. //
  14335. // MessageText:
  14336. //
  14337. // The replication operation failed because of a schema mismatch between the servers involved.
  14338. //
  14339. const auto ERROR_DS_DRA_SCHEMA_MISMATCH = 8418;
  14340. //
  14341. // MessageId: ERROR_DS_CANT_FIND_DSA_OBJ
  14342. //
  14343. // MessageText:
  14344. //
  14345. // The DSA object could not be found.
  14346. //
  14347. const auto ERROR_DS_CANT_FIND_DSA_OBJ = 8419;
  14348. //
  14349. // MessageId: ERROR_DS_CANT_FIND_EXPECTED_NC
  14350. //
  14351. // MessageText:
  14352. //
  14353. // The naming context could not be found.
  14354. //
  14355. const auto ERROR_DS_CANT_FIND_EXPECTED_NC = 8420;
  14356. //
  14357. // MessageId: ERROR_DS_CANT_FIND_NC_IN_CACHE
  14358. //
  14359. // MessageText:
  14360. //
  14361. // The naming context could not be found in the cache.
  14362. //
  14363. const auto ERROR_DS_CANT_FIND_NC_IN_CACHE = 8421;
  14364. //
  14365. // MessageId: ERROR_DS_CANT_RETRIEVE_CHILD
  14366. //
  14367. // MessageText:
  14368. //
  14369. // The child object could not be retrieved.
  14370. //
  14371. const auto ERROR_DS_CANT_RETRIEVE_CHILD = 8422;
  14372. //
  14373. // MessageId: ERROR_DS_SECURITY_ILLEGAL_MODIFY
  14374. //
  14375. // MessageText:
  14376. //
  14377. // The modification was not permitted for security reasons.
  14378. //
  14379. const auto ERROR_DS_SECURITY_ILLEGAL_MODIFY = 8423;
  14380. //
  14381. // MessageId: ERROR_DS_CANT_REPLACE_HIDDEN_REC
  14382. //
  14383. // MessageText:
  14384. //
  14385. // The operation cannot replace the hidden record.
  14386. //
  14387. const auto ERROR_DS_CANT_REPLACE_HIDDEN_REC = 8424;
  14388. //
  14389. // MessageId: ERROR_DS_BAD_HIERARCHY_FILE
  14390. //
  14391. // MessageText:
  14392. //
  14393. // The hierarchy file is invalid.
  14394. //
  14395. const auto ERROR_DS_BAD_HIERARCHY_FILE = 8425;
  14396. //
  14397. // MessageId: ERROR_DS_BUILD_HIERARCHY_TABLE_FAILED
  14398. //
  14399. // MessageText:
  14400. //
  14401. // The attempt to build the hierarchy table failed.
  14402. //
  14403. const auto ERROR_DS_BUILD_HIERARCHY_TABLE_FAILED = 8426;
  14404. //
  14405. // MessageId: ERROR_DS_CONFIG_PARAM_MISSING
  14406. //
  14407. // MessageText:
  14408. //
  14409. // The directory configuration parameter is missing from the registry.
  14410. //
  14411. const auto ERROR_DS_CONFIG_PARAM_MISSING = 8427;
  14412. //
  14413. // MessageId: ERROR_DS_COUNTING_AB_INDICES_FAILED
  14414. //
  14415. // MessageText:
  14416. //
  14417. // The attempt to count the address book indices failed.
  14418. //
  14419. const auto ERROR_DS_COUNTING_AB_INDICES_FAILED = 8428;
  14420. //
  14421. // MessageId: ERROR_DS_HIERARCHY_TABLE_MALLOC_FAILED
  14422. //
  14423. // MessageText:
  14424. //
  14425. // The allocation of the hierarchy table failed.
  14426. //
  14427. const auto ERROR_DS_HIERARCHY_TABLE_MALLOC_FAILED = 8429;
  14428. //
  14429. // MessageId: ERROR_DS_INTERNAL_FAILURE
  14430. //
  14431. // MessageText:
  14432. //
  14433. // The directory service encountered an internal failure.
  14434. //
  14435. const auto ERROR_DS_INTERNAL_FAILURE = 8430;
  14436. //
  14437. // MessageId: ERROR_DS_UNKNOWN_ERROR
  14438. //
  14439. // MessageText:
  14440. //
  14441. // The directory service encountered an unknown failure.
  14442. //
  14443. const auto ERROR_DS_UNKNOWN_ERROR = 8431;
  14444. //
  14445. // MessageId: ERROR_DS_ROOT_REQUIRES_CLASS_TOP
  14446. //
  14447. // MessageText:
  14448. //
  14449. // A root object requires a class of 'top'.
  14450. //
  14451. const auto ERROR_DS_ROOT_REQUIRES_CLASS_TOP = 8432;
  14452. //
  14453. // MessageId: ERROR_DS_REFUSING_FSMO_ROLES
  14454. //
  14455. // MessageText:
  14456. //
  14457. // This directory server is shutting down, and cannot take ownership of new floating single-master operation roles.
  14458. //
  14459. const auto ERROR_DS_REFUSING_FSMO_ROLES = 8433;
  14460. //
  14461. // MessageId: ERROR_DS_MISSING_FSMO_SETTINGS
  14462. //
  14463. // MessageText:
  14464. //
  14465. // The directory service is missing mandatory configuration information, and is unable to determine the ownership of floating single-master operation roles.
  14466. //
  14467. const auto ERROR_DS_MISSING_FSMO_SETTINGS = 8434;
  14468. //
  14469. // MessageId: ERROR_DS_UNABLE_TO_SURRENDER_ROLES
  14470. //
  14471. // MessageText:
  14472. //
  14473. // The directory service was unable to transfer ownership of one or more floating single-master operation roles to other servers.
  14474. //
  14475. const auto ERROR_DS_UNABLE_TO_SURRENDER_ROLES = 8435;
  14476. //
  14477. // MessageId: ERROR_DS_DRA_GENERIC
  14478. //
  14479. // MessageText:
  14480. //
  14481. // The replication operation failed.
  14482. //
  14483. const auto ERROR_DS_DRA_GENERIC = 8436;
  14484. //
  14485. // MessageId: ERROR_DS_DRA_INVALID_PARAMETER
  14486. //
  14487. // MessageText:
  14488. //
  14489. // An invalid parameter was specified for this replication operation.
  14490. //
  14491. const auto ERROR_DS_DRA_INVALID_PARAMETER = 8437;
  14492. //
  14493. // MessageId: ERROR_DS_DRA_BUSY
  14494. //
  14495. // MessageText:
  14496. //
  14497. // The directory service is too busy to complete the replication operation at this time.
  14498. //
  14499. const auto ERROR_DS_DRA_BUSY = 8438;
  14500. //
  14501. // MessageId: ERROR_DS_DRA_BAD_DN
  14502. //
  14503. // MessageText:
  14504. //
  14505. // The distinguished name specified for this replication operation is invalid.
  14506. //
  14507. const auto ERROR_DS_DRA_BAD_DN = 8439;
  14508. //
  14509. // MessageId: ERROR_DS_DRA_BAD_NC
  14510. //
  14511. // MessageText:
  14512. //
  14513. // The naming context specified for this replication operation is invalid.
  14514. //
  14515. const auto ERROR_DS_DRA_BAD_NC = 8440;
  14516. //
  14517. // MessageId: ERROR_DS_DRA_DN_EXISTS
  14518. //
  14519. // MessageText:
  14520. //
  14521. // The distinguished name specified for this replication operation already exists.
  14522. //
  14523. const auto ERROR_DS_DRA_DN_EXISTS = 8441;
  14524. //
  14525. // MessageId: ERROR_DS_DRA_INTERNAL_ERROR
  14526. //
  14527. // MessageText:
  14528. //
  14529. // The replication system encountered an internal error.
  14530. //
  14531. const auto ERROR_DS_DRA_INTERNAL_ERROR = 8442;
  14532. //
  14533. // MessageId: ERROR_DS_DRA_INCONSISTENT_DIT
  14534. //
  14535. // MessageText:
  14536. //
  14537. // The replication operation encountered a database inconsistency.
  14538. //
  14539. const auto ERROR_DS_DRA_INCONSISTENT_DIT = 8443;
  14540. //
  14541. // MessageId: ERROR_DS_DRA_CONNECTION_FAILED
  14542. //
  14543. // MessageText:
  14544. //
  14545. // The server specified for this replication operation could not be contacted.
  14546. //
  14547. const auto ERROR_DS_DRA_CONNECTION_FAILED = 8444;
  14548. //
  14549. // MessageId: ERROR_DS_DRA_BAD_INSTANCE_TYPE
  14550. //
  14551. // MessageText:
  14552. //
  14553. // The replication operation encountered an object with an invalid instance type.
  14554. //
  14555. const auto ERROR_DS_DRA_BAD_INSTANCE_TYPE = 8445;
  14556. //
  14557. // MessageId: ERROR_DS_DRA_OUT_OF_MEM
  14558. //
  14559. // MessageText:
  14560. //
  14561. // The replication operation failed to allocate memory.
  14562. //
  14563. const auto ERROR_DS_DRA_OUT_OF_MEM = 8446;
  14564. //
  14565. // MessageId: ERROR_DS_DRA_MAIL_PROBLEM
  14566. //
  14567. // MessageText:
  14568. //
  14569. // The replication operation encountered an error with the mail system.
  14570. //
  14571. const auto ERROR_DS_DRA_MAIL_PROBLEM = 8447;
  14572. //
  14573. // MessageId: ERROR_DS_DRA_REF_ALREADY_EXISTS
  14574. //
  14575. // MessageText:
  14576. //
  14577. // The replication reference information for the target server already exists.
  14578. //
  14579. const auto ERROR_DS_DRA_REF_ALREADY_EXISTS = 8448;
  14580. //
  14581. // MessageId: ERROR_DS_DRA_REF_NOT_FOUND
  14582. //
  14583. // MessageText:
  14584. //
  14585. // The replication reference information for the target server does not exist.
  14586. //
  14587. const auto ERROR_DS_DRA_REF_NOT_FOUND = 8449;
  14588. //
  14589. // MessageId: ERROR_DS_DRA_OBJ_IS_REP_SOURCE
  14590. //
  14591. // MessageText:
  14592. //
  14593. // The naming context cannot be removed because it is replicated to another server.
  14594. //
  14595. const auto ERROR_DS_DRA_OBJ_IS_REP_SOURCE = 8450;
  14596. //
  14597. // MessageId: ERROR_DS_DRA_DB_ERROR
  14598. //
  14599. // MessageText:
  14600. //
  14601. // The replication operation encountered a database error.
  14602. //
  14603. const auto ERROR_DS_DRA_DB_ERROR = 8451;
  14604. //
  14605. // MessageId: ERROR_DS_DRA_NO_REPLICA
  14606. //
  14607. // MessageText:
  14608. //
  14609. // The naming context is in the process of being removed or is not replicated from the specified server.
  14610. //
  14611. const auto ERROR_DS_DRA_NO_REPLICA = 8452;
  14612. //
  14613. // MessageId: ERROR_DS_DRA_ACCESS_DENIED
  14614. //
  14615. // MessageText:
  14616. //
  14617. // Replication access was denied.
  14618. //
  14619. const auto ERROR_DS_DRA_ACCESS_DENIED = 8453;
  14620. //
  14621. // MessageId: ERROR_DS_DRA_NOT_SUPPORTED
  14622. //
  14623. // MessageText:
  14624. //
  14625. // The requested operation is not supported by this version of the directory service.
  14626. //
  14627. const auto ERROR_DS_DRA_NOT_SUPPORTED = 8454;
  14628. //
  14629. // MessageId: ERROR_DS_DRA_RPC_CANCELLED
  14630. //
  14631. // MessageText:
  14632. //
  14633. // The replication remote procedure call was cancelled.
  14634. //
  14635. const auto ERROR_DS_DRA_RPC_CANCELLED = 8455;
  14636. //
  14637. // MessageId: ERROR_DS_DRA_SOURCE_DISABLED
  14638. //
  14639. // MessageText:
  14640. //
  14641. // The source server is currently rejecting replication requests.
  14642. //
  14643. const auto ERROR_DS_DRA_SOURCE_DISABLED = 8456;
  14644. //
  14645. // MessageId: ERROR_DS_DRA_SINK_DISABLED
  14646. //
  14647. // MessageText:
  14648. //
  14649. // The destination server is currently rejecting replication requests.
  14650. //
  14651. const auto ERROR_DS_DRA_SINK_DISABLED = 8457;
  14652. //
  14653. // MessageId: ERROR_DS_DRA_NAME_COLLISION
  14654. //
  14655. // MessageText:
  14656. //
  14657. // The replication operation failed due to a collision of object names.
  14658. //
  14659. const auto ERROR_DS_DRA_NAME_COLLISION = 8458;
  14660. //
  14661. // MessageId: ERROR_DS_DRA_SOURCE_REINSTALLED
  14662. //
  14663. // MessageText:
  14664. //
  14665. // The replication source has been reinstalled.
  14666. //
  14667. const auto ERROR_DS_DRA_SOURCE_REINSTALLED = 8459;
  14668. //
  14669. // MessageId: ERROR_DS_DRA_MISSING_PARENT
  14670. //
  14671. // MessageText:
  14672. //
  14673. // The replication operation failed because a required parent object is missing.
  14674. //
  14675. const auto ERROR_DS_DRA_MISSING_PARENT = 8460;
  14676. //
  14677. // MessageId: ERROR_DS_DRA_PREEMPTED
  14678. //
  14679. // MessageText:
  14680. //
  14681. // The replication operation was preempted.
  14682. //
  14683. const auto ERROR_DS_DRA_PREEMPTED = 8461;
  14684. //
  14685. // MessageId: ERROR_DS_DRA_ABANDON_SYNC
  14686. //
  14687. // MessageText:
  14688. //
  14689. // The replication synchronization attempt was abandoned because of a lack of updates.
  14690. //
  14691. const auto ERROR_DS_DRA_ABANDON_SYNC = 8462;
  14692. //
  14693. // MessageId: ERROR_DS_DRA_SHUTDOWN
  14694. //
  14695. // MessageText:
  14696. //
  14697. // The replication operation was terminated because the system is shutting down.
  14698. //
  14699. const auto ERROR_DS_DRA_SHUTDOWN = 8463;
  14700. //
  14701. // MessageId: ERROR_DS_DRA_INCOMPATIBLE_PARTIAL_SET
  14702. //
  14703. // MessageText:
  14704. //
  14705. // Synchronization attempt failed because the destination DC is currently waiting to synchronize new partial attributes from source. This condition is normal if a recent schema change modified the partial attribute set. The destination partial attribute set is not a subset of source partial attribute set.
  14706. //
  14707. const auto ERROR_DS_DRA_INCOMPATIBLE_PARTIAL_SET = 8464;
  14708. //
  14709. // MessageId: ERROR_DS_DRA_SOURCE_IS_PARTIAL_REPLICA
  14710. //
  14711. // MessageText:
  14712. //
  14713. // The replication synchronization attempt failed because a master replica attempted to sync from a partial replica.
  14714. //
  14715. const auto ERROR_DS_DRA_SOURCE_IS_PARTIAL_REPLICA = 8465;
  14716. //
  14717. // MessageId: ERROR_DS_DRA_EXTN_CONNECTION_FAILED
  14718. //
  14719. // MessageText:
  14720. //
  14721. // The server specified for this replication operation was contacted, but that server was unable to contact an additional server needed to complete the operation.
  14722. //
  14723. const auto ERROR_DS_DRA_EXTN_CONNECTION_FAILED = 8466;
  14724. //
  14725. // MessageId: ERROR_DS_INSTALL_SCHEMA_MISMATCH
  14726. //
  14727. // MessageText:
  14728. //
  14729. // The version of the directory service schema of the source forest is not compatible with the version of directory service on this computer.
  14730. //
  14731. const auto ERROR_DS_INSTALL_SCHEMA_MISMATCH = 8467;
  14732. //
  14733. // MessageId: ERROR_DS_DUP_LINK_ID
  14734. //
  14735. // MessageText:
  14736. //
  14737. // Schema update failed: An attribute with the same link identifier already exists.
  14738. //
  14739. const auto ERROR_DS_DUP_LINK_ID = 8468;
  14740. //
  14741. // MessageId: ERROR_DS_NAME_ERROR_RESOLVING
  14742. //
  14743. // MessageText:
  14744. //
  14745. // Name translation: Generic processing error.
  14746. //
  14747. const auto ERROR_DS_NAME_ERROR_RESOLVING = 8469;
  14748. //
  14749. // MessageId: ERROR_DS_NAME_ERROR_NOT_FOUND
  14750. //
  14751. // MessageText:
  14752. //
  14753. // Name translation: Could not find the name or insufficient right to see name.
  14754. //
  14755. const auto ERROR_DS_NAME_ERROR_NOT_FOUND = 8470;
  14756. //
  14757. // MessageId: ERROR_DS_NAME_ERROR_NOT_UNIQUE
  14758. //
  14759. // MessageText:
  14760. //
  14761. // Name translation: Input name mapped to more than one output name.
  14762. //
  14763. const auto ERROR_DS_NAME_ERROR_NOT_UNIQUE = 8471;
  14764. //
  14765. // MessageId: ERROR_DS_NAME_ERROR_NO_MAPPING
  14766. //
  14767. // MessageText:
  14768. //
  14769. // Name translation: Input name found, but not the associated output format.
  14770. //
  14771. const auto ERROR_DS_NAME_ERROR_NO_MAPPING = 8472;
  14772. //
  14773. // MessageId: ERROR_DS_NAME_ERROR_DOMAIN_ONLY
  14774. //
  14775. // MessageText:
  14776. //
  14777. // Name translation: Unable to resolve completely, only the domain was found.
  14778. //
  14779. const auto ERROR_DS_NAME_ERROR_DOMAIN_ONLY = 8473;
  14780. //
  14781. // MessageId: ERROR_DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING
  14782. //
  14783. // MessageText:
  14784. //
  14785. // Name translation: Unable to perform purely syntactical mapping at the client without going out to the wire.
  14786. //
  14787. const auto ERROR_DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING = 8474;
  14788. //
  14789. // MessageId: ERROR_DS_CONSTRUCTED_ATT_MOD
  14790. //
  14791. // MessageText:
  14792. //
  14793. // Modification of a constructed attribute is not allowed.
  14794. //
  14795. const auto ERROR_DS_CONSTRUCTED_ATT_MOD = 8475;
  14796. //
  14797. // MessageId: ERROR_DS_WRONG_OM_OBJ_CLASS
  14798. //
  14799. // MessageText:
  14800. //
  14801. // The OM-Object-Class specified is incorrect for an attribute with the specified syntax.
  14802. //
  14803. const auto ERROR_DS_WRONG_OM_OBJ_CLASS = 8476;
  14804. //
  14805. // MessageId: ERROR_DS_DRA_REPL_PENDING
  14806. //
  14807. // MessageText:
  14808. //
  14809. // The replication request has been posted; waiting for reply.
  14810. //
  14811. const auto ERROR_DS_DRA_REPL_PENDING = 8477;
  14812. //
  14813. // MessageId: ERROR_DS_DS_REQUIRED
  14814. //
  14815. // MessageText:
  14816. //
  14817. // The requested operation requires a directory service, and none was available.
  14818. //
  14819. const auto ERROR_DS_DS_REQUIRED = 8478;
  14820. //
  14821. // MessageId: ERROR_DS_INVALID_LDAP_DISPLAY_NAME
  14822. //
  14823. // MessageText:
  14824. //
  14825. // The LDAP display name of the class or attribute contains non-ASCII characters.
  14826. //
  14827. const auto ERROR_DS_INVALID_LDAP_DISPLAY_NAME = 8479;
  14828. //
  14829. // MessageId: ERROR_DS_NON_BASE_SEARCH
  14830. //
  14831. // MessageText:
  14832. //
  14833. // The requested search operation is only supported for base searches.
  14834. //
  14835. const auto ERROR_DS_NON_BASE_SEARCH = 8480;
  14836. //
  14837. // MessageId: ERROR_DS_CANT_RETRIEVE_ATTS
  14838. //
  14839. // MessageText:
  14840. //
  14841. // The search failed to retrieve attributes from the database.
  14842. //
  14843. const auto ERROR_DS_CANT_RETRIEVE_ATTS = 8481;
  14844. //
  14845. // MessageId: ERROR_DS_BACKLINK_WITHOUT_LINK
  14846. //
  14847. // MessageText:
  14848. //
  14849. // The schema update operation tried to add a backward link attribute that has no corresponding forward link.
  14850. //
  14851. const auto ERROR_DS_BACKLINK_WITHOUT_LINK = 8482;
  14852. //
  14853. // MessageId: ERROR_DS_EPOCH_MISMATCH
  14854. //
  14855. // MessageText:
  14856. //
  14857. // Source and destination of a cross-domain move do not agree on the object's epoch number. Either source or destination does not have the latest version of the object.
  14858. //
  14859. const auto ERROR_DS_EPOCH_MISMATCH = 8483;
  14860. //
  14861. // MessageId: ERROR_DS_SRC_NAME_MISMATCH
  14862. //
  14863. // MessageText:
  14864. //
  14865. // Source and destination of a cross-domain move do not agree on the object's current name. Either source or destination does not have the latest version of the object.
  14866. //
  14867. const auto ERROR_DS_SRC_NAME_MISMATCH = 8484;
  14868. //
  14869. // MessageId: ERROR_DS_SRC_AND_DST_NC_IDENTICAL
  14870. //
  14871. // MessageText:
  14872. //
  14873. // Source and destination for the cross-domain move operation are identical. Caller should use local move operation instead of cross-domain move operation.
  14874. //
  14875. const auto ERROR_DS_SRC_AND_DST_NC_IDENTICAL = 8485;
  14876. //
  14877. // MessageId: ERROR_DS_DST_NC_MISMATCH
  14878. //
  14879. // MessageText:
  14880. //
  14881. // Source and destination for a cross-domain move are not in agreement on the naming contexts in the forest. Either source or destination does not have the latest version of the Partitions container.
  14882. //
  14883. const auto ERROR_DS_DST_NC_MISMATCH = 8486;
  14884. //
  14885. // MessageId: ERROR_DS_NOT_AUTHORITIVE_FOR_DST_NC
  14886. //
  14887. // MessageText:
  14888. //
  14889. // Destination of a cross-domain move is not authoritative for the destination naming context.
  14890. //
  14891. const auto ERROR_DS_NOT_AUTHORITIVE_FOR_DST_NC = 8487;
  14892. //
  14893. // MessageId: ERROR_DS_SRC_GUID_MISMATCH
  14894. //
  14895. // MessageText:
  14896. //
  14897. // Source and destination of a cross-domain move do not agree on the identity of the source object. Either source or destination does not have the latest version of the source object.
  14898. //
  14899. const auto ERROR_DS_SRC_GUID_MISMATCH = 8488;
  14900. //
  14901. // MessageId: ERROR_DS_CANT_MOVE_DELETED_OBJECT
  14902. //
  14903. // MessageText:
  14904. //
  14905. // Object being moved across-domains is already known to be deleted by the destination server. The source server does not have the latest version of the source object.
  14906. //
  14907. const auto ERROR_DS_CANT_MOVE_DELETED_OBJECT = 8489;
  14908. //
  14909. // MessageId: ERROR_DS_PDC_OPERATION_IN_PROGRESS
  14910. //
  14911. // MessageText:
  14912. //
  14913. // Another operation which requires exclusive access to the PDC FSMO is already in progress.
  14914. //
  14915. const auto ERROR_DS_PDC_OPERATION_IN_PROGRESS = 8490;
  14916. //
  14917. // MessageId: ERROR_DS_CROSS_DOMAIN_CLEANUP_REQD
  14918. //
  14919. // MessageText:
  14920. //
  14921. // A cross-domain move operation failed such that two versions of the moved object exist - one each in the source and destination domains. The destination object needs to be removed to restore the system to a consistent state.
  14922. //
  14923. const auto ERROR_DS_CROSS_DOMAIN_CLEANUP_REQD = 8491;
  14924. //
  14925. // MessageId: ERROR_DS_ILLEGAL_XDOM_MOVE_OPERATION
  14926. //
  14927. // MessageText:
  14928. //
  14929. // This object may not be moved across domain boundaries either because cross-domain moves for this class are disallowed, or the object has some special characteristics, e.g.: trust account or restricted RID, which prevent its move.
  14930. //
  14931. const auto ERROR_DS_ILLEGAL_XDOM_MOVE_OPERATION = 8492;
  14932. //
  14933. // MessageId: ERROR_DS_CANT_WITH_ACCT_GROUP_MEMBERSHPS
  14934. //
  14935. // MessageText:
  14936. //
  14937. // Can't move objects with memberships across domain boundaries as once moved, this would violate the membership conditions of the account group. Remove the object from any account group memberships and retry.
  14938. //
  14939. const auto ERROR_DS_CANT_WITH_ACCT_GROUP_MEMBERSHPS = 8493;
  14940. //
  14941. // MessageId: ERROR_DS_NC_MUST_HAVE_NC_PARENT
  14942. //
  14943. // MessageText:
  14944. //
  14945. // A naming context head must be the immediate child of another naming context head, not of an interior node.
  14946. //
  14947. const auto ERROR_DS_NC_MUST_HAVE_NC_PARENT = 8494;
  14948. //
  14949. // MessageId: ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE
  14950. //
  14951. // MessageText:
  14952. //
  14953. // The directory cannot validate the proposed naming context name because it does not hold a replica of the naming context above the proposed naming context. Please ensure that the domain naming master role is held by a server that is configured as a global catalog server, and that the server is up to date with its replication partners. (Applies only to Windows 2000 Domain Naming masters)
  14954. //
  14955. const auto ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE = 8495;
  14956. //
  14957. // MessageId: ERROR_DS_DST_DOMAIN_NOT_NATIVE
  14958. //
  14959. // MessageText:
  14960. //
  14961. // Destination domain must be in native mode.
  14962. //
  14963. const auto ERROR_DS_DST_DOMAIN_NOT_NATIVE = 8496;
  14964. //
  14965. // MessageId: ERROR_DS_MISSING_INFRASTRUCTURE_CONTAINER
  14966. //
  14967. // MessageText:
  14968. //
  14969. // The operation cannot be performed because the server does not have an infrastructure container in the domain of interest.
  14970. //
  14971. const auto ERROR_DS_MISSING_INFRASTRUCTURE_CONTAINER = 8497;
  14972. //
  14973. // MessageId: ERROR_DS_CANT_MOVE_ACCOUNT_GROUP
  14974. //
  14975. // MessageText:
  14976. //
  14977. // Cross-domain move of non-empty account groups is not allowed.
  14978. //
  14979. const auto ERROR_DS_CANT_MOVE_ACCOUNT_GROUP = 8498;
  14980. //
  14981. // MessageId: ERROR_DS_CANT_MOVE_RESOURCE_GROUP
  14982. //
  14983. // MessageText:
  14984. //
  14985. // Cross-domain move of non-empty resource groups is not allowed.
  14986. //
  14987. const auto ERROR_DS_CANT_MOVE_RESOURCE_GROUP = 8499;
  14988. //
  14989. // MessageId: ERROR_DS_INVALID_SEARCH_FLAG
  14990. //
  14991. // MessageText:
  14992. //
  14993. // The search flags for the attribute are invalid. The ANR bit is valid only on attributes of Unicode or Teletex strings.
  14994. //
  14995. const auto ERROR_DS_INVALID_SEARCH_FLAG = 8500;
  14996. //
  14997. // MessageId: ERROR_DS_NO_TREE_DELETE_ABOVE_NC
  14998. //
  14999. // MessageText:
  15000. //
  15001. // Tree deletions starting at an object which has an NC head as a descendant are not allowed.
  15002. //
  15003. const auto ERROR_DS_NO_TREE_DELETE_ABOVE_NC = 8501;
  15004. //
  15005. // MessageId: ERROR_DS_COULDNT_LOCK_TREE_FOR_DELETE
  15006. //
  15007. // MessageText:
  15008. //
  15009. // The directory service failed to lock a tree in preparation for a tree deletion because the tree was in use.
  15010. //
  15011. const auto ERROR_DS_COULDNT_LOCK_TREE_FOR_DELETE = 8502;
  15012. //
  15013. // MessageId: ERROR_DS_COULDNT_IDENTIFY_OBJECTS_FOR_TREE_DELETE
  15014. //
  15015. // MessageText:
  15016. //
  15017. // The directory service failed to identify the list of objects to delete while attempting a tree deletion.
  15018. //
  15019. const auto ERROR_DS_COULDNT_IDENTIFY_OBJECTS_FOR_TREE_DELETE = 8503;
  15020. //
  15021. // MessageId: ERROR_DS_SAM_INIT_FAILURE
  15022. //
  15023. // MessageText:
  15024. //
  15025. // Security Accounts Manager initialization failed because of the following error: %1.
  15026. // Error Status: 0x%2. Click OK to shut down the system and reboot into Directory Services Restore Mode. Check the event log for detailed information.
  15027. //
  15028. const auto ERROR_DS_SAM_INIT_FAILURE = 8504;
  15029. //
  15030. // MessageId: ERROR_DS_SENSITIVE_GROUP_VIOLATION
  15031. //
  15032. // MessageText:
  15033. //
  15034. // Only an administrator can modify the membership list of an administrative group.
  15035. //
  15036. const auto ERROR_DS_SENSITIVE_GROUP_VIOLATION = 8505;
  15037. //
  15038. // MessageId: ERROR_DS_CANT_MOD_PRIMARYGROUPID
  15039. //
  15040. // MessageText:
  15041. //
  15042. // Cannot change the primary group ID of a domain controller account.
  15043. //
  15044. const auto ERROR_DS_CANT_MOD_PRIMARYGROUPID = 8506;
  15045. //
  15046. // MessageId: ERROR_DS_ILLEGAL_BASE_SCHEMA_MOD
  15047. //
  15048. // MessageText:
  15049. //
  15050. // An attempt is made to modify the base schema.
  15051. //
  15052. const auto ERROR_DS_ILLEGAL_BASE_SCHEMA_MOD = 8507;
  15053. //
  15054. // MessageId: ERROR_DS_NONSAFE_SCHEMA_CHANGE
  15055. //
  15056. // MessageText:
  15057. //
  15058. // Adding a new mandatory attribute to an existing class, deleting a mandatory attribute from an existing class, or adding an optional attribute to the special class Top that is not a backlink attribute (directly or through inheritance, for example, by adding or deleting an auxiliary class) is not allowed.
  15059. //
  15060. const auto ERROR_DS_NONSAFE_SCHEMA_CHANGE = 8508;
  15061. //
  15062. // MessageId: ERROR_DS_SCHEMA_UPDATE_DISALLOWED
  15063. //
  15064. // MessageText:
  15065. //
  15066. // Schema update is not allowed on this DC because the DC is not the schema FSMO Role Owner.
  15067. //
  15068. const auto ERROR_DS_SCHEMA_UPDATE_DISALLOWED = 8509;
  15069. //
  15070. // MessageId: ERROR_DS_CANT_CREATE_UNDER_SCHEMA
  15071. //
  15072. // MessageText:
  15073. //
  15074. // An object of this class cannot be created under the schema container. You can only create attribute-schema and class-schema objects under the schema container.
  15075. //
  15076. const auto ERROR_DS_CANT_CREATE_UNDER_SCHEMA = 8510;
  15077. //
  15078. // MessageId: ERROR_DS_INSTALL_NO_SRC_SCH_VERSION
  15079. //
  15080. // MessageText:
  15081. //
  15082. // The replica/child install failed to get the objectVersion attribute on the schema container on the source DC. Either the attribute is missing on the schema container or the credentials supplied do not have permission to read it.
  15083. //
  15084. const auto ERROR_DS_INSTALL_NO_SRC_SCH_VERSION = 8511;
  15085. //
  15086. // MessageId: ERROR_DS_INSTALL_NO_SCH_VERSION_IN_INIFILE
  15087. //
  15088. // MessageText:
  15089. //
  15090. // The replica/child install failed to read the objectVersion attribute in the SCHEMA section of the file schema.ini in the system32 directory.
  15091. //
  15092. const auto ERROR_DS_INSTALL_NO_SCH_VERSION_IN_INIFILE = 8512;
  15093. //
  15094. // MessageId: ERROR_DS_INVALID_GROUP_TYPE
  15095. //
  15096. // MessageText:
  15097. //
  15098. // The specified group type is invalid.
  15099. //
  15100. const auto ERROR_DS_INVALID_GROUP_TYPE = 8513;
  15101. //
  15102. // MessageId: ERROR_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN
  15103. //
  15104. // MessageText:
  15105. //
  15106. // You cannot nest global groups in a mixed domain if the group is security-enabled.
  15107. //
  15108. const auto ERROR_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN = 8514;
  15109. //
  15110. // MessageId: ERROR_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN
  15111. //
  15112. // MessageText:
  15113. //
  15114. // You cannot nest local groups in a mixed domain if the group is security-enabled.
  15115. //
  15116. const auto ERROR_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN = 8515;
  15117. //
  15118. // MessageId: ERROR_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER
  15119. //
  15120. // MessageText:
  15121. //
  15122. // A global group cannot have a local group as a member.
  15123. //
  15124. const auto ERROR_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER = 8516;
  15125. //
  15126. // MessageId: ERROR_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER
  15127. //
  15128. // MessageText:
  15129. //
  15130. // A global group cannot have a universal group as a member.
  15131. //
  15132. const auto ERROR_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER = 8517;
  15133. //
  15134. // MessageId: ERROR_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER
  15135. //
  15136. // MessageText:
  15137. //
  15138. // A universal group cannot have a local group as a member.
  15139. //
  15140. const auto ERROR_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER = 8518;
  15141. //
  15142. // MessageId: ERROR_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER
  15143. //
  15144. // MessageText:
  15145. //
  15146. // A global group cannot have a cross-domain member.
  15147. //
  15148. const auto ERROR_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER = 8519;
  15149. //
  15150. // MessageId: ERROR_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER
  15151. //
  15152. // MessageText:
  15153. //
  15154. // A local group cannot have another cross domain local group as a member.
  15155. //
  15156. const auto ERROR_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER = 8520;
  15157. //
  15158. // MessageId: ERROR_DS_HAVE_PRIMARY_MEMBERS
  15159. //
  15160. // MessageText:
  15161. //
  15162. // A group with primary members cannot change to a security-disabled group.
  15163. //
  15164. const auto ERROR_DS_HAVE_PRIMARY_MEMBERS = 8521;
  15165. //
  15166. // MessageId: ERROR_DS_STRING_SD_CONVERSION_FAILED
  15167. //
  15168. // MessageText:
  15169. //
  15170. // The schema cache load failed to convert the string default SD on a class-schema object.
  15171. //
  15172. const auto ERROR_DS_STRING_SD_CONVERSION_FAILED = 8522;
  15173. //
  15174. // MessageId: ERROR_DS_NAMING_MASTER_GC
  15175. //
  15176. // MessageText:
  15177. //
  15178. // Only DSAs configured to be Global Catalog servers should be allowed to hold the Domain Naming Master FSMO role. (Applies only to Windows 2000 servers)
  15179. //
  15180. const auto ERROR_DS_NAMING_MASTER_GC = 8523;
  15181. //
  15182. // MessageId: ERROR_DS_DNS_LOOKUP_FAILURE
  15183. //
  15184. // MessageText:
  15185. //
  15186. // The DSA operation is unable to proceed because of a DNS lookup failure.
  15187. //
  15188. const auto ERROR_DS_DNS_LOOKUP_FAILURE = 8524;
  15189. //
  15190. // MessageId: ERROR_DS_COULDNT_UPDATE_SPNS
  15191. //
  15192. // MessageText:
  15193. //
  15194. // While processing a change to the DNS Host Name for an object, the Service Principal Name values could not be kept in sync.
  15195. //
  15196. const auto ERROR_DS_COULDNT_UPDATE_SPNS = 8525;
  15197. //
  15198. // MessageId: ERROR_DS_CANT_RETRIEVE_SD
  15199. //
  15200. // MessageText:
  15201. //
  15202. // The Security Descriptor attribute could not be read.
  15203. //
  15204. const auto ERROR_DS_CANT_RETRIEVE_SD = 8526;
  15205. //
  15206. // MessageId: ERROR_DS_KEY_NOT_UNIQUE
  15207. //
  15208. // MessageText:
  15209. //
  15210. // The object requested was not found, but an object with that key was found.
  15211. //
  15212. const auto ERROR_DS_KEY_NOT_UNIQUE = 8527;
  15213. //
  15214. // MessageId: ERROR_DS_WRONG_LINKED_ATT_SYNTAX
  15215. //
  15216. // MessageText:
  15217. //
  15218. // The syntax of the linked attribute being added is incorrect. Forward links can only have syntax 2.5.5.1, 2.5.5.7, and 2.5.5.14, and backlinks can only have syntax 2.5.5.1
  15219. //
  15220. const auto ERROR_DS_WRONG_LINKED_ATT_SYNTAX = 8528;
  15221. //
  15222. // MessageId: ERROR_DS_SAM_NEED_BOOTKEY_PASSWORD
  15223. //
  15224. // MessageText:
  15225. //
  15226. // Security Account Manager needs to get the boot password.
  15227. //
  15228. const auto ERROR_DS_SAM_NEED_BOOTKEY_PASSWORD = 8529;
  15229. //
  15230. // MessageId: ERROR_DS_SAM_NEED_BOOTKEY_FLOPPY
  15231. //
  15232. // MessageText:
  15233. //
  15234. // Security Account Manager needs to get the boot key from floppy disk.
  15235. //
  15236. const auto ERROR_DS_SAM_NEED_BOOTKEY_FLOPPY = 8530;
  15237. //
  15238. // MessageId: ERROR_DS_CANT_START
  15239. //
  15240. // MessageText:
  15241. //
  15242. // Directory Service cannot start.
  15243. //
  15244. const auto ERROR_DS_CANT_START = 8531;
  15245. //
  15246. // MessageId: ERROR_DS_INIT_FAILURE
  15247. //
  15248. // MessageText:
  15249. //
  15250. // Directory Services could not start.
  15251. //
  15252. const auto ERROR_DS_INIT_FAILURE = 8532;
  15253. //
  15254. // MessageId: ERROR_DS_NO_PKT_PRIVACY_ON_CONNECTION
  15255. //
  15256. // MessageText:
  15257. //
  15258. // The connection between client and server requires packet privacy or better.
  15259. //
  15260. const auto ERROR_DS_NO_PKT_PRIVACY_ON_CONNECTION = 8533;
  15261. //
  15262. // MessageId: ERROR_DS_SOURCE_DOMAIN_IN_FOREST
  15263. //
  15264. // MessageText:
  15265. //
  15266. // The source domain may not be in the same forest as destination.
  15267. //
  15268. const auto ERROR_DS_SOURCE_DOMAIN_IN_FOREST = 8534;
  15269. //
  15270. // MessageId: ERROR_DS_DESTINATION_DOMAIN_NOT_IN_FOREST
  15271. //
  15272. // MessageText:
  15273. //
  15274. // The destination domain must be in the forest.
  15275. //
  15276. const auto ERROR_DS_DESTINATION_DOMAIN_NOT_IN_FOREST = 8535;
  15277. //
  15278. // MessageId: ERROR_DS_DESTINATION_AUDITING_NOT_ENABLED
  15279. //
  15280. // MessageText:
  15281. //
  15282. // The operation requires that destination domain auditing be enabled.
  15283. //
  15284. const auto ERROR_DS_DESTINATION_AUDITING_NOT_ENABLED = 8536;
  15285. //
  15286. // MessageId: ERROR_DS_CANT_FIND_DC_FOR_SRC_DOMAIN
  15287. //
  15288. // MessageText:
  15289. //
  15290. // The operation couldn't locate a DC for the source domain.
  15291. //
  15292. const auto ERROR_DS_CANT_FIND_DC_FOR_SRC_DOMAIN = 8537;
  15293. //
  15294. // MessageId: ERROR_DS_SRC_OBJ_NOT_GROUP_OR_USER
  15295. //
  15296. // MessageText:
  15297. //
  15298. // The source object must be a group or user.
  15299. //
  15300. const auto ERROR_DS_SRC_OBJ_NOT_GROUP_OR_USER = 8538;
  15301. //
  15302. // MessageId: ERROR_DS_SRC_SID_EXISTS_IN_FOREST
  15303. //
  15304. // MessageText:
  15305. //
  15306. // The source object's SID already exists in destination forest.
  15307. //
  15308. const auto ERROR_DS_SRC_SID_EXISTS_IN_FOREST = 8539;
  15309. //
  15310. // MessageId: ERROR_DS_SRC_AND_DST_OBJECT_CLASS_MISMATCH
  15311. //
  15312. // MessageText:
  15313. //
  15314. // The source and destination object must be of the same type.
  15315. //
  15316. const auto ERROR_DS_SRC_AND_DST_OBJECT_CLASS_MISMATCH = 8540;
  15317. //
  15318. // MessageId: ERROR_SAM_INIT_FAILURE
  15319. //
  15320. // MessageText:
  15321. //
  15322. // Security Accounts Manager initialization failed because of the following error: %1.
  15323. // Error Status: 0x%2. Click OK to shut down the system and reboot into Safe Mode. Check the event log for detailed information.
  15324. //
  15325. const auto ERROR_SAM_INIT_FAILURE = 8541;
  15326. //
  15327. // MessageId: ERROR_DS_DRA_SCHEMA_INFO_SHIP
  15328. //
  15329. // MessageText:
  15330. //
  15331. // Schema information could not be included in the replication request.
  15332. //
  15333. const auto ERROR_DS_DRA_SCHEMA_INFO_SHIP = 8542;
  15334. //
  15335. // MessageId: ERROR_DS_DRA_SCHEMA_CONFLICT
  15336. //
  15337. // MessageText:
  15338. //
  15339. // The replication operation could not be completed due to a schema incompatibility.
  15340. //
  15341. const auto ERROR_DS_DRA_SCHEMA_CONFLICT = 8543;
  15342. //
  15343. // MessageId: ERROR_DS_DRA_EARLIER_SCHEMA_CONFLICT
  15344. //
  15345. // MessageText:
  15346. //
  15347. // The replication operation could not be completed due to a previous schema incompatibility.
  15348. //
  15349. const auto ERROR_DS_DRA_EARLIER_SCHEMA_CONFLICT = 8544;
  15350. //
  15351. // MessageId: ERROR_DS_DRA_OBJ_NC_MISMATCH
  15352. //
  15353. // MessageText:
  15354. //
  15355. // The replication update could not be applied because either the source or the destination has not yet received information regarding a recent cross-domain move operation.
  15356. //
  15357. const auto ERROR_DS_DRA_OBJ_NC_MISMATCH = 8545;
  15358. //
  15359. // MessageId: ERROR_DS_NC_STILL_HAS_DSAS
  15360. //
  15361. // MessageText:
  15362. //
  15363. // The requested domain could not be deleted because there exist domain controllers that still host this domain.
  15364. //
  15365. const auto ERROR_DS_NC_STILL_HAS_DSAS = 8546;
  15366. //
  15367. // MessageId: ERROR_DS_GC_REQUIRED
  15368. //
  15369. // MessageText:
  15370. //
  15371. // The requested operation can be performed only on a global catalog server.
  15372. //
  15373. const auto ERROR_DS_GC_REQUIRED = 8547;
  15374. //
  15375. // MessageId: ERROR_DS_LOCAL_MEMBER_OF_LOCAL_ONLY
  15376. //
  15377. // MessageText:
  15378. //
  15379. // A local group can only be a member of other local groups in the same domain.
  15380. //
  15381. const auto ERROR_DS_LOCAL_MEMBER_OF_LOCAL_ONLY = 8548;
  15382. //
  15383. // MessageId: ERROR_DS_NO_FPO_IN_UNIVERSAL_GROUPS
  15384. //
  15385. // MessageText:
  15386. //
  15387. // Foreign security principals cannot be members of universal groups.
  15388. //
  15389. const auto ERROR_DS_NO_FPO_IN_UNIVERSAL_GROUPS = 8549;
  15390. //
  15391. // MessageId: ERROR_DS_CANT_ADD_TO_GC
  15392. //
  15393. // MessageText:
  15394. //
  15395. // The attribute is not allowed to be replicated to the GC because of security reasons.
  15396. //
  15397. const auto ERROR_DS_CANT_ADD_TO_GC = 8550;
  15398. //
  15399. // MessageId: ERROR_DS_NO_CHECKPOINT_WITH_PDC
  15400. //
  15401. // MessageText:
  15402. //
  15403. // The checkpoint with the PDC could not be taken because there too many modifications being processed currently.
  15404. //
  15405. const auto ERROR_DS_NO_CHECKPOINT_WITH_PDC = 8551;
  15406. //
  15407. // MessageId: ERROR_DS_SOURCE_AUDITING_NOT_ENABLED
  15408. //
  15409. // MessageText:
  15410. //
  15411. // The operation requires that source domain auditing be enabled.
  15412. //
  15413. const auto ERROR_DS_SOURCE_AUDITING_NOT_ENABLED = 8552;
  15414. //
  15415. // MessageId: ERROR_DS_CANT_CREATE_IN_NONDOMAIN_NC
  15416. //
  15417. // MessageText:
  15418. //
  15419. // Security principal objects can only be created inside domain naming contexts.
  15420. //
  15421. const auto ERROR_DS_CANT_CREATE_IN_NONDOMAIN_NC = 8553;
  15422. //
  15423. // MessageId: ERROR_DS_INVALID_NAME_FOR_SPN
  15424. //
  15425. // MessageText:
  15426. //
  15427. // A Service Principal Name (SPN) could not be constructed because the provided hostname is not in the necessary format.
  15428. //
  15429. const auto ERROR_DS_INVALID_NAME_FOR_SPN = 8554;
  15430. //
  15431. // MessageId: ERROR_DS_FILTER_USES_CONTRUCTED_ATTRS
  15432. //
  15433. // MessageText:
  15434. //
  15435. // A Filter was passed that uses constructed attributes.
  15436. //
  15437. const auto ERROR_DS_FILTER_USES_CONTRUCTED_ATTRS = 8555;
  15438. //
  15439. // MessageId: ERROR_DS_UNICODEPWD_NOT_IN_QUOTES
  15440. //
  15441. // MessageText:
  15442. //
  15443. // The unicodePwd attribute value must be enclosed in double quotes.
  15444. //
  15445. const auto ERROR_DS_UNICODEPWD_NOT_IN_QUOTES = 8556;
  15446. //
  15447. // MessageId: ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED
  15448. //
  15449. // MessageText:
  15450. //
  15451. // 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.
  15452. //
  15453. const auto ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED = 8557;
  15454. //
  15455. // MessageId: ERROR_DS_MUST_BE_RUN_ON_DST_DC
  15456. //
  15457. // MessageText:
  15458. //
  15459. // For security reasons, the operation must be run on the destination DC.
  15460. //
  15461. const auto ERROR_DS_MUST_BE_RUN_ON_DST_DC = 8558;
  15462. //
  15463. // MessageId: ERROR_DS_SRC_DC_MUST_BE_SP4_OR_GREATER
  15464. //
  15465. // MessageText:
  15466. //
  15467. // For security reasons, the source DC must be NT4SP4 or greater.
  15468. //
  15469. const auto ERROR_DS_SRC_DC_MUST_BE_SP4_OR_GREATER = 8559;
  15470. //
  15471. // MessageId: ERROR_DS_CANT_TREE_DELETE_CRITICAL_OBJ
  15472. //
  15473. // MessageText:
  15474. //
  15475. // Critical Directory Service System objects cannot be deleted during tree delete operations. The tree delete may have been partially performed.
  15476. //
  15477. const auto ERROR_DS_CANT_TREE_DELETE_CRITICAL_OBJ = 8560;
  15478. //
  15479. // MessageId: ERROR_DS_INIT_FAILURE_CONSOLE
  15480. //
  15481. // MessageText:
  15482. //
  15483. // Directory Services could not start because of the following error: %1.
  15484. // Error Status: 0x%2. Please click OK to shutdown the system. You can use the recovery console to diagnose the system further.
  15485. //
  15486. const auto ERROR_DS_INIT_FAILURE_CONSOLE = 8561;
  15487. //
  15488. // MessageId: ERROR_DS_SAM_INIT_FAILURE_CONSOLE
  15489. //
  15490. // MessageText:
  15491. //
  15492. // Security Accounts Manager initialization failed because of the following error: %1.
  15493. // Error Status: 0x%2. Please click OK to shutdown the system. You can use the recovery console to diagnose the system further.
  15494. //
  15495. const auto ERROR_DS_SAM_INIT_FAILURE_CONSOLE = 8562;
  15496. //
  15497. // MessageId: ERROR_DS_FOREST_VERSION_TOO_HIGH
  15498. //
  15499. // MessageText:
  15500. //
  15501. // The version of the operating system installed is incompatible with the current forest functional level. You must upgrade to a new version of the operating system before this server can become a domain controller in this forest.
  15502. //
  15503. const auto ERROR_DS_FOREST_VERSION_TOO_HIGH = 8563;
  15504. //
  15505. // MessageId: ERROR_DS_DOMAIN_VERSION_TOO_HIGH
  15506. //
  15507. // MessageText:
  15508. //
  15509. // The version of the operating system installed is incompatible with the current domain functional level. You must upgrade to a new version of the operating system before this server can become a domain controller in this domain.
  15510. //
  15511. const auto ERROR_DS_DOMAIN_VERSION_TOO_HIGH = 8564;
  15512. //
  15513. // MessageId: ERROR_DS_FOREST_VERSION_TOO_LOW
  15514. //
  15515. // MessageText:
  15516. //
  15517. // The version of the operating system installed on this server no longer supports the current forest functional level. You must raise the forest functional level before this server can become a domain controller in this forest.
  15518. //
  15519. const auto ERROR_DS_FOREST_VERSION_TOO_LOW = 8565;
  15520. //
  15521. // MessageId: ERROR_DS_DOMAIN_VERSION_TOO_LOW
  15522. //
  15523. // MessageText:
  15524. //
  15525. // The version of the operating system installed on this server no longer supports the current domain functional level. You must raise the domain functional level before this server can become a domain controller in this domain.
  15526. //
  15527. const auto ERROR_DS_DOMAIN_VERSION_TOO_LOW = 8566;
  15528. //
  15529. // MessageId: ERROR_DS_INCOMPATIBLE_VERSION
  15530. //
  15531. // MessageText:
  15532. //
  15533. // The version of the operating system installed on this server is incompatible with the functional level of the domain or forest.
  15534. //
  15535. const auto ERROR_DS_INCOMPATIBLE_VERSION = 8567;
  15536. //
  15537. // MessageId: ERROR_DS_LOW_DSA_VERSION
  15538. //
  15539. // MessageText:
  15540. //
  15541. // The functional level of the domain (or forest) cannot be raised to the requested value, because there exist one or more domain controllers in the domain (or forest) that are at a lower incompatible functional level.
  15542. //
  15543. const auto ERROR_DS_LOW_DSA_VERSION = 8568;
  15544. //
  15545. // MessageId: ERROR_DS_NO_BEHAVIOR_VERSION_IN_MIXEDDOMAIN
  15546. //
  15547. // MessageText:
  15548. //
  15549. // The forest functional level cannot be raised to the requested value since one or more domains are still in mixed domain mode. All domains in the forest must be in native mode, for you to raise the forest functional level.
  15550. //
  15551. const auto ERROR_DS_NO_BEHAVIOR_VERSION_IN_MIXEDDOMAIN = 8569;
  15552. //
  15553. // MessageId: ERROR_DS_NOT_SUPPORTED_SORT_ORDER
  15554. //
  15555. // MessageText:
  15556. //
  15557. // The sort order requested is not supported.
  15558. //
  15559. const auto ERROR_DS_NOT_SUPPORTED_SORT_ORDER = 8570;
  15560. //
  15561. // MessageId: ERROR_DS_NAME_NOT_UNIQUE
  15562. //
  15563. // MessageText:
  15564. //
  15565. // The requested name already exists as a unique identifier.
  15566. //
  15567. const auto ERROR_DS_NAME_NOT_UNIQUE = 8571;
  15568. //
  15569. // MessageId: ERROR_DS_MACHINE_ACCOUNT_CREATED_PRENT4
  15570. //
  15571. // MessageText:
  15572. //
  15573. // The machine account was created pre-NT4. The account needs to be recreated.
  15574. //
  15575. const auto ERROR_DS_MACHINE_ACCOUNT_CREATED_PRENT4 = 8572;
  15576. //
  15577. // MessageId: ERROR_DS_OUT_OF_VERSION_STORE
  15578. //
  15579. // MessageText:
  15580. //
  15581. // The database is out of version store.
  15582. //
  15583. const auto ERROR_DS_OUT_OF_VERSION_STORE = 8573;
  15584. //
  15585. // MessageId: ERROR_DS_INCOMPATIBLE_CONTROLS_USED
  15586. //
  15587. // MessageText:
  15588. //
  15589. // Unable to continue operation because multiple conflicting controls were used.
  15590. //
  15591. const auto ERROR_DS_INCOMPATIBLE_CONTROLS_USED = 8574;
  15592. //
  15593. // MessageId: ERROR_DS_NO_REF_DOMAIN
  15594. //
  15595. // MessageText:
  15596. //
  15597. // Unable to find a valid security descriptor reference domain for this partition.
  15598. //
  15599. const auto ERROR_DS_NO_REF_DOMAIN = 8575;
  15600. //
  15601. // MessageId: ERROR_DS_RESERVED_LINK_ID
  15602. //
  15603. // MessageText:
  15604. //
  15605. // Schema update failed: The link identifier is reserved.
  15606. //
  15607. const auto ERROR_DS_RESERVED_LINK_ID = 8576;
  15608. //
  15609. // MessageId: ERROR_DS_LINK_ID_NOT_AVAILABLE
  15610. //
  15611. // MessageText:
  15612. //
  15613. // Schema update failed: There are no link identifiers available.
  15614. //
  15615. const auto ERROR_DS_LINK_ID_NOT_AVAILABLE = 8577;
  15616. //
  15617. // MessageId: ERROR_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER
  15618. //
  15619. // MessageText:
  15620. //
  15621. // An account group cannot have a universal group as a member.
  15622. //
  15623. const auto ERROR_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER = 8578;
  15624. //
  15625. // MessageId: ERROR_DS_MODIFYDN_DISALLOWED_BY_INSTANCE_TYPE
  15626. //
  15627. // MessageText:
  15628. //
  15629. // Rename or move operations on naming context heads or read-only objects are not allowed.
  15630. //
  15631. const auto ERROR_DS_MODIFYDN_DISALLOWED_BY_INSTANCE_TYPE = 8579;
  15632. //
  15633. // MessageId: ERROR_DS_NO_OBJECT_MOVE_IN_SCHEMA_NC
  15634. //
  15635. // MessageText:
  15636. //
  15637. // Move operations on objects in the schema naming context are not allowed.
  15638. //
  15639. const auto ERROR_DS_NO_OBJECT_MOVE_IN_SCHEMA_NC = 8580;
  15640. //
  15641. // MessageId: ERROR_DS_MODIFYDN_DISALLOWED_BY_FLAG
  15642. //
  15643. // MessageText:
  15644. //
  15645. // A system flag has been set on the object and does not allow the object to be moved or renamed.
  15646. //
  15647. const auto ERROR_DS_MODIFYDN_DISALLOWED_BY_FLAG = 8581;
  15648. //
  15649. // MessageId: ERROR_DS_MODIFYDN_WRONG_GRANDPARENT
  15650. //
  15651. // MessageText:
  15652. //
  15653. // This object is not allowed to change its grandparent container. Moves are not forbidden on this object, but are restricted to sibling containers.
  15654. //
  15655. const auto ERROR_DS_MODIFYDN_WRONG_GRANDPARENT = 8582;
  15656. //
  15657. // MessageId: ERROR_DS_NAME_ERROR_TRUST_REFERRAL
  15658. //
  15659. // MessageText:
  15660. //
  15661. // Unable to resolve completely, a referral to another forest is generated.
  15662. //
  15663. const auto ERROR_DS_NAME_ERROR_TRUST_REFERRAL = 8583;
  15664. //
  15665. // MessageId: ERROR_NOT_SUPPORTED_ON_STANDARD_SERVER
  15666. //
  15667. // MessageText:
  15668. //
  15669. // The requested action is not supported on standard server.
  15670. //
  15671. const auto ERROR_NOT_SUPPORTED_ON_STANDARD_SERVER = 8584;
  15672. //
  15673. // MessageId: ERROR_DS_CANT_ACCESS_REMOTE_PART_OF_AD
  15674. //
  15675. // MessageText:
  15676. //
  15677. // Could not access a partition of the directory service located on a remote server. Make sure at least one server is running for the partition in question.
  15678. //
  15679. const auto ERROR_DS_CANT_ACCESS_REMOTE_PART_OF_AD = 8585;
  15680. //
  15681. // MessageId: ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE_V2
  15682. //
  15683. // MessageText:
  15684. //
  15685. // The directory cannot validate the proposed naming context (or partition) name because it does not hold a replica nor can it contact a replica of the naming context above the proposed naming context. Please ensure that the parent naming context is properly registered in DNS, and at least one replica of this naming context is reachable by the Domain Naming master.
  15686. //
  15687. const auto ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE_V2 = 8586;
  15688. //
  15689. // MessageId: ERROR_DS_THREAD_LIMIT_EXCEEDED
  15690. //
  15691. // MessageText:
  15692. //
  15693. // The thread limit for this request was exceeded.
  15694. //
  15695. const auto ERROR_DS_THREAD_LIMIT_EXCEEDED = 8587;
  15696. //
  15697. // MessageId: ERROR_DS_NOT_CLOSEST
  15698. //
  15699. // MessageText:
  15700. //
  15701. // The Global catalog server is not in the closest site.
  15702. //
  15703. const auto ERROR_DS_NOT_CLOSEST = 8588;
  15704. //
  15705. // MessageId: ERROR_DS_CANT_DERIVE_SPN_WITHOUT_SERVER_REF
  15706. //
  15707. // MessageText:
  15708. //
  15709. // The DS cannot derive a service principal name (SPN) with which to mutually authenticate the target server because the corresponding server object in the local DS database has no serverReference attribute.
  15710. //
  15711. const auto ERROR_DS_CANT_DERIVE_SPN_WITHOUT_SERVER_REF = 8589;
  15712. //
  15713. // MessageId: ERROR_DS_SINGLE_USER_MODE_FAILED
  15714. //
  15715. // MessageText:
  15716. //
  15717. // The Directory Service failed to enter single user mode.
  15718. //
  15719. const auto ERROR_DS_SINGLE_USER_MODE_FAILED = 8590;
  15720. //
  15721. // MessageId: ERROR_DS_NTDSCRIPT_SYNTAX_ERROR
  15722. //
  15723. // MessageText:
  15724. //
  15725. // The Directory Service cannot parse the script because of a syntax error.
  15726. //
  15727. const auto ERROR_DS_NTDSCRIPT_SYNTAX_ERROR = 8591;
  15728. //
  15729. // MessageId: ERROR_DS_NTDSCRIPT_PROCESS_ERROR
  15730. //
  15731. // MessageText:
  15732. //
  15733. // The Directory Service cannot process the script because of an error.
  15734. //
  15735. const auto ERROR_DS_NTDSCRIPT_PROCESS_ERROR = 8592;
  15736. //
  15737. // MessageId: ERROR_DS_DIFFERENT_REPL_EPOCHS
  15738. //
  15739. // MessageText:
  15740. //
  15741. // The directory service cannot perform the requested operation because the servers
  15742. // involved are of different replication epochs (which is usually related to a
  15743. // domain rename that is in progress).
  15744. //
  15745. const auto ERROR_DS_DIFFERENT_REPL_EPOCHS = 8593;
  15746. //
  15747. // MessageId: ERROR_DS_DRS_EXTENSIONS_CHANGED
  15748. //
  15749. // MessageText:
  15750. //
  15751. // The directory service binding must be renegotiated due to a change in the server
  15752. // extensions information.
  15753. //
  15754. const auto ERROR_DS_DRS_EXTENSIONS_CHANGED = 8594;
  15755. //
  15756. // MessageId: ERROR_DS_REPLICA_SET_CHANGE_NOT_ALLOWED_ON_DISABLED_CR
  15757. //
  15758. // MessageText:
  15759. //
  15760. // Operation not allowed on a disabled cross ref.
  15761. //
  15762. const auto ERROR_DS_REPLICA_SET_CHANGE_NOT_ALLOWED_ON_DISABLED_CR = 8595;
  15763. //
  15764. // MessageId: ERROR_DS_NO_MSDS_INTID
  15765. //
  15766. // MessageText:
  15767. //
  15768. // Schema update failed: No values for msDS-IntId are available.
  15769. //
  15770. const auto ERROR_DS_NO_MSDS_INTID = 8596;
  15771. //
  15772. // MessageId: ERROR_DS_DUP_MSDS_INTID
  15773. //
  15774. // MessageText:
  15775. //
  15776. // Schema update failed: Duplicate msDS-INtId. Retry the operation.
  15777. //
  15778. const auto ERROR_DS_DUP_MSDS_INTID = 8597;
  15779. //
  15780. // MessageId: ERROR_DS_EXISTS_IN_RDNATTID
  15781. //
  15782. // MessageText:
  15783. //
  15784. // Schema deletion failed: attribute is used in rDNAttID.
  15785. //
  15786. const auto ERROR_DS_EXISTS_IN_RDNATTID = 8598;
  15787. //
  15788. // MessageId: ERROR_DS_AUTHORIZATION_FAILED
  15789. //
  15790. // MessageText:
  15791. //
  15792. // The directory service failed to authorize the request.
  15793. //
  15794. const auto ERROR_DS_AUTHORIZATION_FAILED = 8599;
  15795. //
  15796. // MessageId: ERROR_DS_INVALID_SCRIPT
  15797. //
  15798. // MessageText:
  15799. //
  15800. // The Directory Service cannot process the script because it is invalid.
  15801. //
  15802. const auto ERROR_DS_INVALID_SCRIPT = 8600;
  15803. //
  15804. // MessageId: ERROR_DS_REMOTE_CROSSREF_OP_FAILED
  15805. //
  15806. // MessageText:
  15807. //
  15808. // The remote create cross reference operation failed on the Domain Naming Master FSMO. The operation's error is in the extended data.
  15809. //
  15810. const auto ERROR_DS_REMOTE_CROSSREF_OP_FAILED = 8601;
  15811. //
  15812. // MessageId: ERROR_DS_CROSS_REF_BUSY
  15813. //
  15814. // MessageText:
  15815. //
  15816. // A cross reference is in use locally with the same name.
  15817. //
  15818. const auto ERROR_DS_CROSS_REF_BUSY = 8602;
  15819. //
  15820. // MessageId: ERROR_DS_CANT_DERIVE_SPN_FOR_DELETED_DOMAIN
  15821. //
  15822. // MessageText:
  15823. //
  15824. // The DS cannot derive a service principal name (SPN) with which to mutually authenticate the target server because the server's domain has been deleted from the forest.
  15825. //
  15826. const auto ERROR_DS_CANT_DERIVE_SPN_FOR_DELETED_DOMAIN = 8603;
  15827. //
  15828. // MessageId: ERROR_DS_CANT_DEMOTE_WITH_WRITEABLE_NC
  15829. //
  15830. // MessageText:
  15831. //
  15832. // Writeable NCs prevent this DC from demoting.
  15833. //
  15834. const auto ERROR_DS_CANT_DEMOTE_WITH_WRITEABLE_NC = 8604;
  15835. //
  15836. // MessageId: ERROR_DS_DUPLICATE_ID_FOUND
  15837. //
  15838. // MessageText:
  15839. //
  15840. // The requested object has a non-unique identifier and cannot be retrieved.
  15841. //
  15842. const auto ERROR_DS_DUPLICATE_ID_FOUND = 8605;
  15843. //
  15844. // MessageId: ERROR_DS_INSUFFICIENT_ATTR_TO_CREATE_OBJECT
  15845. //
  15846. // MessageText:
  15847. //
  15848. // Insufficient attributes were given to create an object. This object may not exist because it may have been deleted and already garbage collected.
  15849. //
  15850. const auto ERROR_DS_INSUFFICIENT_ATTR_TO_CREATE_OBJECT = 8606;
  15851. //
  15852. // MessageId: ERROR_DS_GROUP_CONVERSION_ERROR
  15853. //
  15854. // MessageText:
  15855. //
  15856. // The group cannot be converted due to attribute restrictions on the requested group type.
  15857. //
  15858. const auto ERROR_DS_GROUP_CONVERSION_ERROR = 8607;
  15859. //
  15860. // MessageId: ERROR_DS_CANT_MOVE_APP_BASIC_GROUP
  15861. //
  15862. // MessageText:
  15863. //
  15864. // Cross-domain move of non-empty basic application groups is not allowed.
  15865. //
  15866. const auto ERROR_DS_CANT_MOVE_APP_BASIC_GROUP = 8608;
  15867. //
  15868. // MessageId: ERROR_DS_CANT_MOVE_APP_QUERY_GROUP
  15869. //
  15870. // MessageText:
  15871. //
  15872. // Cross-domain move of non-empty query based application groups is not allowed.
  15873. //
  15874. const auto ERROR_DS_CANT_MOVE_APP_QUERY_GROUP = 8609;
  15875. //
  15876. // MessageId: ERROR_DS_ROLE_NOT_VERIFIED
  15877. //
  15878. // MessageText:
  15879. //
  15880. // The FSMO role ownership could not be verified because its directory partition has not replicated successfully with atleast one replication partner.
  15881. //
  15882. const auto ERROR_DS_ROLE_NOT_VERIFIED = 8610;
  15883. //
  15884. // MessageId: ERROR_DS_WKO_CONTAINER_CANNOT_BE_SPECIAL
  15885. //
  15886. // MessageText:
  15887. //
  15888. // The target container for a redirection of a well known object container cannot already be a special container.
  15889. //
  15890. const auto ERROR_DS_WKO_CONTAINER_CANNOT_BE_SPECIAL = 8611;
  15891. //
  15892. // MessageId: ERROR_DS_DOMAIN_RENAME_IN_PROGRESS
  15893. //
  15894. // MessageText:
  15895. //
  15896. // The Directory Service cannot perform the requested operation because a domain rename operation is in progress.
  15897. //
  15898. const auto ERROR_DS_DOMAIN_RENAME_IN_PROGRESS = 8612;
  15899. //
  15900. // MessageId: ERROR_DS_EXISTING_AD_CHILD_NC
  15901. //
  15902. // MessageText:
  15903. //
  15904. // The directory service detected a child partition below the requested partition name. The partition hierarchy must be created in a top down method.
  15905. //
  15906. const auto ERROR_DS_EXISTING_AD_CHILD_NC = 8613;
  15907. //
  15908. // MessageId: ERROR_DS_REPL_LIFETIME_EXCEEDED
  15909. //
  15910. // MessageText:
  15911. //
  15912. // The directory service cannot replicate with this server because the time since the last replication with this server has exceeded the tombstone lifetime.
  15913. //
  15914. const auto ERROR_DS_REPL_LIFETIME_EXCEEDED = 8614;
  15915. //
  15916. // MessageId: ERROR_DS_DISALLOWED_IN_SYSTEM_CONTAINER
  15917. //
  15918. // MessageText:
  15919. //
  15920. // The requested operation is not allowed on an object under the system container.
  15921. //
  15922. const auto ERROR_DS_DISALLOWED_IN_SYSTEM_CONTAINER = 8615;
  15923. //
  15924. // MessageId: ERROR_DS_LDAP_SEND_QUEUE_FULL
  15925. //
  15926. // MessageText:
  15927. //
  15928. // The LDAP servers network send queue has filled up because the client is not processing the results of it's requests fast enough. No more requests will be processed until the client catches up. If the client does not catch up then it will be disconnected.
  15929. //
  15930. const auto ERROR_DS_LDAP_SEND_QUEUE_FULL = 8616;
  15931. //
  15932. // MessageId: ERROR_DS_DRA_OUT_SCHEDULE_WINDOW
  15933. //
  15934. // MessageText:
  15935. //
  15936. // The scheduled replication did not take place because the system was too busy to execute the request within the schedule window. The replication queue is overloaded. Consider reducing the number of partners or decreasing the scheduled replication frequency.
  15937. //
  15938. const auto ERROR_DS_DRA_OUT_SCHEDULE_WINDOW = 8617;
  15939. //
  15940. // MessageId: ERROR_DS_POLICY_NOT_KNOWN
  15941. //
  15942. // MessageText:
  15943. //
  15944. // At this time, it cannot be determined if the branch replication policy is available on the hub domain controller. Please retry at a later time to account for replication latencies.
  15945. //
  15946. const auto ERROR_DS_POLICY_NOT_KNOWN = 8618;
  15947. //
  15948. // MessageId: ERROR_NO_SITE_SETTINGS_OBJECT
  15949. //
  15950. // MessageText:
  15951. //
  15952. // The site settings object for the specified site does not exist.
  15953. //
  15954. const auto ERROR_NO_SITE_SETTINGS_OBJECT = 8619;
  15955. //
  15956. // MessageId: ERROR_NO_SECRETS
  15957. //
  15958. // MessageText:
  15959. //
  15960. // The local account store does not contain secret material for the specified account.
  15961. //
  15962. const auto ERROR_NO_SECRETS = 8620;
  15963. //
  15964. // MessageId: ERROR_NO_WRITABLE_DC_FOUND
  15965. //
  15966. // MessageText:
  15967. //
  15968. // Could not find a writable domain controller in the domain.
  15969. //
  15970. const auto ERROR_NO_WRITABLE_DC_FOUND = 8621;
  15971. //
  15972. // MessageId: ERROR_DS_NO_SERVER_OBJECT
  15973. //
  15974. // MessageText:
  15975. //
  15976. // The server object for the domain controller does not exist.
  15977. //
  15978. const auto ERROR_DS_NO_SERVER_OBJECT = 8622;
  15979. //
  15980. // MessageId: ERROR_DS_NO_NTDSA_OBJECT
  15981. //
  15982. // MessageText:
  15983. //
  15984. // The NTDS Settings object for the domain controller does not exist.
  15985. //
  15986. const auto ERROR_DS_NO_NTDSA_OBJECT = 8623;
  15987. //
  15988. // MessageId: ERROR_DS_NON_ASQ_SEARCH
  15989. //
  15990. // MessageText:
  15991. //
  15992. // The requested search operation is not supported for ASQ searches.
  15993. //
  15994. const auto ERROR_DS_NON_ASQ_SEARCH = 8624;
  15995. //
  15996. // MessageId: ERROR_DS_AUDIT_FAILURE
  15997. //
  15998. // MessageText:
  15999. //
  16000. // A required audit event could not be generated for the operation.
  16001. //
  16002. const auto ERROR_DS_AUDIT_FAILURE = 8625;
  16003. //
  16004. // MessageId: ERROR_DS_INVALID_SEARCH_FLAG_SUBTREE
  16005. //
  16006. // MessageText:
  16007. //
  16008. // The search flags for the attribute are invalid. The subtree index bit is valid only on single valued attributes.
  16009. //
  16010. const auto ERROR_DS_INVALID_SEARCH_FLAG_SUBTREE = 8626;
  16011. //
  16012. // MessageId: ERROR_DS_INVALID_SEARCH_FLAG_TUPLE
  16013. //
  16014. // MessageText:
  16015. //
  16016. // The search flags for the attribute are invalid. The tuple index bit is valid only on attributes of Unicode strings.
  16017. //
  16018. const auto ERROR_DS_INVALID_SEARCH_FLAG_TUPLE = 8627;
  16019. //
  16020. // MessageId: ERROR_DS_HIERARCHY_TABLE_TOO_DEEP
  16021. //
  16022. // MessageText:
  16023. //
  16024. // The address books are nested too deeply. Failed to build the hierarchy table.
  16025. //
  16026. const auto ERROR_DS_HIERARCHY_TABLE_TOO_DEEP = 8628;
  16027. ///////////////////////////////////////////////////
  16028. // /
  16029. // End of Active Directory Error Codes /
  16030. // /
  16031. // 8000 to 8999 /
  16032. ///////////////////////////////////////////////////
  16033. ///////////////////////////////////////////////////
  16034. // //
  16035. // DNS Error codes //
  16036. // //
  16037. // 9000 to 9999 //
  16038. ///////////////////////////////////////////////////
  16039. // =============================
  16040. // Facility DNS Error Messages
  16041. // =============================
  16042. //
  16043. // DNS response codes.
  16044. //
  16045. const auto DNS_ERROR_RESPONSE_CODES_BASE = 9000;
  16046. alias NO_ERROR DNS_ERROR_RCODE_NO_ERROR;
  16047. const auto DNS_ERROR_MASK = 0x00002328;
  16048. // DNS_ERROR_RCODE_FORMAT_ERROR 0x00002329
  16049. //
  16050. // MessageId: DNS_ERROR_RCODE_FORMAT_ERROR
  16051. //
  16052. // MessageText:
  16053. //
  16054. // DNS server unable to interpret format.
  16055. //
  16056. const auto DNS_ERROR_RCODE_FORMAT_ERROR = 9001;
  16057. // DNS_ERROR_RCODE_SERVER_FAILURE 0x0000232a
  16058. //
  16059. // MessageId: DNS_ERROR_RCODE_SERVER_FAILURE
  16060. //
  16061. // MessageText:
  16062. //
  16063. // DNS server failure.
  16064. //
  16065. const auto DNS_ERROR_RCODE_SERVER_FAILURE = 9002;
  16066. // DNS_ERROR_RCODE_NAME_ERROR 0x0000232b
  16067. //
  16068. // MessageId: DNS_ERROR_RCODE_NAME_ERROR
  16069. //
  16070. // MessageText:
  16071. //
  16072. // DNS name does not exist.
  16073. //
  16074. const auto DNS_ERROR_RCODE_NAME_ERROR = 9003;
  16075. // DNS_ERROR_RCODE_NOT_IMPLEMENTED 0x0000232c
  16076. //
  16077. // MessageId: DNS_ERROR_RCODE_NOT_IMPLEMENTED
  16078. //
  16079. // MessageText:
  16080. //
  16081. // DNS request not supported by name server.
  16082. //
  16083. const auto DNS_ERROR_RCODE_NOT_IMPLEMENTED = 9004;
  16084. // DNS_ERROR_RCODE_REFUSED 0x0000232d
  16085. //
  16086. // MessageId: DNS_ERROR_RCODE_REFUSED
  16087. //
  16088. // MessageText:
  16089. //
  16090. // DNS operation refused.
  16091. //
  16092. const auto DNS_ERROR_RCODE_REFUSED = 9005;
  16093. // DNS_ERROR_RCODE_YXDOMAIN 0x0000232e
  16094. //
  16095. // MessageId: DNS_ERROR_RCODE_YXDOMAIN
  16096. //
  16097. // MessageText:
  16098. //
  16099. // DNS name that ought not exist, does exist.
  16100. //
  16101. const auto DNS_ERROR_RCODE_YXDOMAIN = 9006;
  16102. // DNS_ERROR_RCODE_YXRRSET 0x0000232f
  16103. //
  16104. // MessageId: DNS_ERROR_RCODE_YXRRSET
  16105. //
  16106. // MessageText:
  16107. //
  16108. // DNS RR set that ought not exist, does exist.
  16109. //
  16110. const auto DNS_ERROR_RCODE_YXRRSET = 9007;
  16111. // DNS_ERROR_RCODE_NXRRSET 0x00002330
  16112. //
  16113. // MessageId: DNS_ERROR_RCODE_NXRRSET
  16114. //
  16115. // MessageText:
  16116. //
  16117. // DNS RR set that ought to exist, does not exist.
  16118. //
  16119. const auto DNS_ERROR_RCODE_NXRRSET = 9008;
  16120. // DNS_ERROR_RCODE_NOTAUTH 0x00002331
  16121. //
  16122. // MessageId: DNS_ERROR_RCODE_NOTAUTH
  16123. //
  16124. // MessageText:
  16125. //
  16126. // DNS server not authoritative for zone.
  16127. //
  16128. const auto DNS_ERROR_RCODE_NOTAUTH = 9009;
  16129. // DNS_ERROR_RCODE_NOTZONE 0x00002332
  16130. //
  16131. // MessageId: DNS_ERROR_RCODE_NOTZONE
  16132. //
  16133. // MessageText:
  16134. //
  16135. // DNS name in update or prereq is not in zone.
  16136. //
  16137. const auto DNS_ERROR_RCODE_NOTZONE = 9010;
  16138. // DNS_ERROR_RCODE_BADSIG 0x00002338
  16139. //
  16140. // MessageId: DNS_ERROR_RCODE_BADSIG
  16141. //
  16142. // MessageText:
  16143. //
  16144. // DNS signature failed to verify.
  16145. //
  16146. const auto DNS_ERROR_RCODE_BADSIG = 9016;
  16147. // DNS_ERROR_RCODE_BADKEY 0x00002339
  16148. //
  16149. // MessageId: DNS_ERROR_RCODE_BADKEY
  16150. //
  16151. // MessageText:
  16152. //
  16153. // DNS bad key.
  16154. //
  16155. const auto DNS_ERROR_RCODE_BADKEY = 9017;
  16156. // DNS_ERROR_RCODE_BADTIME 0x0000233a
  16157. //
  16158. // MessageId: DNS_ERROR_RCODE_BADTIME
  16159. //
  16160. // MessageText:
  16161. //
  16162. // DNS signature validity expired.
  16163. //
  16164. const auto DNS_ERROR_RCODE_BADTIME = 9018;
  16165. alias DNS_ERROR_RCODE_BADTIME DNS_ERROR_RCODE_LAST;
  16166. //
  16167. // Packet format
  16168. //
  16169. const auto DNS_ERROR_PACKET_FMT_BASE = 9500;
  16170. // DNS_INFO_NO_RECORDS 0x0000251d
  16171. //
  16172. // MessageId: DNS_INFO_NO_RECORDS
  16173. //
  16174. // MessageText:
  16175. //
  16176. // No records found for given DNS query.
  16177. //
  16178. const auto DNS_INFO_NO_RECORDS = 9501;
  16179. // DNS_ERROR_BAD_PACKET 0x0000251e
  16180. //
  16181. // MessageId: DNS_ERROR_BAD_PACKET
  16182. //
  16183. // MessageText:
  16184. //
  16185. // Bad DNS packet.
  16186. //
  16187. const auto DNS_ERROR_BAD_PACKET = 9502;
  16188. // DNS_ERROR_NO_PACKET 0x0000251f
  16189. //
  16190. // MessageId: DNS_ERROR_NO_PACKET
  16191. //
  16192. // MessageText:
  16193. //
  16194. // No DNS packet.
  16195. //
  16196. const auto DNS_ERROR_NO_PACKET = 9503;
  16197. // DNS_ERROR_RCODE 0x00002520
  16198. //
  16199. // MessageId: DNS_ERROR_RCODE
  16200. //
  16201. // MessageText:
  16202. //
  16203. // DNS error, check rcode.
  16204. //
  16205. const auto DNS_ERROR_RCODE = 9504;
  16206. // DNS_ERROR_UNSECURE_PACKET 0x00002521
  16207. //
  16208. // MessageId: DNS_ERROR_UNSECURE_PACKET
  16209. //
  16210. // MessageText:
  16211. //
  16212. // Unsecured DNS packet.
  16213. //
  16214. const auto DNS_ERROR_UNSECURE_PACKET = 9505;
  16215. alias DNS_ERROR_UNSECURE_PACKET DNS_STATUS_PACKET_UNSECURE;
  16216. //
  16217. // General API errors
  16218. //
  16219. alias ERROR_OUTOFMEMORY DNS_ERROR_NO_MEMORY;
  16220. alias ERROR_INVALID_NAME DNS_ERROR_INVALID_NAME;
  16221. alias ERROR_INVALID_DATA DNS_ERROR_INVALID_DATA;
  16222. const auto DNS_ERROR_GENERAL_API_BASE = 9550;
  16223. // DNS_ERROR_INVALID_TYPE 0x0000254f
  16224. //
  16225. // MessageId: DNS_ERROR_INVALID_TYPE
  16226. //
  16227. // MessageText:
  16228. //
  16229. // Invalid DNS type.
  16230. //
  16231. const auto DNS_ERROR_INVALID_TYPE = 9551;
  16232. // DNS_ERROR_INVALID_IP_ADDRESS 0x00002550
  16233. //
  16234. // MessageId: DNS_ERROR_INVALID_IP_ADDRESS
  16235. //
  16236. // MessageText:
  16237. //
  16238. // Invalid IP address.
  16239. //
  16240. const auto DNS_ERROR_INVALID_IP_ADDRESS = 9552;
  16241. // DNS_ERROR_INVALID_PROPERTY 0x00002551
  16242. //
  16243. // MessageId: DNS_ERROR_INVALID_PROPERTY
  16244. //
  16245. // MessageText:
  16246. //
  16247. // Invalid property.
  16248. //
  16249. const auto DNS_ERROR_INVALID_PROPERTY = 9553;
  16250. // DNS_ERROR_TRY_AGAIN_LATER 0x00002552
  16251. //
  16252. // MessageId: DNS_ERROR_TRY_AGAIN_LATER
  16253. //
  16254. // MessageText:
  16255. //
  16256. // Try DNS operation again later.
  16257. //
  16258. const auto DNS_ERROR_TRY_AGAIN_LATER = 9554;
  16259. // DNS_ERROR_NOT_UNIQUE 0x00002553
  16260. //
  16261. // MessageId: DNS_ERROR_NOT_UNIQUE
  16262. //
  16263. // MessageText:
  16264. //
  16265. // Record for given name and type is not unique.
  16266. //
  16267. const auto DNS_ERROR_NOT_UNIQUE = 9555;
  16268. // DNS_ERROR_NON_RFC_NAME 0x00002554
  16269. //
  16270. // MessageId: DNS_ERROR_NON_RFC_NAME
  16271. //
  16272. // MessageText:
  16273. //
  16274. // DNS name does not comply with RFC specifications.
  16275. //
  16276. const auto DNS_ERROR_NON_RFC_NAME = 9556;
  16277. // DNS_STATUS_FQDN 0x00002555
  16278. //
  16279. // MessageId: DNS_STATUS_FQDN
  16280. //
  16281. // MessageText:
  16282. //
  16283. // DNS name is a fully-qualified DNS name.
  16284. //
  16285. const auto DNS_STATUS_FQDN = 9557;
  16286. // DNS_STATUS_DOTTED_NAME 0x00002556
  16287. //
  16288. // MessageId: DNS_STATUS_DOTTED_NAME
  16289. //
  16290. // MessageText:
  16291. //
  16292. // DNS name is dotted (multi-label).
  16293. //
  16294. const auto DNS_STATUS_DOTTED_NAME = 9558;
  16295. // DNS_STATUS_SINGLE_PART_NAME 0x00002557
  16296. //
  16297. // MessageId: DNS_STATUS_SINGLE_PART_NAME
  16298. //
  16299. // MessageText:
  16300. //
  16301. // DNS name is a single-part name.
  16302. //
  16303. const auto DNS_STATUS_SINGLE_PART_NAME = 9559;
  16304. // DNS_ERROR_INVALID_NAME_CHAR 0x00002558
  16305. //
  16306. // MessageId: DNS_ERROR_INVALID_NAME_CHAR
  16307. //
  16308. // MessageText:
  16309. //
  16310. // DNS name contains an invalid character.
  16311. //
  16312. const auto DNS_ERROR_INVALID_NAME_CHAR = 9560;
  16313. // DNS_ERROR_NUMERIC_NAME 0x00002559
  16314. //
  16315. // MessageId: DNS_ERROR_NUMERIC_NAME
  16316. //
  16317. // MessageText:
  16318. //
  16319. // DNS name is entirely numeric.
  16320. //
  16321. const auto DNS_ERROR_NUMERIC_NAME = 9561;
  16322. // DNS_ERROR_NOT_ALLOWED_ON_ROOT_SERVER 0x0000255A
  16323. //
  16324. // MessageId: DNS_ERROR_NOT_ALLOWED_ON_ROOT_SERVER
  16325. //
  16326. // MessageText:
  16327. //
  16328. // The operation requested is not permitted on a DNS root server.
  16329. //
  16330. const auto DNS_ERROR_NOT_ALLOWED_ON_ROOT_SERVER = 9562;
  16331. // DNS_ERROR_NOT_ALLOWED_UNDER_DELEGATION 0x0000255B
  16332. //
  16333. // MessageId: DNS_ERROR_NOT_ALLOWED_UNDER_DELEGATION
  16334. //
  16335. // MessageText:
  16336. //
  16337. // The record could not be created because this part of the DNS namespace has been delegated to another server.
  16338. //
  16339. const auto DNS_ERROR_NOT_ALLOWED_UNDER_DELEGATION = 9563;
  16340. // DNS_ERROR_CANNOT_FIND_ROOT_HINTS 0x0000255C
  16341. //
  16342. // MessageId: DNS_ERROR_CANNOT_FIND_ROOT_HINTS
  16343. //
  16344. // MessageText:
  16345. //
  16346. // The DNS server could not find a set of root hints.
  16347. //
  16348. const auto DNS_ERROR_CANNOT_FIND_ROOT_HINTS = 9564;
  16349. // DNS_ERROR_INCONSISTENT_ROOT_HINTS 0x0000255D
  16350. //
  16351. // MessageId: DNS_ERROR_INCONSISTENT_ROOT_HINTS
  16352. //
  16353. // MessageText:
  16354. //
  16355. // The DNS server found root hints but they were not consistent across all adapters.
  16356. //
  16357. const auto DNS_ERROR_INCONSISTENT_ROOT_HINTS = 9565;
  16358. // DNS_ERROR_DWORD_VALUE_TOO_SMALL 0x0000255E
  16359. //
  16360. // MessageId: DNS_ERROR_DWORD_VALUE_TOO_SMALL
  16361. //
  16362. // MessageText:
  16363. //
  16364. // The specified value is too small for this parameter.
  16365. //
  16366. const auto DNS_ERROR_DWORD_VALUE_TOO_SMALL = 9566;
  16367. // DNS_ERROR_DWORD_VALUE_TOO_LARGE 0x0000255F
  16368. //
  16369. // MessageId: DNS_ERROR_DWORD_VALUE_TOO_LARGE
  16370. //
  16371. // MessageText:
  16372. //
  16373. // The specified value is too large for this parameter.
  16374. //
  16375. const auto DNS_ERROR_DWORD_VALUE_TOO_LARGE = 9567;
  16376. // DNS_ERROR_BACKGROUND_LOADING 0x00002560
  16377. //
  16378. // MessageId: DNS_ERROR_BACKGROUND_LOADING
  16379. //
  16380. // MessageText:
  16381. //
  16382. // This operation is not allowed while the DNS server is loading zones in the background. Please try again later.
  16383. //
  16384. const auto DNS_ERROR_BACKGROUND_LOADING = 9568;
  16385. // DNS_ERROR_NOT_ALLOWED_ON_RODC 0x00002561
  16386. //
  16387. // MessageId: DNS_ERROR_NOT_ALLOWED_ON_RODC
  16388. //
  16389. // MessageText:
  16390. //
  16391. // The operation requested is not permitted on against a DNS server running on a read-only DC.
  16392. //
  16393. const auto DNS_ERROR_NOT_ALLOWED_ON_RODC = 9569;
  16394. // DNS_ERROR_NOT_ALLOWED_UNDER_DNAME 0x00002562
  16395. //
  16396. // MessageId: DNS_ERROR_NOT_ALLOWED_UNDER_DNAME
  16397. //
  16398. // MessageText:
  16399. //
  16400. // No data is allowed to exist underneath a DNAME record.
  16401. //
  16402. const auto DNS_ERROR_NOT_ALLOWED_UNDER_DNAME = 9570;
  16403. //
  16404. // Zone errors
  16405. //
  16406. const auto DNS_ERROR_ZONE_BASE = 9600;
  16407. // DNS_ERROR_ZONE_DOES_NOT_EXIST 0x00002581
  16408. //
  16409. // MessageId: DNS_ERROR_ZONE_DOES_NOT_EXIST
  16410. //
  16411. // MessageText:
  16412. //
  16413. // DNS zone does not exist.
  16414. //
  16415. const auto DNS_ERROR_ZONE_DOES_NOT_EXIST = 9601;
  16416. // DNS_ERROR_NO_ZONE_INFO 0x00002582
  16417. //
  16418. // MessageId: DNS_ERROR_NO_ZONE_INFO
  16419. //
  16420. // MessageText:
  16421. //
  16422. // DNS zone information not available.
  16423. //
  16424. const auto DNS_ERROR_NO_ZONE_INFO = 9602;
  16425. // DNS_ERROR_INVALID_ZONE_OPERATION 0x00002583
  16426. //
  16427. // MessageId: DNS_ERROR_INVALID_ZONE_OPERATION
  16428. //
  16429. // MessageText:
  16430. //
  16431. // Invalid operation for DNS zone.
  16432. //
  16433. const auto DNS_ERROR_INVALID_ZONE_OPERATION = 9603;
  16434. // DNS_ERROR_ZONE_CONFIGURATION_ERROR 0x00002584
  16435. //
  16436. // MessageId: DNS_ERROR_ZONE_CONFIGURATION_ERROR
  16437. //
  16438. // MessageText:
  16439. //
  16440. // Invalid DNS zone configuration.
  16441. //
  16442. const auto DNS_ERROR_ZONE_CONFIGURATION_ERROR = 9604;
  16443. // DNS_ERROR_ZONE_HAS_NO_SOA_RECORD 0x00002585
  16444. //
  16445. // MessageId: DNS_ERROR_ZONE_HAS_NO_SOA_RECORD
  16446. //
  16447. // MessageText:
  16448. //
  16449. // DNS zone has no start of authority (SOA) record.
  16450. //
  16451. const auto DNS_ERROR_ZONE_HAS_NO_SOA_RECORD = 9605;
  16452. // DNS_ERROR_ZONE_HAS_NO_NS_RECORDS 0x00002586
  16453. //
  16454. // MessageId: DNS_ERROR_ZONE_HAS_NO_NS_RECORDS
  16455. //
  16456. // MessageText:
  16457. //
  16458. // DNS zone has no Name Server (NS) record.
  16459. //
  16460. const auto DNS_ERROR_ZONE_HAS_NO_NS_RECORDS = 9606;
  16461. // DNS_ERROR_ZONE_LOCKED 0x00002587
  16462. //
  16463. // MessageId: DNS_ERROR_ZONE_LOCKED
  16464. //
  16465. // MessageText:
  16466. //
  16467. // DNS zone is locked.
  16468. //
  16469. const auto DNS_ERROR_ZONE_LOCKED = 9607;
  16470. // DNS_ERROR_ZONE_CREATION_FAILED 0x00002588
  16471. //
  16472. // MessageId: DNS_ERROR_ZONE_CREATION_FAILED
  16473. //
  16474. // MessageText:
  16475. //
  16476. // DNS zone creation failed.
  16477. //
  16478. const auto DNS_ERROR_ZONE_CREATION_FAILED = 9608;
  16479. // DNS_ERROR_ZONE_ALREADY_EXISTS 0x00002589
  16480. //
  16481. // MessageId: DNS_ERROR_ZONE_ALREADY_EXISTS
  16482. //
  16483. // MessageText:
  16484. //
  16485. // DNS zone already exists.
  16486. //
  16487. const auto DNS_ERROR_ZONE_ALREADY_EXISTS = 9609;
  16488. // DNS_ERROR_AUTOZONE_ALREADY_EXISTS 0x0000258a
  16489. //
  16490. // MessageId: DNS_ERROR_AUTOZONE_ALREADY_EXISTS
  16491. //
  16492. // MessageText:
  16493. //
  16494. // DNS automatic zone already exists.
  16495. //
  16496. const auto DNS_ERROR_AUTOZONE_ALREADY_EXISTS = 9610;
  16497. // DNS_ERROR_INVALID_ZONE_TYPE 0x0000258b
  16498. //
  16499. // MessageId: DNS_ERROR_INVALID_ZONE_TYPE
  16500. //
  16501. // MessageText:
  16502. //
  16503. // Invalid DNS zone type.
  16504. //
  16505. const auto DNS_ERROR_INVALID_ZONE_TYPE = 9611;
  16506. // DNS_ERROR_SECONDARY_REQUIRES_MASTER_IP 0x0000258c
  16507. //
  16508. // MessageId: DNS_ERROR_SECONDARY_REQUIRES_MASTER_IP
  16509. //
  16510. // MessageText:
  16511. //
  16512. // Secondary DNS zone requires master IP address.
  16513. //
  16514. const auto DNS_ERROR_SECONDARY_REQUIRES_MASTER_IP = 9612;
  16515. // DNS_ERROR_ZONE_NOT_SECONDARY 0x0000258d
  16516. //
  16517. // MessageId: DNS_ERROR_ZONE_NOT_SECONDARY
  16518. //
  16519. // MessageText:
  16520. //
  16521. // DNS zone not secondary.
  16522. //
  16523. const auto DNS_ERROR_ZONE_NOT_SECONDARY = 9613;
  16524. // DNS_ERROR_NEED_SECONDARY_ADDRESSES 0x0000258e
  16525. //
  16526. // MessageId: DNS_ERROR_NEED_SECONDARY_ADDRESSES
  16527. //
  16528. // MessageText:
  16529. //
  16530. // Need secondary IP address.
  16531. //
  16532. const auto DNS_ERROR_NEED_SECONDARY_ADDRESSES = 9614;
  16533. // DNS_ERROR_WINS_INIT_FAILED 0x0000258f
  16534. //
  16535. // MessageId: DNS_ERROR_WINS_INIT_FAILED
  16536. //
  16537. // MessageText:
  16538. //
  16539. // WINS initialization failed.
  16540. //
  16541. const auto DNS_ERROR_WINS_INIT_FAILED = 9615;
  16542. // DNS_ERROR_NEED_WINS_SERVERS 0x00002590
  16543. //
  16544. // MessageId: DNS_ERROR_NEED_WINS_SERVERS
  16545. //
  16546. // MessageText:
  16547. //
  16548. // Need WINS servers.
  16549. //
  16550. const auto DNS_ERROR_NEED_WINS_SERVERS = 9616;
  16551. // DNS_ERROR_NBSTAT_INIT_FAILED 0x00002591
  16552. //
  16553. // MessageId: DNS_ERROR_NBSTAT_INIT_FAILED
  16554. //
  16555. // MessageText:
  16556. //
  16557. // NBTSTAT initialization call failed.
  16558. //
  16559. const auto DNS_ERROR_NBSTAT_INIT_FAILED = 9617;
  16560. // DNS_ERROR_SOA_DELETE_INVALID 0x00002592
  16561. //
  16562. // MessageId: DNS_ERROR_SOA_DELETE_INVALID
  16563. //
  16564. // MessageText:
  16565. //
  16566. // Invalid delete of start of authority (SOA)
  16567. //
  16568. const auto DNS_ERROR_SOA_DELETE_INVALID = 9618;
  16569. // DNS_ERROR_FORWARDER_ALREADY_EXISTS 0x00002593
  16570. //
  16571. // MessageId: DNS_ERROR_FORWARDER_ALREADY_EXISTS
  16572. //
  16573. // MessageText:
  16574. //
  16575. // A conditional forwarding zone already exists for that name.
  16576. //
  16577. const auto DNS_ERROR_FORWARDER_ALREADY_EXISTS = 9619;
  16578. // DNS_ERROR_ZONE_REQUIRES_MASTER_IP 0x00002594
  16579. //
  16580. // MessageId: DNS_ERROR_ZONE_REQUIRES_MASTER_IP
  16581. //
  16582. // MessageText:
  16583. //
  16584. // This zone must be configured with one or more master DNS server IP addresses.
  16585. //
  16586. const auto DNS_ERROR_ZONE_REQUIRES_MASTER_IP = 9620;
  16587. // DNS_ERROR_ZONE_IS_SHUTDOWN 0x00002595
  16588. //
  16589. // MessageId: DNS_ERROR_ZONE_IS_SHUTDOWN
  16590. //
  16591. // MessageText:
  16592. //
  16593. // The operation cannot be performed because this zone is shutdown.
  16594. //
  16595. const auto DNS_ERROR_ZONE_IS_SHUTDOWN = 9621;
  16596. //
  16597. // Datafile errors
  16598. //
  16599. const auto DNS_ERROR_DATAFILE_BASE = 9650;
  16600. // DNS 0x000025b3
  16601. //
  16602. // MessageId: DNS_ERROR_PRIMARY_REQUIRES_DATAFILE
  16603. //
  16604. // MessageText:
  16605. //
  16606. // Primary DNS zone requires datafile.
  16607. //
  16608. const auto DNS_ERROR_PRIMARY_REQUIRES_DATAFILE = 9651;
  16609. // DNS 0x000025b4
  16610. //
  16611. // MessageId: DNS_ERROR_INVALID_DATAFILE_NAME
  16612. //
  16613. // MessageText:
  16614. //
  16615. // Invalid datafile name for DNS zone.
  16616. //
  16617. const auto DNS_ERROR_INVALID_DATAFILE_NAME = 9652;
  16618. // DNS 0x000025b5
  16619. //
  16620. // MessageId: DNS_ERROR_DATAFILE_OPEN_FAILURE
  16621. //
  16622. // MessageText:
  16623. //
  16624. // Failed to open datafile for DNS zone.
  16625. //
  16626. const auto DNS_ERROR_DATAFILE_OPEN_FAILURE = 9653;
  16627. // DNS 0x000025b6
  16628. //
  16629. // MessageId: DNS_ERROR_FILE_WRITEBACK_FAILED
  16630. //
  16631. // MessageText:
  16632. //
  16633. // Failed to write datafile for DNS zone.
  16634. //
  16635. const auto DNS_ERROR_FILE_WRITEBACK_FAILED = 9654;
  16636. // DNS 0x000025b7
  16637. //
  16638. // MessageId: DNS_ERROR_DATAFILE_PARSING
  16639. //
  16640. // MessageText:
  16641. //
  16642. // Failure while reading datafile for DNS zone.
  16643. //
  16644. const auto DNS_ERROR_DATAFILE_PARSING = 9655;
  16645. //
  16646. // Database errors
  16647. //
  16648. const auto DNS_ERROR_DATABASE_BASE = 9700;
  16649. // DNS_ERROR_RECORD_DOES_NOT_EXIST 0x000025e5
  16650. //
  16651. // MessageId: DNS_ERROR_RECORD_DOES_NOT_EXIST
  16652. //
  16653. // MessageText:
  16654. //
  16655. // DNS record does not exist.
  16656. //
  16657. const auto DNS_ERROR_RECORD_DOES_NOT_EXIST = 9701;
  16658. // DNS_ERROR_RECORD_FORMAT 0x000025e6
  16659. //
  16660. // MessageId: DNS_ERROR_RECORD_FORMAT
  16661. //
  16662. // MessageText:
  16663. //
  16664. // DNS record format error.
  16665. //
  16666. const auto DNS_ERROR_RECORD_FORMAT = 9702;
  16667. // DNS_ERROR_NODE_CREATION_FAILED 0x000025e7
  16668. //
  16669. // MessageId: DNS_ERROR_NODE_CREATION_FAILED
  16670. //
  16671. // MessageText:
  16672. //
  16673. // Node creation failure in DNS.
  16674. //
  16675. const auto DNS_ERROR_NODE_CREATION_FAILED = 9703;
  16676. // DNS_ERROR_UNKNOWN_RECORD_TYPE 0x000025e8
  16677. //
  16678. // MessageId: DNS_ERROR_UNKNOWN_RECORD_TYPE
  16679. //
  16680. // MessageText:
  16681. //
  16682. // Unknown DNS record type.
  16683. //
  16684. const auto DNS_ERROR_UNKNOWN_RECORD_TYPE = 9704;
  16685. // DNS_ERROR_RECORD_TIMED_OUT 0x000025e9
  16686. //
  16687. // MessageId: DNS_ERROR_RECORD_TIMED_OUT
  16688. //
  16689. // MessageText:
  16690. //
  16691. // DNS record timed out.
  16692. //
  16693. const auto DNS_ERROR_RECORD_TIMED_OUT = 9705;
  16694. // DNS_ERROR_NAME_NOT_IN_ZONE 0x000025ea
  16695. //
  16696. // MessageId: DNS_ERROR_NAME_NOT_IN_ZONE
  16697. //
  16698. // MessageText:
  16699. //
  16700. // Name not in DNS zone.
  16701. //
  16702. const auto DNS_ERROR_NAME_NOT_IN_ZONE = 9706;
  16703. // DNS_ERROR_CNAME_LOOP 0x000025eb
  16704. //
  16705. // MessageId: DNS_ERROR_CNAME_LOOP
  16706. //
  16707. // MessageText:
  16708. //
  16709. // CNAME loop detected.
  16710. //
  16711. const auto DNS_ERROR_CNAME_LOOP = 9707;
  16712. // DNS_ERROR_NODE_IS_CNAME 0x000025ec
  16713. //
  16714. // MessageId: DNS_ERROR_NODE_IS_CNAME
  16715. //
  16716. // MessageText:
  16717. //
  16718. // Node is a CNAME DNS record.
  16719. //
  16720. const auto DNS_ERROR_NODE_IS_CNAME = 9708;
  16721. // DNS_ERROR_CNAME_COLLISION 0x000025ed
  16722. //
  16723. // MessageId: DNS_ERROR_CNAME_COLLISION
  16724. //
  16725. // MessageText:
  16726. //
  16727. // A CNAME record already exists for given name.
  16728. //
  16729. const auto DNS_ERROR_CNAME_COLLISION = 9709;
  16730. // DNS_ERROR_RECORD_ONLY_AT_ZONE_ROOT 0x000025ee
  16731. //
  16732. // MessageId: DNS_ERROR_RECORD_ONLY_AT_ZONE_ROOT
  16733. //
  16734. // MessageText:
  16735. //
  16736. // Record only at DNS zone root.
  16737. //
  16738. const auto DNS_ERROR_RECORD_ONLY_AT_ZONE_ROOT = 9710;
  16739. // DNS_ERROR_RECORD_ALREADY_EXISTS 0x000025ef
  16740. //
  16741. // MessageId: DNS_ERROR_RECORD_ALREADY_EXISTS
  16742. //
  16743. // MessageText:
  16744. //
  16745. // DNS record already exists.
  16746. //
  16747. const auto DNS_ERROR_RECORD_ALREADY_EXISTS = 9711;
  16748. // DNS_ERROR_SECONDARY_DATA 0x000025f0
  16749. //
  16750. // MessageId: DNS_ERROR_SECONDARY_DATA
  16751. //
  16752. // MessageText:
  16753. //
  16754. // Secondary DNS zone data error.
  16755. //
  16756. const auto DNS_ERROR_SECONDARY_DATA = 9712;
  16757. // DNS_ERROR_NO_CREATE_CACHE_DATA 0x000025f1
  16758. //
  16759. // MessageId: DNS_ERROR_NO_CREATE_CACHE_DATA
  16760. //
  16761. // MessageText:
  16762. //
  16763. // Could not create DNS cache data.
  16764. //
  16765. const auto DNS_ERROR_NO_CREATE_CACHE_DATA = 9713;
  16766. // DNS_ERROR_NAME_DOES_NOT_EXIST 0x000025f2
  16767. //
  16768. // MessageId: DNS_ERROR_NAME_DOES_NOT_EXIST
  16769. //
  16770. // MessageText:
  16771. //
  16772. // DNS name does not exist.
  16773. //
  16774. const auto DNS_ERROR_NAME_DOES_NOT_EXIST = 9714;
  16775. // DNS_WARNING_PTR_CREATE_FAILED 0x000025f3
  16776. //
  16777. // MessageId: DNS_WARNING_PTR_CREATE_FAILED
  16778. //
  16779. // MessageText:
  16780. //
  16781. // Could not create pointer (PTR) record.
  16782. //
  16783. const auto DNS_WARNING_PTR_CREATE_FAILED = 9715;
  16784. // DNS_WARNING_DOMAIN_UNDELETED 0x000025f4
  16785. //
  16786. // MessageId: DNS_WARNING_DOMAIN_UNDELETED
  16787. //
  16788. // MessageText:
  16789. //
  16790. // DNS domain was undeleted.
  16791. //
  16792. const auto DNS_WARNING_DOMAIN_UNDELETED = 9716;
  16793. // DNS_ERROR_DS_UNAVAILABLE 0x000025f5
  16794. //
  16795. // MessageId: DNS_ERROR_DS_UNAVAILABLE
  16796. //
  16797. // MessageText:
  16798. //
  16799. // The directory service is unavailable.
  16800. //
  16801. const auto DNS_ERROR_DS_UNAVAILABLE = 9717;
  16802. // DNS_ERROR_DS_ZONE_ALREADY_EXISTS 0x000025f6
  16803. //
  16804. // MessageId: DNS_ERROR_DS_ZONE_ALREADY_EXISTS
  16805. //
  16806. // MessageText:
  16807. //
  16808. // DNS zone already exists in the directory service.
  16809. //
  16810. const auto DNS_ERROR_DS_ZONE_ALREADY_EXISTS = 9718;
  16811. // DNS_ERROR_NO_BOOTFILE_IF_DS_ZONE 0x000025f7
  16812. //
  16813. // MessageId: DNS_ERROR_NO_BOOTFILE_IF_DS_ZONE
  16814. //
  16815. // MessageText:
  16816. //
  16817. // DNS server not creating or reading the boot file for the directory service integrated DNS zone.
  16818. //
  16819. const auto DNS_ERROR_NO_BOOTFILE_IF_DS_ZONE = 9719;
  16820. // DNS_ERROR_NODE_IS_DNAME 0x000025f8
  16821. //
  16822. // MessageId: DNS_ERROR_NODE_IS_DNAME
  16823. //
  16824. // MessageText:
  16825. //
  16826. // Node is a DNAME DNS record.
  16827. //
  16828. const auto DNS_ERROR_NODE_IS_DNAME = 9720;
  16829. // DNS_ERROR_DNAME_COLLISION 0x000025f9
  16830. //
  16831. // MessageId: DNS_ERROR_DNAME_COLLISION
  16832. //
  16833. // MessageText:
  16834. //
  16835. // A DNAME record already exists for given name.
  16836. //
  16837. const auto DNS_ERROR_DNAME_COLLISION = 9721;
  16838. // DNS_ERROR_ALIAS_LOOP 0x000025fa
  16839. //
  16840. // MessageId: DNS_ERROR_ALIAS_LOOP
  16841. //
  16842. // MessageText:
  16843. //
  16844. // An alias loop has been detected with either CNAME or DNAME records.
  16845. //
  16846. const auto DNS_ERROR_ALIAS_LOOP = 9722;
  16847. //
  16848. // Operation errors
  16849. //
  16850. const auto DNS_ERROR_OPERATION_BASE = 9750;
  16851. // DNS_INFO_AXFR_COMPLETE 0x00002617
  16852. //
  16853. // MessageId: DNS_INFO_AXFR_COMPLETE
  16854. //
  16855. // MessageText:
  16856. //
  16857. // DNS AXFR (zone transfer) complete.
  16858. //
  16859. const auto DNS_INFO_AXFR_COMPLETE = 9751;
  16860. // DNS_ERROR_AXFR 0x00002618
  16861. //
  16862. // MessageId: DNS_ERROR_AXFR
  16863. //
  16864. // MessageText:
  16865. //
  16866. // DNS zone transfer failed.
  16867. //
  16868. const auto DNS_ERROR_AXFR = 9752;
  16869. // DNS_INFO_ADDED_LOCAL_WINS 0x00002619
  16870. //
  16871. // MessageId: DNS_INFO_ADDED_LOCAL_WINS
  16872. //
  16873. // MessageText:
  16874. //
  16875. // Added local WINS server.
  16876. //
  16877. const auto DNS_INFO_ADDED_LOCAL_WINS = 9753;
  16878. //
  16879. // Secure update
  16880. //
  16881. const auto DNS_ERROR_SECURE_BASE = 9800;
  16882. // DNS_STATUS_CONTINUE_NEEDED 0x00002649
  16883. //
  16884. // MessageId: DNS_STATUS_CONTINUE_NEEDED
  16885. //
  16886. // MessageText:
  16887. //
  16888. // Secure update call needs to continue update request.
  16889. //
  16890. const auto DNS_STATUS_CONTINUE_NEEDED = 9801;
  16891. //
  16892. // Setup errors
  16893. //
  16894. const auto DNS_ERROR_SETUP_BASE = 9850;
  16895. // DNS_ERROR_NO_TCPIP 0x0000267b
  16896. //
  16897. // MessageId: DNS_ERROR_NO_TCPIP
  16898. //
  16899. // MessageText:
  16900. //
  16901. // TCP/IP network protocol not installed.
  16902. //
  16903. const auto DNS_ERROR_NO_TCPIP = 9851;
  16904. // DNS_ERROR_NO_DNS_SERVERS 0x0000267c
  16905. //
  16906. // MessageId: DNS_ERROR_NO_DNS_SERVERS
  16907. //
  16908. // MessageText:
  16909. //
  16910. // No DNS servers configured for local system.
  16911. //
  16912. const auto DNS_ERROR_NO_DNS_SERVERS = 9852;
  16913. //
  16914. // Directory partition (DP) errors
  16915. //
  16916. const auto DNS_ERROR_DP_BASE = 9900;
  16917. // DNS_ERROR_DP_DOES_NOT_EXIST 0x000026ad
  16918. //
  16919. // MessageId: DNS_ERROR_DP_DOES_NOT_EXIST
  16920. //
  16921. // MessageText:
  16922. //
  16923. // The specified directory partition does not exist.
  16924. //
  16925. const auto DNS_ERROR_DP_DOES_NOT_EXIST = 9901;
  16926. // DNS_ERROR_DP_ALREADY_EXISTS 0x000026ae
  16927. //
  16928. // MessageId: DNS_ERROR_DP_ALREADY_EXISTS
  16929. //
  16930. // MessageText:
  16931. //
  16932. // The specified directory partition already exists.
  16933. //
  16934. const auto DNS_ERROR_DP_ALREADY_EXISTS = 9902;
  16935. // DNS_ERROR_DP_NOT_ENLISTED 0x000026af
  16936. //
  16937. // MessageId: DNS_ERROR_DP_NOT_ENLISTED
  16938. //
  16939. // MessageText:
  16940. //
  16941. // This DNS server is not enlisted in the specified directory partition.
  16942. //
  16943. const auto DNS_ERROR_DP_NOT_ENLISTED = 9903;
  16944. // DNS_ERROR_DP_ALREADY_ENLISTED 0x000026b0
  16945. //
  16946. // MessageId: DNS_ERROR_DP_ALREADY_ENLISTED
  16947. //
  16948. // MessageText:
  16949. //
  16950. // This DNS server is already enlisted in the specified directory partition.
  16951. //
  16952. const auto DNS_ERROR_DP_ALREADY_ENLISTED = 9904;
  16953. // DNS_ERROR_DP_NOT_AVAILABLE 0x000026b1
  16954. //
  16955. // MessageId: DNS_ERROR_DP_NOT_AVAILABLE
  16956. //
  16957. // MessageText:
  16958. //
  16959. // The directory partition is not available at this time. Please wait a few minutes and try again.
  16960. //
  16961. const auto DNS_ERROR_DP_NOT_AVAILABLE = 9905;
  16962. // DNS_ERROR_DP_FSMO_ERROR 0x000026b2
  16963. //
  16964. // MessageId: DNS_ERROR_DP_FSMO_ERROR
  16965. //
  16966. // MessageText:
  16967. //
  16968. // The application directory partition operation failed. The domain controller holding the domain naming master role is down or unable to service the request or is not running Windows Server 2003.
  16969. //
  16970. const auto DNS_ERROR_DP_FSMO_ERROR = 9906;
  16971. ///////////////////////////////////////////////////
  16972. // //
  16973. // End of DNS Error Codes //
  16974. // //
  16975. // 9000 to 9999 //
  16976. ///////////////////////////////////////////////////
  16977. ///////////////////////////////////////////////////
  16978. // //
  16979. // WinSock Error Codes //
  16980. // //
  16981. // 10000 to 11999 //
  16982. ///////////////////////////////////////////////////
  16983. //
  16984. // WinSock error codes are also defined in WinSock.h
  16985. // and WinSock2.h, hence the IFDEF
  16986. //
  16987. //
  16988. const auto WSABASEERR = 10000;
  16989. // MessageId: WSAEINTR
  16990. //
  16991. // MessageText:
  16992. //
  16993. // A blocking operation was interrupted by a call to WSACancelBlockingCall.
  16994. //
  16995. const auto WSAEINTR = 10004;
  16996. //
  16997. // MessageId: WSAEBADF
  16998. //
  16999. // MessageText:
  17000. //
  17001. // The file handle supplied is not valid.
  17002. //
  17003. const auto WSAEBADF = 10009;
  17004. //
  17005. // MessageId: WSAEACCES
  17006. //
  17007. // MessageText:
  17008. //
  17009. // An attempt was made to access a socket in a way forbidden by its access permissions.
  17010. //
  17011. const auto WSAEACCES = 10013;
  17012. //
  17013. // MessageId: WSAEFAULT
  17014. //
  17015. // MessageText:
  17016. //
  17017. // The system detected an invalid pointer address in attempting to use a pointer argument in a call.
  17018. //
  17019. const auto WSAEFAULT = 10014;
  17020. //
  17021. // MessageId: WSAEINVAL
  17022. //
  17023. // MessageText:
  17024. //
  17025. // An invalid argument was supplied.
  17026. //
  17027. const auto WSAEINVAL = 10022;
  17028. //
  17029. // MessageId: WSAEMFILE
  17030. //
  17031. // MessageText:
  17032. //
  17033. // Too many open sockets.
  17034. //
  17035. const auto WSAEMFILE = 10024;
  17036. //
  17037. // MessageId: WSAEWOULDBLOCK
  17038. //
  17039. // MessageText:
  17040. //
  17041. // A non-blocking socket operation could not be completed immediately.
  17042. //
  17043. const auto WSAEWOULDBLOCK = 10035;
  17044. //
  17045. // MessageId: WSAEINPROGRESS
  17046. //
  17047. // MessageText:
  17048. //
  17049. // A blocking operation is currently executing.
  17050. //
  17051. const auto WSAEINPROGRESS = 10036;
  17052. //
  17053. // MessageId: WSAEALREADY
  17054. //
  17055. // MessageText:
  17056. //
  17057. // An operation was attempted on a non-blocking socket that already had an operation in progress.
  17058. //
  17059. const auto WSAEALREADY = 10037;
  17060. //
  17061. // MessageId: WSAENOTSOCK
  17062. //
  17063. // MessageText:
  17064. //
  17065. // An operation was attempted on something that is not a socket.
  17066. //
  17067. const auto WSAENOTSOCK = 10038;
  17068. //
  17069. // MessageId: WSAEDESTADDRREQ
  17070. //
  17071. // MessageText:
  17072. //
  17073. // A required address was omitted from an operation on a socket.
  17074. //
  17075. const auto WSAEDESTADDRREQ = 10039;
  17076. //
  17077. // MessageId: WSAEMSGSIZE
  17078. //
  17079. // MessageText:
  17080. //
  17081. // A message sent on a datagram socket was larger than the internal message buffer or some other network limit, or the buffer used to receive a datagram into was smaller than the datagram itself.
  17082. //
  17083. const auto WSAEMSGSIZE = 10040;
  17084. //
  17085. // MessageId: WSAEPROTOTYPE
  17086. //
  17087. // MessageText:
  17088. //
  17089. // A protocol was specified in the socket function call that does not support the semantics of the socket type requested.
  17090. //
  17091. const auto WSAEPROTOTYPE = 10041;
  17092. //
  17093. // MessageId: WSAENOPROTOOPT
  17094. //
  17095. // MessageText:
  17096. //
  17097. // An unknown, invalid, or unsupported option or level was specified in a getsockopt or setsockopt call.
  17098. //
  17099. const auto WSAENOPROTOOPT = 10042;
  17100. //
  17101. // MessageId: WSAEPROTONOSUPPORT
  17102. //
  17103. // MessageText:
  17104. //
  17105. // The requested protocol has not been configured into the system, or no implementation for it exists.
  17106. //
  17107. const auto WSAEPROTONOSUPPORT = 10043;
  17108. //
  17109. // MessageId: WSAESOCKTNOSUPPORT
  17110. //
  17111. // MessageText:
  17112. //
  17113. // The support for the specified socket type does not exist in this address family.
  17114. //
  17115. const auto WSAESOCKTNOSUPPORT = 10044;
  17116. //
  17117. // MessageId: WSAEOPNOTSUPP
  17118. //
  17119. // MessageText:
  17120. //
  17121. // The attempted operation is not supported for the type of object referenced.
  17122. //
  17123. const auto WSAEOPNOTSUPP = 10045;
  17124. //
  17125. // MessageId: WSAEPFNOSUPPORT
  17126. //
  17127. // MessageText:
  17128. //
  17129. // The protocol family has not been configured into the system or no implementation for it exists.
  17130. //
  17131. const auto WSAEPFNOSUPPORT = 10046;
  17132. //
  17133. // MessageId: WSAEAFNOSUPPORT
  17134. //
  17135. // MessageText:
  17136. //
  17137. // An address incompatible with the requested protocol was used.
  17138. //
  17139. const auto WSAEAFNOSUPPORT = 10047;
  17140. //
  17141. // MessageId: WSAEADDRINUSE
  17142. //
  17143. // MessageText:
  17144. //
  17145. // Only one usage of each socket address (protocol/network address/port) is normally permitted.
  17146. //
  17147. const auto WSAEADDRINUSE = 10048;
  17148. //
  17149. // MessageId: WSAEADDRNOTAVAIL
  17150. //
  17151. // MessageText:
  17152. //
  17153. // The requested address is not valid in its context.
  17154. //
  17155. const auto WSAEADDRNOTAVAIL = 10049;
  17156. //
  17157. // MessageId: WSAENETDOWN
  17158. //
  17159. // MessageText:
  17160. //
  17161. // A socket operation encountered a dead network.
  17162. //
  17163. const auto WSAENETDOWN = 10050;
  17164. //
  17165. // MessageId: WSAENETUNREACH
  17166. //
  17167. // MessageText:
  17168. //
  17169. // A socket operation was attempted to an unreachable network.
  17170. //
  17171. const auto WSAENETUNREACH = 10051;
  17172. //
  17173. // MessageId: WSAENETRESET
  17174. //
  17175. // MessageText:
  17176. //
  17177. // The connection has been broken due to keep-alive activity detecting a failure while the operation was in progress.
  17178. //
  17179. const auto WSAENETRESET = 10052;
  17180. //
  17181. // MessageId: WSAECONNABORTED
  17182. //
  17183. // MessageText:
  17184. //
  17185. // An established connection was aborted by the software in your host machine.
  17186. //
  17187. const auto WSAECONNABORTED = 10053;
  17188. //
  17189. // MessageId: WSAECONNRESET
  17190. //
  17191. // MessageText:
  17192. //
  17193. // An existing connection was forcibly closed by the remote host.
  17194. //
  17195. const auto WSAECONNRESET = 10054;
  17196. //
  17197. // MessageId: WSAENOBUFS
  17198. //
  17199. // MessageText:
  17200. //
  17201. // An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full.
  17202. //
  17203. const auto WSAENOBUFS = 10055;
  17204. //
  17205. // MessageId: WSAEISCONN
  17206. //
  17207. // MessageText:
  17208. //
  17209. // A connect request was made on an already connected socket.
  17210. //
  17211. const auto WSAEISCONN = 10056;
  17212. //
  17213. // MessageId: WSAENOTCONN
  17214. //
  17215. // MessageText:
  17216. //
  17217. // A request to send or receive data was disallowed because the socket is not connected and (when sending on a datagram socket using a sendto call) no address was supplied.
  17218. //
  17219. const auto WSAENOTCONN = 10057;
  17220. //
  17221. // MessageId: WSAESHUTDOWN
  17222. //
  17223. // MessageText:
  17224. //
  17225. // A request to send or receive data was disallowed because the socket had already been shut down in that direction with a previous shutdown call.
  17226. //
  17227. const auto WSAESHUTDOWN = 10058;
  17228. //
  17229. // MessageId: WSAETOOMANYREFS
  17230. //
  17231. // MessageText:
  17232. //
  17233. // Too many references to some kernel object.
  17234. //
  17235. const auto WSAETOOMANYREFS = 10059;
  17236. //
  17237. // MessageId: WSAETIMEDOUT
  17238. //
  17239. // MessageText:
  17240. //
  17241. // A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.
  17242. //
  17243. const auto WSAETIMEDOUT = 10060;
  17244. //
  17245. // MessageId: WSAECONNREFUSED
  17246. //
  17247. // MessageText:
  17248. //
  17249. // No connection could be made because the target machine actively refused it.
  17250. //
  17251. const auto WSAECONNREFUSED = 10061;
  17252. //
  17253. // MessageId: WSAELOOP
  17254. //
  17255. // MessageText:
  17256. //
  17257. // Cannot translate name.
  17258. //
  17259. const auto WSAELOOP = 10062;
  17260. //
  17261. // MessageId: WSAENAMETOOLONG
  17262. //
  17263. // MessageText:
  17264. //
  17265. // Name component or name was too long.
  17266. //
  17267. const auto WSAENAMETOOLONG = 10063;
  17268. //
  17269. // MessageId: WSAEHOSTDOWN
  17270. //
  17271. // MessageText:
  17272. //
  17273. // A socket operation failed because the destination host was down.
  17274. //
  17275. const auto WSAEHOSTDOWN = 10064;
  17276. //
  17277. // MessageId: WSAEHOSTUNREACH
  17278. //
  17279. // MessageText:
  17280. //
  17281. // A socket operation was attempted to an unreachable host.
  17282. //
  17283. const auto WSAEHOSTUNREACH = 10065;
  17284. //
  17285. // MessageId: WSAENOTEMPTY
  17286. //
  17287. // MessageText:
  17288. //
  17289. // Cannot remove a directory that is not empty.
  17290. //
  17291. const auto WSAENOTEMPTY = 10066;
  17292. //
  17293. // MessageId: WSAEPROCLIM
  17294. //
  17295. // MessageText:
  17296. //
  17297. // A Windows Sockets implementation may have a limit on the number of applications that may use it simultaneously.
  17298. //
  17299. const auto WSAEPROCLIM = 10067;
  17300. //
  17301. // MessageId: WSAEUSERS
  17302. //
  17303. // MessageText:
  17304. //
  17305. // Ran out of quota.
  17306. //
  17307. const auto WSAEUSERS = 10068;
  17308. //
  17309. // MessageId: WSAEDQUOT
  17310. //
  17311. // MessageText:
  17312. //
  17313. // Ran out of disk quota.
  17314. //
  17315. const auto WSAEDQUOT = 10069;
  17316. //
  17317. // MessageId: WSAESTALE
  17318. //
  17319. // MessageText:
  17320. //
  17321. // File handle reference is no longer available.
  17322. //
  17323. const auto WSAESTALE = 10070;
  17324. //
  17325. // MessageId: WSAEREMOTE
  17326. //
  17327. // MessageText:
  17328. //
  17329. // Item is not available locally.
  17330. //
  17331. const auto WSAEREMOTE = 10071;
  17332. //
  17333. // MessageId: WSASYSNOTREADY
  17334. //
  17335. // MessageText:
  17336. //
  17337. // WSAStartup cannot function at this time because the underlying system it uses to provide network services is currently unavailable.
  17338. //
  17339. const auto WSASYSNOTREADY = 10091;
  17340. //
  17341. // MessageId: WSAVERNOTSUPPORTED
  17342. //
  17343. // MessageText:
  17344. //
  17345. // The Windows Sockets version requested is not supported.
  17346. //
  17347. const auto WSAVERNOTSUPPORTED = 10092;
  17348. //
  17349. // MessageId: WSANOTINITIALISED
  17350. //
  17351. // MessageText:
  17352. //
  17353. // Either the application has not called WSAStartup, or WSAStartup failed.
  17354. //
  17355. const auto WSANOTINITIALISED = 10093;
  17356. //
  17357. // MessageId: WSAEDISCON
  17358. //
  17359. // MessageText:
  17360. //
  17361. // Returned by WSARecv or WSARecvFrom to indicate the remote party has initiated a graceful shutdown sequence.
  17362. //
  17363. const auto WSAEDISCON = 10101;
  17364. //
  17365. // MessageId: WSAENOMORE
  17366. //
  17367. // MessageText:
  17368. //
  17369. // No more results can be returned by WSALookupServiceNext.
  17370. //
  17371. const auto WSAENOMORE = 10102;
  17372. //
  17373. // MessageId: WSAECANCELLED
  17374. //
  17375. // MessageText:
  17376. //
  17377. // A call to WSALookupServiceEnd was made while this call was still processing. The call has been canceled.
  17378. //
  17379. const auto WSAECANCELLED = 10103;
  17380. //
  17381. // MessageId: WSAEINVALIDPROCTABLE
  17382. //
  17383. // MessageText:
  17384. //
  17385. // The procedure call table is invalid.
  17386. //
  17387. const auto WSAEINVALIDPROCTABLE = 10104;
  17388. //
  17389. // MessageId: WSAEINVALIDPROVIDER
  17390. //
  17391. // MessageText:
  17392. //
  17393. // The requested service provider is invalid.
  17394. //
  17395. const auto WSAEINVALIDPROVIDER = 10105;
  17396. //
  17397. // MessageId: WSAEPROVIDERFAILEDINIT
  17398. //
  17399. // MessageText:
  17400. //
  17401. // The requested service provider could not be loaded or initialized.
  17402. //
  17403. const auto WSAEPROVIDERFAILEDINIT = 10106;
  17404. //
  17405. // MessageId: WSASYSCALLFAILURE
  17406. //
  17407. // MessageText:
  17408. //
  17409. // A system call that should never fail has failed.
  17410. //
  17411. const auto WSASYSCALLFAILURE = 10107;
  17412. //
  17413. // MessageId: WSASERVICE_NOT_FOUND
  17414. //
  17415. // MessageText:
  17416. //
  17417. // No such service is known. The service cannot be found in the specified name space.
  17418. //
  17419. const auto WSASERVICE_NOT_FOUND = 10108;
  17420. //
  17421. // MessageId: WSATYPE_NOT_FOUND
  17422. //
  17423. // MessageText:
  17424. //
  17425. // The specified class was not found.
  17426. //
  17427. const auto WSATYPE_NOT_FOUND = 10109;
  17428. //
  17429. // MessageId: WSA_E_NO_MORE
  17430. //
  17431. // MessageText:
  17432. //
  17433. // No more results can be returned by WSALookupServiceNext.
  17434. //
  17435. const auto WSA_E_NO_MORE = 10110;
  17436. //
  17437. // MessageId: WSA_E_CANCELLED
  17438. //
  17439. // MessageText:
  17440. //
  17441. // A call to WSALookupServiceEnd was made while this call was still processing. The call has been canceled.
  17442. //
  17443. const auto WSA_E_CANCELLED = 10111;
  17444. //
  17445. // MessageId: WSAEREFUSED
  17446. //
  17447. // MessageText:
  17448. //
  17449. // A database query failed because it was actively refused.
  17450. //
  17451. const auto WSAEREFUSED = 10112;
  17452. //
  17453. // MessageId: WSAHOST_NOT_FOUND
  17454. //
  17455. // MessageText:
  17456. //
  17457. // No such host is known.
  17458. //
  17459. const auto WSAHOST_NOT_FOUND = 11001;
  17460. //
  17461. // MessageId: WSATRY_AGAIN
  17462. //
  17463. // MessageText:
  17464. //
  17465. // This is usually a temporary error during hostname resolution and means that the local server did not receive a response from an authoritative server.
  17466. //
  17467. const auto WSATRY_AGAIN = 11002;
  17468. //
  17469. // MessageId: WSANO_RECOVERY
  17470. //
  17471. // MessageText:
  17472. //
  17473. // A non-recoverable error occurred during a database lookup.
  17474. //
  17475. const auto WSANO_RECOVERY = 11003;
  17476. //
  17477. // MessageId: WSANO_DATA
  17478. //
  17479. // MessageText:
  17480. //
  17481. // The requested name is valid, but no data of the requested type was found.
  17482. //
  17483. const auto WSANO_DATA = 11004;
  17484. //
  17485. // MessageId: WSA_QOS_RECEIVERS
  17486. //
  17487. // MessageText:
  17488. //
  17489. // At least one reserve has arrived.
  17490. //
  17491. const auto WSA_QOS_RECEIVERS = 11005;
  17492. //
  17493. // MessageId: WSA_QOS_SENDERS
  17494. //
  17495. // MessageText:
  17496. //
  17497. // At least one path has arrived.
  17498. //
  17499. const auto WSA_QOS_SENDERS = 11006;
  17500. //
  17501. // MessageId: WSA_QOS_NO_SENDERS
  17502. //
  17503. // MessageText:
  17504. //
  17505. // There are no senders.
  17506. //
  17507. const auto WSA_QOS_NO_SENDERS = 11007;
  17508. //
  17509. // MessageId: WSA_QOS_NO_RECEIVERS
  17510. //
  17511. // MessageText:
  17512. //
  17513. // There are no receivers.
  17514. //
  17515. const auto WSA_QOS_NO_RECEIVERS = 11008;
  17516. //
  17517. // MessageId: WSA_QOS_REQUEST_CONFIRMED
  17518. //
  17519. // MessageText:
  17520. //
  17521. // Reserve has been confirmed.
  17522. //
  17523. const auto WSA_QOS_REQUEST_CONFIRMED = 11009;
  17524. //
  17525. // MessageId: WSA_QOS_ADMISSION_FAILURE
  17526. //
  17527. // MessageText:
  17528. //
  17529. // Error due to lack of resources.
  17530. //
  17531. const auto WSA_QOS_ADMISSION_FAILURE = 11010;
  17532. //
  17533. // MessageId: WSA_QOS_POLICY_FAILURE
  17534. //
  17535. // MessageText:
  17536. //
  17537. // Rejected for administrative reasons - bad credentials.
  17538. //
  17539. const auto WSA_QOS_POLICY_FAILURE = 11011;
  17540. //
  17541. // MessageId: WSA_QOS_BAD_STYLE
  17542. //
  17543. // MessageText:
  17544. //
  17545. // Unknown or conflicting style.
  17546. //
  17547. const auto WSA_QOS_BAD_STYLE = 11012;
  17548. //
  17549. // MessageId: WSA_QOS_BAD_OBJECT
  17550. //
  17551. // MessageText:
  17552. //
  17553. // Problem with some part of the filterspec or providerspecific buffer in general.
  17554. //
  17555. const auto WSA_QOS_BAD_OBJECT = 11013;
  17556. //
  17557. // MessageId: WSA_QOS_TRAFFIC_CTRL_ERROR
  17558. //
  17559. // MessageText:
  17560. //
  17561. // Problem with some part of the flowspec.
  17562. //
  17563. const auto WSA_QOS_TRAFFIC_CTRL_ERROR = 11014;
  17564. //
  17565. // MessageId: WSA_QOS_GENERIC_ERROR
  17566. //
  17567. // MessageText:
  17568. //
  17569. // General QOS error.
  17570. //
  17571. const auto WSA_QOS_GENERIC_ERROR = 11015;
  17572. //
  17573. // MessageId: WSA_QOS_ESERVICETYPE
  17574. //
  17575. // MessageText:
  17576. //
  17577. // An invalid or unrecognized service type was found in the flowspec.
  17578. //
  17579. const auto WSA_QOS_ESERVICETYPE = 11016;
  17580. //
  17581. // MessageId: WSA_QOS_EFLOWSPEC
  17582. //
  17583. // MessageText:
  17584. //
  17585. // An invalid or inconsistent flowspec was found in the QOS structure.
  17586. //
  17587. const auto WSA_QOS_EFLOWSPEC = 11017;
  17588. //
  17589. // MessageId: WSA_QOS_EPROVSPECBUF
  17590. //
  17591. // MessageText:
  17592. //
  17593. // Invalid QOS provider-specific buffer.
  17594. //
  17595. const auto WSA_QOS_EPROVSPECBUF = 11018;
  17596. //
  17597. // MessageId: WSA_QOS_EFILTERSTYLE
  17598. //
  17599. // MessageText:
  17600. //
  17601. // An invalid QOS filter style was used.
  17602. //
  17603. const auto WSA_QOS_EFILTERSTYLE = 11019;
  17604. //
  17605. // MessageId: WSA_QOS_EFILTERTYPE
  17606. //
  17607. // MessageText:
  17608. //
  17609. // An invalid QOS filter type was used.
  17610. //
  17611. const auto WSA_QOS_EFILTERTYPE = 11020;
  17612. //
  17613. // MessageId: WSA_QOS_EFILTERCOUNT
  17614. //
  17615. // MessageText:
  17616. //
  17617. // An incorrect number of QOS FILTERSPECs were specified in the FLOWDESCRIPTOR.
  17618. //
  17619. const auto WSA_QOS_EFILTERCOUNT = 11021;
  17620. //
  17621. // MessageId: WSA_QOS_EOBJLENGTH
  17622. //
  17623. // MessageText:
  17624. //
  17625. // An object with an invalid ObjectLength field was specified in the QOS provider-specific buffer.
  17626. //
  17627. const auto WSA_QOS_EOBJLENGTH = 11022;
  17628. //
  17629. // MessageId: WSA_QOS_EFLOWCOUNT
  17630. //
  17631. // MessageText:
  17632. //
  17633. // An incorrect number of flow descriptors was specified in the QOS structure.
  17634. //
  17635. const auto WSA_QOS_EFLOWCOUNT = 11023;
  17636. //
  17637. // MessageId: WSA_QOS_EUNKOWNPSOBJ
  17638. //
  17639. // MessageText:
  17640. //
  17641. // An unrecognized object was found in the QOS provider-specific buffer.
  17642. //
  17643. const auto WSA_QOS_EUNKOWNPSOBJ = 11024;
  17644. //
  17645. // MessageId: WSA_QOS_EPOLICYOBJ
  17646. //
  17647. // MessageText:
  17648. //
  17649. // An invalid policy object was found in the QOS provider-specific buffer.
  17650. //
  17651. const auto WSA_QOS_EPOLICYOBJ = 11025;
  17652. //
  17653. // MessageId: WSA_QOS_EFLOWDESC
  17654. //
  17655. // MessageText:
  17656. //
  17657. // An invalid QOS flow descriptor was found in the flow descriptor list.
  17658. //
  17659. const auto WSA_QOS_EFLOWDESC = 11026;
  17660. //
  17661. // MessageId: WSA_QOS_EPSFLOWSPEC
  17662. //
  17663. // MessageText:
  17664. //
  17665. // An invalid or inconsistent flowspec was found in the QOS provider specific buffer.
  17666. //
  17667. const auto WSA_QOS_EPSFLOWSPEC = 11027;
  17668. //
  17669. // MessageId: WSA_QOS_EPSFILTERSPEC
  17670. //
  17671. // MessageText:
  17672. //
  17673. // An invalid FILTERSPEC was found in the QOS provider-specific buffer.
  17674. //
  17675. const auto WSA_QOS_EPSFILTERSPEC = 11028;
  17676. //
  17677. // MessageId: WSA_QOS_ESDMODEOBJ
  17678. //
  17679. // MessageText:
  17680. //
  17681. // An invalid shape discard mode object was found in the QOS provider specific buffer.
  17682. //
  17683. const auto WSA_QOS_ESDMODEOBJ = 11029;
  17684. //
  17685. // MessageId: WSA_QOS_ESHAPERATEOBJ
  17686. //
  17687. // MessageText:
  17688. //
  17689. // An invalid shaping rate object was found in the QOS provider-specific buffer.
  17690. //
  17691. const auto WSA_QOS_ESHAPERATEOBJ = 11030;
  17692. //
  17693. // MessageId: WSA_QOS_RESERVED_PETYPE
  17694. //
  17695. // MessageText:
  17696. //
  17697. // A reserved policy element was found in the QOS provider-specific buffer.
  17698. //
  17699. const auto WSA_QOS_RESERVED_PETYPE = 11031;
  17700. ///////////////////////////////////////////////////
  17701. // //
  17702. // End of WinSock Error Codes //
  17703. // //
  17704. // 10000 to 11999 //
  17705. ///////////////////////////////////////////////////
  17706. ///////////////////////////////////////////////////
  17707. // //
  17708. // Available //
  17709. // //
  17710. // 12000 to 129999 //
  17711. ///////////////////////////////////////////////////
  17712. ///////////////////////////////////////////////////
  17713. // //
  17714. // Start of IPSec Error codes //
  17715. // //
  17716. // 13000 to 13999 //
  17717. ///////////////////////////////////////////////////
  17718. //
  17719. // MessageId: ERROR_IPSEC_QM_POLICY_EXISTS
  17720. //
  17721. // MessageText:
  17722. //
  17723. // The specified quick mode policy already exists.
  17724. //
  17725. const auto ERROR_IPSEC_QM_POLICY_EXISTS = 13000;
  17726. //
  17727. // MessageId: ERROR_IPSEC_QM_POLICY_NOT_FOUND
  17728. //
  17729. // MessageText:
  17730. //
  17731. // The specified quick mode policy was not found.
  17732. //
  17733. const auto ERROR_IPSEC_QM_POLICY_NOT_FOUND = 13001;
  17734. //
  17735. // MessageId: ERROR_IPSEC_QM_POLICY_IN_USE
  17736. //
  17737. // MessageText:
  17738. //
  17739. // The specified quick mode policy is being used.
  17740. //
  17741. const auto ERROR_IPSEC_QM_POLICY_IN_USE = 13002;
  17742. //
  17743. // MessageId: ERROR_IPSEC_MM_POLICY_EXISTS
  17744. //
  17745. // MessageText:
  17746. //
  17747. // The specified main mode policy already exists.
  17748. //
  17749. const auto ERROR_IPSEC_MM_POLICY_EXISTS = 13003;
  17750. //
  17751. // MessageId: ERROR_IPSEC_MM_POLICY_NOT_FOUND
  17752. //
  17753. // MessageText:
  17754. //
  17755. // The specified main mode policy was not found
  17756. //
  17757. const auto ERROR_IPSEC_MM_POLICY_NOT_FOUND = 13004;
  17758. //
  17759. // MessageId: ERROR_IPSEC_MM_POLICY_IN_USE
  17760. //
  17761. // MessageText:
  17762. //
  17763. // The specified main mode policy is being used.
  17764. //
  17765. const auto ERROR_IPSEC_MM_POLICY_IN_USE = 13005;
  17766. //
  17767. // MessageId: ERROR_IPSEC_MM_FILTER_EXISTS
  17768. //
  17769. // MessageText:
  17770. //
  17771. // The specified main mode filter already exists.
  17772. //
  17773. const auto ERROR_IPSEC_MM_FILTER_EXISTS = 13006;
  17774. //
  17775. // MessageId: ERROR_IPSEC_MM_FILTER_NOT_FOUND
  17776. //
  17777. // MessageText:
  17778. //
  17779. // The specified main mode filter was not found.
  17780. //
  17781. const auto ERROR_IPSEC_MM_FILTER_NOT_FOUND = 13007;
  17782. //
  17783. // MessageId: ERROR_IPSEC_TRANSPORT_FILTER_EXISTS
  17784. //
  17785. // MessageText:
  17786. //
  17787. // The specified transport mode filter already exists.
  17788. //
  17789. const auto ERROR_IPSEC_TRANSPORT_FILTER_EXISTS = 13008;
  17790. //
  17791. // MessageId: ERROR_IPSEC_TRANSPORT_FILTER_NOT_FOUND
  17792. //
  17793. // MessageText:
  17794. //
  17795. // The specified transport mode filter does not exist.
  17796. //
  17797. const auto ERROR_IPSEC_TRANSPORT_FILTER_NOT_FOUND = 13009;
  17798. //
  17799. // MessageId: ERROR_IPSEC_MM_AUTH_EXISTS
  17800. //
  17801. // MessageText:
  17802. //
  17803. // The specified main mode authentication list exists.
  17804. //
  17805. const auto ERROR_IPSEC_MM_AUTH_EXISTS = 13010;
  17806. //
  17807. // MessageId: ERROR_IPSEC_MM_AUTH_NOT_FOUND
  17808. //
  17809. // MessageText:
  17810. //
  17811. // The specified main mode authentication list was not found.
  17812. //
  17813. const auto ERROR_IPSEC_MM_AUTH_NOT_FOUND = 13011;
  17814. //
  17815. // MessageId: ERROR_IPSEC_MM_AUTH_IN_USE
  17816. //
  17817. // MessageText:
  17818. //
  17819. // The specified main mode authentication list is being used.
  17820. //
  17821. const auto ERROR_IPSEC_MM_AUTH_IN_USE = 13012;
  17822. //
  17823. // MessageId: ERROR_IPSEC_DEFAULT_MM_POLICY_NOT_FOUND
  17824. //
  17825. // MessageText:
  17826. //
  17827. // The specified default main mode policy was not found.
  17828. //
  17829. const auto ERROR_IPSEC_DEFAULT_MM_POLICY_NOT_FOUND = 13013;
  17830. //
  17831. // MessageId: ERROR_IPSEC_DEFAULT_MM_AUTH_NOT_FOUND
  17832. //
  17833. // MessageText:
  17834. //
  17835. // The specified default main mode authentication list was not found.
  17836. //
  17837. const auto ERROR_IPSEC_DEFAULT_MM_AUTH_NOT_FOUND = 13014;
  17838. //
  17839. // MessageId: ERROR_IPSEC_DEFAULT_QM_POLICY_NOT_FOUND
  17840. //
  17841. // MessageText:
  17842. //
  17843. // The specified default quick mode policy was not found.
  17844. //
  17845. const auto ERROR_IPSEC_DEFAULT_QM_POLICY_NOT_FOUND = 13015;
  17846. //
  17847. // MessageId: ERROR_IPSEC_TUNNEL_FILTER_EXISTS
  17848. //
  17849. // MessageText:
  17850. //
  17851. // The specified tunnel mode filter exists.
  17852. //
  17853. const auto ERROR_IPSEC_TUNNEL_FILTER_EXISTS = 13016;
  17854. //
  17855. // MessageId: ERROR_IPSEC_TUNNEL_FILTER_NOT_FOUND
  17856. //
  17857. // MessageText:
  17858. //
  17859. // The specified tunnel mode filter was not found.
  17860. //
  17861. const auto ERROR_IPSEC_TUNNEL_FILTER_NOT_FOUND = 13017;
  17862. //
  17863. // MessageId: ERROR_IPSEC_MM_FILTER_PENDING_DELETION
  17864. //
  17865. // MessageText:
  17866. //
  17867. // The Main Mode filter is pending deletion.
  17868. //
  17869. const auto ERROR_IPSEC_MM_FILTER_PENDING_DELETION = 13018;
  17870. //
  17871. // MessageId: ERROR_IPSEC_TRANSPORT_FILTER_PENDING_DELETION
  17872. //
  17873. // MessageText:
  17874. //
  17875. // The transport filter is pending deletion.
  17876. //
  17877. const auto ERROR_IPSEC_TRANSPORT_FILTER_PENDING_DELETION = 13019;
  17878. //
  17879. // MessageId: ERROR_IPSEC_TUNNEL_FILTER_PENDING_DELETION
  17880. //
  17881. // MessageText:
  17882. //
  17883. // The tunnel filter is pending deletion.
  17884. //
  17885. const auto ERROR_IPSEC_TUNNEL_FILTER_PENDING_DELETION = 13020;
  17886. //
  17887. // MessageId: ERROR_IPSEC_MM_POLICY_PENDING_DELETION
  17888. //
  17889. // MessageText:
  17890. //
  17891. // The Main Mode policy is pending deletion.
  17892. //
  17893. const auto ERROR_IPSEC_MM_POLICY_PENDING_DELETION = 13021;
  17894. //
  17895. // MessageId: ERROR_IPSEC_MM_AUTH_PENDING_DELETION
  17896. //
  17897. // MessageText:
  17898. //
  17899. // The Main Mode authentication bundle is pending deletion.
  17900. //
  17901. const auto ERROR_IPSEC_MM_AUTH_PENDING_DELETION = 13022;
  17902. //
  17903. // MessageId: ERROR_IPSEC_QM_POLICY_PENDING_DELETION
  17904. //
  17905. // MessageText:
  17906. //
  17907. // The Quick Mode policy is pending deletion.
  17908. //
  17909. const auto ERROR_IPSEC_QM_POLICY_PENDING_DELETION = 13023;
  17910. //
  17911. // MessageId: WARNING_IPSEC_MM_POLICY_PRUNED
  17912. //
  17913. // MessageText:
  17914. //
  17915. // The Main Mode policy was successfully added, but some of the requested offers are not supported.
  17916. //
  17917. const auto WARNING_IPSEC_MM_POLICY_PRUNED = 13024;
  17918. //
  17919. // MessageId: WARNING_IPSEC_QM_POLICY_PRUNED
  17920. //
  17921. // MessageText:
  17922. //
  17923. // The Quick Mode policy was successfully added, but some of the requested offers are not supported.
  17924. //
  17925. const auto WARNING_IPSEC_QM_POLICY_PRUNED = 13025;
  17926. //
  17927. // MessageId: ERROR_IPSEC_IKE_NEG_STATUS_BEGIN
  17928. //
  17929. // MessageText:
  17930. //
  17931. // ERROR_IPSEC_IKE_NEG_STATUS_BEGIN
  17932. //
  17933. const auto ERROR_IPSEC_IKE_NEG_STATUS_BEGIN = 13800;
  17934. //
  17935. // MessageId: ERROR_IPSEC_IKE_AUTH_FAIL
  17936. //
  17937. // MessageText:
  17938. //
  17939. // IKE authentication credentials are unacceptable
  17940. //
  17941. const auto ERROR_IPSEC_IKE_AUTH_FAIL = 13801;
  17942. //
  17943. // MessageId: ERROR_IPSEC_IKE_ATTRIB_FAIL
  17944. //
  17945. // MessageText:
  17946. //
  17947. // IKE security attributes are unacceptable
  17948. //
  17949. const auto ERROR_IPSEC_IKE_ATTRIB_FAIL = 13802;
  17950. //
  17951. // MessageId: ERROR_IPSEC_IKE_NEGOTIATION_PENDING
  17952. //
  17953. // MessageText:
  17954. //
  17955. // IKE Negotiation in progress
  17956. //
  17957. const auto ERROR_IPSEC_IKE_NEGOTIATION_PENDING = 13803;
  17958. //
  17959. // MessageId: ERROR_IPSEC_IKE_GENERAL_PROCESSING_ERROR
  17960. //
  17961. // MessageText:
  17962. //
  17963. // General processing error
  17964. //
  17965. const auto ERROR_IPSEC_IKE_GENERAL_PROCESSING_ERROR = 13804;
  17966. //
  17967. // MessageId: ERROR_IPSEC_IKE_TIMED_OUT
  17968. //
  17969. // MessageText:
  17970. //
  17971. // Negotiation timed out
  17972. //
  17973. const auto ERROR_IPSEC_IKE_TIMED_OUT = 13805;
  17974. //
  17975. // MessageId: ERROR_IPSEC_IKE_NO_CERT
  17976. //
  17977. // MessageText:
  17978. //
  17979. // IKE failed to find valid machine certificate. Contact your Network Security Administrator about installing a valid certificate in the appropriate Certificate Store.
  17980. //
  17981. const auto ERROR_IPSEC_IKE_NO_CERT = 13806;
  17982. //
  17983. // MessageId: ERROR_IPSEC_IKE_SA_DELETED
  17984. //
  17985. // MessageText:
  17986. //
  17987. // IKE SA deleted by peer before establishment completed
  17988. //
  17989. const auto ERROR_IPSEC_IKE_SA_DELETED = 13807;
  17990. //
  17991. // MessageId: ERROR_IPSEC_IKE_SA_REAPED
  17992. //
  17993. // MessageText:
  17994. //
  17995. // IKE SA deleted before establishment completed
  17996. //
  17997. const auto ERROR_IPSEC_IKE_SA_REAPED = 13808;
  17998. //
  17999. // MessageId: ERROR_IPSEC_IKE_MM_ACQUIRE_DROP
  18000. //
  18001. // MessageText:
  18002. //
  18003. // Negotiation request sat in Queue too long
  18004. //
  18005. const auto ERROR_IPSEC_IKE_MM_ACQUIRE_DROP = 13809;
  18006. //
  18007. // MessageId: ERROR_IPSEC_IKE_QM_ACQUIRE_DROP
  18008. //
  18009. // MessageText:
  18010. //
  18011. // Negotiation request sat in Queue too long
  18012. //
  18013. const auto ERROR_IPSEC_IKE_QM_ACQUIRE_DROP = 13810;
  18014. //
  18015. // MessageId: ERROR_IPSEC_IKE_QUEUE_DROP_MM
  18016. //
  18017. // MessageText:
  18018. //
  18019. // Negotiation request sat in Queue too long
  18020. //
  18021. const auto ERROR_IPSEC_IKE_QUEUE_DROP_MM = 13811;
  18022. //
  18023. // MessageId: ERROR_IPSEC_IKE_QUEUE_DROP_NO_MM
  18024. //
  18025. // MessageText:
  18026. //
  18027. // Negotiation request sat in Queue too long
  18028. //
  18029. const auto ERROR_IPSEC_IKE_QUEUE_DROP_NO_MM = 13812;
  18030. //
  18031. // MessageId: ERROR_IPSEC_IKE_DROP_NO_RESPONSE
  18032. //
  18033. // MessageText:
  18034. //
  18035. // No response from peer
  18036. //
  18037. const auto ERROR_IPSEC_IKE_DROP_NO_RESPONSE = 13813;
  18038. //
  18039. // MessageId: ERROR_IPSEC_IKE_MM_DELAY_DROP
  18040. //
  18041. // MessageText:
  18042. //
  18043. // Negotiation took too long
  18044. //
  18045. const auto ERROR_IPSEC_IKE_MM_DELAY_DROP = 13814;
  18046. //
  18047. // MessageId: ERROR_IPSEC_IKE_QM_DELAY_DROP
  18048. //
  18049. // MessageText:
  18050. //
  18051. // Negotiation took too long
  18052. //
  18053. const auto ERROR_IPSEC_IKE_QM_DELAY_DROP = 13815;
  18054. //
  18055. // MessageId: ERROR_IPSEC_IKE_ERROR
  18056. //
  18057. // MessageText:
  18058. //
  18059. // Unknown error occurred
  18060. //
  18061. const auto ERROR_IPSEC_IKE_ERROR = 13816;
  18062. //
  18063. // MessageId: ERROR_IPSEC_IKE_CRL_FAILED
  18064. //
  18065. // MessageText:
  18066. //
  18067. // Certificate Revocation Check failed
  18068. //
  18069. const auto ERROR_IPSEC_IKE_CRL_FAILED = 13817;
  18070. //
  18071. // MessageId: ERROR_IPSEC_IKE_INVALID_KEY_USAGE
  18072. //
  18073. // MessageText:
  18074. //
  18075. // Invalid certificate key usage
  18076. //
  18077. const auto ERROR_IPSEC_IKE_INVALID_KEY_USAGE = 13818;
  18078. //
  18079. // MessageId: ERROR_IPSEC_IKE_INVALID_CERT_TYPE
  18080. //
  18081. // MessageText:
  18082. //
  18083. // Invalid certificate type
  18084. //
  18085. const auto ERROR_IPSEC_IKE_INVALID_CERT_TYPE = 13819;
  18086. //
  18087. // MessageId: ERROR_IPSEC_IKE_NO_PRIVATE_KEY
  18088. //
  18089. // MessageText:
  18090. //
  18091. // IKE negotiation failed because the machine certificate used does not have a private key. IPsec certificates require a private key. Contact your Network Security administrator about replacing with a certificate that has a private key.
  18092. //
  18093. const auto ERROR_IPSEC_IKE_NO_PRIVATE_KEY = 13820;
  18094. //
  18095. // MessageId: ERROR_IPSEC_IKE_DH_FAIL
  18096. //
  18097. // MessageText:
  18098. //
  18099. // Failure in Diffie-Helman computation
  18100. //
  18101. const auto ERROR_IPSEC_IKE_DH_FAIL = 13822;
  18102. //
  18103. // MessageId: ERROR_IPSEC_IKE_INVALID_HEADER
  18104. //
  18105. // MessageText:
  18106. //
  18107. // Invalid header
  18108. //
  18109. const auto ERROR_IPSEC_IKE_INVALID_HEADER = 13824;
  18110. //
  18111. // MessageId: ERROR_IPSEC_IKE_NO_POLICY
  18112. //
  18113. // MessageText:
  18114. //
  18115. // No policy configured
  18116. //
  18117. const auto ERROR_IPSEC_IKE_NO_POLICY = 13825;
  18118. //
  18119. // MessageId: ERROR_IPSEC_IKE_INVALID_SIGNATURE
  18120. //
  18121. // MessageText:
  18122. //
  18123. // Failed to verify signature
  18124. //
  18125. const auto ERROR_IPSEC_IKE_INVALID_SIGNATURE = 13826;
  18126. //
  18127. // MessageId: ERROR_IPSEC_IKE_KERBEROS_ERROR
  18128. //
  18129. // MessageText:
  18130. //
  18131. // Failed to authenticate using kerberos
  18132. //
  18133. const auto ERROR_IPSEC_IKE_KERBEROS_ERROR = 13827;
  18134. //
  18135. // MessageId: ERROR_IPSEC_IKE_NO_PUBLIC_KEY
  18136. //
  18137. // MessageText:
  18138. //
  18139. // Peer's certificate did not have a public key
  18140. //
  18141. const auto ERROR_IPSEC_IKE_NO_PUBLIC_KEY = 13828;
  18142. // These must stay as a unit.
  18143. //
  18144. // MessageId: ERROR_IPSEC_IKE_PROCESS_ERR
  18145. //
  18146. // MessageText:
  18147. //
  18148. // Error processing error payload
  18149. //
  18150. const auto ERROR_IPSEC_IKE_PROCESS_ERR = 13829;
  18151. //
  18152. // MessageId: ERROR_IPSEC_IKE_PROCESS_ERR_SA
  18153. //
  18154. // MessageText:
  18155. //
  18156. // Error processing SA payload
  18157. //
  18158. const auto ERROR_IPSEC_IKE_PROCESS_ERR_SA = 13830;
  18159. //
  18160. // MessageId: ERROR_IPSEC_IKE_PROCESS_ERR_PROP
  18161. //
  18162. // MessageText:
  18163. //
  18164. // Error processing Proposal payload
  18165. //
  18166. const auto ERROR_IPSEC_IKE_PROCESS_ERR_PROP = 13831;
  18167. //
  18168. // MessageId: ERROR_IPSEC_IKE_PROCESS_ERR_TRANS
  18169. //
  18170. // MessageText:
  18171. //
  18172. // Error processing Transform payload
  18173. //
  18174. const auto ERROR_IPSEC_IKE_PROCESS_ERR_TRANS = 13832;
  18175. //
  18176. // MessageId: ERROR_IPSEC_IKE_PROCESS_ERR_KE
  18177. //
  18178. // MessageText:
  18179. //
  18180. // Error processing KE payload
  18181. //
  18182. const auto ERROR_IPSEC_IKE_PROCESS_ERR_KE = 13833;
  18183. //
  18184. // MessageId: ERROR_IPSEC_IKE_PROCESS_ERR_ID
  18185. //
  18186. // MessageText:
  18187. //
  18188. // Error processing ID payload
  18189. //
  18190. const auto ERROR_IPSEC_IKE_PROCESS_ERR_ID = 13834;
  18191. //
  18192. // MessageId: ERROR_IPSEC_IKE_PROCESS_ERR_CERT
  18193. //
  18194. // MessageText:
  18195. //
  18196. // Error processing Cert payload
  18197. //
  18198. const auto ERROR_IPSEC_IKE_PROCESS_ERR_CERT = 13835;
  18199. //
  18200. // MessageId: ERROR_IPSEC_IKE_PROCESS_ERR_CERT_REQ
  18201. //
  18202. // MessageText:
  18203. //
  18204. // Error processing Certificate Request payload
  18205. //
  18206. const auto ERROR_IPSEC_IKE_PROCESS_ERR_CERT_REQ = 13836;
  18207. //
  18208. // MessageId: ERROR_IPSEC_IKE_PROCESS_ERR_HASH
  18209. //
  18210. // MessageText:
  18211. //
  18212. // Error processing Hash payload
  18213. //
  18214. const auto ERROR_IPSEC_IKE_PROCESS_ERR_HASH = 13837;
  18215. //
  18216. // MessageId: ERROR_IPSEC_IKE_PROCESS_ERR_SIG
  18217. //
  18218. // MessageText:
  18219. //
  18220. // Error processing Signature payload
  18221. //
  18222. const auto ERROR_IPSEC_IKE_PROCESS_ERR_SIG = 13838;
  18223. //
  18224. // MessageId: ERROR_IPSEC_IKE_PROCESS_ERR_NONCE
  18225. //
  18226. // MessageText:
  18227. //
  18228. // Error processing Nonce payload
  18229. //
  18230. const auto ERROR_IPSEC_IKE_PROCESS_ERR_NONCE = 13839;
  18231. //
  18232. // MessageId: ERROR_IPSEC_IKE_PROCESS_ERR_NOTIFY
  18233. //
  18234. // MessageText:
  18235. //
  18236. // Error processing Notify payload
  18237. //
  18238. const auto ERROR_IPSEC_IKE_PROCESS_ERR_NOTIFY = 13840;
  18239. //
  18240. // MessageId: ERROR_IPSEC_IKE_PROCESS_ERR_DELETE
  18241. //
  18242. // MessageText:
  18243. //
  18244. // Error processing Delete Payload
  18245. //
  18246. const auto ERROR_IPSEC_IKE_PROCESS_ERR_DELETE = 13841;
  18247. //
  18248. // MessageId: ERROR_IPSEC_IKE_PROCESS_ERR_VENDOR
  18249. //
  18250. // MessageText:
  18251. //
  18252. // Error processing VendorId payload
  18253. //
  18254. const auto ERROR_IPSEC_IKE_PROCESS_ERR_VENDOR = 13842;
  18255. //
  18256. // MessageId: ERROR_IPSEC_IKE_INVALID_PAYLOAD
  18257. //
  18258. // MessageText:
  18259. //
  18260. // Invalid payload received
  18261. //
  18262. const auto ERROR_IPSEC_IKE_INVALID_PAYLOAD = 13843;
  18263. //
  18264. // MessageId: ERROR_IPSEC_IKE_LOAD_SOFT_SA
  18265. //
  18266. // MessageText:
  18267. //
  18268. // Soft SA loaded
  18269. //
  18270. const auto ERROR_IPSEC_IKE_LOAD_SOFT_SA = 13844;
  18271. //
  18272. // MessageId: ERROR_IPSEC_IKE_SOFT_SA_TORN_DOWN
  18273. //
  18274. // MessageText:
  18275. //
  18276. // Soft SA torn down
  18277. //
  18278. const auto ERROR_IPSEC_IKE_SOFT_SA_TORN_DOWN = 13845;
  18279. //
  18280. // MessageId: ERROR_IPSEC_IKE_INVALID_COOKIE
  18281. //
  18282. // MessageText:
  18283. //
  18284. // Invalid cookie received.
  18285. //
  18286. const auto ERROR_IPSEC_IKE_INVALID_COOKIE = 13846;
  18287. //
  18288. // MessageId: ERROR_IPSEC_IKE_NO_PEER_CERT
  18289. //
  18290. // MessageText:
  18291. //
  18292. // Peer failed to send valid machine certificate
  18293. //
  18294. const auto ERROR_IPSEC_IKE_NO_PEER_CERT = 13847;
  18295. //
  18296. // MessageId: ERROR_IPSEC_IKE_PEER_CRL_FAILED
  18297. //
  18298. // MessageText:
  18299. //
  18300. // Certification Revocation check of peer's certificate failed
  18301. //
  18302. const auto ERROR_IPSEC_IKE_PEER_CRL_FAILED = 13848;
  18303. //
  18304. // MessageId: ERROR_IPSEC_IKE_POLICY_CHANGE
  18305. //
  18306. // MessageText:
  18307. //
  18308. // New policy invalidated SAs formed with old policy
  18309. //
  18310. const auto ERROR_IPSEC_IKE_POLICY_CHANGE = 13849;
  18311. //
  18312. // MessageId: ERROR_IPSEC_IKE_NO_MM_POLICY
  18313. //
  18314. // MessageText:
  18315. //
  18316. // There is no available Main Mode IKE policy.
  18317. //
  18318. const auto ERROR_IPSEC_IKE_NO_MM_POLICY = 13850;
  18319. //
  18320. // MessageId: ERROR_IPSEC_IKE_NOTCBPRIV
  18321. //
  18322. // MessageText:
  18323. //
  18324. // Failed to enabled TCB privilege.
  18325. //
  18326. const auto ERROR_IPSEC_IKE_NOTCBPRIV = 13851;
  18327. //
  18328. // MessageId: ERROR_IPSEC_IKE_SECLOADFAIL
  18329. //
  18330. // MessageText:
  18331. //
  18332. // Failed to load SECURITY.DLL.
  18333. //
  18334. const auto ERROR_IPSEC_IKE_SECLOADFAIL = 13852;
  18335. //
  18336. // MessageId: ERROR_IPSEC_IKE_FAILSSPINIT
  18337. //
  18338. // MessageText:
  18339. //
  18340. // Failed to obtain security function table dispatch address from SSPI.
  18341. //
  18342. const auto ERROR_IPSEC_IKE_FAILSSPINIT = 13853;
  18343. //
  18344. // MessageId: ERROR_IPSEC_IKE_FAILQUERYSSP
  18345. //
  18346. // MessageText:
  18347. //
  18348. // Failed to query Kerberos package to obtain max token size.
  18349. //
  18350. const auto ERROR_IPSEC_IKE_FAILQUERYSSP = 13854;
  18351. //
  18352. // MessageId: ERROR_IPSEC_IKE_SRVACQFAIL
  18353. //
  18354. // MessageText:
  18355. //
  18356. // Failed to obtain Kerberos server credentials for ISAKMP/ERROR_IPSEC_IKE service. Kerberos authentication will not function. The most likely reason for this is lack of domain membership. This is normal if your computer is a member of a workgroup.
  18357. //
  18358. const auto ERROR_IPSEC_IKE_SRVACQFAIL = 13855;
  18359. //
  18360. // MessageId: ERROR_IPSEC_IKE_SRVQUERYCRED
  18361. //
  18362. // MessageText:
  18363. //
  18364. // Failed to determine SSPI principal name for ISAKMP/ERROR_IPSEC_IKE service (QueryCredentialsAttributes).
  18365. //
  18366. const auto ERROR_IPSEC_IKE_SRVQUERYCRED = 13856;
  18367. //
  18368. // MessageId: ERROR_IPSEC_IKE_GETSPIFAIL
  18369. //
  18370. // MessageText:
  18371. //
  18372. // Failed to obtain new SPI for the inbound SA from Ipsec driver. The most common cause for this is that the driver does not have the correct filter. Check your policy to verify the filters.
  18373. //
  18374. const auto ERROR_IPSEC_IKE_GETSPIFAIL = 13857;
  18375. //
  18376. // MessageId: ERROR_IPSEC_IKE_INVALID_FILTER
  18377. //
  18378. // MessageText:
  18379. //
  18380. // Given filter is invalid
  18381. //
  18382. const auto ERROR_IPSEC_IKE_INVALID_FILTER = 13858;
  18383. //
  18384. // MessageId: ERROR_IPSEC_IKE_OUT_OF_MEMORY
  18385. //
  18386. // MessageText:
  18387. //
  18388. // Memory allocation failed.
  18389. //
  18390. const auto ERROR_IPSEC_IKE_OUT_OF_MEMORY = 13859;
  18391. //
  18392. // MessageId: ERROR_IPSEC_IKE_ADD_UPDATE_KEY_FAILED
  18393. //
  18394. // MessageText:
  18395. //
  18396. // Failed to add Security Association to IPSec Driver. The most common cause for this is if the IKE negotiation took too long to complete. If the problem persists, reduce the load on the faulting machine.
  18397. //
  18398. const auto ERROR_IPSEC_IKE_ADD_UPDATE_KEY_FAILED = 13860;
  18399. //
  18400. // MessageId: ERROR_IPSEC_IKE_INVALID_POLICY
  18401. //
  18402. // MessageText:
  18403. //
  18404. // Invalid policy
  18405. //
  18406. const auto ERROR_IPSEC_IKE_INVALID_POLICY = 13861;
  18407. //
  18408. // MessageId: ERROR_IPSEC_IKE_UNKNOWN_DOI
  18409. //
  18410. // MessageText:
  18411. //
  18412. // Invalid DOI
  18413. //
  18414. const auto ERROR_IPSEC_IKE_UNKNOWN_DOI = 13862;
  18415. //
  18416. // MessageId: ERROR_IPSEC_IKE_INVALID_SITUATION
  18417. //
  18418. // MessageText:
  18419. //
  18420. // Invalid situation
  18421. //
  18422. const auto ERROR_IPSEC_IKE_INVALID_SITUATION = 13863;
  18423. //
  18424. // MessageId: ERROR_IPSEC_IKE_DH_FAILURE
  18425. //
  18426. // MessageText:
  18427. //
  18428. // Diffie-Hellman failure
  18429. //
  18430. const auto ERROR_IPSEC_IKE_DH_FAILURE = 13864;
  18431. //
  18432. // MessageId: ERROR_IPSEC_IKE_INVALID_GROUP
  18433. //
  18434. // MessageText:
  18435. //
  18436. // Invalid Diffie-Hellman group
  18437. //
  18438. const auto ERROR_IPSEC_IKE_INVALID_GROUP = 13865;
  18439. //
  18440. // MessageId: ERROR_IPSEC_IKE_ENCRYPT
  18441. //
  18442. // MessageText:
  18443. //
  18444. // Error encrypting payload
  18445. //
  18446. const auto ERROR_IPSEC_IKE_ENCRYPT = 13866;
  18447. //
  18448. // MessageId: ERROR_IPSEC_IKE_DECRYPT
  18449. //
  18450. // MessageText:
  18451. //
  18452. // Error decrypting payload
  18453. //
  18454. const auto ERROR_IPSEC_IKE_DECRYPT = 13867;
  18455. //
  18456. // MessageId: ERROR_IPSEC_IKE_POLICY_MATCH
  18457. //
  18458. // MessageText:
  18459. //
  18460. // Policy match error
  18461. //
  18462. const auto ERROR_IPSEC_IKE_POLICY_MATCH = 13868;
  18463. //
  18464. // MessageId: ERROR_IPSEC_IKE_UNSUPPORTED_ID
  18465. //
  18466. // MessageText:
  18467. //
  18468. // Unsupported ID
  18469. //
  18470. const auto ERROR_IPSEC_IKE_UNSUPPORTED_ID = 13869;
  18471. //
  18472. // MessageId: ERROR_IPSEC_IKE_INVALID_HASH
  18473. //
  18474. // MessageText:
  18475. //
  18476. // Hash verification failed
  18477. //
  18478. const auto ERROR_IPSEC_IKE_INVALID_HASH = 13870;
  18479. //
  18480. // MessageId: ERROR_IPSEC_IKE_INVALID_HASH_ALG
  18481. //
  18482. // MessageText:
  18483. //
  18484. // Invalid hash algorithm
  18485. //
  18486. const auto ERROR_IPSEC_IKE_INVALID_HASH_ALG = 13871;
  18487. //
  18488. // MessageId: ERROR_IPSEC_IKE_INVALID_HASH_SIZE
  18489. //
  18490. // MessageText:
  18491. //
  18492. // Invalid hash size
  18493. //
  18494. const auto ERROR_IPSEC_IKE_INVALID_HASH_SIZE = 13872;
  18495. //
  18496. // MessageId: ERROR_IPSEC_IKE_INVALID_ENCRYPT_ALG
  18497. //
  18498. // MessageText:
  18499. //
  18500. // Invalid encryption algorithm
  18501. //
  18502. const auto ERROR_IPSEC_IKE_INVALID_ENCRYPT_ALG = 13873;
  18503. //
  18504. // MessageId: ERROR_IPSEC_IKE_INVALID_AUTH_ALG
  18505. //
  18506. // MessageText:
  18507. //
  18508. // Invalid authentication algorithm
  18509. //
  18510. const auto ERROR_IPSEC_IKE_INVALID_AUTH_ALG = 13874;
  18511. //
  18512. // MessageId: ERROR_IPSEC_IKE_INVALID_SIG
  18513. //
  18514. // MessageText:
  18515. //
  18516. // Invalid certificate signature
  18517. //
  18518. const auto ERROR_IPSEC_IKE_INVALID_SIG = 13875;
  18519. //
  18520. // MessageId: ERROR_IPSEC_IKE_LOAD_FAILED
  18521. //
  18522. // MessageText:
  18523. //
  18524. // Load failed
  18525. //
  18526. const auto ERROR_IPSEC_IKE_LOAD_FAILED = 13876;
  18527. //
  18528. // MessageId: ERROR_IPSEC_IKE_RPC_DELETE
  18529. //
  18530. // MessageText:
  18531. //
  18532. // Deleted via RPC call
  18533. //
  18534. const auto ERROR_IPSEC_IKE_RPC_DELETE = 13877;
  18535. //
  18536. // MessageId: ERROR_IPSEC_IKE_BENIGN_REINIT
  18537. //
  18538. // MessageText:
  18539. //
  18540. // Temporary state created to perform reinit. This is not a real failure.
  18541. //
  18542. const auto ERROR_IPSEC_IKE_BENIGN_REINIT = 13878;
  18543. //
  18544. // MessageId: ERROR_IPSEC_IKE_INVALID_RESPONDER_LIFETIME_NOTIFY
  18545. //
  18546. // MessageText:
  18547. //
  18548. // The lifetime value received in the Responder Lifetime Notify is below the Windows 2000 configured minimum value. Please fix the policy on the peer machine.
  18549. //
  18550. const auto ERROR_IPSEC_IKE_INVALID_RESPONDER_LIFETIME_NOTIFY = 13879;
  18551. //
  18552. // MessageId: ERROR_IPSEC_IKE_INVALID_CERT_KEYLEN
  18553. //
  18554. // MessageText:
  18555. //
  18556. // Key length in certificate is too small for configured security requirements.
  18557. //
  18558. const auto ERROR_IPSEC_IKE_INVALID_CERT_KEYLEN = 13881;
  18559. //
  18560. // MessageId: ERROR_IPSEC_IKE_MM_LIMIT
  18561. //
  18562. // MessageText:
  18563. //
  18564. // Max number of established MM SAs to peer exceeded.
  18565. //
  18566. const auto ERROR_IPSEC_IKE_MM_LIMIT = 13882;
  18567. //
  18568. // MessageId: ERROR_IPSEC_IKE_NEGOTIATION_DISABLED
  18569. //
  18570. // MessageText:
  18571. //
  18572. // IKE received a policy that disables negotiation.
  18573. //
  18574. const auto ERROR_IPSEC_IKE_NEGOTIATION_DISABLED = 13883;
  18575. //
  18576. // MessageId: ERROR_IPSEC_IKE_QM_LIMIT
  18577. //
  18578. // MessageText:
  18579. //
  18580. // Reached maximum quick mode limit for the main mode. New main mode will be started.
  18581. //
  18582. const auto ERROR_IPSEC_IKE_QM_LIMIT = 13884;
  18583. //
  18584. // MessageId: ERROR_IPSEC_IKE_MM_EXPIRED
  18585. //
  18586. // MessageText:
  18587. //
  18588. // Main mode SA lifetime expired or peer sent a main mode delete.
  18589. //
  18590. const auto ERROR_IPSEC_IKE_MM_EXPIRED = 13885;
  18591. //
  18592. // MessageId: ERROR_IPSEC_IKE_PEER_MM_ASSUMED_INVALID
  18593. //
  18594. // MessageText:
  18595. //
  18596. // Main mode SA assumed to be invalid because peer stopped responding.
  18597. //
  18598. const auto ERROR_IPSEC_IKE_PEER_MM_ASSUMED_INVALID = 13886;
  18599. //
  18600. // MessageId: ERROR_IPSEC_IKE_CERT_CHAIN_POLICY_MISMATCH
  18601. //
  18602. // MessageText:
  18603. //
  18604. // Certificate doesn't chain to a trusted root in IPsec policy.
  18605. //
  18606. const auto ERROR_IPSEC_IKE_CERT_CHAIN_POLICY_MISMATCH = 13887;
  18607. //
  18608. // MessageId: ERROR_IPSEC_IKE_UNEXPECTED_MESSAGE_ID
  18609. //
  18610. // MessageText:
  18611. //
  18612. // Received unexpected message ID.
  18613. //
  18614. const auto ERROR_IPSEC_IKE_UNEXPECTED_MESSAGE_ID = 13888;
  18615. //
  18616. // MessageId: ERROR_IPSEC_IKE_INVALID_AUTH_PAYLOAD
  18617. //
  18618. // MessageText:
  18619. //
  18620. // Received invalid authentication offers.
  18621. //
  18622. const auto ERROR_IPSEC_IKE_INVALID_AUTH_PAYLOAD = 13889;
  18623. //
  18624. // MessageId: ERROR_IPSEC_IKE_DOS_COOKIE_SENT
  18625. //
  18626. // MessageText:
  18627. //
  18628. // Sent DOS cookie notify to intiator.
  18629. //
  18630. const auto ERROR_IPSEC_IKE_DOS_COOKIE_SENT = 13890;
  18631. //
  18632. // MessageId: ERROR_IPSEC_IKE_SHUTTING_DOWN
  18633. //
  18634. // MessageText:
  18635. //
  18636. // IKE service is shutting down.
  18637. //
  18638. const auto ERROR_IPSEC_IKE_SHUTTING_DOWN = 13891;
  18639. //
  18640. // MessageId: ERROR_IPSEC_IKE_CGA_AUTH_FAILED
  18641. //
  18642. // MessageText:
  18643. //
  18644. // Could not verify binding between CGA address and certificate.
  18645. //
  18646. const auto ERROR_IPSEC_IKE_CGA_AUTH_FAILED = 13892;
  18647. //
  18648. // MessageId: ERROR_IPSEC_IKE_PROCESS_ERR_NATOA
  18649. //
  18650. // MessageText:
  18651. //
  18652. // Error processing NatOA payload.
  18653. //
  18654. const auto ERROR_IPSEC_IKE_PROCESS_ERR_NATOA = 13893;
  18655. //
  18656. // MessageId: ERROR_IPSEC_IKE_INVALID_MM_FOR_QM
  18657. //
  18658. // MessageText:
  18659. //
  18660. // Parameters of the main mode are invalid for this quick mode.
  18661. //
  18662. const auto ERROR_IPSEC_IKE_INVALID_MM_FOR_QM = 13894;
  18663. //
  18664. // MessageId: ERROR_IPSEC_IKE_QM_EXPIRED
  18665. //
  18666. // MessageText:
  18667. //
  18668. // Quick mode SA was expired by IPsec driver.
  18669. //
  18670. const auto ERROR_IPSEC_IKE_QM_EXPIRED = 13895;
  18671. //
  18672. // MessageId: ERROR_IPSEC_IKE_TOO_MANY_FILTERS
  18673. //
  18674. // MessageText:
  18675. //
  18676. // Too many dynamically added IKEEXT filters were detected.
  18677. //
  18678. const auto ERROR_IPSEC_IKE_TOO_MANY_FILTERS = 13896;
  18679. //
  18680. // MessageId: ERROR_IPSEC_IKE_NEG_STATUS_END
  18681. //
  18682. // MessageText:
  18683. //
  18684. // ERROR_IPSEC_IKE_NEG_STATUS_END
  18685. //
  18686. const auto ERROR_IPSEC_IKE_NEG_STATUS_END = 13897;
  18687. //
  18688. // Following error codes are returned by IPsec kernel.
  18689. //
  18690. //
  18691. // MessageId: ERROR_IPSEC_BAD_SPI
  18692. //
  18693. // MessageText:
  18694. //
  18695. // The SPI in the packet does not match a valid IPsec SA.
  18696. //
  18697. const auto ERROR_IPSEC_BAD_SPI = 13910;
  18698. //
  18699. // MessageId: ERROR_IPSEC_SA_LIFETIME_EXPIRED
  18700. //
  18701. // MessageText:
  18702. //
  18703. // Packet was received on an IPsec SA whose lifetime has expired.
  18704. //
  18705. const auto ERROR_IPSEC_SA_LIFETIME_EXPIRED = 13911;
  18706. //
  18707. // MessageId: ERROR_IPSEC_WRONG_SA
  18708. //
  18709. // MessageText:
  18710. //
  18711. // Packet was received on an IPsec SA that doesn't match the packet characteristics.
  18712. //
  18713. const auto ERROR_IPSEC_WRONG_SA = 13912;
  18714. //
  18715. // MessageId: ERROR_IPSEC_REPLAY_CHECK_FAILED
  18716. //
  18717. // MessageText:
  18718. //
  18719. // Packet sequence number replay check failed.
  18720. //
  18721. const auto ERROR_IPSEC_REPLAY_CHECK_FAILED = 13913;
  18722. //
  18723. // MessageId: ERROR_IPSEC_INVALID_PACKET
  18724. //
  18725. // MessageText:
  18726. //
  18727. // IPsec header and/or trailer in the packet is invalid.
  18728. //
  18729. const auto ERROR_IPSEC_INVALID_PACKET = 13914;
  18730. //
  18731. // MessageId: ERROR_IPSEC_INTEGRITY_CHECK_FAILED
  18732. //
  18733. // MessageText:
  18734. //
  18735. // IPsec integrity check failed.
  18736. //
  18737. const auto ERROR_IPSEC_INTEGRITY_CHECK_FAILED = 13915;
  18738. //
  18739. // MessageId: ERROR_IPSEC_CLEAR_TEXT_DROP
  18740. //
  18741. // MessageText:
  18742. //
  18743. // IPsec dropped a clear text packet.
  18744. //
  18745. const auto ERROR_IPSEC_CLEAR_TEXT_DROP = 13916;
  18746. ///////////////////////////////////////////////////
  18747. // //
  18748. // End of IPSec Error codes //
  18749. // //
  18750. // 13000 to 13999 //
  18751. ///////////////////////////////////////////////////
  18752. ///////////////////////////////////////////////////
  18753. // //
  18754. // Start of Side By Side Error Codes //
  18755. // //
  18756. // 14000 to 14999 //
  18757. ///////////////////////////////////////////////////
  18758. //
  18759. // MessageId: ERROR_SXS_SECTION_NOT_FOUND
  18760. //
  18761. // MessageText:
  18762. //
  18763. // The requested section was not present in the activation context.
  18764. //
  18765. const auto ERROR_SXS_SECTION_NOT_FOUND = 14000;
  18766. //
  18767. // MessageId: ERROR_SXS_CANT_GEN_ACTCTX
  18768. //
  18769. // MessageText:
  18770. //
  18771. // The application has failed to start because its side-by-side configuration is incorrect. Please see the application event log for more detail.
  18772. //
  18773. const auto ERROR_SXS_CANT_GEN_ACTCTX = 14001;
  18774. //
  18775. // MessageId: ERROR_SXS_INVALID_ACTCTXDATA_FORMAT
  18776. //
  18777. // MessageText:
  18778. //
  18779. // The application binding data format is invalid.
  18780. //
  18781. const auto ERROR_SXS_INVALID_ACTCTXDATA_FORMAT = 14002;
  18782. //
  18783. // MessageId: ERROR_SXS_ASSEMBLY_NOT_FOUND
  18784. //
  18785. // MessageText:
  18786. //
  18787. // The referenced assembly is not installed on your system.
  18788. //
  18789. const auto ERROR_SXS_ASSEMBLY_NOT_FOUND = 14003;
  18790. //
  18791. // MessageId: ERROR_SXS_MANIFEST_FORMAT_ERROR
  18792. //
  18793. // MessageText:
  18794. //
  18795. // The manifest file does not begin with the required tag and format information.
  18796. //
  18797. const auto ERROR_SXS_MANIFEST_FORMAT_ERROR = 14004;
  18798. //
  18799. // MessageId: ERROR_SXS_MANIFEST_PARSE_ERROR
  18800. //
  18801. // MessageText:
  18802. //
  18803. // The manifest file contains one or more syntax errors.
  18804. //
  18805. const auto ERROR_SXS_MANIFEST_PARSE_ERROR = 14005;
  18806. //
  18807. // MessageId: ERROR_SXS_ACTIVATION_CONTEXT_DISABLED
  18808. //
  18809. // MessageText:
  18810. //
  18811. // The application attempted to activate a disabled activation context.
  18812. //
  18813. const auto ERROR_SXS_ACTIVATION_CONTEXT_DISABLED = 14006;
  18814. //
  18815. // MessageId: ERROR_SXS_KEY_NOT_FOUND
  18816. //
  18817. // MessageText:
  18818. //
  18819. // The requested lookup key was not found in any active activation context.
  18820. //
  18821. const auto ERROR_SXS_KEY_NOT_FOUND = 14007;
  18822. //
  18823. // MessageId: ERROR_SXS_VERSION_CONFLICT
  18824. //
  18825. // MessageText:
  18826. //
  18827. // A component version required by the application conflicts with another component version already active.
  18828. //
  18829. const auto ERROR_SXS_VERSION_CONFLICT = 14008;
  18830. //
  18831. // MessageId: ERROR_SXS_WRONG_SECTION_TYPE
  18832. //
  18833. // MessageText:
  18834. //
  18835. // The type requested activation context section does not match the query API used.
  18836. //
  18837. const auto ERROR_SXS_WRONG_SECTION_TYPE = 14009;
  18838. //
  18839. // MessageId: ERROR_SXS_THREAD_QUERIES_DISABLED
  18840. //
  18841. // MessageText:
  18842. //
  18843. // Lack of system resources has required isolated activation to be disabled for the current thread of execution.
  18844. //
  18845. const auto ERROR_SXS_THREAD_QUERIES_DISABLED = 14010;
  18846. //
  18847. // MessageId: ERROR_SXS_PROCESS_DEFAULT_ALREADY_SET
  18848. //
  18849. // MessageText:
  18850. //
  18851. // An attempt to set the process default activation context failed because the process default activation context was already set.
  18852. //
  18853. const auto ERROR_SXS_PROCESS_DEFAULT_ALREADY_SET = 14011;
  18854. //
  18855. // MessageId: ERROR_SXS_UNKNOWN_ENCODING_GROUP
  18856. //
  18857. // MessageText:
  18858. //
  18859. // The encoding group identifier specified is not recognized.
  18860. //
  18861. const auto ERROR_SXS_UNKNOWN_ENCODING_GROUP = 14012;
  18862. //
  18863. // MessageId: ERROR_SXS_UNKNOWN_ENCODING
  18864. //
  18865. // MessageText:
  18866. //
  18867. // The encoding requested is not recognized.
  18868. //
  18869. const auto ERROR_SXS_UNKNOWN_ENCODING = 14013;
  18870. //
  18871. // MessageId: ERROR_SXS_INVALID_XML_NAMESPACE_URI
  18872. //
  18873. // MessageText:
  18874. //
  18875. // The manifest contains a reference to an invalid URI.
  18876. //
  18877. const auto ERROR_SXS_INVALID_XML_NAMESPACE_URI = 14014;
  18878. //
  18879. // MessageId: ERROR_SXS_ROOT_MANIFEST_DEPENDENCY_NOT_INSTALLED
  18880. //
  18881. // MessageText:
  18882. //
  18883. // The application manifest contains a reference to a dependent assembly which is not installed
  18884. //
  18885. const auto ERROR_SXS_ROOT_MANIFEST_DEPENDENCY_NOT_INSTALLED = 14015;
  18886. //
  18887. // MessageId: ERROR_SXS_LEAF_MANIFEST_DEPENDENCY_NOT_INSTALLED
  18888. //
  18889. // MessageText:
  18890. //
  18891. // The manifest for an assembly used by the application has a reference to a dependent assembly which is not installed
  18892. //
  18893. const auto ERROR_SXS_LEAF_MANIFEST_DEPENDENCY_NOT_INSTALLED = 14016;
  18894. //
  18895. // MessageId: ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE
  18896. //
  18897. // MessageText:
  18898. //
  18899. // The manifest contains an attribute for the assembly identity which is not valid.
  18900. //
  18901. const auto ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE = 14017;
  18902. //
  18903. // MessageId: ERROR_SXS_MANIFEST_MISSING_REQUIRED_DEFAULT_NAMESPACE
  18904. //
  18905. // MessageText:
  18906. //
  18907. // The manifest is missing the required default namespace specification on the assembly element.
  18908. //
  18909. const auto ERROR_SXS_MANIFEST_MISSING_REQUIRED_DEFAULT_NAMESPACE = 14018;
  18910. //
  18911. // MessageId: ERROR_SXS_MANIFEST_INVALID_REQUIRED_DEFAULT_NAMESPACE
  18912. //
  18913. // MessageText:
  18914. //
  18915. // The manifest has a default namespace specified on the assembly element but its value is not "urn:schemas-microsoft-com:asm.v1".
  18916. //
  18917. const auto ERROR_SXS_MANIFEST_INVALID_REQUIRED_DEFAULT_NAMESPACE = 14019;
  18918. //
  18919. // MessageId: ERROR_SXS_PRIVATE_MANIFEST_CROSS_PATH_WITH_REPARSE_POINT
  18920. //
  18921. // MessageText:
  18922. //
  18923. // The private manifest probed has crossed reparse-point-associated path
  18924. //
  18925. const auto ERROR_SXS_PRIVATE_MANIFEST_CROSS_PATH_WITH_REPARSE_POINT = 14020;
  18926. //
  18927. // MessageId: ERROR_SXS_DUPLICATE_DLL_NAME
  18928. //
  18929. // MessageText:
  18930. //
  18931. // Two or more components referenced directly or indirectly by the application manifest have files by the same name.
  18932. //
  18933. const auto ERROR_SXS_DUPLICATE_DLL_NAME = 14021;
  18934. //
  18935. // MessageId: ERROR_SXS_DUPLICATE_WINDOWCLASS_NAME
  18936. //
  18937. // MessageText:
  18938. //
  18939. // Two or more components referenced directly or indirectly by the application manifest have window classes with the same name.
  18940. //
  18941. const auto ERROR_SXS_DUPLICATE_WINDOWCLASS_NAME = 14022;
  18942. //
  18943. // MessageId: ERROR_SXS_DUPLICATE_CLSID
  18944. //
  18945. // MessageText:
  18946. //
  18947. // Two or more components referenced directly or indirectly by the application manifest have the same COM server CLSIDs.
  18948. //
  18949. const auto ERROR_SXS_DUPLICATE_CLSID = 14023;
  18950. //
  18951. // MessageId: ERROR_SXS_DUPLICATE_IID
  18952. //
  18953. // MessageText:
  18954. //
  18955. // Two or more components referenced directly or indirectly by the application manifest have proxies for the same COM interface IIDs.
  18956. //
  18957. const auto ERROR_SXS_DUPLICATE_IID = 14024;
  18958. //
  18959. // MessageId: ERROR_SXS_DUPLICATE_TLBID
  18960. //
  18961. // MessageText:
  18962. //
  18963. // Two or more components referenced directly or indirectly by the application manifest have the same COM type library TLBIDs.
  18964. //
  18965. const auto ERROR_SXS_DUPLICATE_TLBID = 14025;
  18966. //
  18967. // MessageId: ERROR_SXS_DUPLICATE_PROGID
  18968. //
  18969. // MessageText:
  18970. //
  18971. // Two or more components referenced directly or indirectly by the application manifest have the same COM ProgIDs.
  18972. //
  18973. const auto ERROR_SXS_DUPLICATE_PROGID = 14026;
  18974. //
  18975. // MessageId: ERROR_SXS_DUPLICATE_ASSEMBLY_NAME
  18976. //
  18977. // MessageText:
  18978. //
  18979. // Two or more components referenced directly or indirectly by the application manifest are different versions of the same component which is not permitted.
  18980. //
  18981. const auto ERROR_SXS_DUPLICATE_ASSEMBLY_NAME = 14027;
  18982. //
  18983. // MessageId: ERROR_SXS_FILE_HASH_MISMATCH
  18984. //
  18985. // MessageText:
  18986. //
  18987. // A component's file does not match the verification information present in the component manifest.
  18988. //
  18989. const auto ERROR_SXS_FILE_HASH_MISMATCH = 14028;
  18990. //
  18991. // MessageId: ERROR_SXS_POLICY_PARSE_ERROR
  18992. //
  18993. // MessageText:
  18994. //
  18995. // The policy manifest contains one or more syntax errors.
  18996. //
  18997. const auto ERROR_SXS_POLICY_PARSE_ERROR = 14029;
  18998. //
  18999. // MessageId: ERROR_SXS_XML_E_MISSINGQUOTE
  19000. //
  19001. // MessageText:
  19002. //
  19003. // Manifest Parse Error : A string literal was expected, but no opening quote character was found.
  19004. //
  19005. const auto ERROR_SXS_XML_E_MISSINGQUOTE = 14030;
  19006. //
  19007. // MessageId: ERROR_SXS_XML_E_COMMENTSYNTAX
  19008. //
  19009. // MessageText:
  19010. //
  19011. // Manifest Parse Error : Incorrect syntax was used in a comment.
  19012. //
  19013. const auto ERROR_SXS_XML_E_COMMENTSYNTAX = 14031;
  19014. //
  19015. // MessageId: ERROR_SXS_XML_E_BADSTARTNAMECHAR
  19016. //
  19017. // MessageText:
  19018. //
  19019. // Manifest Parse Error : A name was started with an invalid character.
  19020. //
  19021. const auto ERROR_SXS_XML_E_BADSTARTNAMECHAR = 14032;
  19022. //
  19023. // MessageId: ERROR_SXS_XML_E_BADNAMECHAR
  19024. //
  19025. // MessageText:
  19026. //
  19027. // Manifest Parse Error : A name contained an invalid character.
  19028. //
  19029. const auto ERROR_SXS_XML_E_BADNAMECHAR = 14033;
  19030. //
  19031. // MessageId: ERROR_SXS_XML_E_BADCHARINSTRING
  19032. //
  19033. // MessageText:
  19034. //
  19035. // Manifest Parse Error : A string literal contained an invalid character.
  19036. //
  19037. const auto ERROR_SXS_XML_E_BADCHARINSTRING = 14034;
  19038. //
  19039. // MessageId: ERROR_SXS_XML_E_XMLDECLSYNTAX
  19040. //
  19041. // MessageText:
  19042. //
  19043. // Manifest Parse Error : Invalid syntax for an xml declaration.
  19044. //
  19045. const auto ERROR_SXS_XML_E_XMLDECLSYNTAX = 14035;
  19046. //
  19047. // MessageId: ERROR_SXS_XML_E_BADCHARDATA
  19048. //
  19049. // MessageText:
  19050. //
  19051. // Manifest Parse Error : An Invalid character was found in text content.
  19052. //
  19053. const auto ERROR_SXS_XML_E_BADCHARDATA = 14036;
  19054. //
  19055. // MessageId: ERROR_SXS_XML_E_MISSINGWHITESPACE
  19056. //
  19057. // MessageText:
  19058. //
  19059. // Manifest Parse Error : Required white space was missing.
  19060. //
  19061. const auto ERROR_SXS_XML_E_MISSINGWHITESPACE = 14037;
  19062. //
  19063. // MessageId: ERROR_SXS_XML_E_EXPECTINGTAGEND
  19064. //
  19065. // MessageText:
  19066. //
  19067. // Manifest Parse Error : The character '>' was expected.
  19068. //
  19069. const auto ERROR_SXS_XML_E_EXPECTINGTAGEND = 14038;
  19070. //
  19071. // MessageId: ERROR_SXS_XML_E_MISSINGSEMICOLON
  19072. //
  19073. // MessageText:
  19074. //
  19075. // Manifest Parse Error : A semi colon character was expected.
  19076. //
  19077. const auto ERROR_SXS_XML_E_MISSINGSEMICOLON = 14039;
  19078. //
  19079. // MessageId: ERROR_SXS_XML_E_UNBALANCEDPAREN
  19080. //
  19081. // MessageText:
  19082. //
  19083. // Manifest Parse Error : Unbalanced parentheses.
  19084. //
  19085. const auto ERROR_SXS_XML_E_UNBALANCEDPAREN = 14040;
  19086. //
  19087. // MessageId: ERROR_SXS_XML_E_INTERNALERROR
  19088. //
  19089. // MessageText:
  19090. //
  19091. // Manifest Parse Error : Internal error.
  19092. //
  19093. const auto ERROR_SXS_XML_E_INTERNALERROR = 14041;
  19094. //
  19095. // MessageId: ERROR_SXS_XML_E_UNEXPECTED_WHITESPACE
  19096. //
  19097. // MessageText:
  19098. //
  19099. // Manifest Parse Error : Whitespace is not allowed at this location.
  19100. //
  19101. const auto ERROR_SXS_XML_E_UNEXPECTED_WHITESPACE = 14042;
  19102. //
  19103. // MessageId: ERROR_SXS_XML_E_INCOMPLETE_ENCODING
  19104. //
  19105. // MessageText:
  19106. //
  19107. // Manifest Parse Error : End of file reached in invalid state for current encoding.
  19108. //
  19109. const auto ERROR_SXS_XML_E_INCOMPLETE_ENCODING = 14043;
  19110. //
  19111. // MessageId: ERROR_SXS_XML_E_MISSING_PAREN
  19112. //
  19113. // MessageText:
  19114. //
  19115. // Manifest Parse Error : Missing parenthesis.
  19116. //
  19117. const auto ERROR_SXS_XML_E_MISSING_PAREN = 14044;
  19118. //
  19119. // MessageId: ERROR_SXS_XML_E_EXPECTINGCLOSEQUOTE
  19120. //
  19121. // MessageText:
  19122. //
  19123. // Manifest Parse Error : A single or double closing quote character (\' or \") is missing.
  19124. //
  19125. const auto ERROR_SXS_XML_E_EXPECTINGCLOSEQUOTE = 14045;
  19126. //
  19127. // MessageId: ERROR_SXS_XML_E_MULTIPLE_COLONS
  19128. //
  19129. // MessageText:
  19130. //
  19131. // Manifest Parse Error : Multiple colons are not allowed in a name.
  19132. //
  19133. const auto ERROR_SXS_XML_E_MULTIPLE_COLONS = 14046;
  19134. //
  19135. // MessageId: ERROR_SXS_XML_E_INVALID_DECIMAL
  19136. //
  19137. // MessageText:
  19138. //
  19139. // Manifest Parse Error : Invalid character for decimal digit.
  19140. //
  19141. const auto ERROR_SXS_XML_E_INVALID_DECIMAL = 14047;
  19142. //
  19143. // MessageId: ERROR_SXS_XML_E_INVALID_HEXIDECIMAL
  19144. //
  19145. // MessageText:
  19146. //
  19147. // Manifest Parse Error : Invalid character for hexidecimal digit.
  19148. //
  19149. const auto ERROR_SXS_XML_E_INVALID_HEXIDECIMAL = 14048;
  19150. //
  19151. // MessageId: ERROR_SXS_XML_E_INVALID_UNICODE
  19152. //
  19153. // MessageText:
  19154. //
  19155. // Manifest Parse Error : Invalid unicode character value for this platform.
  19156. //
  19157. const auto ERROR_SXS_XML_E_INVALID_UNICODE = 14049;
  19158. //
  19159. // MessageId: ERROR_SXS_XML_E_WHITESPACEORQUESTIONMARK
  19160. //
  19161. // MessageText:
  19162. //
  19163. // Manifest Parse Error : Expecting whitespace or '?'.
  19164. //
  19165. const auto ERROR_SXS_XML_E_WHITESPACEORQUESTIONMARK = 14050;
  19166. //
  19167. // MessageId: ERROR_SXS_XML_E_UNEXPECTEDENDTAG
  19168. //
  19169. // MessageText:
  19170. //
  19171. // Manifest Parse Error : End tag was not expected at this location.
  19172. //
  19173. const auto ERROR_SXS_XML_E_UNEXPECTEDENDTAG = 14051;
  19174. //
  19175. // MessageId: ERROR_SXS_XML_E_UNCLOSEDTAG
  19176. //
  19177. // MessageText:
  19178. //
  19179. // Manifest Parse Error : The following tags were not closed: %1.
  19180. //
  19181. const auto ERROR_SXS_XML_E_UNCLOSEDTAG = 14052;
  19182. //
  19183. // MessageId: ERROR_SXS_XML_E_DUPLICATEATTRIBUTE
  19184. //
  19185. // MessageText:
  19186. //
  19187. // Manifest Parse Error : Duplicate attribute.
  19188. //
  19189. const auto ERROR_SXS_XML_E_DUPLICATEATTRIBUTE = 14053;
  19190. //
  19191. // MessageId: ERROR_SXS_XML_E_MULTIPLEROOTS
  19192. //
  19193. // MessageText:
  19194. //
  19195. // Manifest Parse Error : Only one top level element is allowed in an XML document.
  19196. //
  19197. const auto ERROR_SXS_XML_E_MULTIPLEROOTS = 14054;
  19198. //
  19199. // MessageId: ERROR_SXS_XML_E_INVALIDATROOTLEVEL
  19200. //
  19201. // MessageText:
  19202. //
  19203. // Manifest Parse Error : Invalid at the top level of the document.
  19204. //
  19205. const auto ERROR_SXS_XML_E_INVALIDATROOTLEVEL = 14055;
  19206. //
  19207. // MessageId: ERROR_SXS_XML_E_BADXMLDECL
  19208. //
  19209. // MessageText:
  19210. //
  19211. // Manifest Parse Error : Invalid xml declaration.
  19212. //
  19213. const auto ERROR_SXS_XML_E_BADXMLDECL = 14056;
  19214. //
  19215. // MessageId: ERROR_SXS_XML_E_MISSINGROOT
  19216. //
  19217. // MessageText:
  19218. //
  19219. // Manifest Parse Error : XML document must have a top level element.
  19220. //
  19221. const auto ERROR_SXS_XML_E_MISSINGROOT = 14057;
  19222. //
  19223. // MessageId: ERROR_SXS_XML_E_UNEXPECTEDEOF
  19224. //
  19225. // MessageText:
  19226. //
  19227. // Manifest Parse Error : Unexpected end of file.
  19228. //
  19229. const auto ERROR_SXS_XML_E_UNEXPECTEDEOF = 14058;
  19230. //
  19231. // MessageId: ERROR_SXS_XML_E_BADPEREFINSUBSET
  19232. //
  19233. // MessageText:
  19234. //
  19235. // Manifest Parse Error : Parameter entities cannot be used inside markup declarations in an internal subset.
  19236. //
  19237. const auto ERROR_SXS_XML_E_BADPEREFINSUBSET = 14059;
  19238. //
  19239. // MessageId: ERROR_SXS_XML_E_UNCLOSEDSTARTTAG
  19240. //
  19241. // MessageText:
  19242. //
  19243. // Manifest Parse Error : Element was not closed.
  19244. //
  19245. const auto ERROR_SXS_XML_E_UNCLOSEDSTARTTAG = 14060;
  19246. //
  19247. // MessageId: ERROR_SXS_XML_E_UNCLOSEDENDTAG
  19248. //
  19249. // MessageText:
  19250. //
  19251. // Manifest Parse Error : End element was missing the character '>'.
  19252. //
  19253. const auto ERROR_SXS_XML_E_UNCLOSEDENDTAG = 14061;
  19254. //
  19255. // MessageId: ERROR_SXS_XML_E_UNCLOSEDSTRING
  19256. //
  19257. // MessageText:
  19258. //
  19259. // Manifest Parse Error : A string literal was not closed.
  19260. //
  19261. const auto ERROR_SXS_XML_E_UNCLOSEDSTRING = 14062;
  19262. //
  19263. // MessageId: ERROR_SXS_XML_E_UNCLOSEDCOMMENT
  19264. //
  19265. // MessageText:
  19266. //
  19267. // Manifest Parse Error : A comment was not closed.
  19268. //
  19269. const auto ERROR_SXS_XML_E_UNCLOSEDCOMMENT = 14063;
  19270. //
  19271. // MessageId: ERROR_SXS_XML_E_UNCLOSEDDECL
  19272. //
  19273. // MessageText:
  19274. //
  19275. // Manifest Parse Error : A declaration was not closed.
  19276. //
  19277. const auto ERROR_SXS_XML_E_UNCLOSEDDECL = 14064;
  19278. //
  19279. // MessageId: ERROR_SXS_XML_E_UNCLOSEDCDATA
  19280. //
  19281. // MessageText:
  19282. //
  19283. // Manifest Parse Error : A CDATA section was not closed.
  19284. //
  19285. const auto ERROR_SXS_XML_E_UNCLOSEDCDATA = 14065;
  19286. //
  19287. // MessageId: ERROR_SXS_XML_E_RESERVEDNAMESPACE
  19288. //
  19289. // MessageText:
  19290. //
  19291. // Manifest Parse Error : The namespace prefix is not allowed to start with the reserved string "xml".
  19292. //
  19293. const auto ERROR_SXS_XML_E_RESERVEDNAMESPACE = 14066;
  19294. //
  19295. // MessageId: ERROR_SXS_XML_E_INVALIDENCODING
  19296. //
  19297. // MessageText:
  19298. //
  19299. // Manifest Parse Error : System does not support the specified encoding.
  19300. //
  19301. const auto ERROR_SXS_XML_E_INVALIDENCODING = 14067;
  19302. //
  19303. // MessageId: ERROR_SXS_XML_E_INVALIDSWITCH
  19304. //
  19305. // MessageText:
  19306. //
  19307. // Manifest Parse Error : Switch from current encoding to specified encoding not supported.
  19308. //
  19309. const auto ERROR_SXS_XML_E_INVALIDSWITCH = 14068;
  19310. //
  19311. // MessageId: ERROR_SXS_XML_E_BADXMLCASE
  19312. //
  19313. // MessageText:
  19314. //
  19315. // Manifest Parse Error : The name 'xml' is reserved and must be lower case.
  19316. //
  19317. const auto ERROR_SXS_XML_E_BADXMLCASE = 14069;
  19318. //
  19319. // MessageId: ERROR_SXS_XML_E_INVALID_STANDALONE
  19320. //
  19321. // MessageText:
  19322. //
  19323. // Manifest Parse Error : The standalone attribute must have the value 'yes' or 'no'.
  19324. //
  19325. const auto ERROR_SXS_XML_E_INVALID_STANDALONE = 14070;
  19326. //
  19327. // MessageId: ERROR_SXS_XML_E_UNEXPECTED_STANDALONE
  19328. //
  19329. // MessageText:
  19330. //
  19331. // Manifest Parse Error : The standalone attribute cannot be used in external entities.
  19332. //
  19333. const auto ERROR_SXS_XML_E_UNEXPECTED_STANDALONE = 14071;
  19334. //
  19335. // MessageId: ERROR_SXS_XML_E_INVALID_VERSION
  19336. //
  19337. // MessageText:
  19338. //
  19339. // Manifest Parse Error : Invalid version number.
  19340. //
  19341. const auto ERROR_SXS_XML_E_INVALID_VERSION = 14072;
  19342. //
  19343. // MessageId: ERROR_SXS_XML_E_MISSINGEQUALS
  19344. //
  19345. // MessageText:
  19346. //
  19347. // Manifest Parse Error : Missing equals sign between attribute and attribute value.
  19348. //
  19349. const auto ERROR_SXS_XML_E_MISSINGEQUALS = 14073;
  19350. //
  19351. // MessageId: ERROR_SXS_PROTECTION_RECOVERY_FAILED
  19352. //
  19353. // MessageText:
  19354. //
  19355. // Assembly Protection Error : Unable to recover the specified assembly.
  19356. //
  19357. const auto ERROR_SXS_PROTECTION_RECOVERY_FAILED = 14074;
  19358. //
  19359. // MessageId: ERROR_SXS_PROTECTION_PUBLIC_KEY_TOO_SHORT
  19360. //
  19361. // MessageText:
  19362. //
  19363. // Assembly Protection Error : The public key for an assembly was too short to be allowed.
  19364. //
  19365. const auto ERROR_SXS_PROTECTION_PUBLIC_KEY_TOO_SHORT = 14075;
  19366. //
  19367. // MessageId: ERROR_SXS_PROTECTION_CATALOG_NOT_VALID
  19368. //
  19369. // MessageText:
  19370. //
  19371. // Assembly Protection Error : The catalog for an assembly is not valid, or does not match the assembly's manifest.
  19372. //
  19373. const auto ERROR_SXS_PROTECTION_CATALOG_NOT_VALID = 14076;
  19374. //
  19375. // MessageId: ERROR_SXS_UNTRANSLATABLE_HRESULT
  19376. //
  19377. // MessageText:
  19378. //
  19379. // An HRESULT could not be translated to a corresponding Win32 error code.
  19380. //
  19381. const auto ERROR_SXS_UNTRANSLATABLE_HRESULT = 14077;
  19382. //
  19383. // MessageId: ERROR_SXS_PROTECTION_CATALOG_FILE_MISSING
  19384. //
  19385. // MessageText:
  19386. //
  19387. // Assembly Protection Error : The catalog for an assembly is missing.
  19388. //
  19389. const auto ERROR_SXS_PROTECTION_CATALOG_FILE_MISSING = 14078;
  19390. //
  19391. // MessageId: ERROR_SXS_MISSING_ASSEMBLY_IDENTITY_ATTRIBUTE
  19392. //
  19393. // MessageText:
  19394. //
  19395. // The supplied assembly identity is missing one or more attributes which must be present in this context.
  19396. //
  19397. const auto ERROR_SXS_MISSING_ASSEMBLY_IDENTITY_ATTRIBUTE = 14079;
  19398. //
  19399. // MessageId: ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE_NAME
  19400. //
  19401. // MessageText:
  19402. //
  19403. // The supplied assembly identity has one or more attribute names that contain characters not permitted in XML names.
  19404. //
  19405. const auto ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE_NAME = 14080;
  19406. //
  19407. // MessageId: ERROR_SXS_ASSEMBLY_MISSING
  19408. //
  19409. // MessageText:
  19410. //
  19411. // The referenced assembly could not be found.
  19412. //
  19413. const auto ERROR_SXS_ASSEMBLY_MISSING = 14081;
  19414. //
  19415. // MessageId: ERROR_SXS_CORRUPT_ACTIVATION_STACK
  19416. //
  19417. // MessageText:
  19418. //
  19419. // The activation context activation stack for the running thread of execution is corrupt.
  19420. //
  19421. const auto ERROR_SXS_CORRUPT_ACTIVATION_STACK = 14082;
  19422. //
  19423. // MessageId: ERROR_SXS_CORRUPTION
  19424. //
  19425. // MessageText:
  19426. //
  19427. // The application isolation metadata for this process or thread has become corrupt.
  19428. //
  19429. const auto ERROR_SXS_CORRUPTION = 14083;
  19430. //
  19431. // MessageId: ERROR_SXS_EARLY_DEACTIVATION
  19432. //
  19433. // MessageText:
  19434. //
  19435. // The activation context being deactivated is not the most recently activated one.
  19436. //
  19437. const auto ERROR_SXS_EARLY_DEACTIVATION = 14084;
  19438. //
  19439. // MessageId: ERROR_SXS_INVALID_DEACTIVATION
  19440. //
  19441. // MessageText:
  19442. //
  19443. // The activation context being deactivated is not active for the current thread of execution.
  19444. //
  19445. const auto ERROR_SXS_INVALID_DEACTIVATION = 14085;
  19446. //
  19447. // MessageId: ERROR_SXS_MULTIPLE_DEACTIVATION
  19448. //
  19449. // MessageText:
  19450. //
  19451. // The activation context being deactivated has already been deactivated.
  19452. //
  19453. const auto ERROR_SXS_MULTIPLE_DEACTIVATION = 14086;
  19454. //
  19455. // MessageId: ERROR_SXS_PROCESS_TERMINATION_REQUESTED
  19456. //
  19457. // MessageText:
  19458. //
  19459. // A component used by the isolation facility has requested to terminate the process.
  19460. //
  19461. const auto ERROR_SXS_PROCESS_TERMINATION_REQUESTED = 14087;
  19462. //
  19463. // MessageId: ERROR_SXS_RELEASE_ACTIVATION_CONTEXT
  19464. //
  19465. // MessageText:
  19466. //
  19467. // A kernel mode component is releasing a reference on an activation context.
  19468. //
  19469. const auto ERROR_SXS_RELEASE_ACTIVATION_CONTEXT = 14088;
  19470. //
  19471. // MessageId: ERROR_SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY
  19472. //
  19473. // MessageText:
  19474. //
  19475. // The activation context of system default assembly could not be generated.
  19476. //
  19477. const auto ERROR_SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY = 14089;
  19478. //
  19479. // MessageId: ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_VALUE
  19480. //
  19481. // MessageText:
  19482. //
  19483. // The value of an attribute in an identity is not within the legal range.
  19484. //
  19485. const auto ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_VALUE = 14090;
  19486. //
  19487. // MessageId: ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_NAME
  19488. //
  19489. // MessageText:
  19490. //
  19491. // The name of an attribute in an identity is not within the legal range.
  19492. //
  19493. const auto ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_NAME = 14091;
  19494. //
  19495. // MessageId: ERROR_SXS_IDENTITY_DUPLICATE_ATTRIBUTE
  19496. //
  19497. // MessageText:
  19498. //
  19499. // An identity contains two definitions for the same attribute.
  19500. //
  19501. const auto ERROR_SXS_IDENTITY_DUPLICATE_ATTRIBUTE = 14092;
  19502. //
  19503. // MessageId: ERROR_SXS_IDENTITY_PARSE_ERROR
  19504. //
  19505. // MessageText:
  19506. //
  19507. // The identity string is malformed. This may be due to a trailing comma, more than two unnamed attributes, missing attribute name or missing attribute value.
  19508. //
  19509. const auto ERROR_SXS_IDENTITY_PARSE_ERROR = 14093;
  19510. //
  19511. // MessageId: ERROR_MALFORMED_SUBSTITUTION_STRING
  19512. //
  19513. // MessageText:
  19514. //
  19515. // A string containing localized substitutable content was malformed. Either a dollar sign ($) was follwed by something other than a left parenthesis or another dollar sign or an substitution's right parenthesis was not found.
  19516. //
  19517. const auto ERROR_MALFORMED_SUBSTITUTION_STRING = 14094;
  19518. //
  19519. // MessageId: ERROR_SXS_INCORRECT_PUBLIC_KEY_TOKEN
  19520. //
  19521. // MessageText:
  19522. //
  19523. // The public key token does not correspond to the public key specified.
  19524. //
  19525. const auto ERROR_SXS_INCORRECT_PUBLIC_KEY_TOKEN = 14095;
  19526. //
  19527. // MessageId: ERROR_UNMAPPED_SUBSTITUTION_STRING
  19528. //
  19529. // MessageText:
  19530. //
  19531. // A substitution string had no mapping.
  19532. //
  19533. const auto ERROR_UNMAPPED_SUBSTITUTION_STRING = 14096;
  19534. //
  19535. // MessageId: ERROR_SXS_ASSEMBLY_NOT_LOCKED
  19536. //
  19537. // MessageText:
  19538. //
  19539. // The component must be locked before making the request.
  19540. //
  19541. const auto ERROR_SXS_ASSEMBLY_NOT_LOCKED = 14097;
  19542. //
  19543. // MessageId: ERROR_SXS_COMPONENT_STORE_CORRUPT
  19544. //
  19545. // MessageText:
  19546. //
  19547. // The component store has been corrupted.
  19548. //
  19549. const auto ERROR_SXS_COMPONENT_STORE_CORRUPT = 14098;
  19550. //
  19551. // MessageId: ERROR_ADVANCED_INSTALLER_FAILED
  19552. //
  19553. // MessageText:
  19554. //
  19555. // An advanced installer failed during setup or servicing.
  19556. //
  19557. const auto ERROR_ADVANCED_INSTALLER_FAILED = 14099;
  19558. //
  19559. // MessageId: ERROR_XML_ENCODING_MISMATCH
  19560. //
  19561. // MessageText:
  19562. //
  19563. // The character encoding in the XML declaration did not match the encoding used in the document.
  19564. //
  19565. const auto ERROR_XML_ENCODING_MISMATCH = 14100;
  19566. //
  19567. // MessageId: ERROR_SXS_MANIFEST_IDENTITY_SAME_BUT_CONTENTS_DIFFERENT
  19568. //
  19569. // MessageText:
  19570. //
  19571. // The identities of the manifests are identical but their contents are different.
  19572. //
  19573. const auto ERROR_SXS_MANIFEST_IDENTITY_SAME_BUT_CONTENTS_DIFFERENT = 14101;
  19574. //
  19575. // MessageId: ERROR_SXS_IDENTITIES_DIFFERENT
  19576. //
  19577. // MessageText:
  19578. //
  19579. // The component identities are different.
  19580. //
  19581. const auto ERROR_SXS_IDENTITIES_DIFFERENT = 14102;
  19582. //
  19583. // MessageId: ERROR_SXS_ASSEMBLY_IS_NOT_A_DEPLOYMENT
  19584. //
  19585. // MessageText:
  19586. //
  19587. // The assembly is not a deployment.
  19588. //
  19589. const auto ERROR_SXS_ASSEMBLY_IS_NOT_A_DEPLOYMENT = 14103;
  19590. //
  19591. // MessageId: ERROR_SXS_FILE_NOT_PART_OF_ASSEMBLY
  19592. //
  19593. // MessageText:
  19594. //
  19595. // The file is not a part of the assembly.
  19596. //
  19597. const auto ERROR_SXS_FILE_NOT_PART_OF_ASSEMBLY = 14104;
  19598. //
  19599. // MessageId: ERROR_SXS_MANIFEST_TOO_BIG
  19600. //
  19601. // MessageText:
  19602. //
  19603. // The size of the manifest exceeds the maximum allowed.
  19604. //
  19605. const auto ERROR_SXS_MANIFEST_TOO_BIG = 14105;
  19606. //
  19607. // MessageId: ERROR_SXS_SETTING_NOT_REGISTERED
  19608. //
  19609. // MessageText:
  19610. //
  19611. // The setting is not registered.
  19612. //
  19613. const auto ERROR_SXS_SETTING_NOT_REGISTERED = 14106;
  19614. //
  19615. // MessageId: ERROR_SXS_TRANSACTION_CLOSURE_INCOMPLETE
  19616. //
  19617. // MessageText:
  19618. //
  19619. // One or more required members of the transaction are not present.
  19620. //
  19621. const auto ERROR_SXS_TRANSACTION_CLOSURE_INCOMPLETE = 14107;
  19622. //
  19623. // MessageId: ERROR_SMI_PRIMITIVE_INSTALLER_FAILED
  19624. //
  19625. // MessageText:
  19626. //
  19627. // The SMI primitive installer failed during setup or servicing.
  19628. //
  19629. const auto ERROR_SMI_PRIMITIVE_INSTALLER_FAILED = 14108;
  19630. //
  19631. // MessageId: ERROR_GENERIC_COMMAND_FAILED
  19632. //
  19633. // MessageText:
  19634. //
  19635. // A generic command executable returned a result that indicates failure.
  19636. //
  19637. const auto ERROR_GENERIC_COMMAND_FAILED = 14109;
  19638. //
  19639. // MessageId: ERROR_SXS_FILE_HASH_MISSING
  19640. //
  19641. // MessageText:
  19642. //
  19643. // A component is missing file verification information in its manifest.
  19644. //
  19645. const auto ERROR_SXS_FILE_HASH_MISSING = 14110;
  19646. ///////////////////////////////////////////////////
  19647. // //
  19648. // End of Side By Side Error Codes //
  19649. // //
  19650. // 14000 to 14999 //
  19651. ///////////////////////////////////////////////////
  19652. ///////////////////////////////////////////////////
  19653. // //
  19654. // Start of WinEvt Error codes //
  19655. // //
  19656. // 15000 to 15079 //
  19657. ///////////////////////////////////////////////////
  19658. //
  19659. // MessageId: ERROR_EVT_INVALID_CHANNEL_PATH
  19660. //
  19661. // MessageText:
  19662. //
  19663. // The specified channel path is invalid.
  19664. //
  19665. const auto ERROR_EVT_INVALID_CHANNEL_PATH = 15000;
  19666. //
  19667. // MessageId: ERROR_EVT_INVALID_QUERY
  19668. //
  19669. // MessageText:
  19670. //
  19671. // The specified query is invalid.
  19672. //
  19673. const auto ERROR_EVT_INVALID_QUERY = 15001;
  19674. //
  19675. // MessageId: ERROR_EVT_PUBLISHER_METADATA_NOT_FOUND
  19676. //
  19677. // MessageText:
  19678. //
  19679. // The publisher metadata cannot be found in the resource.
  19680. //
  19681. const auto ERROR_EVT_PUBLISHER_METADATA_NOT_FOUND = 15002;
  19682. //
  19683. // MessageId: ERROR_EVT_EVENT_TEMPLATE_NOT_FOUND
  19684. //
  19685. // MessageText:
  19686. //
  19687. // The template for an event definition cannot be found in the resource (error = %1).
  19688. //
  19689. const auto ERROR_EVT_EVENT_TEMPLATE_NOT_FOUND = 15003;
  19690. //
  19691. // MessageId: ERROR_EVT_INVALID_PUBLISHER_NAME
  19692. //
  19693. // MessageText:
  19694. //
  19695. // The specified publisher name is invalid.
  19696. //
  19697. const auto ERROR_EVT_INVALID_PUBLISHER_NAME = 15004;
  19698. //
  19699. // MessageId: ERROR_EVT_INVALID_EVENT_DATA
  19700. //
  19701. // MessageText:
  19702. //
  19703. // The event data raised by the publisher is not compatible with the event template definition in the publisher's manifest
  19704. //
  19705. const auto ERROR_EVT_INVALID_EVENT_DATA = 15005;
  19706. //
  19707. // MessageId: ERROR_EVT_CHANNEL_NOT_FOUND
  19708. //
  19709. // MessageText:
  19710. //
  19711. // The specified channel could not be found. Check channel configuration.
  19712. //
  19713. const auto ERROR_EVT_CHANNEL_NOT_FOUND = 15007;
  19714. //
  19715. // MessageId: ERROR_EVT_MALFORMED_XML_TEXT
  19716. //
  19717. // MessageText:
  19718. //
  19719. // The specified xml text was not well-formed. See Extended Error for more details.
  19720. //
  19721. const auto ERROR_EVT_MALFORMED_XML_TEXT = 15008;
  19722. //
  19723. // MessageId: ERROR_EVT_SUBSCRIPTION_TO_DIRECT_CHANNEL
  19724. //
  19725. // MessageText:
  19726. //
  19727. // The caller is trying to subscribe to a direct channel which is not allowed. The events for a direct channel go directly to a logfile and cannot be subscribed to.
  19728. //
  19729. const auto ERROR_EVT_SUBSCRIPTION_TO_DIRECT_CHANNEL = 15009;
  19730. //
  19731. // MessageId: ERROR_EVT_CONFIGURATION_ERROR
  19732. //
  19733. // MessageText:
  19734. //
  19735. // Configuration error.
  19736. //
  19737. const auto ERROR_EVT_CONFIGURATION_ERROR = 15010;
  19738. //
  19739. // MessageId: ERROR_EVT_QUERY_RESULT_STALE
  19740. //
  19741. // MessageText:
  19742. //
  19743. // The query result is stale / invalid. This may be due to the log being cleared or rolling over after the query result was created. Users should handle this code by releasing the query result object and reissuing the query.
  19744. //
  19745. const auto ERROR_EVT_QUERY_RESULT_STALE = 15011;
  19746. //
  19747. // MessageId: ERROR_EVT_QUERY_RESULT_INVALID_POSITION
  19748. //
  19749. // MessageText:
  19750. //
  19751. // Query result is currently at an invalid position.
  19752. //
  19753. const auto ERROR_EVT_QUERY_RESULT_INVALID_POSITION = 15012;
  19754. //
  19755. // MessageId: ERROR_EVT_NON_VALIDATING_MSXML
  19756. //
  19757. // MessageText:
  19758. //
  19759. // Registered MSXML doesn't support validation.
  19760. //
  19761. const auto ERROR_EVT_NON_VALIDATING_MSXML = 15013;
  19762. //
  19763. // MessageId: ERROR_EVT_FILTER_ALREADYSCOPED
  19764. //
  19765. // MessageText:
  19766. //
  19767. // An expression can only be followed by a change of scope operation if it itself evaluates to a node set and is not already part of some other change of scope operation.
  19768. //
  19769. const auto ERROR_EVT_FILTER_ALREADYSCOPED = 15014;
  19770. //
  19771. // MessageId: ERROR_EVT_FILTER_NOTELTSET
  19772. //
  19773. // MessageText:
  19774. //
  19775. // Can't perform a step operation from a term that does not represent an element set.
  19776. //
  19777. const auto ERROR_EVT_FILTER_NOTELTSET = 15015;
  19778. //
  19779. // MessageId: ERROR_EVT_FILTER_INVARG
  19780. //
  19781. // MessageText:
  19782. //
  19783. // Left hand side arguments to binary operators must be either attributes, nodes or variables and right hand side arguments must be constants.
  19784. //
  19785. const auto ERROR_EVT_FILTER_INVARG = 15016;
  19786. //
  19787. // MessageId: ERROR_EVT_FILTER_INVTEST
  19788. //
  19789. // MessageText:
  19790. //
  19791. // A step operation must involve either a node test or, in the case of a predicate, an algebraic expression against which to test each node in the node set identified by the preceeding node set can be evaluated.
  19792. //
  19793. const auto ERROR_EVT_FILTER_INVTEST = 15017;
  19794. //
  19795. // MessageId: ERROR_EVT_FILTER_INVTYPE
  19796. //
  19797. // MessageText:
  19798. //
  19799. // This data type is currently unsupported.
  19800. //
  19801. const auto ERROR_EVT_FILTER_INVTYPE = 15018;
  19802. //
  19803. // MessageId: ERROR_EVT_FILTER_PARSEERR
  19804. //
  19805. // MessageText:
  19806. //
  19807. // A syntax error occurred at position %1!d!
  19808. //
  19809. const auto ERROR_EVT_FILTER_PARSEERR = 15019;
  19810. //
  19811. // MessageId: ERROR_EVT_FILTER_UNSUPPORTEDOP
  19812. //
  19813. // MessageText:
  19814. //
  19815. // This operator is unsupported by this implementation of the filter.
  19816. //
  19817. const auto ERROR_EVT_FILTER_UNSUPPORTEDOP = 15020;
  19818. //
  19819. // MessageId: ERROR_EVT_FILTER_UNEXPECTEDTOKEN
  19820. //
  19821. // MessageText:
  19822. //
  19823. // The token encountered was unexpected.
  19824. //
  19825. const auto ERROR_EVT_FILTER_UNEXPECTEDTOKEN = 15021;
  19826. //
  19827. // MessageId: ERROR_EVT_INVALID_OPERATION_OVER_ENABLED_DIRECT_CHANNEL
  19828. //
  19829. // MessageText:
  19830. //
  19831. // The requested operation cannot be performed over an enabled direct channel. The channel must first be disabled before performing the requested operation.
  19832. //
  19833. const auto ERROR_EVT_INVALID_OPERATION_OVER_ENABLED_DIRECT_CHANNEL = 15022;
  19834. //
  19835. // MessageId: ERROR_EVT_INVALID_CHANNEL_PROPERTY_VALUE
  19836. //
  19837. // MessageText:
  19838. //
  19839. // Channel property %1!s! contains invalid value. The value has invalid type, is outside of valid range, can't be updated or is not supported by this type of channel.
  19840. //
  19841. const auto ERROR_EVT_INVALID_CHANNEL_PROPERTY_VALUE = 15023;
  19842. //
  19843. // MessageId: ERROR_EVT_INVALID_PUBLISHER_PROPERTY_VALUE
  19844. //
  19845. // MessageText:
  19846. //
  19847. // Publisher property %1!s! contains invalid value. The value has invalid type, is outside of valid range, can't be updated or is not supported by this type of publisher.
  19848. //
  19849. const auto ERROR_EVT_INVALID_PUBLISHER_PROPERTY_VALUE = 15024;
  19850. //
  19851. // MessageId: ERROR_EVT_CHANNEL_CANNOT_ACTIVATE
  19852. //
  19853. // MessageText:
  19854. //
  19855. // The channel fails to activate.
  19856. //
  19857. const auto ERROR_EVT_CHANNEL_CANNOT_ACTIVATE = 15025;
  19858. //
  19859. // MessageId: ERROR_EVT_FILTER_TOO_COMPLEX
  19860. //
  19861. // MessageText:
  19862. //
  19863. // The xpath expression exceeded supported complexity. Please symplify it or split it into two or more simple expressions.
  19864. //
  19865. const auto ERROR_EVT_FILTER_TOO_COMPLEX = 15026;
  19866. //
  19867. // MessageId: ERROR_EVT_MESSAGE_NOT_FOUND
  19868. //
  19869. // MessageText:
  19870. //
  19871. // the message resource is present but the message is not found in the string/message table
  19872. //
  19873. const auto ERROR_EVT_MESSAGE_NOT_FOUND = 15027;
  19874. //
  19875. // MessageId: ERROR_EVT_MESSAGE_ID_NOT_FOUND
  19876. //
  19877. // MessageText:
  19878. //
  19879. // The message id for the desired message could not be found.
  19880. //
  19881. const auto ERROR_EVT_MESSAGE_ID_NOT_FOUND = 15028;
  19882. //
  19883. // MessageId: ERROR_EVT_UNRESOLVED_VALUE_INSERT
  19884. //
  19885. // MessageText:
  19886. //
  19887. // The substitution string for insert index (%1) could not be found.
  19888. //
  19889. const auto ERROR_EVT_UNRESOLVED_VALUE_INSERT = 15029;
  19890. //
  19891. // MessageId: ERROR_EVT_UNRESOLVED_PARAMETER_INSERT
  19892. //
  19893. // MessageText:
  19894. //
  19895. // The description string for parameter reference (%1) could not be found.
  19896. //
  19897. const auto ERROR_EVT_UNRESOLVED_PARAMETER_INSERT = 15030;
  19898. //
  19899. // MessageId: ERROR_EVT_MAX_INSERTS_REACHED
  19900. //
  19901. // MessageText:
  19902. //
  19903. // The maximum number of replacements has been reached.
  19904. //
  19905. const auto ERROR_EVT_MAX_INSERTS_REACHED = 15031;
  19906. //
  19907. // MessageId: ERROR_EVT_EVENT_DEFINITION_NOT_FOUND
  19908. //
  19909. // MessageText:
  19910. //
  19911. // The event definition could not be found for event id (%1).
  19912. //
  19913. const auto ERROR_EVT_EVENT_DEFINITION_NOT_FOUND = 15032;
  19914. //
  19915. // MessageId: ERROR_EVT_MESSAGE_LOCALE_NOT_FOUND
  19916. //
  19917. // MessageText:
  19918. //
  19919. // The locale specific resource for the desired message is not present.
  19920. //
  19921. const auto ERROR_EVT_MESSAGE_LOCALE_NOT_FOUND = 15033;
  19922. //
  19923. // MessageId: ERROR_EVT_VERSION_TOO_OLD
  19924. //
  19925. // MessageText:
  19926. //
  19927. // The resource is too old to be compatible.
  19928. //
  19929. const auto ERROR_EVT_VERSION_TOO_OLD = 15034;
  19930. //
  19931. // MessageId: ERROR_EVT_VERSION_TOO_NEW
  19932. //
  19933. // MessageText:
  19934. //
  19935. // The resource is too new to be compatible.
  19936. //
  19937. const auto ERROR_EVT_VERSION_TOO_NEW = 15035;
  19938. //
  19939. // MessageId: ERROR_EVT_CANNOT_OPEN_CHANNEL_OF_QUERY
  19940. //
  19941. // MessageText:
  19942. //
  19943. // The channel at index %1!d! of the query can't be opened.
  19944. //
  19945. const auto ERROR_EVT_CANNOT_OPEN_CHANNEL_OF_QUERY = 15036;
  19946. //
  19947. // MessageId: ERROR_EVT_PUBLISHER_DISABLED
  19948. //
  19949. // MessageText:
  19950. //
  19951. // The publisher has been disabled and its resource is not avaiable. This
  19952. // usually occurs when the publisher is in the process of being uninstalled
  19953. // or upgraded.
  19954. //
  19955. const auto ERROR_EVT_PUBLISHER_DISABLED = 15037;
  19956. //
  19957. // MessageId: ERROR_EVT_FILTER_OUT_OF_RANGE
  19958. //
  19959. // MessageText:
  19960. //
  19961. // Attempted to create a numeric type that is outside of its valid range.
  19962. //
  19963. const auto ERROR_EVT_FILTER_OUT_OF_RANGE = 15038;
  19964. ///////////////////////////////////////////////////
  19965. // //
  19966. // Start of Wecsvc Error codes //
  19967. // //
  19968. // 15080 to 15099 //
  19969. ///////////////////////////////////////////////////
  19970. //
  19971. // MessageId: ERROR_EC_SUBSCRIPTION_CANNOT_ACTIVATE
  19972. //
  19973. // MessageText:
  19974. //
  19975. // The subscription fails to activate.
  19976. //
  19977. const auto ERROR_EC_SUBSCRIPTION_CANNOT_ACTIVATE = 15080;
  19978. //
  19979. // MessageId: ERROR_EC_LOG_DISABLED
  19980. //
  19981. // MessageText:
  19982. //
  19983. // The log of the subscription is in disabled state, and can not be used to forward events to. The log must first be enabled before the subscription can be activated.
  19984. //
  19985. const auto ERROR_EC_LOG_DISABLED = 15081;
  19986. //
  19987. // MessageId: ERROR_EC_CIRCULAR_FORWARDING
  19988. //
  19989. // MessageText:
  19990. //
  19991. // When forwarding events from local machine to itself, the query of the subscription can't contain target log of the subscription.
  19992. //
  19993. const auto ERROR_EC_CIRCULAR_FORWARDING = 15082;
  19994. //
  19995. // MessageId: ERROR_EC_CREDSTORE_FULL
  19996. //
  19997. // MessageText:
  19998. //
  19999. // The credential store that is used to save credentials is full.
  20000. //
  20001. const auto ERROR_EC_CREDSTORE_FULL = 15083;
  20002. //
  20003. // MessageId: ERROR_EC_CRED_NOT_FOUND
  20004. //
  20005. // MessageText:
  20006. //
  20007. // The credential used by this subscription can't be found in credential store.
  20008. //
  20009. const auto ERROR_EC_CRED_NOT_FOUND = 15084;
  20010. //
  20011. // MessageId: ERROR_EC_NO_ACTIVE_CHANNEL
  20012. //
  20013. // MessageText:
  20014. //
  20015. // No active channel is found for the query.
  20016. //
  20017. const auto ERROR_EC_NO_ACTIVE_CHANNEL = 15085;
  20018. ///////////////////////////////////////////////////
  20019. // //
  20020. // Start of MUI Error codes //
  20021. // //
  20022. // 15100 to 15199 //
  20023. ///////////////////////////////////////////////////
  20024. //
  20025. // MessageId: ERROR_MUI_FILE_NOT_FOUND
  20026. //
  20027. // MessageText:
  20028. //
  20029. // The resource loader failed to find MUI file.
  20030. //
  20031. const auto ERROR_MUI_FILE_NOT_FOUND = 15100;
  20032. //
  20033. // MessageId: ERROR_MUI_INVALID_FILE
  20034. //
  20035. // MessageText:
  20036. //
  20037. // The resource loader failed to load MUI file because the file fail to pass validation.
  20038. //
  20039. const auto ERROR_MUI_INVALID_FILE = 15101;
  20040. //
  20041. // MessageId: ERROR_MUI_INVALID_RC_CONFIG
  20042. //
  20043. // MessageText:
  20044. //
  20045. // The RC Manifest is corrupted with garbage data or unsupported version or missing required item.
  20046. //
  20047. const auto ERROR_MUI_INVALID_RC_CONFIG = 15102;
  20048. //
  20049. // MessageId: ERROR_MUI_INVALID_LOCALE_NAME
  20050. //
  20051. // MessageText:
  20052. //
  20053. // The RC Manifest has invalid culture name.
  20054. //
  20055. const auto ERROR_MUI_INVALID_LOCALE_NAME = 15103;
  20056. //
  20057. // MessageId: ERROR_MUI_INVALID_ULTIMATEFALLBACK_NAME
  20058. //
  20059. // MessageText:
  20060. //
  20061. // The RC Manifest has invalid ultimatefallback name.
  20062. //
  20063. const auto ERROR_MUI_INVALID_ULTIMATEFALLBACK_NAME = 15104;
  20064. //
  20065. // MessageId: ERROR_MUI_FILE_NOT_LOADED
  20066. //
  20067. // MessageText:
  20068. //
  20069. // The resource loader cache doesn't have loaded MUI entry.
  20070. //
  20071. const auto ERROR_MUI_FILE_NOT_LOADED = 15105;
  20072. //
  20073. // MessageId: ERROR_RESOURCE_ENUM_USER_STOP
  20074. //
  20075. // MessageText:
  20076. //
  20077. // User stopped resource enumeration.
  20078. //
  20079. const auto ERROR_RESOURCE_ENUM_USER_STOP = 15106;
  20080. //
  20081. // MessageId: ERROR_MUI_INTLSETTINGS_UILANG_NOT_INSTALLED
  20082. //
  20083. // MessageText:
  20084. //
  20085. // UI language installation failed.
  20086. //
  20087. const auto ERROR_MUI_INTLSETTINGS_UILANG_NOT_INSTALLED = 15107;
  20088. //
  20089. // MessageId: ERROR_MUI_INTLSETTINGS_INVALID_LOCALE_NAME
  20090. //
  20091. // MessageText:
  20092. //
  20093. // Locale installation failed.
  20094. //
  20095. const auto ERROR_MUI_INTLSETTINGS_INVALID_LOCALE_NAME = 15108;
  20096. ///////////////////////////////////////////////////
  20097. // //
  20098. // Start of Monitor Configuration API error codes//
  20099. // //
  20100. // 15200 to 15249 //
  20101. ///////////////////////////////////////////////////
  20102. //
  20103. // MessageId: ERROR_MCA_INVALID_CAPABILITIES_STRING
  20104. //
  20105. // MessageText:
  20106. //
  20107. // The monitor returned a DDC/CI capabilities string that did not comply with the ACCESS.bus 3.0, DDC/CI 1.1 or MCCS 2 Revision 1 specification.
  20108. //
  20109. const auto ERROR_MCA_INVALID_CAPABILITIES_STRING = 15200;
  20110. //
  20111. // MessageId: ERROR_MCA_INVALID_VCP_VERSION
  20112. //
  20113. // MessageText:
  20114. //
  20115. // The monitor's VCP Version 0xDF) VCP code returned an invalid version value.
  20116. //
  20117. const auto ERROR_MCA_INVALID_VCP_VERSION = 15201;
  20118. //
  20119. // MessageId: ERROR_MCA_MONITOR_VIOLATES_MCCS_SPECIFICATION
  20120. //
  20121. // MessageText:
  20122. //
  20123. // The monitor does not comply with the MCCS specification it claims to support.
  20124. //
  20125. const auto ERROR_MCA_MONITOR_VIOLATES_MCCS_SPECIFICATION = 15202;
  20126. //
  20127. // MessageId: ERROR_MCA_MCCS_VERSION_MISMATCH
  20128. //
  20129. // MessageText:
  20130. //
  20131. // The MCCS version in a monitor's mccs_ver capability does not match the MCCS version the monitor reports when the VCP Version 0xDF) VCP code is used.
  20132. //
  20133. const auto ERROR_MCA_MCCS_VERSION_MISMATCH = 15203;
  20134. //
  20135. // MessageId: ERROR_MCA_UNSUPPORTED_MCCS_VERSION
  20136. //
  20137. // MessageText:
  20138. //
  20139. // The Monitor Configuration API only works with monitors that support the MCCS 1.0 specification, MCCS 2.0 specification or the MCCS 2.0 Revision 1 specification.
  20140. //
  20141. const auto ERROR_MCA_UNSUPPORTED_MCCS_VERSION = 15204;
  20142. //
  20143. // MessageId: ERROR_MCA_INTERNAL_ERROR
  20144. //
  20145. // MessageText:
  20146. //
  20147. // An internal Monitor Configuration API error occurred.
  20148. //
  20149. const auto ERROR_MCA_INTERNAL_ERROR = 15205;
  20150. //
  20151. // MessageId: ERROR_MCA_INVALID_TECHNOLOGY_TYPE_RETURNED
  20152. //
  20153. // MessageText:
  20154. //
  20155. // The monitor returned an invalid monitor technology type. CRT, Plasma and LCD (TFT) are examples of monitor technology types. This error implies that the monitor violated the MCCS 2.0 or MCCS 2.0 Revision 1 specification.
  20156. //
  20157. const auto ERROR_MCA_INVALID_TECHNOLOGY_TYPE_RETURNED = 15206;
  20158. //
  20159. // MessageId: ERROR_MCA_UNSUPPORTED_COLOR_TEMPERATURE
  20160. //
  20161. // MessageText:
  20162. //
  20163. // The caller of SetMonitorColorTemperature specified a color temperature that the current monitor did not support. This error implies that the monitor violated the MCCS 2.0 or MCCS 2.0 Revision 1 specification.
  20164. //
  20165. const auto ERROR_MCA_UNSUPPORTED_COLOR_TEMPERATURE = 15207;
  20166. //////////////////////////////////////////////////
  20167. // //
  20168. // End of Monitor Configuration API error codes //
  20169. // //
  20170. // 15200 to 15249 //
  20171. // //
  20172. //////////////////////////////////////////////////
  20173. //////////////////////////////////////////////////
  20174. // //
  20175. // Start of Syspart error codes //
  20176. // 15250 - 15299 //
  20177. // //
  20178. //////////////////////////////////////////////////
  20179. //
  20180. // MessageId: ERROR_AMBIGUOUS_SYSTEM_DEVICE
  20181. //
  20182. // MessageText:
  20183. //
  20184. // The requested system device cannot be identified due to multiple indistinguishable devices potentially matching the identification criteria.
  20185. //
  20186. const auto ERROR_AMBIGUOUS_SYSTEM_DEVICE = 15250;
  20187. //
  20188. // MessageId: ERROR_SYSTEM_DEVICE_NOT_FOUND
  20189. //
  20190. // MessageText:
  20191. //
  20192. // The requested system device cannot be found.
  20193. //
  20194. const auto ERROR_SYSTEM_DEVICE_NOT_FOUND = 15299;
  20195. ////////////////////////////////////
  20196. // //
  20197. // COM Error Codes //
  20198. // //
  20199. ////////////////////////////////////
  20200. //
  20201. // The return value of COM functions and methods is an HRESULT.
  20202. // This is not a handle to anything, but is merely a 32-bit value
  20203. // with several fields encoded in the value. The parts of an
  20204. // HRESULT are shown below.
  20205. //
  20206. // Many of the macros and functions below were orginally defined to
  20207. // operate on SCODEs. SCODEs are no longer used. The macros are
  20208. // still present for compatibility and easy porting of Win16 code.
  20209. // Newly written code should use the HRESULT macros and functions.
  20210. //
  20211. //
  20212. // HRESULTs are 32 bit values layed out as follows:
  20213. //
  20214. // 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
  20215. // 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
  20216. // +-+-+-+-+-+---------------------+-------------------------------+
  20217. // |S|R|C|N|r| Facility | Code |
  20218. // +-+-+-+-+-+---------------------+-------------------------------+
  20219. //
  20220. // where
  20221. //
  20222. // S - Severity - indicates success/fail
  20223. //
  20224. // 0 - Success
  20225. // 1 - Fail (COERROR)
  20226. //
  20227. // R - reserved portion of the facility code, corresponds to NT's
  20228. // second severity bit.
  20229. //
  20230. // C - reserved portion of the facility code, corresponds to NT's
  20231. // C field.
  20232. //
  20233. // N - reserved portion of the facility code. Used to indicate a
  20234. // mapped NT status value.
  20235. //
  20236. // r - reserved portion of the facility code. Reserved for internal
  20237. // use. Used to indicate HRESULT values that are not status
  20238. // values, but are instead message ids for display strings.
  20239. //
  20240. // Facility - is the facility code
  20241. //
  20242. // Code - is the facility's status code
  20243. //
  20244. //
  20245. // Severity values
  20246. //
  20247. const auto SEVERITY_SUCCESS = 0;
  20248. const auto SEVERITY_ERROR = 1;
  20249. //
  20250. // Generic test for success on any status value (non-negative numbers
  20251. // indicate success).
  20252. //
  20253. //
  20254. // and the inverse
  20255. //
  20256. //
  20257. // Generic test for error on any status value.
  20258. //
  20259. //
  20260. // Return the code
  20261. //
  20262. //
  20263. // Return the facility
  20264. //
  20265. //
  20266. // Return the severity
  20267. //
  20268. //
  20269. // Create an HRESULT value from component pieces
  20270. //
  20271. //
  20272. // Map a WIN32 error value into a HRESULT
  20273. // Note: This assumes that WIN32 errors fall in the range -32k to 32k.
  20274. //
  20275. // Define bits here so macros are guaranteed to work
  20276. const auto FACILITY_NT_BIT = 0x10000000;
  20277. //
  20278. // HRESULT_FROM_WIN32(x) used to be a macro, however we now run it as an inline function
  20279. // to prevent double evaluation of 'x'. If you still need the macro, you can use __HRESULT_FROM_WIN32(x)
  20280. //
  20281. //
  20282. // Map an NT status value into a HRESULT
  20283. //
  20284. // ****** OBSOLETE functions
  20285. // HRESULT functions
  20286. // As noted above, these functions are obsolete and should not be used.
  20287. // Extract the SCODE from a HRESULT
  20288. // Convert an SCODE into an HRESULT.
  20289. // PropagateResult is a noop
  20290. // ****** End of OBSOLETE functions.
  20291. // ---------------------- HRESULT value definitions -----------------
  20292. //
  20293. // HRESULT definitions
  20294. //
  20295. const auto NOERROR = 0;
  20296. //
  20297. // Error definitions follow
  20298. //
  20299. //
  20300. // Codes 0x4000-0x40ff are reserved for OLE
  20301. //
  20302. //
  20303. // Error codes
  20304. //
  20305. //
  20306. // MessageId: E_UNEXPECTED
  20307. //
  20308. // MessageText:
  20309. //
  20310. // Catastrophic failure
  20311. //
  20312. const auto E_UNEXPECTED = 0x8000FFFF;
  20313. //
  20314. // MessageId: E_NOTIMPL
  20315. //
  20316. // MessageText:
  20317. //
  20318. // Not implemented
  20319. //
  20320. const auto E_NOTIMPL = 0x80004001;
  20321. //
  20322. // MessageId: E_OUTOFMEMORY
  20323. //
  20324. // MessageText:
  20325. //
  20326. // Ran out of memory
  20327. //
  20328. const auto E_OUTOFMEMORY = 0x8007000E;
  20329. //
  20330. // MessageId: E_INVALIDARG
  20331. //
  20332. // MessageText:
  20333. //
  20334. // One or more arguments are invalid
  20335. //
  20336. const auto E_INVALIDARG = 0x80070057;
  20337. //
  20338. // MessageId: E_NOINTERFACE
  20339. //
  20340. // MessageText:
  20341. //
  20342. // No such interface supported
  20343. //
  20344. const auto E_NOINTERFACE = 0x80004002;
  20345. //
  20346. // MessageId: E_POINTER
  20347. //
  20348. // MessageText:
  20349. //
  20350. // Invalid pointer
  20351. //
  20352. const auto E_POINTER = 0x80004003;
  20353. //
  20354. // MessageId: E_HANDLE
  20355. //
  20356. // MessageText:
  20357. //
  20358. // Invalid handle
  20359. //
  20360. const auto E_HANDLE = 0x80070006;
  20361. //
  20362. // MessageId: E_ABORT
  20363. //
  20364. // MessageText:
  20365. //
  20366. // Operation aborted
  20367. //
  20368. const auto E_ABORT = 0x80004004;
  20369. //
  20370. // MessageId: E_FAIL
  20371. //
  20372. // MessageText:
  20373. //
  20374. // Unspecified error
  20375. //
  20376. const auto E_FAIL = 0x80004005;
  20377. //
  20378. // MessageId: E_ACCESSDENIED
  20379. //
  20380. // MessageText:
  20381. //
  20382. // General access denied error
  20383. //
  20384. const auto E_ACCESSDENIED = 0x80070005;
  20385. //
  20386. // MessageId: E_NOTIMPL
  20387. //
  20388. // MessageText:
  20389. //
  20390. // Not implemented
  20391. //
  20392. //
  20393. // MessageId: E_OUTOFMEMORY
  20394. //
  20395. // MessageText:
  20396. //
  20397. // Ran out of memory
  20398. //
  20399. //
  20400. // MessageId: E_INVALIDARG
  20401. //
  20402. // MessageText:
  20403. //
  20404. // One or more arguments are invalid
  20405. //
  20406. //
  20407. // MessageId: E_NOINTERFACE
  20408. //
  20409. // MessageText:
  20410. //
  20411. // No such interface supported
  20412. //
  20413. //
  20414. // MessageId: E_POINTER
  20415. //
  20416. // MessageText:
  20417. //
  20418. // Invalid pointer
  20419. //
  20420. //
  20421. // MessageId: E_HANDLE
  20422. //
  20423. // MessageText:
  20424. //
  20425. // Invalid handle
  20426. //
  20427. //
  20428. // MessageId: E_ABORT
  20429. //
  20430. // MessageText:
  20431. //
  20432. // Operation aborted
  20433. //
  20434. //
  20435. // MessageId: E_FAIL
  20436. //
  20437. // MessageText:
  20438. //
  20439. // Unspecified error
  20440. //
  20441. //
  20442. // MessageId: E_ACCESSDENIED
  20443. //
  20444. // MessageText:
  20445. //
  20446. // General access denied error
  20447. //
  20448. //
  20449. // MessageId: E_PENDING
  20450. //
  20451. // MessageText:
  20452. //
  20453. // The data necessary to complete this operation is not yet available.
  20454. //
  20455. const auto E_PENDING = 0x8000000A;
  20456. //
  20457. // MessageId: CO_E_INIT_TLS
  20458. //
  20459. // MessageText:
  20460. //
  20461. // Thread local storage failure
  20462. //
  20463. const auto CO_E_INIT_TLS = 0x80004006;
  20464. //
  20465. // MessageId: CO_E_INIT_SHARED_ALLOCATOR
  20466. //
  20467. // MessageText:
  20468. //
  20469. // Get shared memory allocator failure
  20470. //
  20471. const auto CO_E_INIT_SHARED_ALLOCATOR = 0x80004007;
  20472. //
  20473. // MessageId: CO_E_INIT_MEMORY_ALLOCATOR
  20474. //
  20475. // MessageText:
  20476. //
  20477. // Get memory allocator failure
  20478. //
  20479. const auto CO_E_INIT_MEMORY_ALLOCATOR = 0x80004008;
  20480. //
  20481. // MessageId: CO_E_INIT_CLASS_CACHE
  20482. //
  20483. // MessageText:
  20484. //
  20485. // Unable to initialize class cache
  20486. //
  20487. const auto CO_E_INIT_CLASS_CACHE = 0x80004009;
  20488. //
  20489. // MessageId: CO_E_INIT_RPC_CHANNEL
  20490. //
  20491. // MessageText:
  20492. //
  20493. // Unable to initialize RPC services
  20494. //
  20495. const auto CO_E_INIT_RPC_CHANNEL = 0x8000400A;
  20496. //
  20497. // MessageId: CO_E_INIT_TLS_SET_CHANNEL_CONTROL
  20498. //
  20499. // MessageText:
  20500. //
  20501. // Cannot set thread local storage channel control
  20502. //
  20503. const auto CO_E_INIT_TLS_SET_CHANNEL_CONTROL = 0x8000400B;
  20504. //
  20505. // MessageId: CO_E_INIT_TLS_CHANNEL_CONTROL
  20506. //
  20507. // MessageText:
  20508. //
  20509. // Could not allocate thread local storage channel control
  20510. //
  20511. const auto CO_E_INIT_TLS_CHANNEL_CONTROL = 0x8000400C;
  20512. //
  20513. // MessageId: CO_E_INIT_UNACCEPTED_USER_ALLOCATOR
  20514. //
  20515. // MessageText:
  20516. //
  20517. // The user supplied memory allocator is unacceptable
  20518. //
  20519. const auto CO_E_INIT_UNACCEPTED_USER_ALLOCATOR = 0x8000400D;
  20520. //
  20521. // MessageId: CO_E_INIT_SCM_MUTEX_EXISTS
  20522. //
  20523. // MessageText:
  20524. //
  20525. // The OLE service mutex already exists
  20526. //
  20527. const auto CO_E_INIT_SCM_MUTEX_EXISTS = 0x8000400E;
  20528. //
  20529. // MessageId: CO_E_INIT_SCM_FILE_MAPPING_EXISTS
  20530. //
  20531. // MessageText:
  20532. //
  20533. // The OLE service file mapping already exists
  20534. //
  20535. const auto CO_E_INIT_SCM_FILE_MAPPING_EXISTS = 0x8000400F;
  20536. //
  20537. // MessageId: CO_E_INIT_SCM_MAP_VIEW_OF_FILE
  20538. //
  20539. // MessageText:
  20540. //
  20541. // Unable to map view of file for OLE service
  20542. //
  20543. const auto CO_E_INIT_SCM_MAP_VIEW_OF_FILE = 0x80004010;
  20544. //
  20545. // MessageId: CO_E_INIT_SCM_EXEC_FAILURE
  20546. //
  20547. // MessageText:
  20548. //
  20549. // Failure attempting to launch OLE service
  20550. //
  20551. const auto CO_E_INIT_SCM_EXEC_FAILURE = 0x80004011;
  20552. //
  20553. // MessageId: CO_E_INIT_ONLY_SINGLE_THREADED
  20554. //
  20555. // MessageText:
  20556. //
  20557. // There was an attempt to call CoInitialize a second time while single threaded
  20558. //
  20559. const auto CO_E_INIT_ONLY_SINGLE_THREADED = 0x80004012;
  20560. //
  20561. // MessageId: CO_E_CANT_REMOTE
  20562. //
  20563. // MessageText:
  20564. //
  20565. // A Remote activation was necessary but was not allowed
  20566. //
  20567. const auto CO_E_CANT_REMOTE = 0x80004013;
  20568. //
  20569. // MessageId: CO_E_BAD_SERVER_NAME
  20570. //
  20571. // MessageText:
  20572. //
  20573. // A Remote activation was necessary but the server name provided was invalid
  20574. //
  20575. const auto CO_E_BAD_SERVER_NAME = 0x80004014;
  20576. //
  20577. // MessageId: CO_E_WRONG_SERVER_IDENTITY
  20578. //
  20579. // MessageText:
  20580. //
  20581. // The class is configured to run as a security id different from the caller
  20582. //
  20583. const auto CO_E_WRONG_SERVER_IDENTITY = 0x80004015;
  20584. //
  20585. // MessageId: CO_E_OLE1DDE_DISABLED
  20586. //
  20587. // MessageText:
  20588. //
  20589. // Use of Ole1 services requiring DDE windows is disabled
  20590. //
  20591. const auto CO_E_OLE1DDE_DISABLED = 0x80004016;
  20592. //
  20593. // MessageId: CO_E_RUNAS_SYNTAX
  20594. //
  20595. // MessageText:
  20596. //
  20597. // A RunAs specification must be <domain name>\<user name> or simply <user name>
  20598. //
  20599. const auto CO_E_RUNAS_SYNTAX = 0x80004017;
  20600. //
  20601. // MessageId: CO_E_CREATEPROCESS_FAILURE
  20602. //
  20603. // MessageText:
  20604. //
  20605. // The server process could not be started. The pathname may be incorrect.
  20606. //
  20607. const auto CO_E_CREATEPROCESS_FAILURE = 0x80004018;
  20608. //
  20609. // MessageId: CO_E_RUNAS_CREATEPROCESS_FAILURE
  20610. //
  20611. // MessageText:
  20612. //
  20613. // The server process could not be started as the configured identity. The pathname may be incorrect or unavailable.
  20614. //
  20615. const auto CO_E_RUNAS_CREATEPROCESS_FAILURE = 0x80004019;
  20616. //
  20617. // MessageId: CO_E_RUNAS_LOGON_FAILURE
  20618. //
  20619. // MessageText:
  20620. //
  20621. // The server process could not be started because the configured identity is incorrect. Check the username and password.
  20622. //
  20623. const auto CO_E_RUNAS_LOGON_FAILURE = 0x8000401A;
  20624. //
  20625. // MessageId: CO_E_LAUNCH_PERMSSION_DENIED
  20626. //
  20627. // MessageText:
  20628. //
  20629. // The client is not allowed to launch this server.
  20630. //
  20631. const auto CO_E_LAUNCH_PERMSSION_DENIED = 0x8000401B;
  20632. //
  20633. // MessageId: CO_E_START_SERVICE_FAILURE
  20634. //
  20635. // MessageText:
  20636. //
  20637. // The service providing this server could not be started.
  20638. //
  20639. const auto CO_E_START_