/binding/win32/winerror.d

http://github.com/wilkie/djehuty · D · 39413 lines · 4348 code · 4451 blank · 30614 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_SERVICE_FAILURE = 0x8000401C;
  20640. //
  20641. // MessageId: CO_E_REMOTE_COMMUNICATION_FAILURE
  20642. //
  20643. // MessageText:
  20644. //
  20645. // This computer was unable to communicate with the computer providing the server.
  20646. //
  20647. const auto CO_E_REMOTE_COMMUNICATION_FAILURE = 0x8000401D;
  20648. //
  20649. // MessageId: CO_E_SERVER_START_TIMEOUT
  20650. //
  20651. // MessageText:
  20652. //
  20653. // The server did not respond after being launched.
  20654. //
  20655. const auto CO_E_SERVER_START_TIMEOUT = 0x8000401E;
  20656. //
  20657. // MessageId: CO_E_CLSREG_INCONSISTENT
  20658. //
  20659. // MessageText:
  20660. //
  20661. // The registration information for this server is inconsistent or incomplete.
  20662. //
  20663. const auto CO_E_CLSREG_INCONSISTENT = 0x8000401F;
  20664. //
  20665. // MessageId: CO_E_IIDREG_INCONSISTENT
  20666. //
  20667. // MessageText:
  20668. //
  20669. // The registration information for this interface is inconsistent or incomplete.
  20670. //
  20671. const auto CO_E_IIDREG_INCONSISTENT = 0x80004020;
  20672. //
  20673. // MessageId: CO_E_NOT_SUPPORTED
  20674. //
  20675. // MessageText:
  20676. //
  20677. // The operation attempted is not supported.
  20678. //
  20679. const auto CO_E_NOT_SUPPORTED = 0x80004021;
  20680. //
  20681. // MessageId: CO_E_RELOAD_DLL
  20682. //
  20683. // MessageText:
  20684. //
  20685. // A dll must be loaded.
  20686. //
  20687. const auto CO_E_RELOAD_DLL = 0x80004022;
  20688. //
  20689. // MessageId: CO_E_MSI_ERROR
  20690. //
  20691. // MessageText:
  20692. //
  20693. // A Microsoft Software Installer error was encountered.
  20694. //
  20695. const auto CO_E_MSI_ERROR = 0x80004023;
  20696. //
  20697. // MessageId: CO_E_ATTEMPT_TO_CREATE_OUTSIDE_CLIENT_CONTEXT
  20698. //
  20699. // MessageText:
  20700. //
  20701. // The specified activation could not occur in the client context as specified.
  20702. //
  20703. const auto CO_E_ATTEMPT_TO_CREATE_OUTSIDE_CLIENT_CONTEXT = 0x80004024;
  20704. //
  20705. // MessageId: CO_E_SERVER_PAUSED
  20706. //
  20707. // MessageText:
  20708. //
  20709. // Activations on the server are paused.
  20710. //
  20711. const auto CO_E_SERVER_PAUSED = 0x80004025;
  20712. //
  20713. // MessageId: CO_E_SERVER_NOT_PAUSED
  20714. //
  20715. // MessageText:
  20716. //
  20717. // Activations on the server are not paused.
  20718. //
  20719. const auto CO_E_SERVER_NOT_PAUSED = 0x80004026;
  20720. //
  20721. // MessageId: CO_E_CLASS_DISABLED
  20722. //
  20723. // MessageText:
  20724. //
  20725. // The component or application containing the component has been disabled.
  20726. //
  20727. const auto CO_E_CLASS_DISABLED = 0x80004027;
  20728. //
  20729. // MessageId: CO_E_CLRNOTAVAILABLE
  20730. //
  20731. // MessageText:
  20732. //
  20733. // The common language runtime is not available
  20734. //
  20735. const auto CO_E_CLRNOTAVAILABLE = 0x80004028;
  20736. //
  20737. // MessageId: CO_E_ASYNC_WORK_REJECTED
  20738. //
  20739. // MessageText:
  20740. //
  20741. // The thread-pool rejected the submitted asynchronous work.
  20742. //
  20743. const auto CO_E_ASYNC_WORK_REJECTED = 0x80004029;
  20744. //
  20745. // MessageId: CO_E_SERVER_INIT_TIMEOUT
  20746. //
  20747. // MessageText:
  20748. //
  20749. // The server started, but did not finish initializing in a timely fashion.
  20750. //
  20751. const auto CO_E_SERVER_INIT_TIMEOUT = 0x8000402A;
  20752. //
  20753. // MessageId: CO_E_NO_SECCTX_IN_ACTIVATE
  20754. //
  20755. // MessageText:
  20756. //
  20757. // Unable to complete the call since there is no COM+ security context inside IObjectControl.Activate.
  20758. //
  20759. const auto CO_E_NO_SECCTX_IN_ACTIVATE = 0x8000402B;
  20760. //
  20761. // MessageId: CO_E_TRACKER_CONFIG
  20762. //
  20763. // MessageText:
  20764. //
  20765. // The provided tracker configuration is invalid
  20766. //
  20767. const auto CO_E_TRACKER_CONFIG = 0x80004030;
  20768. //
  20769. // MessageId: CO_E_THREADPOOL_CONFIG
  20770. //
  20771. // MessageText:
  20772. //
  20773. // The provided thread pool configuration is invalid
  20774. //
  20775. const auto CO_E_THREADPOOL_CONFIG = 0x80004031;
  20776. //
  20777. // MessageId: CO_E_SXS_CONFIG
  20778. //
  20779. // MessageText:
  20780. //
  20781. // The provided side-by-side configuration is invalid
  20782. //
  20783. const auto CO_E_SXS_CONFIG = 0x80004032;
  20784. //
  20785. // MessageId: CO_E_MALFORMED_SPN
  20786. //
  20787. // MessageText:
  20788. //
  20789. // The server principal name (SPN) obtained during security negotiation is malformed.
  20790. //
  20791. const auto CO_E_MALFORMED_SPN = 0x80004033;
  20792. //
  20793. // Success codes
  20794. //
  20795. const auto S_OK = 0;
  20796. const auto S_FALSE = 1;
  20797. // ******************
  20798. // FACILITY_ITF
  20799. // ******************
  20800. //
  20801. // Codes 0x0-0x01ff are reserved for the OLE group of
  20802. // interfaces.
  20803. //
  20804. //
  20805. // Generic OLE errors that may be returned by many inerfaces
  20806. //
  20807. const auto OLE_E_FIRST = 0x80040000;
  20808. const auto OLE_E_LAST = 0x800400FF;
  20809. const auto OLE_S_FIRST = 0x00040000;
  20810. const auto OLE_S_LAST = 0x000400FF;
  20811. //
  20812. // Old OLE errors
  20813. //
  20814. //
  20815. // MessageId: OLE_E_OLEVERB
  20816. //
  20817. // MessageText:
  20818. //
  20819. // Invalid OLEVERB structure
  20820. //
  20821. const auto OLE_E_OLEVERB = 0x80040000;
  20822. //
  20823. // MessageId: OLE_E_ADVF
  20824. //
  20825. // MessageText:
  20826. //
  20827. // Invalid advise flags
  20828. //
  20829. const auto OLE_E_ADVF = 0x80040001;
  20830. //
  20831. // MessageId: OLE_E_ENUM_NOMORE
  20832. //
  20833. // MessageText:
  20834. //
  20835. // Can't enumerate any more, because the associated data is missing
  20836. //
  20837. const auto OLE_E_ENUM_NOMORE = 0x80040002;
  20838. //
  20839. // MessageId: OLE_E_ADVISENOTSUPPORTED
  20840. //
  20841. // MessageText:
  20842. //
  20843. // This implementation doesn't take advises
  20844. //
  20845. const auto OLE_E_ADVISENOTSUPPORTED = 0x80040003;
  20846. //
  20847. // MessageId: OLE_E_NOCONNECTION
  20848. //
  20849. // MessageText:
  20850. //
  20851. // There is no connection for this connection ID
  20852. //
  20853. const auto OLE_E_NOCONNECTION = 0x80040004;
  20854. //
  20855. // MessageId: OLE_E_NOTRUNNING
  20856. //
  20857. // MessageText:
  20858. //
  20859. // Need to run the object to perform this operation
  20860. //
  20861. const auto OLE_E_NOTRUNNING = 0x80040005;
  20862. //
  20863. // MessageId: OLE_E_NOCACHE
  20864. //
  20865. // MessageText:
  20866. //
  20867. // There is no cache to operate on
  20868. //
  20869. const auto OLE_E_NOCACHE = 0x80040006;
  20870. //
  20871. // MessageId: OLE_E_BLANK
  20872. //
  20873. // MessageText:
  20874. //
  20875. // Uninitialized object
  20876. //
  20877. const auto OLE_E_BLANK = 0x80040007;
  20878. //
  20879. // MessageId: OLE_E_CLASSDIFF
  20880. //
  20881. // MessageText:
  20882. //
  20883. // Linked object's source class has changed
  20884. //
  20885. const auto OLE_E_CLASSDIFF = 0x80040008;
  20886. //
  20887. // MessageId: OLE_E_CANT_GETMONIKER
  20888. //
  20889. // MessageText:
  20890. //
  20891. // Not able to get the moniker of the object
  20892. //
  20893. const auto OLE_E_CANT_GETMONIKER = 0x80040009;
  20894. //
  20895. // MessageId: OLE_E_CANT_BINDTOSOURCE
  20896. //
  20897. // MessageText:
  20898. //
  20899. // Not able to bind to the source
  20900. //
  20901. const auto OLE_E_CANT_BINDTOSOURCE = 0x8004000A;
  20902. //
  20903. // MessageId: OLE_E_STATIC
  20904. //
  20905. // MessageText:
  20906. //
  20907. // Object is static; operation not allowed
  20908. //
  20909. const auto OLE_E_STATIC = 0x8004000B;
  20910. //
  20911. // MessageId: OLE_E_PROMPTSAVECANCELLED
  20912. //
  20913. // MessageText:
  20914. //
  20915. // User canceled out of save dialog
  20916. //
  20917. const auto OLE_E_PROMPTSAVECANCELLED = 0x8004000C;
  20918. //
  20919. // MessageId: OLE_E_INVALIDRECT
  20920. //
  20921. // MessageText:
  20922. //
  20923. // Invalid rectangle
  20924. //
  20925. const auto OLE_E_INVALIDRECT = 0x8004000D;
  20926. //
  20927. // MessageId: OLE_E_WRONGCOMPOBJ
  20928. //
  20929. // MessageText:
  20930. //
  20931. // compobj.dll is too old for the ole2.dll initialized
  20932. //
  20933. const auto OLE_E_WRONGCOMPOBJ = 0x8004000E;
  20934. //
  20935. // MessageId: OLE_E_INVALIDHWND
  20936. //
  20937. // MessageText:
  20938. //
  20939. // Invalid window handle
  20940. //
  20941. const auto OLE_E_INVALIDHWND = 0x8004000F;
  20942. //
  20943. // MessageId: OLE_E_NOT_INPLACEACTIVE
  20944. //
  20945. // MessageText:
  20946. //
  20947. // Object is not in any of the inplace active states
  20948. //
  20949. const auto OLE_E_NOT_INPLACEACTIVE = 0x80040010;
  20950. //
  20951. // MessageId: OLE_E_CANTCONVERT
  20952. //
  20953. // MessageText:
  20954. //
  20955. // Not able to convert object
  20956. //
  20957. const auto OLE_E_CANTCONVERT = 0x80040011;
  20958. //
  20959. // MessageId: OLE_E_NOSTORAGE
  20960. //
  20961. // MessageText:
  20962. //
  20963. // Not able to perform the operation because object is not given storage yet
  20964. //
  20965. const auto OLE_E_NOSTORAGE = 0x80040012;
  20966. //
  20967. // MessageId: DV_E_FORMATETC
  20968. //
  20969. // MessageText:
  20970. //
  20971. // Invalid FORMATETC structure
  20972. //
  20973. const auto DV_E_FORMATETC = 0x80040064;
  20974. //
  20975. // MessageId: DV_E_DVTARGETDEVICE
  20976. //
  20977. // MessageText:
  20978. //
  20979. // Invalid DVTARGETDEVICE structure
  20980. //
  20981. const auto DV_E_DVTARGETDEVICE = 0x80040065;
  20982. //
  20983. // MessageId: DV_E_STGMEDIUM
  20984. //
  20985. // MessageText:
  20986. //
  20987. // Invalid STDGMEDIUM structure
  20988. //
  20989. const auto DV_E_STGMEDIUM = 0x80040066;
  20990. //
  20991. // MessageId: DV_E_STATDATA
  20992. //
  20993. // MessageText:
  20994. //
  20995. // Invalid STATDATA structure
  20996. //
  20997. const auto DV_E_STATDATA = 0x80040067;
  20998. //
  20999. // MessageId: DV_E_LINDEX
  21000. //
  21001. // MessageText:
  21002. //
  21003. // Invalid lindex
  21004. //
  21005. const auto DV_E_LINDEX = 0x80040068;
  21006. //
  21007. // MessageId: DV_E_TYMED
  21008. //
  21009. // MessageText:
  21010. //
  21011. // Invalid tymed
  21012. //
  21013. const auto DV_E_TYMED = 0x80040069;
  21014. //
  21015. // MessageId: DV_E_CLIPFORMAT
  21016. //
  21017. // MessageText:
  21018. //
  21019. // Invalid clipboard format
  21020. //
  21021. const auto DV_E_CLIPFORMAT = 0x8004006A;
  21022. //
  21023. // MessageId: DV_E_DVASPECT
  21024. //
  21025. // MessageText:
  21026. //
  21027. // Invalid aspect(s)
  21028. //
  21029. const auto DV_E_DVASPECT = 0x8004006B;
  21030. //
  21031. // MessageId: DV_E_DVTARGETDEVICE_SIZE
  21032. //
  21033. // MessageText:
  21034. //
  21035. // tdSize parameter of the DVTARGETDEVICE structure is invalid
  21036. //
  21037. const auto DV_E_DVTARGETDEVICE_SIZE = 0x8004006C;
  21038. //
  21039. // MessageId: DV_E_NOIVIEWOBJECT
  21040. //
  21041. // MessageText:
  21042. //
  21043. // Object doesn't support IViewObject interface
  21044. //
  21045. const auto DV_E_NOIVIEWOBJECT = 0x8004006D;
  21046. const auto DRAGDROP_E_FIRST = 0x80040100;
  21047. const auto DRAGDROP_E_LAST = 0x8004010F;
  21048. const auto DRAGDROP_S_FIRST = 0x00040100;
  21049. //
  21050. const auto DRAGDROP_S_LAST = 0x0004010F;
  21051. // MessageId: DRAGDROP_E_NOTREGISTERED
  21052. //
  21053. // MessageText:
  21054. //
  21055. // Trying to revoke a drop target that has not been registered
  21056. //
  21057. const auto DRAGDROP_E_NOTREGISTERED = 0x80040100;
  21058. //
  21059. // MessageId: DRAGDROP_E_ALREADYREGISTERED
  21060. //
  21061. // MessageText:
  21062. //
  21063. // This window has already been registered as a drop target
  21064. //
  21065. const auto DRAGDROP_E_ALREADYREGISTERED = 0x80040101;
  21066. //
  21067. // MessageId: DRAGDROP_E_INVALIDHWND
  21068. //
  21069. // MessageText:
  21070. //
  21071. // Invalid window handle
  21072. //
  21073. const auto DRAGDROP_E_INVALIDHWND = 0x80040102;
  21074. const auto CLASSFACTORY_E_FIRST = 0x80040110;
  21075. const auto CLASSFACTORY_E_LAST = 0x8004011F;
  21076. const auto CLASSFACTORY_S_FIRST = 0x00040110;
  21077. //
  21078. const auto CLASSFACTORY_S_LAST = 0x0004011F;
  21079. // MessageId: CLASS_E_NOAGGREGATION
  21080. //
  21081. // MessageText:
  21082. //
  21083. // Class does not support aggregation (or class object is remote)
  21084. //
  21085. const auto CLASS_E_NOAGGREGATION = 0x80040110;
  21086. //
  21087. // MessageId: CLASS_E_CLASSNOTAVAILABLE
  21088. //
  21089. // MessageText:
  21090. //
  21091. // ClassFactory cannot supply requested class
  21092. //
  21093. const auto CLASS_E_CLASSNOTAVAILABLE = 0x80040111;
  21094. //
  21095. // MessageId: CLASS_E_NOTLICENSED
  21096. //
  21097. // MessageText:
  21098. //
  21099. // Class is not licensed for use
  21100. //
  21101. const auto CLASS_E_NOTLICENSED = 0x80040112;
  21102. const auto MARSHAL_E_FIRST = 0x80040120;
  21103. const auto MARSHAL_E_LAST = 0x8004012F;
  21104. const auto MARSHAL_S_FIRST = 0x00040120;
  21105. const auto MARSHAL_S_LAST = 0x0004012F;
  21106. const auto DATA_E_FIRST = 0x80040130;
  21107. const auto DATA_E_LAST = 0x8004013F;
  21108. const auto DATA_S_FIRST = 0x00040130;
  21109. const auto DATA_S_LAST = 0x0004013F;
  21110. const auto VIEW_E_FIRST = 0x80040140;
  21111. const auto VIEW_E_LAST = 0x8004014F;
  21112. const auto VIEW_S_FIRST = 0x00040140;
  21113. //
  21114. const auto VIEW_S_LAST = 0x0004014F;
  21115. // MessageId: VIEW_E_DRAW
  21116. //
  21117. // MessageText:
  21118. //
  21119. // Error drawing view
  21120. //
  21121. const auto VIEW_E_DRAW = 0x80040140;
  21122. const auto REGDB_E_FIRST = 0x80040150;
  21123. const auto REGDB_E_LAST = 0x8004015F;
  21124. const auto REGDB_S_FIRST = 0x00040150;
  21125. //
  21126. const auto REGDB_S_LAST = 0x0004015F;
  21127. // MessageId: REGDB_E_READREGDB
  21128. //
  21129. // MessageText:
  21130. //
  21131. // Could not read key from registry
  21132. //
  21133. const auto REGDB_E_READREGDB = 0x80040150;
  21134. //
  21135. // MessageId: REGDB_E_WRITEREGDB
  21136. //
  21137. // MessageText:
  21138. //
  21139. // Could not write key to registry
  21140. //
  21141. const auto REGDB_E_WRITEREGDB = 0x80040151;
  21142. //
  21143. // MessageId: REGDB_E_KEYMISSING
  21144. //
  21145. // MessageText:
  21146. //
  21147. // Could not find the key in the registry
  21148. //
  21149. const auto REGDB_E_KEYMISSING = 0x80040152;
  21150. //
  21151. // MessageId: REGDB_E_INVALIDVALUE
  21152. //
  21153. // MessageText:
  21154. //
  21155. // Invalid value for registry
  21156. //
  21157. const auto REGDB_E_INVALIDVALUE = 0x80040153;
  21158. //
  21159. // MessageId: REGDB_E_CLASSNOTREG
  21160. //
  21161. // MessageText:
  21162. //
  21163. // Class not registered
  21164. //
  21165. const auto REGDB_E_CLASSNOTREG = 0x80040154;
  21166. //
  21167. // MessageId: REGDB_E_IIDNOTREG
  21168. //
  21169. // MessageText:
  21170. //
  21171. // Interface not registered
  21172. //
  21173. const auto REGDB_E_IIDNOTREG = 0x80040155;
  21174. //
  21175. // MessageId: REGDB_E_BADTHREADINGMODEL
  21176. //
  21177. // MessageText:
  21178. //
  21179. // Threading model entry is not valid
  21180. //
  21181. const auto REGDB_E_BADTHREADINGMODEL = 0x80040156;
  21182. const auto CAT_E_FIRST = 0x80040160;
  21183. //
  21184. const auto CAT_E_LAST = 0x80040161;
  21185. // MessageId: CAT_E_CATIDNOEXIST
  21186. //
  21187. // MessageText:
  21188. //
  21189. // CATID does not exist
  21190. //
  21191. const auto CAT_E_CATIDNOEXIST = 0x80040160;
  21192. //
  21193. // MessageId: CAT_E_NODESCRIPTION
  21194. //
  21195. // MessageText:
  21196. //
  21197. // Description not found
  21198. //
  21199. const auto CAT_E_NODESCRIPTION = 0x80040161;
  21200. ////////////////////////////////////
  21201. // //
  21202. // Class Store Error Codes //
  21203. // //
  21204. ////////////////////////////////////
  21205. const auto CS_E_FIRST = 0x80040164;
  21206. //
  21207. const auto CS_E_LAST = 0x8004016F;
  21208. // MessageId: CS_E_PACKAGE_NOTFOUND
  21209. //
  21210. // MessageText:
  21211. //
  21212. // No package in the software installation data in the Active Directory meets this criteria.
  21213. //
  21214. const auto CS_E_PACKAGE_NOTFOUND = 0x80040164;
  21215. //
  21216. // MessageId: CS_E_NOT_DELETABLE
  21217. //
  21218. // MessageText:
  21219. //
  21220. // Deleting this will break the referential integrity of the software installation data in the Active Directory.
  21221. //
  21222. const auto CS_E_NOT_DELETABLE = 0x80040165;
  21223. //
  21224. // MessageId: CS_E_CLASS_NOTFOUND
  21225. //
  21226. // MessageText:
  21227. //
  21228. // The CLSID was not found in the software installation data in the Active Directory.
  21229. //
  21230. const auto CS_E_CLASS_NOTFOUND = 0x80040166;
  21231. //
  21232. // MessageId: CS_E_INVALID_VERSION
  21233. //
  21234. // MessageText:
  21235. //
  21236. // The software installation data in the Active Directory is corrupt.
  21237. //
  21238. const auto CS_E_INVALID_VERSION = 0x80040167;
  21239. //
  21240. // MessageId: CS_E_NO_CLASSSTORE
  21241. //
  21242. // MessageText:
  21243. //
  21244. // There is no software installation data in the Active Directory.
  21245. //
  21246. const auto CS_E_NO_CLASSSTORE = 0x80040168;
  21247. //
  21248. // MessageId: CS_E_OBJECT_NOTFOUND
  21249. //
  21250. // MessageText:
  21251. //
  21252. // There is no software installation data object in the Active Directory.
  21253. //
  21254. const auto CS_E_OBJECT_NOTFOUND = 0x80040169;
  21255. //
  21256. // MessageId: CS_E_OBJECT_ALREADY_EXISTS
  21257. //
  21258. // MessageText:
  21259. //
  21260. // The software installation data object in the Active Directory already exists.
  21261. //
  21262. const auto CS_E_OBJECT_ALREADY_EXISTS = 0x8004016A;
  21263. //
  21264. // MessageId: CS_E_INVALID_PATH
  21265. //
  21266. // MessageText:
  21267. //
  21268. // The path to the software installation data in the Active Directory is not correct.
  21269. //
  21270. const auto CS_E_INVALID_PATH = 0x8004016B;
  21271. //
  21272. // MessageId: CS_E_NETWORK_ERROR
  21273. //
  21274. // MessageText:
  21275. //
  21276. // A network error interrupted the operation.
  21277. //
  21278. const auto CS_E_NETWORK_ERROR = 0x8004016C;
  21279. //
  21280. // MessageId: CS_E_ADMIN_LIMIT_EXCEEDED
  21281. //
  21282. // MessageText:
  21283. //
  21284. // The size of this object exceeds the maximum size set by the Administrator.
  21285. //
  21286. const auto CS_E_ADMIN_LIMIT_EXCEEDED = 0x8004016D;
  21287. //
  21288. // MessageId: CS_E_SCHEMA_MISMATCH
  21289. //
  21290. // MessageText:
  21291. //
  21292. // The schema for the software installation data in the Active Directory does not match the required schema.
  21293. //
  21294. const auto CS_E_SCHEMA_MISMATCH = 0x8004016E;
  21295. //
  21296. // MessageId: CS_E_INTERNAL_ERROR
  21297. //
  21298. // MessageText:
  21299. //
  21300. // An error occurred in the software installation data in the Active Directory.
  21301. //
  21302. const auto CS_E_INTERNAL_ERROR = 0x8004016F;
  21303. const auto CACHE_E_FIRST = 0x80040170;
  21304. const auto CACHE_E_LAST = 0x8004017F;
  21305. const auto CACHE_S_FIRST = 0x00040170;
  21306. //
  21307. const auto CACHE_S_LAST = 0x0004017F;
  21308. // MessageId: CACHE_E_NOCACHE_UPDATED
  21309. //
  21310. // MessageText:
  21311. //
  21312. // Cache not updated
  21313. //
  21314. const auto CACHE_E_NOCACHE_UPDATED = 0x80040170;
  21315. const auto OLEOBJ_E_FIRST = 0x80040180;
  21316. const auto OLEOBJ_E_LAST = 0x8004018F;
  21317. const auto OLEOBJ_S_FIRST = 0x00040180;
  21318. //
  21319. const auto OLEOBJ_S_LAST = 0x0004018F;
  21320. // MessageId: OLEOBJ_E_NOVERBS
  21321. //
  21322. // MessageText:
  21323. //
  21324. // No verbs for OLE object
  21325. //
  21326. const auto OLEOBJ_E_NOVERBS = 0x80040180;
  21327. //
  21328. // MessageId: OLEOBJ_E_INVALIDVERB
  21329. //
  21330. // MessageText:
  21331. //
  21332. // Invalid verb for OLE object
  21333. //
  21334. const auto OLEOBJ_E_INVALIDVERB = 0x80040181;
  21335. const auto CLIENTSITE_E_FIRST = 0x80040190;
  21336. const auto CLIENTSITE_E_LAST = 0x8004019F;
  21337. const auto CLIENTSITE_S_FIRST = 0x00040190;
  21338. //
  21339. const auto CLIENTSITE_S_LAST = 0x0004019F;
  21340. // MessageId: INPLACE_E_NOTUNDOABLE
  21341. //
  21342. // MessageText:
  21343. //
  21344. // Undo is not available
  21345. //
  21346. const auto INPLACE_E_NOTUNDOABLE = 0x800401A0;
  21347. //
  21348. // MessageId: INPLACE_E_NOTOOLSPACE
  21349. //
  21350. // MessageText:
  21351. //
  21352. // Space for tools is not available
  21353. //
  21354. const auto INPLACE_E_NOTOOLSPACE = 0x800401A1;
  21355. const auto INPLACE_E_FIRST = 0x800401A0;
  21356. const auto INPLACE_E_LAST = 0x800401AF;
  21357. const auto INPLACE_S_FIRST = 0x000401A0;
  21358. const auto INPLACE_S_LAST = 0x000401AF;
  21359. const auto ENUM_E_FIRST = 0x800401B0;
  21360. const auto ENUM_E_LAST = 0x800401BF;
  21361. const auto ENUM_S_FIRST = 0x000401B0;
  21362. const auto ENUM_S_LAST = 0x000401BF;
  21363. const auto CONVERT10_E_FIRST = 0x800401C0;
  21364. const auto CONVERT10_E_LAST = 0x800401CF;
  21365. const auto CONVERT10_S_FIRST = 0x000401C0;
  21366. //
  21367. const auto CONVERT10_S_LAST = 0x000401CF;
  21368. // MessageId: CONVERT10_E_OLESTREAM_GET
  21369. //
  21370. // MessageText:
  21371. //
  21372. // OLESTREAM Get method failed
  21373. //
  21374. const auto CONVERT10_E_OLESTREAM_GET = 0x800401C0;
  21375. //
  21376. // MessageId: CONVERT10_E_OLESTREAM_PUT
  21377. //
  21378. // MessageText:
  21379. //
  21380. // OLESTREAM Put method failed
  21381. //
  21382. const auto CONVERT10_E_OLESTREAM_PUT = 0x800401C1;
  21383. //
  21384. // MessageId: CONVERT10_E_OLESTREAM_FMT
  21385. //
  21386. // MessageText:
  21387. //
  21388. // Contents of the OLESTREAM not in correct format
  21389. //
  21390. const auto CONVERT10_E_OLESTREAM_FMT = 0x800401C2;
  21391. //
  21392. // MessageId: CONVERT10_E_OLESTREAM_BITMAP_TO_DIB
  21393. //
  21394. // MessageText:
  21395. //
  21396. // There was an error in a Windows GDI call while converting the bitmap to a DIB
  21397. //
  21398. const auto CONVERT10_E_OLESTREAM_BITMAP_TO_DIB = 0x800401C3;
  21399. //
  21400. // MessageId: CONVERT10_E_STG_FMT
  21401. //
  21402. // MessageText:
  21403. //
  21404. // Contents of the IStorage not in correct format
  21405. //
  21406. const auto CONVERT10_E_STG_FMT = 0x800401C4;
  21407. //
  21408. // MessageId: CONVERT10_E_STG_NO_STD_STREAM
  21409. //
  21410. // MessageText:
  21411. //
  21412. // Contents of IStorage is missing one of the standard streams
  21413. //
  21414. const auto CONVERT10_E_STG_NO_STD_STREAM = 0x800401C5;
  21415. //
  21416. // MessageId: CONVERT10_E_STG_DIB_TO_BITMAP
  21417. //
  21418. // MessageText:
  21419. //
  21420. // There was an error in a Windows GDI call while converting the DIB to a bitmap.
  21421. //
  21422. //
  21423. const auto CONVERT10_E_STG_DIB_TO_BITMAP = 0x800401C6;
  21424. const auto CLIPBRD_E_FIRST = 0x800401D0;
  21425. const auto CLIPBRD_E_LAST = 0x800401DF;
  21426. const auto CLIPBRD_S_FIRST = 0x000401D0;
  21427. //
  21428. const auto CLIPBRD_S_LAST = 0x000401DF;
  21429. // MessageId: CLIPBRD_E_CANT_OPEN
  21430. //
  21431. // MessageText:
  21432. //
  21433. // OpenClipboard Failed
  21434. //
  21435. const auto CLIPBRD_E_CANT_OPEN = 0x800401D0;
  21436. //
  21437. // MessageId: CLIPBRD_E_CANT_EMPTY
  21438. //
  21439. // MessageText:
  21440. //
  21441. // EmptyClipboard Failed
  21442. //
  21443. const auto CLIPBRD_E_CANT_EMPTY = 0x800401D1;
  21444. //
  21445. // MessageId: CLIPBRD_E_CANT_SET
  21446. //
  21447. // MessageText:
  21448. //
  21449. // SetClipboard Failed
  21450. //
  21451. const auto CLIPBRD_E_CANT_SET = 0x800401D2;
  21452. //
  21453. // MessageId: CLIPBRD_E_BAD_DATA
  21454. //
  21455. // MessageText:
  21456. //
  21457. // Data on clipboard is invalid
  21458. //
  21459. const auto CLIPBRD_E_BAD_DATA = 0x800401D3;
  21460. //
  21461. // MessageId: CLIPBRD_E_CANT_CLOSE
  21462. //
  21463. // MessageText:
  21464. //
  21465. // CloseClipboard Failed
  21466. //
  21467. const auto CLIPBRD_E_CANT_CLOSE = 0x800401D4;
  21468. const auto MK_E_FIRST = 0x800401E0;
  21469. const auto MK_E_LAST = 0x800401EF;
  21470. const auto MK_S_FIRST = 0x000401E0;
  21471. //
  21472. const auto MK_S_LAST = 0x000401EF;
  21473. // MessageId: MK_E_CONNECTMANUALLY
  21474. //
  21475. // MessageText:
  21476. //
  21477. // Moniker needs to be connected manually
  21478. //
  21479. const auto MK_E_CONNECTMANUALLY = 0x800401E0;
  21480. //
  21481. // MessageId: MK_E_EXCEEDEDDEADLINE
  21482. //
  21483. // MessageText:
  21484. //
  21485. // Operation exceeded deadline
  21486. //
  21487. const auto MK_E_EXCEEDEDDEADLINE = 0x800401E1;
  21488. //
  21489. // MessageId: MK_E_NEEDGENERIC
  21490. //
  21491. // MessageText:
  21492. //
  21493. // Moniker needs to be generic
  21494. //
  21495. const auto MK_E_NEEDGENERIC = 0x800401E2;
  21496. //
  21497. // MessageId: MK_E_UNAVAILABLE
  21498. //
  21499. // MessageText:
  21500. //
  21501. // Operation unavailable
  21502. //
  21503. const auto MK_E_UNAVAILABLE = 0x800401E3;
  21504. //
  21505. // MessageId: MK_E_SYNTAX
  21506. //
  21507. // MessageText:
  21508. //
  21509. // Invalid syntax
  21510. //
  21511. const auto MK_E_SYNTAX = 0x800401E4;
  21512. //
  21513. // MessageId: MK_E_NOOBJECT
  21514. //
  21515. // MessageText:
  21516. //
  21517. // No object for moniker
  21518. //
  21519. const auto MK_E_NOOBJECT = 0x800401E5;
  21520. //
  21521. // MessageId: MK_E_INVALIDEXTENSION
  21522. //
  21523. // MessageText:
  21524. //
  21525. // Bad extension for file
  21526. //
  21527. const auto MK_E_INVALIDEXTENSION = 0x800401E6;
  21528. //
  21529. // MessageId: MK_E_INTERMEDIATEINTERFACENOTSUPPORTED
  21530. //
  21531. // MessageText:
  21532. //
  21533. // Intermediate operation failed
  21534. //
  21535. const auto MK_E_INTERMEDIATEINTERFACENOTSUPPORTED = 0x800401E7;
  21536. //
  21537. // MessageId: MK_E_NOTBINDABLE
  21538. //
  21539. // MessageText:
  21540. //
  21541. // Moniker is not bindable
  21542. //
  21543. const auto MK_E_NOTBINDABLE = 0x800401E8;
  21544. //
  21545. // MessageId: MK_E_NOTBOUND
  21546. //
  21547. // MessageText:
  21548. //
  21549. // Moniker is not bound
  21550. //
  21551. const auto MK_E_NOTBOUND = 0x800401E9;
  21552. //
  21553. // MessageId: MK_E_CANTOPENFILE
  21554. //
  21555. // MessageText:
  21556. //
  21557. // Moniker cannot open file
  21558. //
  21559. const auto MK_E_CANTOPENFILE = 0x800401EA;
  21560. //
  21561. // MessageId: MK_E_MUSTBOTHERUSER
  21562. //
  21563. // MessageText:
  21564. //
  21565. // User input required for operation to succeed
  21566. //
  21567. const auto MK_E_MUSTBOTHERUSER = 0x800401EB;
  21568. //
  21569. // MessageId: MK_E_NOINVERSE
  21570. //
  21571. // MessageText:
  21572. //
  21573. // Moniker class has no inverse
  21574. //
  21575. const auto MK_E_NOINVERSE = 0x800401EC;
  21576. //
  21577. // MessageId: MK_E_NOSTORAGE
  21578. //
  21579. // MessageText:
  21580. //
  21581. // Moniker does not refer to storage
  21582. //
  21583. const auto MK_E_NOSTORAGE = 0x800401ED;
  21584. //
  21585. // MessageId: MK_E_NOPREFIX
  21586. //
  21587. // MessageText:
  21588. //
  21589. // No common prefix
  21590. //
  21591. const auto MK_E_NOPREFIX = 0x800401EE;
  21592. //
  21593. // MessageId: MK_E_ENUMERATION_FAILED
  21594. //
  21595. // MessageText:
  21596. //
  21597. // Moniker could not be enumerated
  21598. //
  21599. const auto MK_E_ENUMERATION_FAILED = 0x800401EF;
  21600. const auto CO_E_FIRST = 0x800401F0;
  21601. const auto CO_E_LAST = 0x800401FF;
  21602. const auto CO_S_FIRST = 0x000401F0;
  21603. //
  21604. const auto CO_S_LAST = 0x000401FF;
  21605. // MessageId: CO_E_NOTINITIALIZED
  21606. //
  21607. // MessageText:
  21608. //
  21609. // CoInitialize has not been called.
  21610. //
  21611. const auto CO_E_NOTINITIALIZED = 0x800401F0;
  21612. //
  21613. // MessageId: CO_E_ALREADYINITIALIZED
  21614. //
  21615. // MessageText:
  21616. //
  21617. // CoInitialize has already been called.
  21618. //
  21619. const auto CO_E_ALREADYINITIALIZED = 0x800401F1;
  21620. //
  21621. // MessageId: CO_E_CANTDETERMINECLASS
  21622. //
  21623. // MessageText:
  21624. //
  21625. // Class of object cannot be determined
  21626. //
  21627. const auto CO_E_CANTDETERMINECLASS = 0x800401F2;
  21628. //
  21629. // MessageId: CO_E_CLASSSTRING
  21630. //
  21631. // MessageText:
  21632. //
  21633. // Invalid class string
  21634. //
  21635. const auto CO_E_CLASSSTRING = 0x800401F3;
  21636. //
  21637. // MessageId: CO_E_IIDSTRING
  21638. //
  21639. // MessageText:
  21640. //
  21641. // Invalid interface string
  21642. //
  21643. const auto CO_E_IIDSTRING = 0x800401F4;
  21644. //
  21645. // MessageId: CO_E_APPNOTFOUND
  21646. //
  21647. // MessageText:
  21648. //
  21649. // Application not found
  21650. //
  21651. const auto CO_E_APPNOTFOUND = 0x800401F5;
  21652. //
  21653. // MessageId: CO_E_APPSINGLEUSE
  21654. //
  21655. // MessageText:
  21656. //
  21657. // Application cannot be run more than once
  21658. //
  21659. const auto CO_E_APPSINGLEUSE = 0x800401F6;
  21660. //
  21661. // MessageId: CO_E_ERRORINAPP
  21662. //
  21663. // MessageText:
  21664. //
  21665. // Some error in application program
  21666. //
  21667. const auto CO_E_ERRORINAPP = 0x800401F7;
  21668. //
  21669. // MessageId: CO_E_DLLNOTFOUND
  21670. //
  21671. // MessageText:
  21672. //
  21673. // DLL for class not found
  21674. //
  21675. const auto CO_E_DLLNOTFOUND = 0x800401F8;
  21676. //
  21677. // MessageId: CO_E_ERRORINDLL
  21678. //
  21679. // MessageText:
  21680. //
  21681. // Error in the DLL
  21682. //
  21683. const auto CO_E_ERRORINDLL = 0x800401F9;
  21684. //
  21685. // MessageId: CO_E_WRONGOSFORAPP
  21686. //
  21687. // MessageText:
  21688. //
  21689. // Wrong OS or OS version for application
  21690. //
  21691. const auto CO_E_WRONGOSFORAPP = 0x800401FA;
  21692. //
  21693. // MessageId: CO_E_OBJNOTREG
  21694. //
  21695. // MessageText:
  21696. //
  21697. // Object is not registered
  21698. //
  21699. const auto CO_E_OBJNOTREG = 0x800401FB;
  21700. //
  21701. // MessageId: CO_E_OBJISREG
  21702. //
  21703. // MessageText:
  21704. //
  21705. // Object is already registered
  21706. //
  21707. const auto CO_E_OBJISREG = 0x800401FC;
  21708. //
  21709. // MessageId: CO_E_OBJNOTCONNECTED
  21710. //
  21711. // MessageText:
  21712. //
  21713. // Object is not connected to server
  21714. //
  21715. const auto CO_E_OBJNOTCONNECTED = 0x800401FD;
  21716. //
  21717. // MessageId: CO_E_APPDIDNTREG
  21718. //
  21719. // MessageText:
  21720. //
  21721. // Application was launched but it didn't register a class factory
  21722. //
  21723. const auto CO_E_APPDIDNTREG = 0x800401FE;
  21724. //
  21725. // MessageId: CO_E_RELEASED
  21726. //
  21727. // MessageText:
  21728. //
  21729. // Object has been released
  21730. //
  21731. const auto CO_E_RELEASED = 0x800401FF;
  21732. const auto EVENT_E_FIRST = 0x80040200;
  21733. const auto EVENT_E_LAST = 0x8004021F;
  21734. const auto EVENT_S_FIRST = 0x00040200;
  21735. //
  21736. const auto EVENT_S_LAST = 0x0004021F;
  21737. // MessageId: EVENT_S_SOME_SUBSCRIBERS_FAILED
  21738. //
  21739. // MessageText:
  21740. //
  21741. // An event was able to invoke some but not all of the subscribers
  21742. //
  21743. const auto EVENT_S_SOME_SUBSCRIBERS_FAILED = 0x00040200;
  21744. //
  21745. // MessageId: EVENT_E_ALL_SUBSCRIBERS_FAILED
  21746. //
  21747. // MessageText:
  21748. //
  21749. // An event was unable to invoke any of the subscribers
  21750. //
  21751. const auto EVENT_E_ALL_SUBSCRIBERS_FAILED = 0x80040201;
  21752. //
  21753. // MessageId: EVENT_S_NOSUBSCRIBERS
  21754. //
  21755. // MessageText:
  21756. //
  21757. // An event was delivered but there were no subscribers
  21758. //
  21759. const auto EVENT_S_NOSUBSCRIBERS = 0x00040202;
  21760. //
  21761. // MessageId: EVENT_E_QUERYSYNTAX
  21762. //
  21763. // MessageText:
  21764. //
  21765. // A syntax error occurred trying to evaluate a query string
  21766. //
  21767. const auto EVENT_E_QUERYSYNTAX = 0x80040203;
  21768. //
  21769. // MessageId: EVENT_E_QUERYFIELD
  21770. //
  21771. // MessageText:
  21772. //
  21773. // An invalid field name was used in a query string
  21774. //
  21775. const auto EVENT_E_QUERYFIELD = 0x80040204;
  21776. //
  21777. // MessageId: EVENT_E_INTERNALEXCEPTION
  21778. //
  21779. // MessageText:
  21780. //
  21781. // An unexpected exception was raised
  21782. //
  21783. const auto EVENT_E_INTERNALEXCEPTION = 0x80040205;
  21784. //
  21785. // MessageId: EVENT_E_INTERNALERROR
  21786. //
  21787. // MessageText:
  21788. //
  21789. // An unexpected internal error was detected
  21790. //
  21791. const auto EVENT_E_INTERNALERROR = 0x80040206;
  21792. //
  21793. // MessageId: EVENT_E_INVALID_PER_USER_SID
  21794. //
  21795. // MessageText:
  21796. //
  21797. // The owner SID on a per-user subscription doesn't exist
  21798. //
  21799. const auto EVENT_E_INVALID_PER_USER_SID = 0x80040207;
  21800. //
  21801. // MessageId: EVENT_E_USER_EXCEPTION
  21802. //
  21803. // MessageText:
  21804. //
  21805. // A user-supplied component or subscriber raised an exception
  21806. //
  21807. const auto EVENT_E_USER_EXCEPTION = 0x80040208;
  21808. //
  21809. // MessageId: EVENT_E_TOO_MANY_METHODS
  21810. //
  21811. // MessageText:
  21812. //
  21813. // An interface has too many methods to fire events from
  21814. //
  21815. const auto EVENT_E_TOO_MANY_METHODS = 0x80040209;
  21816. //
  21817. // MessageId: EVENT_E_MISSING_EVENTCLASS
  21818. //
  21819. // MessageText:
  21820. //
  21821. // A subscription cannot be stored unless its event class already exists
  21822. //
  21823. const auto EVENT_E_MISSING_EVENTCLASS = 0x8004020A;
  21824. //
  21825. // MessageId: EVENT_E_NOT_ALL_REMOVED
  21826. //
  21827. // MessageText:
  21828. //
  21829. // Not all the objects requested could be removed
  21830. //
  21831. const auto EVENT_E_NOT_ALL_REMOVED = 0x8004020B;
  21832. //
  21833. // MessageId: EVENT_E_COMPLUS_NOT_INSTALLED
  21834. //
  21835. // MessageText:
  21836. //
  21837. // COM+ is required for this operation, but is not installed
  21838. //
  21839. const auto EVENT_E_COMPLUS_NOT_INSTALLED = 0x8004020C;
  21840. //
  21841. // MessageId: EVENT_E_CANT_MODIFY_OR_DELETE_UNCONFIGURED_OBJECT
  21842. //
  21843. // MessageText:
  21844. //
  21845. // Cannot modify or delete an object that was not added using the COM+ Admin SDK
  21846. //
  21847. const auto EVENT_E_CANT_MODIFY_OR_DELETE_UNCONFIGURED_OBJECT = 0x8004020D;
  21848. //
  21849. // MessageId: EVENT_E_CANT_MODIFY_OR_DELETE_CONFIGURED_OBJECT
  21850. //
  21851. // MessageText:
  21852. //
  21853. // Cannot modify or delete an object that was added using the COM+ Admin SDK
  21854. //
  21855. const auto EVENT_E_CANT_MODIFY_OR_DELETE_CONFIGURED_OBJECT = 0x8004020E;
  21856. //
  21857. // MessageId: EVENT_E_INVALID_EVENT_CLASS_PARTITION
  21858. //
  21859. // MessageText:
  21860. //
  21861. // The event class for this subscription is in an invalid partition
  21862. //
  21863. const auto EVENT_E_INVALID_EVENT_CLASS_PARTITION = 0x8004020F;
  21864. //
  21865. // MessageId: EVENT_E_PER_USER_SID_NOT_LOGGED_ON
  21866. //
  21867. // MessageText:
  21868. //
  21869. // The owner of the PerUser subscription is not logged on to the system specified
  21870. //
  21871. const auto EVENT_E_PER_USER_SID_NOT_LOGGED_ON = 0x80040210;
  21872. const auto XACT_E_FIRST = 0x8004D000;
  21873. const auto XACT_E_LAST = 0x8004D029;
  21874. const auto XACT_S_FIRST = 0x0004D000;
  21875. //
  21876. const auto XACT_S_LAST = 0x0004D010;
  21877. // MessageId: XACT_E_ALREADYOTHERSINGLEPHASE
  21878. //
  21879. // MessageText:
  21880. //
  21881. // Another single phase resource manager has already been enlisted in this transaction.
  21882. //
  21883. const auto XACT_E_ALREADYOTHERSINGLEPHASE = 0x8004D000;
  21884. //
  21885. // MessageId: XACT_E_CANTRETAIN
  21886. //
  21887. // MessageText:
  21888. //
  21889. // A retaining commit or abort is not supported
  21890. //
  21891. const auto XACT_E_CANTRETAIN = 0x8004D001;
  21892. //
  21893. // MessageId: XACT_E_COMMITFAILED
  21894. //
  21895. // MessageText:
  21896. //
  21897. // The transaction failed to commit for an unknown reason. The transaction was aborted.
  21898. //
  21899. const auto XACT_E_COMMITFAILED = 0x8004D002;
  21900. //
  21901. // MessageId: XACT_E_COMMITPREVENTED
  21902. //
  21903. // MessageText:
  21904. //
  21905. // Cannot call commit on this transaction object because the calling application did not initiate the transaction.
  21906. //
  21907. const auto XACT_E_COMMITPREVENTED = 0x8004D003;
  21908. //
  21909. // MessageId: XACT_E_HEURISTICABORT
  21910. //
  21911. // MessageText:
  21912. //
  21913. // Instead of committing, the resource heuristically aborted.
  21914. //
  21915. const auto XACT_E_HEURISTICABORT = 0x8004D004;
  21916. //
  21917. // MessageId: XACT_E_HEURISTICCOMMIT
  21918. //
  21919. // MessageText:
  21920. //
  21921. // Instead of aborting, the resource heuristically committed.
  21922. //
  21923. const auto XACT_E_HEURISTICCOMMIT = 0x8004D005;
  21924. //
  21925. // MessageId: XACT_E_HEURISTICDAMAGE
  21926. //
  21927. // MessageText:
  21928. //
  21929. // Some of the states of the resource were committed while others were aborted, likely because of heuristic decisions.
  21930. //
  21931. const auto XACT_E_HEURISTICDAMAGE = 0x8004D006;
  21932. //
  21933. // MessageId: XACT_E_HEURISTICDANGER
  21934. //
  21935. // MessageText:
  21936. //
  21937. // Some of the states of the resource may have been committed while others may have been aborted, likely because of heuristic decisions.
  21938. //
  21939. const auto XACT_E_HEURISTICDANGER = 0x8004D007;
  21940. //
  21941. // MessageId: XACT_E_ISOLATIONLEVEL
  21942. //
  21943. // MessageText:
  21944. //
  21945. // The requested isolation level is not valid or supported.
  21946. //
  21947. const auto XACT_E_ISOLATIONLEVEL = 0x8004D008;
  21948. //
  21949. // MessageId: XACT_E_NOASYNC
  21950. //
  21951. // MessageText:
  21952. //
  21953. // The transaction manager doesn't support an asynchronous operation for this method.
  21954. //
  21955. const auto XACT_E_NOASYNC = 0x8004D009;
  21956. //
  21957. // MessageId: XACT_E_NOENLIST
  21958. //
  21959. // MessageText:
  21960. //
  21961. // Unable to enlist in the transaction.
  21962. //
  21963. const auto XACT_E_NOENLIST = 0x8004D00A;
  21964. //
  21965. // MessageId: XACT_E_NOISORETAIN
  21966. //
  21967. // MessageText:
  21968. //
  21969. // The requested semantics of retention of isolation across retaining commit and abort boundaries cannot be supported by this transaction implementation, or isoFlags was not equal to zero.
  21970. //
  21971. const auto XACT_E_NOISORETAIN = 0x8004D00B;
  21972. //
  21973. // MessageId: XACT_E_NORESOURCE
  21974. //
  21975. // MessageText:
  21976. //
  21977. // There is no resource presently associated with this enlistment
  21978. //
  21979. const auto XACT_E_NORESOURCE = 0x8004D00C;
  21980. //
  21981. // MessageId: XACT_E_NOTCURRENT
  21982. //
  21983. // MessageText:
  21984. //
  21985. // The transaction failed to commit due to the failure of optimistic concurrency control in at least one of the resource managers.
  21986. //
  21987. const auto XACT_E_NOTCURRENT = 0x8004D00D;
  21988. //
  21989. // MessageId: XACT_E_NOTRANSACTION
  21990. //
  21991. // MessageText:
  21992. //
  21993. // The transaction has already been implicitly or explicitly committed or aborted
  21994. //
  21995. const auto XACT_E_NOTRANSACTION = 0x8004D00E;
  21996. //
  21997. // MessageId: XACT_E_NOTSUPPORTED
  21998. //
  21999. // MessageText:
  22000. //
  22001. // An invalid combination of flags was specified
  22002. //
  22003. const auto XACT_E_NOTSUPPORTED = 0x8004D00F;
  22004. //
  22005. // MessageId: XACT_E_UNKNOWNRMGRID
  22006. //
  22007. // MessageText:
  22008. //
  22009. // The resource manager id is not associated with this transaction or the transaction manager.
  22010. //
  22011. const auto XACT_E_UNKNOWNRMGRID = 0x8004D010;
  22012. //
  22013. // MessageId: XACT_E_WRONGSTATE
  22014. //
  22015. // MessageText:
  22016. //
  22017. // This method was called in the wrong state
  22018. //
  22019. const auto XACT_E_WRONGSTATE = 0x8004D011;
  22020. //
  22021. // MessageId: XACT_E_WRONGUOW
  22022. //
  22023. // MessageText:
  22024. //
  22025. // The indicated unit of work does not match the unit of work expected by the resource manager.
  22026. //
  22027. const auto XACT_E_WRONGUOW = 0x8004D012;
  22028. //
  22029. // MessageId: XACT_E_XTIONEXISTS
  22030. //
  22031. // MessageText:
  22032. //
  22033. // An enlistment in a transaction already exists.
  22034. //
  22035. const auto XACT_E_XTIONEXISTS = 0x8004D013;
  22036. //
  22037. // MessageId: XACT_E_NOIMPORTOBJECT
  22038. //
  22039. // MessageText:
  22040. //
  22041. // An import object for the transaction could not be found.
  22042. //
  22043. const auto XACT_E_NOIMPORTOBJECT = 0x8004D014;
  22044. //
  22045. // MessageId: XACT_E_INVALIDCOOKIE
  22046. //
  22047. // MessageText:
  22048. //
  22049. // The transaction cookie is invalid.
  22050. //
  22051. const auto XACT_E_INVALIDCOOKIE = 0x8004D015;
  22052. //
  22053. // MessageId: XACT_E_INDOUBT
  22054. //
  22055. // MessageText:
  22056. //
  22057. // The transaction status is in doubt. A communication failure occurred, or a transaction manager or resource manager has failed
  22058. //
  22059. const auto XACT_E_INDOUBT = 0x8004D016;
  22060. //
  22061. // MessageId: XACT_E_NOTIMEOUT
  22062. //
  22063. // MessageText:
  22064. //
  22065. // A time-out was specified, but time-outs are not supported.
  22066. //
  22067. const auto XACT_E_NOTIMEOUT = 0x8004D017;
  22068. //
  22069. // MessageId: XACT_E_ALREADYINPROGRESS
  22070. //
  22071. // MessageText:
  22072. //
  22073. // The requested operation is already in progress for the transaction.
  22074. //
  22075. const auto XACT_E_ALREADYINPROGRESS = 0x8004D018;
  22076. //
  22077. // MessageId: XACT_E_ABORTED
  22078. //
  22079. // MessageText:
  22080. //
  22081. // The transaction has already been aborted.
  22082. //
  22083. const auto XACT_E_ABORTED = 0x8004D019;
  22084. //
  22085. // MessageId: XACT_E_LOGFULL
  22086. //
  22087. // MessageText:
  22088. //
  22089. // The Transaction Manager returned a log full error.
  22090. //
  22091. const auto XACT_E_LOGFULL = 0x8004D01A;
  22092. //
  22093. // MessageId: XACT_E_TMNOTAVAILABLE
  22094. //
  22095. // MessageText:
  22096. //
  22097. // The Transaction Manager is not available.
  22098. //
  22099. const auto XACT_E_TMNOTAVAILABLE = 0x8004D01B;
  22100. //
  22101. // MessageId: XACT_E_CONNECTION_DOWN
  22102. //
  22103. // MessageText:
  22104. //
  22105. // A connection with the transaction manager was lost.
  22106. //
  22107. const auto XACT_E_CONNECTION_DOWN = 0x8004D01C;
  22108. //
  22109. // MessageId: XACT_E_CONNECTION_DENIED
  22110. //
  22111. // MessageText:
  22112. //
  22113. // A request to establish a connection with the transaction manager was denied.
  22114. //
  22115. const auto XACT_E_CONNECTION_DENIED = 0x8004D01D;
  22116. //
  22117. // MessageId: XACT_E_REENLISTTIMEOUT
  22118. //
  22119. // MessageText:
  22120. //
  22121. // Resource manager reenlistment to determine transaction status timed out.
  22122. //
  22123. const auto XACT_E_REENLISTTIMEOUT = 0x8004D01E;
  22124. //
  22125. // MessageId: XACT_E_TIP_CONNECT_FAILED
  22126. //
  22127. // MessageText:
  22128. //
  22129. // This transaction manager failed to establish a connection with another TIP transaction manager.
  22130. //
  22131. const auto XACT_E_TIP_CONNECT_FAILED = 0x8004D01F;
  22132. //
  22133. // MessageId: XACT_E_TIP_PROTOCOL_ERROR
  22134. //
  22135. // MessageText:
  22136. //
  22137. // This transaction manager encountered a protocol error with another TIP transaction manager.
  22138. //
  22139. const auto XACT_E_TIP_PROTOCOL_ERROR = 0x8004D020;
  22140. //
  22141. // MessageId: XACT_E_TIP_PULL_FAILED
  22142. //
  22143. // MessageText:
  22144. //
  22145. // This transaction manager could not propagate a transaction from another TIP transaction manager.
  22146. //
  22147. const auto XACT_E_TIP_PULL_FAILED = 0x8004D021;
  22148. //
  22149. // MessageId: XACT_E_DEST_TMNOTAVAILABLE
  22150. //
  22151. // MessageText:
  22152. //
  22153. // The Transaction Manager on the destination machine is not available.
  22154. //
  22155. const auto XACT_E_DEST_TMNOTAVAILABLE = 0x8004D022;
  22156. //
  22157. // MessageId: XACT_E_TIP_DISABLED
  22158. //
  22159. // MessageText:
  22160. //
  22161. // The Transaction Manager has disabled its support for TIP.
  22162. //
  22163. const auto XACT_E_TIP_DISABLED = 0x8004D023;
  22164. //
  22165. // MessageId: XACT_E_NETWORK_TX_DISABLED
  22166. //
  22167. // MessageText:
  22168. //
  22169. // The transaction manager has disabled its support for remote/network transactions.
  22170. //
  22171. const auto XACT_E_NETWORK_TX_DISABLED = 0x8004D024;
  22172. //
  22173. // MessageId: XACT_E_PARTNER_NETWORK_TX_DISABLED
  22174. //
  22175. // MessageText:
  22176. //
  22177. // The partner transaction manager has disabled its support for remote/network transactions.
  22178. //
  22179. const auto XACT_E_PARTNER_NETWORK_TX_DISABLED = 0x8004D025;
  22180. //
  22181. // MessageId: XACT_E_XA_TX_DISABLED
  22182. //
  22183. // MessageText:
  22184. //
  22185. // The transaction manager has disabled its support for XA transactions.
  22186. //
  22187. const auto XACT_E_XA_TX_DISABLED = 0x8004D026;
  22188. //
  22189. // MessageId: XACT_E_UNABLE_TO_READ_DTC_CONFIG
  22190. //
  22191. // MessageText:
  22192. //
  22193. // MSDTC was unable to read its configuration information.
  22194. //
  22195. const auto XACT_E_UNABLE_TO_READ_DTC_CONFIG = 0x8004D027;
  22196. //
  22197. // MessageId: XACT_E_UNABLE_TO_LOAD_DTC_PROXY
  22198. //
  22199. // MessageText:
  22200. //
  22201. // MSDTC was unable to load the dtc proxy dll.
  22202. //
  22203. const auto XACT_E_UNABLE_TO_LOAD_DTC_PROXY = 0x8004D028;
  22204. //
  22205. // MessageId: XACT_E_ABORTING
  22206. //
  22207. // MessageText:
  22208. //
  22209. // The local transaction has aborted.
  22210. //
  22211. const auto XACT_E_ABORTING = 0x8004D029;
  22212. //
  22213. // TXF & CRM errors start 4d080.
  22214. //
  22215. // MessageId: XACT_E_CLERKNOTFOUND
  22216. //
  22217. // MessageText:
  22218. //
  22219. // XACT_E_CLERKNOTFOUND
  22220. //
  22221. const auto XACT_E_CLERKNOTFOUND = 0x8004D080;
  22222. //
  22223. // MessageId: XACT_E_CLERKEXISTS
  22224. //
  22225. // MessageText:
  22226. //
  22227. // XACT_E_CLERKEXISTS
  22228. //
  22229. const auto XACT_E_CLERKEXISTS = 0x8004D081;
  22230. //
  22231. // MessageId: XACT_E_RECOVERYINPROGRESS
  22232. //
  22233. // MessageText:
  22234. //
  22235. // XACT_E_RECOVERYINPROGRESS
  22236. //
  22237. const auto XACT_E_RECOVERYINPROGRESS = 0x8004D082;
  22238. //
  22239. // MessageId: XACT_E_TRANSACTIONCLOSED
  22240. //
  22241. // MessageText:
  22242. //
  22243. // XACT_E_TRANSACTIONCLOSED
  22244. //
  22245. const auto XACT_E_TRANSACTIONCLOSED = 0x8004D083;
  22246. //
  22247. // MessageId: XACT_E_INVALIDLSN
  22248. //
  22249. // MessageText:
  22250. //
  22251. // XACT_E_INVALIDLSN
  22252. //
  22253. const auto XACT_E_INVALIDLSN = 0x8004D084;
  22254. //
  22255. // MessageId: XACT_E_REPLAYREQUEST
  22256. //
  22257. // MessageText:
  22258. //
  22259. // XACT_E_REPLAYREQUEST
  22260. //
  22261. const auto XACT_E_REPLAYREQUEST = 0x8004D085;
  22262. // Begin XACT_DTC_CONSTANTS enumerated values defined in txdtc.h
  22263. // SymbolicName=XACT_E_CONNECTION_REQUEST_DENIED
  22264. //
  22265. // MessageId: 0x8004D100L (No symbolic name defined)
  22266. //
  22267. // MessageText:
  22268. //
  22269. // The request to connect to the specified transaction coordinator was denied.
  22270. //
  22271. // SymbolicName=XACT_E_TOOMANY_ENLISTMENTS
  22272. //
  22273. // MessageId: 0x8004D101L (No symbolic name defined)
  22274. //
  22275. // MessageText:
  22276. //
  22277. // The maximum number of enlistments for the specified transaction has been reached.
  22278. //
  22279. // SymbolicName=XACT_E_DUPLICATE_GUID
  22280. //
  22281. // MessageId: 0x8004D102L (No symbolic name defined)
  22282. //
  22283. // MessageText:
  22284. //
  22285. // A resource manager with the same identifier is already registered with the specified transaction coordinator.
  22286. //
  22287. // SymbolicName=XACT_E_NOTSINGLEPHASE
  22288. //
  22289. // MessageId: 0x8004D103L (No symbolic name defined)
  22290. //
  22291. // MessageText:
  22292. //
  22293. // The prepare request given was not eligible for single phase optimizations.
  22294. //
  22295. // SymbolicName=XACT_E_RECOVERYALREADYDONE
  22296. //
  22297. // MessageId: 0x8004D104L (No symbolic name defined)
  22298. //
  22299. // MessageText:
  22300. //
  22301. // RecoveryComplete has already been called for the given resource manager.
  22302. //
  22303. // SymbolicName=XACT_E_PROTOCOL
  22304. //
  22305. // MessageId: 0x8004D105L (No symbolic name defined)
  22306. //
  22307. // MessageText:
  22308. //
  22309. // The interface call made was incorrect for the current state of the protocol.
  22310. //
  22311. // SymbolicName=XACT_E_RM_FAILURE
  22312. //
  22313. // MessageId: 0x8004D106L (No symbolic name defined)
  22314. //
  22315. // MessageText:
  22316. //
  22317. // xa_open call failed for the XA resource.
  22318. //
  22319. // SymbolicName=XACT_E_RECOVERY_FAILED
  22320. //
  22321. // MessageId: 0x8004D107L (No symbolic name defined)
  22322. //
  22323. // MessageText:
  22324. //
  22325. // xa_recover call failed for the XA resource.
  22326. //
  22327. // SymbolicName=XACT_E_LU_NOT_FOUND
  22328. //
  22329. // MessageId: 0x8004D108L (No symbolic name defined)
  22330. //
  22331. // MessageText:
  22332. //
  22333. // The Logical Unit of Work specified cannot be found.
  22334. //
  22335. // SymbolicName=XACT_E_DUPLICATE_LU
  22336. //
  22337. // MessageId: 0x8004D109L (No symbolic name defined)
  22338. //
  22339. // MessageText:
  22340. //
  22341. // The specified Logical Unit of Work already exists.
  22342. //
  22343. // SymbolicName=XACT_E_LU_NOT_CONNECTED
  22344. //
  22345. // MessageId: 0x8004D10AL (No symbolic name defined)
  22346. //
  22347. // MessageText:
  22348. //
  22349. // Subordinate creation failed. The specified Logical Unit of Work was not connected.
  22350. //
  22351. // SymbolicName=XACT_E_DUPLICATE_TRANSID
  22352. //
  22353. // MessageId: 0x8004D10BL (No symbolic name defined)
  22354. //
  22355. // MessageText:
  22356. //
  22357. // A transaction with the given identifier already exists.
  22358. //
  22359. // SymbolicName=XACT_E_LU_BUSY
  22360. //
  22361. // MessageId: 0x8004D10CL (No symbolic name defined)
  22362. //
  22363. // MessageText:
  22364. //
  22365. // The resource is in use.
  22366. //
  22367. // SymbolicName=XACT_E_LU_NO_RECOVERY_PROCESS
  22368. //
  22369. // MessageId: 0x8004D10DL (No symbolic name defined)
  22370. //
  22371. // MessageText:
  22372. //
  22373. // The LU Recovery process is down.
  22374. //
  22375. // SymbolicName=XACT_E_LU_DOWN
  22376. //
  22377. // MessageId: 0x8004D10EL (No symbolic name defined)
  22378. //
  22379. // MessageText:
  22380. //
  22381. // The remote session was lost.
  22382. //
  22383. // SymbolicName=XACT_E_LU_RECOVERING
  22384. //
  22385. // MessageId: 0x8004D10FL (No symbolic name defined)
  22386. //
  22387. // MessageText:
  22388. //
  22389. // The resource is currently recovering.
  22390. //
  22391. // SymbolicName=XACT_E_LU_RECOVERY_MISMATCH
  22392. //
  22393. // MessageId: 0x8004D110L (No symbolic name defined)
  22394. //
  22395. // MessageText:
  22396. //
  22397. // There was a mismatch in driving recovery.
  22398. //
  22399. // SymbolicName=XACT_E_RM_UNAVAILABLE
  22400. //
  22401. // MessageId: 0x8004D111L (No symbolic name defined)
  22402. //
  22403. // MessageText:
  22404. //
  22405. // An error occurred with the XA resource.
  22406. //
  22407. // End XACT_DTC_CONSTANTS enumerated values defined in txdtc.h
  22408. //
  22409. // OleTx Success codes.
  22410. //
  22411. //
  22412. // MessageId: XACT_S_ASYNC
  22413. //
  22414. // MessageText:
  22415. //
  22416. // An asynchronous operation was specified. The operation has begun, but its outcome is not known yet.
  22417. //
  22418. const auto XACT_S_ASYNC = 0x0004D000;
  22419. //
  22420. // MessageId: XACT_S_DEFECT
  22421. //
  22422. // MessageText:
  22423. //
  22424. // XACT_S_DEFECT
  22425. //
  22426. const auto XACT_S_DEFECT = 0x0004D001;
  22427. //
  22428. // MessageId: XACT_S_READONLY
  22429. //
  22430. // MessageText:
  22431. //
  22432. // The method call succeeded because the transaction was read-only.
  22433. //
  22434. const auto XACT_S_READONLY = 0x0004D002;
  22435. //
  22436. // MessageId: XACT_S_SOMENORETAIN
  22437. //
  22438. // MessageText:
  22439. //
  22440. // The transaction was successfully aborted. However, this is a coordinated transaction, and some number of enlisted resources were aborted outright because they could not support abort-retaining semantics
  22441. //
  22442. const auto XACT_S_SOMENORETAIN = 0x0004D003;
  22443. //
  22444. // MessageId: XACT_S_OKINFORM
  22445. //
  22446. // MessageText:
  22447. //
  22448. // No changes were made during this call, but the sink wants another chance to look if any other sinks make further changes.
  22449. //
  22450. const auto XACT_S_OKINFORM = 0x0004D004;
  22451. //
  22452. // MessageId: XACT_S_MADECHANGESCONTENT
  22453. //
  22454. // MessageText:
  22455. //
  22456. // The sink is content and wishes the transaction to proceed. Changes were made to one or more resources during this call.
  22457. //
  22458. const auto XACT_S_MADECHANGESCONTENT = 0x0004D005;
  22459. //
  22460. // MessageId: XACT_S_MADECHANGESINFORM
  22461. //
  22462. // MessageText:
  22463. //
  22464. // The sink is for the moment and wishes the transaction to proceed, but if other changes are made following this return by other event sinks then this sink wants another chance to look
  22465. //
  22466. const auto XACT_S_MADECHANGESINFORM = 0x0004D006;
  22467. //
  22468. // MessageId: XACT_S_ALLNORETAIN
  22469. //
  22470. // MessageText:
  22471. //
  22472. // The transaction was successfully aborted. However, the abort was non-retaining.
  22473. //
  22474. const auto XACT_S_ALLNORETAIN = 0x0004D007;
  22475. //
  22476. // MessageId: XACT_S_ABORTING
  22477. //
  22478. // MessageText:
  22479. //
  22480. // An abort operation was already in progress.
  22481. //
  22482. const auto XACT_S_ABORTING = 0x0004D008;
  22483. //
  22484. // MessageId: XACT_S_SINGLEPHASE
  22485. //
  22486. // MessageText:
  22487. //
  22488. // The resource manager has performed a single-phase commit of the transaction.
  22489. //
  22490. const auto XACT_S_SINGLEPHASE = 0x0004D009;
  22491. //
  22492. // MessageId: XACT_S_LOCALLY_OK
  22493. //
  22494. // MessageText:
  22495. //
  22496. // The local transaction has not aborted.
  22497. //
  22498. const auto XACT_S_LOCALLY_OK = 0x0004D00A;
  22499. //
  22500. // MessageId: XACT_S_LASTRESOURCEMANAGER
  22501. //
  22502. // MessageText:
  22503. //
  22504. // The resource manager has requested to be the coordinator (last resource manager) for the transaction.
  22505. //
  22506. const auto XACT_S_LASTRESOURCEMANAGER = 0x0004D010;
  22507. const auto CONTEXT_E_FIRST = 0x8004E000;
  22508. const auto CONTEXT_E_LAST = 0x8004E02F;
  22509. const auto CONTEXT_S_FIRST = 0x0004E000;
  22510. //
  22511. const auto CONTEXT_S_LAST = 0x0004E02F;
  22512. // MessageId: CONTEXT_E_ABORTED
  22513. //
  22514. // MessageText:
  22515. //
  22516. // The root transaction wanted to commit, but transaction aborted
  22517. //
  22518. const auto CONTEXT_E_ABORTED = 0x8004E002;
  22519. //
  22520. // MessageId: CONTEXT_E_ABORTING
  22521. //
  22522. // MessageText:
  22523. //
  22524. // You made a method call on a COM+ component that has a transaction that has already aborted or in the process of aborting.
  22525. //
  22526. const auto CONTEXT_E_ABORTING = 0x8004E003;
  22527. //
  22528. // MessageId: CONTEXT_E_NOCONTEXT
  22529. //
  22530. // MessageText:
  22531. //
  22532. // There is no MTS object context
  22533. //
  22534. const auto CONTEXT_E_NOCONTEXT = 0x8004E004;
  22535. //
  22536. // MessageId: CONTEXT_E_WOULD_DEADLOCK
  22537. //
  22538. // MessageText:
  22539. //
  22540. // The component is configured to use synchronization and this method call would cause a deadlock to occur.
  22541. //
  22542. const auto CONTEXT_E_WOULD_DEADLOCK = 0x8004E005;
  22543. //
  22544. // MessageId: CONTEXT_E_SYNCH_TIMEOUT
  22545. //
  22546. // MessageText:
  22547. //
  22548. // The component is configured to use synchronization and a thread has timed out waiting to enter the context.
  22549. //
  22550. const auto CONTEXT_E_SYNCH_TIMEOUT = 0x8004E006;
  22551. //
  22552. // MessageId: CONTEXT_E_OLDREF
  22553. //
  22554. // MessageText:
  22555. //
  22556. // You made a method call on a COM+ component that has a transaction that has already committed or aborted.
  22557. //
  22558. const auto CONTEXT_E_OLDREF = 0x8004E007;
  22559. //
  22560. // MessageId: CONTEXT_E_ROLENOTFOUND
  22561. //
  22562. // MessageText:
  22563. //
  22564. // The specified role was not configured for the application
  22565. //
  22566. const auto CONTEXT_E_ROLENOTFOUND = 0x8004E00C;
  22567. //
  22568. // MessageId: CONTEXT_E_TMNOTAVAILABLE
  22569. //
  22570. // MessageText:
  22571. //
  22572. // COM+ was unable to talk to the Microsoft Distributed Transaction Coordinator
  22573. //
  22574. const auto CONTEXT_E_TMNOTAVAILABLE = 0x8004E00F;
  22575. //
  22576. // MessageId: CO_E_ACTIVATIONFAILED
  22577. //
  22578. // MessageText:
  22579. //
  22580. // An unexpected error occurred during COM+ Activation.
  22581. //
  22582. const auto CO_E_ACTIVATIONFAILED = 0x8004E021;
  22583. //
  22584. // MessageId: CO_E_ACTIVATIONFAILED_EVENTLOGGED
  22585. //
  22586. // MessageText:
  22587. //
  22588. // COM+ Activation failed. Check the event log for more information
  22589. //
  22590. const auto CO_E_ACTIVATIONFAILED_EVENTLOGGED = 0x8004E022;
  22591. //
  22592. // MessageId: CO_E_ACTIVATIONFAILED_CATALOGERROR
  22593. //
  22594. // MessageText:
  22595. //
  22596. // COM+ Activation failed due to a catalog or configuration error.
  22597. //
  22598. const auto CO_E_ACTIVATIONFAILED_CATALOGERROR = 0x8004E023;
  22599. //
  22600. // MessageId: CO_E_ACTIVATIONFAILED_TIMEOUT
  22601. //
  22602. // MessageText:
  22603. //
  22604. // COM+ activation failed because the activation could not be completed in the specified amount of time.
  22605. //
  22606. const auto CO_E_ACTIVATIONFAILED_TIMEOUT = 0x8004E024;
  22607. //
  22608. // MessageId: CO_E_INITIALIZATIONFAILED
  22609. //
  22610. // MessageText:
  22611. //
  22612. // COM+ Activation failed because an initialization function failed. Check the event log for more information.
  22613. //
  22614. const auto CO_E_INITIALIZATIONFAILED = 0x8004E025;
  22615. //
  22616. // MessageId: CONTEXT_E_NOJIT
  22617. //
  22618. // MessageText:
  22619. //
  22620. // The requested operation requires that JIT be in the current context and it is not
  22621. //
  22622. const auto CONTEXT_E_NOJIT = 0x8004E026;
  22623. //
  22624. // MessageId: CONTEXT_E_NOTRANSACTION
  22625. //
  22626. // MessageText:
  22627. //
  22628. // The requested operation requires that the current context have a Transaction, and it does not
  22629. //
  22630. const auto CONTEXT_E_NOTRANSACTION = 0x8004E027;
  22631. //
  22632. // MessageId: CO_E_THREADINGMODEL_CHANGED
  22633. //
  22634. // MessageText:
  22635. //
  22636. // The components threading model has changed after install into a COM+ Application. Please re-install component.
  22637. //
  22638. const auto CO_E_THREADINGMODEL_CHANGED = 0x8004E028;
  22639. //
  22640. // MessageId: CO_E_NOIISINTRINSICS
  22641. //
  22642. // MessageText:
  22643. //
  22644. // IIS intrinsics not available. Start your work with IIS.
  22645. //
  22646. const auto CO_E_NOIISINTRINSICS = 0x8004E029;
  22647. //
  22648. // MessageId: CO_E_NOCOOKIES
  22649. //
  22650. // MessageText:
  22651. //
  22652. // An attempt to write a cookie failed.
  22653. //
  22654. const auto CO_E_NOCOOKIES = 0x8004E02A;
  22655. //
  22656. // MessageId: CO_E_DBERROR
  22657. //
  22658. // MessageText:
  22659. //
  22660. // An attempt to use a database generated a database specific error.
  22661. //
  22662. const auto CO_E_DBERROR = 0x8004E02B;
  22663. //
  22664. // MessageId: CO_E_NOTPOOLED
  22665. //
  22666. // MessageText:
  22667. //
  22668. // The COM+ component you created must use object pooling to work.
  22669. //
  22670. const auto CO_E_NOTPOOLED = 0x8004E02C;
  22671. //
  22672. // MessageId: CO_E_NOTCONSTRUCTED
  22673. //
  22674. // MessageText:
  22675. //
  22676. // The COM+ component you created must use object construction to work correctly.
  22677. //
  22678. const auto CO_E_NOTCONSTRUCTED = 0x8004E02D;
  22679. //
  22680. // MessageId: CO_E_NOSYNCHRONIZATION
  22681. //
  22682. // MessageText:
  22683. //
  22684. // The COM+ component requires synchronization, and it is not configured for it.
  22685. //
  22686. const auto CO_E_NOSYNCHRONIZATION = 0x8004E02E;
  22687. //
  22688. // MessageId: CO_E_ISOLEVELMISMATCH
  22689. //
  22690. // MessageText:
  22691. //
  22692. // The TxIsolation Level property for the COM+ component being created is stronger than the TxIsolationLevel for the "root" component for the transaction. The creation failed.
  22693. //
  22694. const auto CO_E_ISOLEVELMISMATCH = 0x8004E02F;
  22695. //
  22696. // MessageId: CO_E_CALL_OUT_OF_TX_SCOPE_NOT_ALLOWED
  22697. //
  22698. // MessageText:
  22699. //
  22700. // The component attempted to make a cross-context call between invocations of EnterTransactionScopeand ExitTransactionScope. This is not allowed. Cross-context calls cannot be made while inside of a transaction scope.
  22701. //
  22702. const auto CO_E_CALL_OUT_OF_TX_SCOPE_NOT_ALLOWED = 0x8004E030;
  22703. //
  22704. // MessageId: CO_E_EXIT_TRANSACTION_SCOPE_NOT_CALLED
  22705. //
  22706. // MessageText:
  22707. //
  22708. // The component made a call to EnterTransactionScope, but did not make a corresponding call to ExitTransactionScope before returning.
  22709. //
  22710. const auto CO_E_EXIT_TRANSACTION_SCOPE_NOT_CALLED = 0x8004E031;
  22711. //
  22712. // Old OLE Success Codes
  22713. //
  22714. //
  22715. // MessageId: OLE_S_USEREG
  22716. //
  22717. // MessageText:
  22718. //
  22719. // Use the registry database to provide the requested information
  22720. //
  22721. const auto OLE_S_USEREG = 0x00040000;
  22722. //
  22723. // MessageId: OLE_S_STATIC
  22724. //
  22725. // MessageText:
  22726. //
  22727. // Success, but static
  22728. //
  22729. const auto OLE_S_STATIC = 0x00040001;
  22730. //
  22731. // MessageId: OLE_S_MAC_CLIPFORMAT
  22732. //
  22733. // MessageText:
  22734. //
  22735. // Macintosh clipboard format
  22736. //
  22737. const auto OLE_S_MAC_CLIPFORMAT = 0x00040002;
  22738. //
  22739. // MessageId: DRAGDROP_S_DROP
  22740. //
  22741. // MessageText:
  22742. //
  22743. // Successful drop took place
  22744. //
  22745. const auto DRAGDROP_S_DROP = 0x00040100;
  22746. //
  22747. // MessageId: DRAGDROP_S_CANCEL
  22748. //
  22749. // MessageText:
  22750. //
  22751. // Drag-drop operation canceled
  22752. //
  22753. const auto DRAGDROP_S_CANCEL = 0x00040101;
  22754. //
  22755. // MessageId: DRAGDROP_S_USEDEFAULTCURSORS
  22756. //
  22757. // MessageText:
  22758. //
  22759. // Use the default cursor
  22760. //
  22761. const auto DRAGDROP_S_USEDEFAULTCURSORS = 0x00040102;
  22762. //
  22763. // MessageId: DATA_S_SAMEFORMATETC
  22764. //
  22765. // MessageText:
  22766. //
  22767. // Data has same FORMATETC
  22768. //
  22769. const auto DATA_S_SAMEFORMATETC = 0x00040130;
  22770. //
  22771. // MessageId: VIEW_S_ALREADY_FROZEN
  22772. //
  22773. // MessageText:
  22774. //
  22775. // View is already frozen
  22776. //
  22777. const auto VIEW_S_ALREADY_FROZEN = 0x00040140;
  22778. //
  22779. // MessageId: CACHE_S_FORMATETC_NOTSUPPORTED
  22780. //
  22781. // MessageText:
  22782. //
  22783. // FORMATETC not supported
  22784. //
  22785. const auto CACHE_S_FORMATETC_NOTSUPPORTED = 0x00040170;
  22786. //
  22787. // MessageId: CACHE_S_SAMECACHE
  22788. //
  22789. // MessageText:
  22790. //
  22791. // Same cache
  22792. //
  22793. const auto CACHE_S_SAMECACHE = 0x00040171;
  22794. //
  22795. // MessageId: CACHE_S_SOMECACHES_NOTUPDATED
  22796. //
  22797. // MessageText:
  22798. //
  22799. // Some cache(s) not updated
  22800. //
  22801. const auto CACHE_S_SOMECACHES_NOTUPDATED = 0x00040172;
  22802. //
  22803. // MessageId: OLEOBJ_S_INVALIDVERB
  22804. //
  22805. // MessageText:
  22806. //
  22807. // Invalid verb for OLE object
  22808. //
  22809. const auto OLEOBJ_S_INVALIDVERB = 0x00040180;
  22810. //
  22811. // MessageId: OLEOBJ_S_CANNOT_DOVERB_NOW
  22812. //
  22813. // MessageText:
  22814. //
  22815. // Verb number is valid but verb cannot be done now
  22816. //
  22817. const auto OLEOBJ_S_CANNOT_DOVERB_NOW = 0x00040181;
  22818. //
  22819. // MessageId: OLEOBJ_S_INVALIDHWND
  22820. //
  22821. // MessageText:
  22822. //
  22823. // Invalid window handle passed
  22824. //
  22825. const auto OLEOBJ_S_INVALIDHWND = 0x00040182;
  22826. //
  22827. // MessageId: INPLACE_S_TRUNCATED
  22828. //
  22829. // MessageText:
  22830. //
  22831. // Message is too long; some of it had to be truncated before displaying
  22832. //
  22833. const auto INPLACE_S_TRUNCATED = 0x000401A0;
  22834. //
  22835. // MessageId: CONVERT10_S_NO_PRESENTATION
  22836. //
  22837. // MessageText:
  22838. //
  22839. // Unable to convert OLESTREAM to IStorage
  22840. //
  22841. const auto CONVERT10_S_NO_PRESENTATION = 0x000401C0;
  22842. //
  22843. // MessageId: MK_S_REDUCED_TO_SELF
  22844. //
  22845. // MessageText:
  22846. //
  22847. // Moniker reduced to itself
  22848. //
  22849. const auto MK_S_REDUCED_TO_SELF = 0x000401E2;
  22850. //
  22851. // MessageId: MK_S_ME
  22852. //
  22853. // MessageText:
  22854. //
  22855. // Common prefix is this moniker
  22856. //
  22857. const auto MK_S_ME = 0x000401E4;
  22858. //
  22859. // MessageId: MK_S_HIM
  22860. //
  22861. // MessageText:
  22862. //
  22863. // Common prefix is input moniker
  22864. //
  22865. const auto MK_S_HIM = 0x000401E5;
  22866. //
  22867. // MessageId: MK_S_US
  22868. //
  22869. // MessageText:
  22870. //
  22871. // Common prefix is both monikers
  22872. //
  22873. const auto MK_S_US = 0x000401E6;
  22874. //
  22875. // MessageId: MK_S_MONIKERALREADYREGISTERED
  22876. //
  22877. // MessageText:
  22878. //
  22879. // Moniker is already registered in running object table
  22880. //
  22881. const auto MK_S_MONIKERALREADYREGISTERED = 0x000401E7;
  22882. //
  22883. // Task Scheduler errors
  22884. //
  22885. //
  22886. // MessageId: SCHED_S_TASK_READY
  22887. //
  22888. // MessageText:
  22889. //
  22890. // The task is ready to run at its next scheduled time.
  22891. //
  22892. const auto SCHED_S_TASK_READY = 0x00041300;
  22893. //
  22894. // MessageId: SCHED_S_TASK_RUNNING
  22895. //
  22896. // MessageText:
  22897. //
  22898. // The task is currently running.
  22899. //
  22900. const auto SCHED_S_TASK_RUNNING = 0x00041301;
  22901. //
  22902. // MessageId: SCHED_S_TASK_DISABLED
  22903. //
  22904. // MessageText:
  22905. //
  22906. // The task will not run at the scheduled times because it has been disabled.
  22907. //
  22908. const auto SCHED_S_TASK_DISABLED = 0x00041302;
  22909. //
  22910. // MessageId: SCHED_S_TASK_HAS_NOT_RUN
  22911. //
  22912. // MessageText:
  22913. //
  22914. // The task has not yet run.
  22915. //
  22916. const auto SCHED_S_TASK_HAS_NOT_RUN = 0x00041303;
  22917. //
  22918. // MessageId: SCHED_S_TASK_NO_MORE_RUNS
  22919. //
  22920. // MessageText:
  22921. //
  22922. // There are no more runs scheduled for this task.
  22923. //
  22924. const auto SCHED_S_TASK_NO_MORE_RUNS = 0x00041304;
  22925. //
  22926. // MessageId: SCHED_S_TASK_NOT_SCHEDULED
  22927. //
  22928. // MessageText:
  22929. //
  22930. // One or more of the properties that are needed to run this task on a schedule have not been set.
  22931. //
  22932. const auto SCHED_S_TASK_NOT_SCHEDULED = 0x00041305;
  22933. //
  22934. // MessageId: SCHED_S_TASK_TERMINATED
  22935. //
  22936. // MessageText:
  22937. //
  22938. // The last run of the task was terminated by the user.
  22939. //
  22940. const auto SCHED_S_TASK_TERMINATED = 0x00041306;
  22941. //
  22942. // MessageId: SCHED_S_TASK_NO_VALID_TRIGGERS
  22943. //
  22944. // MessageText:
  22945. //
  22946. // Either the task has no triggers or the existing triggers are disabled or not set.
  22947. //
  22948. const auto SCHED_S_TASK_NO_VALID_TRIGGERS = 0x00041307;
  22949. //
  22950. // MessageId: SCHED_S_EVENT_TRIGGER
  22951. //
  22952. // MessageText:
  22953. //
  22954. // Event triggers don't have set run times.
  22955. //
  22956. const auto SCHED_S_EVENT_TRIGGER = 0x00041308;
  22957. //
  22958. // MessageId: SCHED_E_TRIGGER_NOT_FOUND
  22959. //
  22960. // MessageText:
  22961. //
  22962. // Trigger not found.
  22963. //
  22964. const auto SCHED_E_TRIGGER_NOT_FOUND = 0x80041309;
  22965. //
  22966. // MessageId: SCHED_E_TASK_NOT_READY
  22967. //
  22968. // MessageText:
  22969. //
  22970. // One or more of the properties that are needed to run this task have not been set.
  22971. //
  22972. const auto SCHED_E_TASK_NOT_READY = 0x8004130A;
  22973. //
  22974. // MessageId: SCHED_E_TASK_NOT_RUNNING
  22975. //
  22976. // MessageText:
  22977. //
  22978. // There is no running instance of the task.
  22979. //
  22980. const auto SCHED_E_TASK_NOT_RUNNING = 0x8004130B;
  22981. //
  22982. // MessageId: SCHED_E_SERVICE_NOT_INSTALLED
  22983. //
  22984. // MessageText:
  22985. //
  22986. // The Task Scheduler Service is not installed on this computer.
  22987. //
  22988. const auto SCHED_E_SERVICE_NOT_INSTALLED = 0x8004130C;
  22989. //
  22990. // MessageId: SCHED_E_CANNOT_OPEN_TASK
  22991. //
  22992. // MessageText:
  22993. //
  22994. // The task object could not be opened.
  22995. //
  22996. const auto SCHED_E_CANNOT_OPEN_TASK = 0x8004130D;
  22997. //
  22998. // MessageId: SCHED_E_INVALID_TASK
  22999. //
  23000. // MessageText:
  23001. //
  23002. // The object is either an invalid task object or is not a task object.
  23003. //
  23004. const auto SCHED_E_INVALID_TASK = 0x8004130E;
  23005. //
  23006. // MessageId: SCHED_E_ACCOUNT_INFORMATION_NOT_SET
  23007. //
  23008. // MessageText:
  23009. //
  23010. // No account information could be found in the Task Scheduler security database for the task indicated.
  23011. //
  23012. const auto SCHED_E_ACCOUNT_INFORMATION_NOT_SET = 0x8004130F;
  23013. //
  23014. // MessageId: SCHED_E_ACCOUNT_NAME_NOT_FOUND
  23015. //
  23016. // MessageText:
  23017. //
  23018. // Unable to establish existence of the account specified.
  23019. //
  23020. const auto SCHED_E_ACCOUNT_NAME_NOT_FOUND = 0x80041310;
  23021. //
  23022. // MessageId: SCHED_E_ACCOUNT_DBASE_CORRUPT
  23023. //
  23024. // MessageText:
  23025. //
  23026. // Corruption was detected in the Task Scheduler security database; the database has been reset.
  23027. //
  23028. const auto SCHED_E_ACCOUNT_DBASE_CORRUPT = 0x80041311;
  23029. //
  23030. // MessageId: SCHED_E_NO_SECURITY_SERVICES
  23031. //
  23032. // MessageText:
  23033. //
  23034. // Task Scheduler security services are available only on Windows NT.
  23035. //
  23036. const auto SCHED_E_NO_SECURITY_SERVICES = 0x80041312;
  23037. //
  23038. // MessageId: SCHED_E_UNKNOWN_OBJECT_VERSION
  23039. //
  23040. // MessageText:
  23041. //
  23042. // The task object version is either unsupported or invalid.
  23043. //
  23044. const auto SCHED_E_UNKNOWN_OBJECT_VERSION = 0x80041313;
  23045. //
  23046. // MessageId: SCHED_E_UNSUPPORTED_ACCOUNT_OPTION
  23047. //
  23048. // MessageText:
  23049. //
  23050. // The task has been configured with an unsupported combination of account settings and run time options.
  23051. //
  23052. const auto SCHED_E_UNSUPPORTED_ACCOUNT_OPTION = 0x80041314;
  23053. //
  23054. // MessageId: SCHED_E_SERVICE_NOT_RUNNING
  23055. //
  23056. // MessageText:
  23057. //
  23058. // The Task Scheduler Service is not running.
  23059. //
  23060. const auto SCHED_E_SERVICE_NOT_RUNNING = 0x80041315;
  23061. //
  23062. // MessageId: SCHED_E_UNEXPECTEDNODE
  23063. //
  23064. // MessageText:
  23065. //
  23066. // The task XML contains an unexpected node.
  23067. //
  23068. const auto SCHED_E_UNEXPECTEDNODE = 0x80041316;
  23069. //
  23070. // MessageId: SCHED_E_NAMESPACE
  23071. //
  23072. // MessageText:
  23073. //
  23074. // The task XML contains an element or attribute from an unexpected namespace.
  23075. //
  23076. const auto SCHED_E_NAMESPACE = 0x80041317;
  23077. //
  23078. // MessageId: SCHED_E_INVALIDVALUE
  23079. //
  23080. // MessageText:
  23081. //
  23082. // The task XML contains a value which is incorrectly formatted or out of range.
  23083. //
  23084. const auto SCHED_E_INVALIDVALUE = 0x80041318;
  23085. //
  23086. // MessageId: SCHED_E_MISSINGNODE
  23087. //
  23088. // MessageText:
  23089. //
  23090. // The task XML is missing a required element or attribute.
  23091. //
  23092. const auto SCHED_E_MISSINGNODE = 0x80041319;
  23093. //
  23094. // MessageId: SCHED_E_MALFORMEDXML
  23095. //
  23096. // MessageText:
  23097. //
  23098. // The task XML is malformed.
  23099. //
  23100. const auto SCHED_E_MALFORMEDXML = 0x8004131A;
  23101. //
  23102. // MessageId: SCHED_S_SOME_TRIGGERS_FAILED
  23103. //
  23104. // MessageText:
  23105. //
  23106. // The task is registered, but not all specified triggers will start the task.
  23107. //
  23108. const auto SCHED_S_SOME_TRIGGERS_FAILED = 0x0004131B;
  23109. //
  23110. // MessageId: SCHED_S_BATCH_LOGON_PROBLEM
  23111. //
  23112. // MessageText:
  23113. //
  23114. // The task is registered, but may fail to start. Batch logon privilege needs to be enabled for the task principal.
  23115. //
  23116. const auto SCHED_S_BATCH_LOGON_PROBLEM = 0x0004131C;
  23117. //
  23118. // MessageId: SCHED_E_TOO_MANY_NODES
  23119. //
  23120. // MessageText:
  23121. //
  23122. // The task XML contains too many nodes of the same type.
  23123. //
  23124. const auto SCHED_E_TOO_MANY_NODES = 0x8004131D;
  23125. //
  23126. // MessageId: SCHED_E_PAST_END_BOUNDARY
  23127. //
  23128. // MessageText:
  23129. //
  23130. // The task cannot be started after the trigger's end boundary.
  23131. //
  23132. const auto SCHED_E_PAST_END_BOUNDARY = 0x8004131E;
  23133. //
  23134. // MessageId: SCHED_E_ALREADY_RUNNING
  23135. //
  23136. // MessageText:
  23137. //
  23138. // An instance of this task is already running.
  23139. //
  23140. const auto SCHED_E_ALREADY_RUNNING = 0x8004131F;
  23141. //
  23142. // MessageId: SCHED_E_USER_NOT_LOGGED_ON
  23143. //
  23144. // MessageText:
  23145. //
  23146. // The task will not run because the user is not logged on.
  23147. //
  23148. const auto SCHED_E_USER_NOT_LOGGED_ON = 0x80041320;
  23149. //
  23150. // MessageId: SCHED_E_INVALID_TASK_HASH
  23151. //
  23152. // MessageText:
  23153. //
  23154. // The task image is corrupt or has been tampered with.
  23155. //
  23156. const auto SCHED_E_INVALID_TASK_HASH = 0x80041321;
  23157. //
  23158. // MessageId: SCHED_E_SERVICE_NOT_AVAILABLE
  23159. //
  23160. // MessageText:
  23161. //
  23162. // The Task Scheduler service is not available.
  23163. //
  23164. const auto SCHED_E_SERVICE_NOT_AVAILABLE = 0x80041322;
  23165. //
  23166. // MessageId: SCHED_E_SERVICE_TOO_BUSY
  23167. //
  23168. // MessageText:
  23169. //
  23170. // The Task Scheduler service is too busy to handle your request. Please try again later.
  23171. //
  23172. const auto SCHED_E_SERVICE_TOO_BUSY = 0x80041323;
  23173. //
  23174. // MessageId: SCHED_E_TASK_ATTEMPTED
  23175. //
  23176. // MessageText:
  23177. //
  23178. // The Task Scheduler service attempted to run the task, but the task did not run due to one of the constraints in the task definition.
  23179. //
  23180. const auto SCHED_E_TASK_ATTEMPTED = 0x80041324;
  23181. //
  23182. // MessageId: SCHED_S_TASK_QUEUED
  23183. //
  23184. // MessageText:
  23185. //
  23186. // The Task Scheduler service has asked the task to run.
  23187. //
  23188. const auto SCHED_S_TASK_QUEUED = 0x00041325;
  23189. //
  23190. // MessageId: SCHED_E_TASK_DISABLED
  23191. //
  23192. // MessageText:
  23193. //
  23194. // The task is disabled.
  23195. //
  23196. const auto SCHED_E_TASK_DISABLED = 0x80041326;
  23197. //
  23198. // MessageId: SCHED_E_TASK_NOT_V1_COMPAT
  23199. //
  23200. // MessageText:
  23201. //
  23202. // The task has properties that are not compatible with previous versions of Windows.
  23203. //
  23204. const auto SCHED_E_TASK_NOT_V1_COMPAT = 0x80041327;
  23205. //
  23206. // MessageId: SCHED_E_START_ON_DEMAND
  23207. //
  23208. // MessageText:
  23209. //
  23210. // The task settings do not allow the task to start on demand.
  23211. //
  23212. const auto SCHED_E_START_ON_DEMAND = 0x80041328;
  23213. // ******************
  23214. // FACILITY_WINDOWS
  23215. // ******************
  23216. //
  23217. // Codes 0x0-0x01ff are reserved for the OLE group of
  23218. // interfaces.
  23219. //
  23220. //
  23221. // MessageId: CO_E_CLASS_CREATE_FAILED
  23222. //
  23223. // MessageText:
  23224. //
  23225. // Attempt to create a class object failed
  23226. //
  23227. const auto CO_E_CLASS_CREATE_FAILED = 0x80080001;
  23228. //
  23229. // MessageId: CO_E_SCM_ERROR
  23230. //
  23231. // MessageText:
  23232. //
  23233. // OLE service could not bind object
  23234. //
  23235. const auto CO_E_SCM_ERROR = 0x80080002;
  23236. //
  23237. // MessageId: CO_E_SCM_RPC_FAILURE
  23238. //
  23239. // MessageText:
  23240. //
  23241. // RPC communication failed with OLE service
  23242. //
  23243. const auto CO_E_SCM_RPC_FAILURE = 0x80080003;
  23244. //
  23245. // MessageId: CO_E_BAD_PATH
  23246. //
  23247. // MessageText:
  23248. //
  23249. // Bad path to object
  23250. //
  23251. const auto CO_E_BAD_PATH = 0x80080004;
  23252. //
  23253. // MessageId: CO_E_SERVER_EXEC_FAILURE
  23254. //
  23255. // MessageText:
  23256. //
  23257. // Server execution failed
  23258. //
  23259. const auto CO_E_SERVER_EXEC_FAILURE = 0x80080005;
  23260. //
  23261. // MessageId: CO_E_OBJSRV_RPC_FAILURE
  23262. //
  23263. // MessageText:
  23264. //
  23265. // OLE service could not communicate with the object server
  23266. //
  23267. const auto CO_E_OBJSRV_RPC_FAILURE = 0x80080006;
  23268. //
  23269. // MessageId: MK_E_NO_NORMALIZED
  23270. //
  23271. // MessageText:
  23272. //
  23273. // Moniker path could not be normalized
  23274. //
  23275. const auto MK_E_NO_NORMALIZED = 0x80080007;
  23276. //
  23277. // MessageId: CO_E_SERVER_STOPPING
  23278. //
  23279. // MessageText:
  23280. //
  23281. // Object server is stopping when OLE service contacts it
  23282. //
  23283. const auto CO_E_SERVER_STOPPING = 0x80080008;
  23284. //
  23285. // MessageId: MEM_E_INVALID_ROOT
  23286. //
  23287. // MessageText:
  23288. //
  23289. // An invalid root block pointer was specified
  23290. //
  23291. const auto MEM_E_INVALID_ROOT = 0x80080009;
  23292. //
  23293. // MessageId: MEM_E_INVALID_LINK
  23294. //
  23295. // MessageText:
  23296. //
  23297. // An allocation chain contained an invalid link pointer
  23298. //
  23299. const auto MEM_E_INVALID_LINK = 0x80080010;
  23300. //
  23301. // MessageId: MEM_E_INVALID_SIZE
  23302. //
  23303. // MessageText:
  23304. //
  23305. // The requested allocation size was too large
  23306. //
  23307. const auto MEM_E_INVALID_SIZE = 0x80080011;
  23308. //
  23309. // MessageId: CO_S_NOTALLINTERFACES
  23310. //
  23311. // MessageText:
  23312. //
  23313. // Not all the requested interfaces were available
  23314. //
  23315. const auto CO_S_NOTALLINTERFACES = 0x00080012;
  23316. //
  23317. // MessageId: CO_S_MACHINENAMENOTFOUND
  23318. //
  23319. // MessageText:
  23320. //
  23321. // The specified machine name was not found in the cache.
  23322. //
  23323. const auto CO_S_MACHINENAMENOTFOUND = 0x00080013;
  23324. //
  23325. // MessageId: CO_E_MISSING_DISPLAYNAME
  23326. //
  23327. // MessageText:
  23328. //
  23329. // The activation requires a display name to be present under the CLSID key.
  23330. //
  23331. const auto CO_E_MISSING_DISPLAYNAME = 0x80080015;
  23332. //
  23333. // MessageId: CO_E_RUNAS_VALUE_MUST_BE_AAA
  23334. //
  23335. // MessageText:
  23336. //
  23337. // The activation requires that the RunAs value for the application is Activate As Activator.
  23338. //
  23339. const auto CO_E_RUNAS_VALUE_MUST_BE_AAA = 0x80080016;
  23340. //
  23341. // MessageId: CO_E_ELEVATION_DISABLED
  23342. //
  23343. // MessageText:
  23344. //
  23345. // The class is not configured to support Elevated activation.
  23346. //
  23347. const auto CO_E_ELEVATION_DISABLED = 0x80080017;
  23348. // ******************
  23349. // FACILITY_DISPATCH
  23350. // ******************
  23351. //
  23352. // MessageId: DISP_E_UNKNOWNINTERFACE
  23353. //
  23354. // MessageText:
  23355. //
  23356. // Unknown interface.
  23357. //
  23358. const auto DISP_E_UNKNOWNINTERFACE = 0x80020001;
  23359. //
  23360. // MessageId: DISP_E_MEMBERNOTFOUND
  23361. //
  23362. // MessageText:
  23363. //
  23364. // Member not found.
  23365. //
  23366. const auto DISP_E_MEMBERNOTFOUND = 0x80020003;
  23367. //
  23368. // MessageId: DISP_E_PARAMNOTFOUND
  23369. //
  23370. // MessageText:
  23371. //
  23372. // Parameter not found.
  23373. //
  23374. const auto DISP_E_PARAMNOTFOUND = 0x80020004;
  23375. //
  23376. // MessageId: DISP_E_TYPEMISMATCH
  23377. //
  23378. // MessageText:
  23379. //
  23380. // Type mismatch.
  23381. //
  23382. const auto DISP_E_TYPEMISMATCH = 0x80020005;
  23383. //
  23384. // MessageId: DISP_E_UNKNOWNNAME
  23385. //
  23386. // MessageText:
  23387. //
  23388. // Unknown name.
  23389. //
  23390. const auto DISP_E_UNKNOWNNAME = 0x80020006;
  23391. //
  23392. // MessageId: DISP_E_NONAMEDARGS
  23393. //
  23394. // MessageText:
  23395. //
  23396. // No named arguments.
  23397. //
  23398. const auto DISP_E_NONAMEDARGS = 0x80020007;
  23399. //
  23400. // MessageId: DISP_E_BADVARTYPE
  23401. //
  23402. // MessageText:
  23403. //
  23404. // Bad variable type.
  23405. //
  23406. const auto DISP_E_BADVARTYPE = 0x80020008;
  23407. //
  23408. // MessageId: DISP_E_EXCEPTION
  23409. //
  23410. // MessageText:
  23411. //
  23412. // Exception occurred.
  23413. //
  23414. const auto DISP_E_EXCEPTION = 0x80020009;
  23415. //
  23416. // MessageId: DISP_E_OVERFLOW
  23417. //
  23418. // MessageText:
  23419. //
  23420. // Out of present range.
  23421. //
  23422. const auto DISP_E_OVERFLOW = 0x8002000A;
  23423. //
  23424. // MessageId: DISP_E_BADINDEX
  23425. //
  23426. // MessageText:
  23427. //
  23428. // Invalid index.
  23429. //
  23430. const auto DISP_E_BADINDEX = 0x8002000B;
  23431. //
  23432. // MessageId: DISP_E_UNKNOWNLCID
  23433. //
  23434. // MessageText:
  23435. //
  23436. // Unknown language.
  23437. //
  23438. const auto DISP_E_UNKNOWNLCID = 0x8002000C;
  23439. //
  23440. // MessageId: DISP_E_ARRAYISLOCKED
  23441. //
  23442. // MessageText:
  23443. //
  23444. // Memory is locked.
  23445. //
  23446. const auto DISP_E_ARRAYISLOCKED = 0x8002000D;
  23447. //
  23448. // MessageId: DISP_E_BADPARAMCOUNT
  23449. //
  23450. // MessageText:
  23451. //
  23452. // Invalid number of parameters.
  23453. //
  23454. const auto DISP_E_BADPARAMCOUNT = 0x8002000E;
  23455. //
  23456. // MessageId: DISP_E_PARAMNOTOPTIONAL
  23457. //
  23458. // MessageText:
  23459. //
  23460. // Parameter not optional.
  23461. //
  23462. const auto DISP_E_PARAMNOTOPTIONAL = 0x8002000F;
  23463. //
  23464. // MessageId: DISP_E_BADCALLEE
  23465. //
  23466. // MessageText:
  23467. //
  23468. // Invalid callee.
  23469. //
  23470. const auto DISP_E_BADCALLEE = 0x80020010;
  23471. //
  23472. // MessageId: DISP_E_NOTACOLLECTION
  23473. //
  23474. // MessageText:
  23475. //
  23476. // Does not support a collection.
  23477. //
  23478. const auto DISP_E_NOTACOLLECTION = 0x80020011;
  23479. //
  23480. // MessageId: DISP_E_DIVBYZERO
  23481. //
  23482. // MessageText:
  23483. //
  23484. // Division by zero.
  23485. //
  23486. const auto DISP_E_DIVBYZERO = 0x80020012;
  23487. //
  23488. // MessageId: DISP_E_BUFFERTOOSMALL
  23489. //
  23490. // MessageText:
  23491. //
  23492. // Buffer too small
  23493. //
  23494. const auto DISP_E_BUFFERTOOSMALL = 0x80020013;
  23495. //
  23496. // MessageId: TYPE_E_BUFFERTOOSMALL
  23497. //
  23498. // MessageText:
  23499. //
  23500. // Buffer too small.
  23501. //
  23502. const auto TYPE_E_BUFFERTOOSMALL = 0x80028016;
  23503. //
  23504. // MessageId: TYPE_E_FIELDNOTFOUND
  23505. //
  23506. // MessageText:
  23507. //
  23508. // Field name not defined in the record.
  23509. //
  23510. const auto TYPE_E_FIELDNOTFOUND = 0x80028017;
  23511. //
  23512. // MessageId: TYPE_E_INVDATAREAD
  23513. //
  23514. // MessageText:
  23515. //
  23516. // Old format or invalid type library.
  23517. //
  23518. const auto TYPE_E_INVDATAREAD = 0x80028018;
  23519. //
  23520. // MessageId: TYPE_E_UNSUPFORMAT
  23521. //
  23522. // MessageText:
  23523. //
  23524. // Old format or invalid type library.
  23525. //
  23526. const auto TYPE_E_UNSUPFORMAT = 0x80028019;
  23527. //
  23528. // MessageId: TYPE_E_REGISTRYACCESS
  23529. //
  23530. // MessageText:
  23531. //
  23532. // Error accessing the OLE registry.
  23533. //
  23534. const auto TYPE_E_REGISTRYACCESS = 0x8002801C;
  23535. //
  23536. // MessageId: TYPE_E_LIBNOTREGISTERED
  23537. //
  23538. // MessageText:
  23539. //
  23540. // Library not registered.
  23541. //
  23542. const auto TYPE_E_LIBNOTREGISTERED = 0x8002801D;
  23543. //
  23544. // MessageId: TYPE_E_UNDEFINEDTYPE
  23545. //
  23546. // MessageText:
  23547. //
  23548. // Bound to unknown type.
  23549. //
  23550. const auto TYPE_E_UNDEFINEDTYPE = 0x80028027;
  23551. //
  23552. // MessageId: TYPE_E_QUALIFIEDNAMEDISALLOWED
  23553. //
  23554. // MessageText:
  23555. //
  23556. // Qualified name disallowed.
  23557. //
  23558. const auto TYPE_E_QUALIFIEDNAMEDISALLOWED = 0x80028028;
  23559. //
  23560. // MessageId: TYPE_E_INVALIDSTATE
  23561. //
  23562. // MessageText:
  23563. //
  23564. // Invalid forward reference, or reference to uncompiled type.
  23565. //
  23566. const auto TYPE_E_INVALIDSTATE = 0x80028029;
  23567. //
  23568. // MessageId: TYPE_E_WRONGTYPEKIND
  23569. //
  23570. // MessageText:
  23571. //
  23572. // Type mismatch.
  23573. //
  23574. const auto TYPE_E_WRONGTYPEKIND = 0x8002802A;
  23575. //
  23576. // MessageId: TYPE_E_ELEMENTNOTFOUND
  23577. //
  23578. // MessageText:
  23579. //
  23580. // Element not found.
  23581. //
  23582. const auto TYPE_E_ELEMENTNOTFOUND = 0x8002802B;
  23583. //
  23584. // MessageId: TYPE_E_AMBIGUOUSNAME
  23585. //
  23586. // MessageText:
  23587. //
  23588. // Ambiguous name.
  23589. //
  23590. const auto TYPE_E_AMBIGUOUSNAME = 0x8002802C;
  23591. //
  23592. // MessageId: TYPE_E_NAMECONFLICT
  23593. //
  23594. // MessageText:
  23595. //
  23596. // Name already exists in the library.
  23597. //
  23598. const auto TYPE_E_NAMECONFLICT = 0x8002802D;
  23599. //
  23600. // MessageId: TYPE_E_UNKNOWNLCID
  23601. //
  23602. // MessageText:
  23603. //
  23604. // Unknown LCID.
  23605. //
  23606. const auto TYPE_E_UNKNOWNLCID = 0x8002802E;
  23607. //
  23608. // MessageId: TYPE_E_DLLFUNCTIONNOTFOUND
  23609. //
  23610. // MessageText:
  23611. //
  23612. // Function not defined in specified DLL.
  23613. //
  23614. const auto TYPE_E_DLLFUNCTIONNOTFOUND = 0x8002802F;
  23615. //
  23616. // MessageId: TYPE_E_BADMODULEKIND
  23617. //
  23618. // MessageText:
  23619. //
  23620. // Wrong module kind for the operation.
  23621. //
  23622. const auto TYPE_E_BADMODULEKIND = 0x800288BD;
  23623. //
  23624. // MessageId: TYPE_E_SIZETOOBIG
  23625. //
  23626. // MessageText:
  23627. //
  23628. // Size may not exceed 64K.
  23629. //
  23630. const auto TYPE_E_SIZETOOBIG = 0x800288C5;
  23631. //
  23632. // MessageId: TYPE_E_DUPLICATEID
  23633. //
  23634. // MessageText:
  23635. //
  23636. // Duplicate ID in inheritance hierarchy.
  23637. //
  23638. const auto TYPE_E_DUPLICATEID = 0x800288C6;
  23639. //
  23640. // MessageId: TYPE_E_INVALIDID
  23641. //
  23642. // MessageText:
  23643. //
  23644. // Incorrect inheritance depth in standard OLE hmember.
  23645. //
  23646. const auto TYPE_E_INVALIDID = 0x800288CF;
  23647. //
  23648. // MessageId: TYPE_E_TYPEMISMATCH
  23649. //
  23650. // MessageText:
  23651. //
  23652. // Type mismatch.
  23653. //
  23654. const auto TYPE_E_TYPEMISMATCH = 0x80028CA0;
  23655. //
  23656. // MessageId: TYPE_E_OUTOFBOUNDS
  23657. //
  23658. // MessageText:
  23659. //
  23660. // Invalid number of arguments.
  23661. //
  23662. const auto TYPE_E_OUTOFBOUNDS = 0x80028CA1;
  23663. //
  23664. // MessageId: TYPE_E_IOERROR
  23665. //
  23666. // MessageText:
  23667. //
  23668. // I/O Error.
  23669. //
  23670. const auto TYPE_E_IOERROR = 0x80028CA2;
  23671. //
  23672. // MessageId: TYPE_E_CANTCREATETMPFILE
  23673. //
  23674. // MessageText:
  23675. //
  23676. // Error creating unique tmp file.
  23677. //
  23678. const auto TYPE_E_CANTCREATETMPFILE = 0x80028CA3;
  23679. //
  23680. // MessageId: TYPE_E_CANTLOADLIBRARY
  23681. //
  23682. // MessageText:
  23683. //
  23684. // Error loading type library/DLL.
  23685. //
  23686. const auto TYPE_E_CANTLOADLIBRARY = 0x80029C4A;
  23687. //
  23688. // MessageId: TYPE_E_INCONSISTENTPROPFUNCS
  23689. //
  23690. // MessageText:
  23691. //
  23692. // Inconsistent property functions.
  23693. //
  23694. const auto TYPE_E_INCONSISTENTPROPFUNCS = 0x80029C83;
  23695. //
  23696. // MessageId: TYPE_E_CIRCULARTYPE
  23697. //
  23698. // MessageText:
  23699. //
  23700. // Circular dependency between types/modules.
  23701. //
  23702. const auto TYPE_E_CIRCULARTYPE = 0x80029C84;
  23703. // ******************
  23704. // FACILITY_STORAGE
  23705. // ******************
  23706. //
  23707. // MessageId: STG_E_INVALIDFUNCTION
  23708. //
  23709. // MessageText:
  23710. //
  23711. // Unable to perform requested operation.
  23712. //
  23713. const auto STG_E_INVALIDFUNCTION = 0x80030001;
  23714. //
  23715. // MessageId: STG_E_FILENOTFOUND
  23716. //
  23717. // MessageText:
  23718. //
  23719. // %1 could not be found.
  23720. //
  23721. const auto STG_E_FILENOTFOUND = 0x80030002;
  23722. //
  23723. // MessageId: STG_E_PATHNOTFOUND
  23724. //
  23725. // MessageText:
  23726. //
  23727. // The path %1 could not be found.
  23728. //
  23729. const auto STG_E_PATHNOTFOUND = 0x80030003;
  23730. //
  23731. // MessageId: STG_E_TOOMANYOPENFILES
  23732. //
  23733. // MessageText:
  23734. //
  23735. // There are insufficient resources to open another file.
  23736. //
  23737. const auto STG_E_TOOMANYOPENFILES = 0x80030004;
  23738. //
  23739. // MessageId: STG_E_ACCESSDENIED
  23740. //
  23741. // MessageText:
  23742. //
  23743. // Access Denied.
  23744. //
  23745. const auto STG_E_ACCESSDENIED = 0x80030005;
  23746. //
  23747. // MessageId: STG_E_INVALIDHANDLE
  23748. //
  23749. // MessageText:
  23750. //
  23751. // Attempted an operation on an invalid object.
  23752. //
  23753. const auto STG_E_INVALIDHANDLE = 0x80030006;
  23754. //
  23755. // MessageId: STG_E_INSUFFICIENTMEMORY
  23756. //
  23757. // MessageText:
  23758. //
  23759. // There is insufficient memory available to complete operation.
  23760. //
  23761. const auto STG_E_INSUFFICIENTMEMORY = 0x80030008;
  23762. //
  23763. // MessageId: STG_E_INVALIDPOINTER
  23764. //
  23765. // MessageText:
  23766. //
  23767. // Invalid pointer error.
  23768. //
  23769. const auto STG_E_INVALIDPOINTER = 0x80030009;
  23770. //
  23771. // MessageId: STG_E_NOMOREFILES
  23772. //
  23773. // MessageText:
  23774. //
  23775. // There are no more entries to return.
  23776. //
  23777. const auto STG_E_NOMOREFILES = 0x80030012;
  23778. //
  23779. // MessageId: STG_E_DISKISWRITEPROTECTED
  23780. //
  23781. // MessageText:
  23782. //
  23783. // Disk is write-protected.
  23784. //
  23785. const auto STG_E_DISKISWRITEPROTECTED = 0x80030013;
  23786. //
  23787. // MessageId: STG_E_SEEKERROR
  23788. //
  23789. // MessageText:
  23790. //
  23791. // An error occurred during a seek operation.
  23792. //
  23793. const auto STG_E_SEEKERROR = 0x80030019;
  23794. //
  23795. // MessageId: STG_E_WRITEFAULT
  23796. //
  23797. // MessageText:
  23798. //
  23799. // A disk error occurred during a write operation.
  23800. //
  23801. const auto STG_E_WRITEFAULT = 0x8003001D;
  23802. //
  23803. // MessageId: STG_E_READFAULT
  23804. //
  23805. // MessageText:
  23806. //
  23807. // A disk error occurred during a read operation.
  23808. //
  23809. const auto STG_E_READFAULT = 0x8003001E;
  23810. //
  23811. // MessageId: STG_E_SHAREVIOLATION
  23812. //
  23813. // MessageText:
  23814. //
  23815. // A share violation has occurred.
  23816. //
  23817. const auto STG_E_SHAREVIOLATION = 0x80030020;
  23818. //
  23819. // MessageId: STG_E_LOCKVIOLATION
  23820. //
  23821. // MessageText:
  23822. //
  23823. // A lock violation has occurred.
  23824. //
  23825. const auto STG_E_LOCKVIOLATION = 0x80030021;
  23826. //
  23827. // MessageId: STG_E_FILEALREADYEXISTS
  23828. //
  23829. // MessageText:
  23830. //
  23831. // %1 already exists.
  23832. //
  23833. const auto STG_E_FILEALREADYEXISTS = 0x80030050;
  23834. //
  23835. // MessageId: STG_E_INVALIDPARAMETER
  23836. //
  23837. // MessageText:
  23838. //
  23839. // Invalid parameter error.
  23840. //
  23841. const auto STG_E_INVALIDPARAMETER = 0x80030057;
  23842. //
  23843. // MessageId: STG_E_MEDIUMFULL
  23844. //
  23845. // MessageText:
  23846. //
  23847. // There is insufficient disk space to complete operation.
  23848. //
  23849. const auto STG_E_MEDIUMFULL = 0x80030070;
  23850. //
  23851. // MessageId: STG_E_PROPSETMISMATCHED
  23852. //
  23853. // MessageText:
  23854. //
  23855. // Illegal write of non-simple property to simple property set.
  23856. //
  23857. const auto STG_E_PROPSETMISMATCHED = 0x800300F0;
  23858. //
  23859. // MessageId: STG_E_ABNORMALAPIEXIT
  23860. //
  23861. // MessageText:
  23862. //
  23863. // An API call exited abnormally.
  23864. //
  23865. const auto STG_E_ABNORMALAPIEXIT = 0x800300FA;
  23866. //
  23867. // MessageId: STG_E_INVALIDHEADER
  23868. //
  23869. // MessageText:
  23870. //
  23871. // The file %1 is not a valid compound file.
  23872. //
  23873. const auto STG_E_INVALIDHEADER = 0x800300FB;
  23874. //
  23875. // MessageId: STG_E_INVALIDNAME
  23876. //
  23877. // MessageText:
  23878. //
  23879. // The name %1 is not valid.
  23880. //
  23881. const auto STG_E_INVALIDNAME = 0x800300FC;
  23882. //
  23883. // MessageId: STG_E_UNKNOWN
  23884. //
  23885. // MessageText:
  23886. //
  23887. // An unexpected error occurred.
  23888. //
  23889. const auto STG_E_UNKNOWN = 0x800300FD;
  23890. //
  23891. // MessageId: STG_E_UNIMPLEMENTEDFUNCTION
  23892. //
  23893. // MessageText:
  23894. //
  23895. // That function is not implemented.
  23896. //
  23897. const auto STG_E_UNIMPLEMENTEDFUNCTION = 0x800300FE;
  23898. //
  23899. // MessageId: STG_E_INVALIDFLAG
  23900. //
  23901. // MessageText:
  23902. //
  23903. // Invalid flag error.
  23904. //
  23905. const auto STG_E_INVALIDFLAG = 0x800300FF;
  23906. //
  23907. // MessageId: STG_E_INUSE
  23908. //
  23909. // MessageText:
  23910. //
  23911. // Attempted to use an object that is busy.
  23912. //
  23913. const auto STG_E_INUSE = 0x80030100;
  23914. //
  23915. // MessageId: STG_E_NOTCURRENT
  23916. //
  23917. // MessageText:
  23918. //
  23919. // The storage has been changed since the last commit.
  23920. //
  23921. const auto STG_E_NOTCURRENT = 0x80030101;
  23922. //
  23923. // MessageId: STG_E_REVERTED
  23924. //
  23925. // MessageText:
  23926. //
  23927. // Attempted to use an object that has ceased to exist.
  23928. //
  23929. const auto STG_E_REVERTED = 0x80030102;
  23930. //
  23931. // MessageId: STG_E_CANTSAVE
  23932. //
  23933. // MessageText:
  23934. //
  23935. // Can't save.
  23936. //
  23937. const auto STG_E_CANTSAVE = 0x80030103;
  23938. //
  23939. // MessageId: STG_E_OLDFORMAT
  23940. //
  23941. // MessageText:
  23942. //
  23943. // The compound file %1 was produced with an incompatible version of storage.
  23944. //
  23945. const auto STG_E_OLDFORMAT = 0x80030104;
  23946. //
  23947. // MessageId: STG_E_OLDDLL
  23948. //
  23949. // MessageText:
  23950. //
  23951. // The compound file %1 was produced with a newer version of storage.
  23952. //
  23953. const auto STG_E_OLDDLL = 0x80030105;
  23954. //
  23955. // MessageId: STG_E_SHAREREQUIRED
  23956. //
  23957. // MessageText:
  23958. //
  23959. // Share.exe or equivalent is required for operation.
  23960. //
  23961. const auto STG_E_SHAREREQUIRED = 0x80030106;
  23962. //
  23963. // MessageId: STG_E_NOTFILEBASEDSTORAGE
  23964. //
  23965. // MessageText:
  23966. //
  23967. // Illegal operation called on non-file based storage.
  23968. //
  23969. const auto STG_E_NOTFILEBASEDSTORAGE = 0x80030107;
  23970. //
  23971. // MessageId: STG_E_EXTANTMARSHALLINGS
  23972. //
  23973. // MessageText:
  23974. //
  23975. // Illegal operation called on object with extant marshallings.
  23976. //
  23977. const auto STG_E_EXTANTMARSHALLINGS = 0x80030108;
  23978. //
  23979. // MessageId: STG_E_DOCFILECORRUPT
  23980. //
  23981. // MessageText:
  23982. //
  23983. // The docfile has been corrupted.
  23984. //
  23985. const auto STG_E_DOCFILECORRUPT = 0x80030109;
  23986. //
  23987. // MessageId: STG_E_BADBASEADDRESS
  23988. //
  23989. // MessageText:
  23990. //
  23991. // OLE32.DLL has been loaded at the wrong address.
  23992. //
  23993. const auto STG_E_BADBASEADDRESS = 0x80030110;
  23994. //
  23995. // MessageId: STG_E_DOCFILETOOLARGE
  23996. //
  23997. // MessageText:
  23998. //
  23999. // The compound file is too large for the current implementation
  24000. //
  24001. const auto STG_E_DOCFILETOOLARGE = 0x80030111;
  24002. //
  24003. // MessageId: STG_E_NOTSIMPLEFORMAT
  24004. //
  24005. // MessageText:
  24006. //
  24007. // The compound file was not created with the STGM_SIMPLE flag
  24008. //
  24009. const auto STG_E_NOTSIMPLEFORMAT = 0x80030112;
  24010. //
  24011. // MessageId: STG_E_INCOMPLETE
  24012. //
  24013. // MessageText:
  24014. //
  24015. // The file download was aborted abnormally. The file is incomplete.
  24016. //
  24017. const auto STG_E_INCOMPLETE = 0x80030201;
  24018. //
  24019. // MessageId: STG_E_TERMINATED
  24020. //
  24021. // MessageText:
  24022. //
  24023. // The file download has been terminated.
  24024. //
  24025. const auto STG_E_TERMINATED = 0x80030202;
  24026. //
  24027. // MessageId: STG_S_CONVERTED
  24028. //
  24029. // MessageText:
  24030. //
  24031. // The underlying file was converted to compound file format.
  24032. //
  24033. const auto STG_S_CONVERTED = 0x00030200;
  24034. //
  24035. // MessageId: STG_S_BLOCK
  24036. //
  24037. // MessageText:
  24038. //
  24039. // The storage operation should block until more data is available.
  24040. //
  24041. const auto STG_S_BLOCK = 0x00030201;
  24042. //
  24043. // MessageId: STG_S_RETRYNOW
  24044. //
  24045. // MessageText:
  24046. //
  24047. // The storage operation should retry immediately.
  24048. //
  24049. const auto STG_S_RETRYNOW = 0x00030202;
  24050. //
  24051. // MessageId: STG_S_MONITORING
  24052. //
  24053. // MessageText:
  24054. //
  24055. // The notified event sink will not influence the storage operation.
  24056. //
  24057. const auto STG_S_MONITORING = 0x00030203;
  24058. //
  24059. // MessageId: STG_S_MULTIPLEOPENS
  24060. //
  24061. // MessageText:
  24062. //
  24063. // Multiple opens prevent consolidated. (commit succeeded).
  24064. //
  24065. const auto STG_S_MULTIPLEOPENS = 0x00030204;
  24066. //
  24067. // MessageId: STG_S_CONSOLIDATIONFAILED
  24068. //
  24069. // MessageText:
  24070. //
  24071. // Consolidation of the storage file failed. (commit succeeded).
  24072. //
  24073. const auto STG_S_CONSOLIDATIONFAILED = 0x00030205;
  24074. //
  24075. // MessageId: STG_S_CANNOTCONSOLIDATE
  24076. //
  24077. // MessageText:
  24078. //
  24079. // Consolidation of the storage file is inappropriate. (commit succeeded).
  24080. //
  24081. const auto STG_S_CANNOTCONSOLIDATE = 0x00030206;
  24082. /*++
  24083. MessageId's 0x0305 - 0x031f (inclusive) are reserved for **STORAGE**
  24084. copy protection errors.
  24085. --*/
  24086. //
  24087. // MessageId: STG_E_STATUS_COPY_PROTECTION_FAILURE
  24088. //
  24089. // MessageText:
  24090. //
  24091. // Generic Copy Protection Error.
  24092. //
  24093. const auto STG_E_STATUS_COPY_PROTECTION_FAILURE = 0x80030305;
  24094. //
  24095. // MessageId: STG_E_CSS_AUTHENTICATION_FAILURE
  24096. //
  24097. // MessageText:
  24098. //
  24099. // Copy Protection Error - DVD CSS Authentication failed.
  24100. //
  24101. const auto STG_E_CSS_AUTHENTICATION_FAILURE = 0x80030306;
  24102. //
  24103. // MessageId: STG_E_CSS_KEY_NOT_PRESENT
  24104. //
  24105. // MessageText:
  24106. //
  24107. // Copy Protection Error - The given sector does not have a valid CSS key.
  24108. //
  24109. const auto STG_E_CSS_KEY_NOT_PRESENT = 0x80030307;
  24110. //
  24111. // MessageId: STG_E_CSS_KEY_NOT_ESTABLISHED
  24112. //
  24113. // MessageText:
  24114. //
  24115. // Copy Protection Error - DVD session key not established.
  24116. //
  24117. const auto STG_E_CSS_KEY_NOT_ESTABLISHED = 0x80030308;
  24118. //
  24119. // MessageId: STG_E_CSS_SCRAMBLED_SECTOR
  24120. //
  24121. // MessageText:
  24122. //
  24123. // Copy Protection Error - The read failed because the sector is encrypted.
  24124. //
  24125. const auto STG_E_CSS_SCRAMBLED_SECTOR = 0x80030309;
  24126. //
  24127. // MessageId: STG_E_CSS_REGION_MISMATCH
  24128. //
  24129. // MessageText:
  24130. //
  24131. // Copy Protection Error - The current DVD's region does not correspond to the region setting of the drive.
  24132. //
  24133. const auto STG_E_CSS_REGION_MISMATCH = 0x8003030A;
  24134. //
  24135. // MessageId: STG_E_RESETS_EXHAUSTED
  24136. //
  24137. // MessageText:
  24138. //
  24139. // Copy Protection Error - The drive's region setting may be permanent or the number of user resets has been exhausted.
  24140. //
  24141. const auto STG_E_RESETS_EXHAUSTED = 0x8003030B;
  24142. /*++
  24143. MessageId's 0x0305 - 0x031f (inclusive) are reserved for **STORAGE**
  24144. copy protection errors.
  24145. --*/
  24146. // ******************
  24147. // FACILITY_RPC
  24148. // ******************
  24149. //
  24150. // Codes 0x0-0x11 are propagated from 16 bit OLE.
  24151. //
  24152. //
  24153. // MessageId: RPC_E_CALL_REJECTED
  24154. //
  24155. // MessageText:
  24156. //
  24157. // Call was rejected by callee.
  24158. //
  24159. const auto RPC_E_CALL_REJECTED = 0x80010001;
  24160. //
  24161. // MessageId: RPC_E_CALL_CANCELED
  24162. //
  24163. // MessageText:
  24164. //
  24165. // Call was canceled by the message filter.
  24166. //
  24167. const auto RPC_E_CALL_CANCELED = 0x80010002;
  24168. //
  24169. // MessageId: RPC_E_CANTPOST_INSENDCALL
  24170. //
  24171. // MessageText:
  24172. //
  24173. // The caller is dispatching an intertask SendMessage call and cannot call out via PostMessage.
  24174. //
  24175. const auto RPC_E_CANTPOST_INSENDCALL = 0x80010003;
  24176. //
  24177. // MessageId: RPC_E_CANTCALLOUT_INASYNCCALL
  24178. //
  24179. // MessageText:
  24180. //
  24181. // The caller is dispatching an asynchronous call and cannot make an outgoing call on behalf of this call.
  24182. //
  24183. const auto RPC_E_CANTCALLOUT_INASYNCCALL = 0x80010004;
  24184. //
  24185. // MessageId: RPC_E_CANTCALLOUT_INEXTERNALCALL
  24186. //
  24187. // MessageText:
  24188. //
  24189. // It is illegal to call out while inside message filter.
  24190. //
  24191. const auto RPC_E_CANTCALLOUT_INEXTERNALCALL = 0x80010005;
  24192. //
  24193. // MessageId: RPC_E_CONNECTION_TERMINATED
  24194. //
  24195. // MessageText:
  24196. //
  24197. // The connection terminated or is in a bogus state and cannot be used any more. Other connections are still valid.
  24198. //
  24199. const auto RPC_E_CONNECTION_TERMINATED = 0x80010006;
  24200. //
  24201. // MessageId: RPC_E_SERVER_DIED
  24202. //
  24203. // MessageText:
  24204. //
  24205. // The callee (server [not server application]) is not available and disappeared; all connections are invalid. The call may have executed.
  24206. //
  24207. const auto RPC_E_SERVER_DIED = 0x80010007;
  24208. //
  24209. // MessageId: RPC_E_CLIENT_DIED
  24210. //
  24211. // MessageText:
  24212. //
  24213. // The caller (client) disappeared while the callee (server) was processing a call.
  24214. //
  24215. const auto RPC_E_CLIENT_DIED = 0x80010008;
  24216. //
  24217. // MessageId: RPC_E_INVALID_DATAPACKET
  24218. //
  24219. // MessageText:
  24220. //
  24221. // The data packet with the marshalled parameter data is incorrect.
  24222. //
  24223. const auto RPC_E_INVALID_DATAPACKET = 0x80010009;
  24224. //
  24225. // MessageId: RPC_E_CANTTRANSMIT_CALL
  24226. //
  24227. // MessageText:
  24228. //
  24229. // The call was not transmitted properly; the message queue was full and was not emptied after yielding.
  24230. //
  24231. const auto RPC_E_CANTTRANSMIT_CALL = 0x8001000A;
  24232. //
  24233. // MessageId: RPC_E_CLIENT_CANTMARSHAL_DATA
  24234. //
  24235. // MessageText:
  24236. //
  24237. // The client (caller) cannot marshall the parameter data - low memory, etc.
  24238. //
  24239. const auto RPC_E_CLIENT_CANTMARSHAL_DATA = 0x8001000B;
  24240. //
  24241. // MessageId: RPC_E_CLIENT_CANTUNMARSHAL_DATA
  24242. //
  24243. // MessageText:
  24244. //
  24245. // The client (caller) cannot unmarshall the return data - low memory, etc.
  24246. //
  24247. const auto RPC_E_CLIENT_CANTUNMARSHAL_DATA = 0x8001000C;
  24248. //
  24249. // MessageId: RPC_E_SERVER_CANTMARSHAL_DATA
  24250. //
  24251. // MessageText:
  24252. //
  24253. // The server (callee) cannot marshall the return data - low memory, etc.
  24254. //
  24255. const auto RPC_E_SERVER_CANTMARSHAL_DATA = 0x8001000D;
  24256. //
  24257. // MessageId: RPC_E_SERVER_CANTUNMARSHAL_DATA
  24258. //
  24259. // MessageText:
  24260. //
  24261. // The server (callee) cannot unmarshall the parameter data - low memory, etc.
  24262. //
  24263. const auto RPC_E_SERVER_CANTUNMARSHAL_DATA = 0x8001000E;
  24264. //
  24265. // MessageId: RPC_E_INVALID_DATA
  24266. //
  24267. // MessageText:
  24268. //
  24269. // Received data is invalid; could be server or client data.
  24270. //
  24271. const auto RPC_E_INVALID_DATA = 0x8001000F;
  24272. //
  24273. // MessageId: RPC_E_INVALID_PARAMETER
  24274. //
  24275. // MessageText:
  24276. //
  24277. // A particular parameter is invalid and cannot be (un)marshalled.
  24278. //
  24279. const auto RPC_E_INVALID_PARAMETER = 0x80010010;
  24280. //
  24281. // MessageId: RPC_E_CANTCALLOUT_AGAIN
  24282. //
  24283. // MessageText:
  24284. //
  24285. // There is no second outgoing call on same channel in DDE conversation.
  24286. //
  24287. const auto RPC_E_CANTCALLOUT_AGAIN = 0x80010011;
  24288. //
  24289. // MessageId: RPC_E_SERVER_DIED_DNE
  24290. //
  24291. // MessageText:
  24292. //
  24293. // The callee (server [not server application]) is not available and disappeared; all connections are invalid. The call did not execute.
  24294. //
  24295. const auto RPC_E_SERVER_DIED_DNE = 0x80010012;
  24296. //
  24297. // MessageId: RPC_E_SYS_CALL_FAILED
  24298. //
  24299. // MessageText:
  24300. //
  24301. // System call failed.
  24302. //
  24303. const auto RPC_E_SYS_CALL_FAILED = 0x80010100;
  24304. //
  24305. // MessageId: RPC_E_OUT_OF_RESOURCES
  24306. //
  24307. // MessageText:
  24308. //
  24309. // Could not allocate some required resource (memory, events, ...)
  24310. //
  24311. const auto RPC_E_OUT_OF_RESOURCES = 0x80010101;
  24312. //
  24313. // MessageId: RPC_E_ATTEMPTED_MULTITHREAD
  24314. //
  24315. // MessageText:
  24316. //
  24317. // Attempted to make calls on more than one thread in single threaded mode.
  24318. //
  24319. const auto RPC_E_ATTEMPTED_MULTITHREAD = 0x80010102;
  24320. //
  24321. // MessageId: RPC_E_NOT_REGISTERED
  24322. //
  24323. // MessageText:
  24324. //
  24325. // The requested interface is not registered on the server object.
  24326. //
  24327. const auto RPC_E_NOT_REGISTERED = 0x80010103;
  24328. //
  24329. // MessageId: RPC_E_FAULT
  24330. //
  24331. // MessageText:
  24332. //
  24333. // RPC could not call the server or could not return the results of calling the server.
  24334. //
  24335. const auto RPC_E_FAULT = 0x80010104;
  24336. //
  24337. // MessageId: RPC_E_SERVERFAULT
  24338. //
  24339. // MessageText:
  24340. //
  24341. // The server threw an exception.
  24342. //
  24343. const auto RPC_E_SERVERFAULT = 0x80010105;
  24344. //
  24345. // MessageId: RPC_E_CHANGED_MODE
  24346. //
  24347. // MessageText:
  24348. //
  24349. // Cannot change thread mode after it is set.
  24350. //
  24351. const auto RPC_E_CHANGED_MODE = 0x80010106;
  24352. //
  24353. // MessageId: RPC_E_INVALIDMETHOD
  24354. //
  24355. // MessageText:
  24356. //
  24357. // The method called does not exist on the server.
  24358. //
  24359. const auto RPC_E_INVALIDMETHOD = 0x80010107;
  24360. //
  24361. // MessageId: RPC_E_DISCONNECTED
  24362. //
  24363. // MessageText:
  24364. //
  24365. // The object invoked has disconnected from its clients.
  24366. //
  24367. const auto RPC_E_DISCONNECTED = 0x80010108;
  24368. //
  24369. // MessageId: RPC_E_RETRY
  24370. //
  24371. // MessageText:
  24372. //
  24373. // The object invoked chose not to process the call now. Try again later.
  24374. //
  24375. const auto RPC_E_RETRY = 0x80010109;
  24376. //
  24377. // MessageId: RPC_E_SERVERCALL_RETRYLATER
  24378. //
  24379. // MessageText:
  24380. //
  24381. // The message filter indicated that the application is busy.
  24382. //
  24383. const auto RPC_E_SERVERCALL_RETRYLATER = 0x8001010A;
  24384. //
  24385. // MessageId: RPC_E_SERVERCALL_REJECTED
  24386. //
  24387. // MessageText:
  24388. //
  24389. // The message filter rejected the call.
  24390. //
  24391. const auto RPC_E_SERVERCALL_REJECTED = 0x8001010B;
  24392. //
  24393. // MessageId: RPC_E_INVALID_CALLDATA
  24394. //
  24395. // MessageText:
  24396. //
  24397. // A call control interfaces was called with invalid data.
  24398. //
  24399. const auto RPC_E_INVALID_CALLDATA = 0x8001010C;
  24400. //
  24401. // MessageId: RPC_E_CANTCALLOUT_ININPUTSYNCCALL
  24402. //
  24403. // MessageText:
  24404. //
  24405. // An outgoing call cannot be made since the application is dispatching an input-synchronous call.
  24406. //
  24407. const auto RPC_E_CANTCALLOUT_ININPUTSYNCCALL = 0x8001010D;
  24408. //
  24409. // MessageId: RPC_E_WRONG_THREAD
  24410. //
  24411. // MessageText:
  24412. //
  24413. // The application called an interface that was marshalled for a different thread.
  24414. //
  24415. const auto RPC_E_WRONG_THREAD = 0x8001010E;
  24416. //
  24417. // MessageId: RPC_E_THREAD_NOT_INIT
  24418. //
  24419. // MessageText:
  24420. //
  24421. // CoInitialize has not been called on the current thread.
  24422. //
  24423. const auto RPC_E_THREAD_NOT_INIT = 0x8001010F;
  24424. //
  24425. // MessageId: RPC_E_VERSION_MISMATCH
  24426. //
  24427. // MessageText:
  24428. //
  24429. // The version of OLE on the client and server machines does not match.
  24430. //
  24431. const auto RPC_E_VERSION_MISMATCH = 0x80010110;
  24432. //
  24433. // MessageId: RPC_E_INVALID_HEADER
  24434. //
  24435. // MessageText:
  24436. //
  24437. // OLE received a packet with an invalid header.
  24438. //
  24439. const auto RPC_E_INVALID_HEADER = 0x80010111;
  24440. //
  24441. // MessageId: RPC_E_INVALID_EXTENSION
  24442. //
  24443. // MessageText:
  24444. //
  24445. // OLE received a packet with an invalid extension.
  24446. //
  24447. const auto RPC_E_INVALID_EXTENSION = 0x80010112;
  24448. //
  24449. // MessageId: RPC_E_INVALID_IPID
  24450. //
  24451. // MessageText:
  24452. //
  24453. // The requested object or interface does not exist.
  24454. //
  24455. const auto RPC_E_INVALID_IPID = 0x80010113;
  24456. //
  24457. // MessageId: RPC_E_INVALID_OBJECT
  24458. //
  24459. // MessageText:
  24460. //
  24461. // The requested object does not exist.
  24462. //
  24463. const auto RPC_E_INVALID_OBJECT = 0x80010114;
  24464. //
  24465. // MessageId: RPC_S_CALLPENDING
  24466. //
  24467. // MessageText:
  24468. //
  24469. // OLE has sent a request and is waiting for a reply.
  24470. //
  24471. const auto RPC_S_CALLPENDING = 0x80010115;
  24472. //
  24473. // MessageId: RPC_S_WAITONTIMER
  24474. //
  24475. // MessageText:
  24476. //
  24477. // OLE is waiting before retrying a request.
  24478. //
  24479. const auto RPC_S_WAITONTIMER = 0x80010116;
  24480. //
  24481. // MessageId: RPC_E_CALL_COMPLETE
  24482. //
  24483. // MessageText:
  24484. //
  24485. // Call context cannot be accessed after call completed.
  24486. //
  24487. const auto RPC_E_CALL_COMPLETE = 0x80010117;
  24488. //
  24489. // MessageId: RPC_E_UNSECURE_CALL
  24490. //
  24491. // MessageText:
  24492. //
  24493. // Impersonate on unsecure calls is not supported.
  24494. //
  24495. const auto RPC_E_UNSECURE_CALL = 0x80010118;
  24496. //
  24497. // MessageId: RPC_E_TOO_LATE
  24498. //
  24499. // MessageText:
  24500. //
  24501. // Security must be initialized before any interfaces are marshalled or unmarshalled. It cannot be changed once initialized.
  24502. //
  24503. const auto RPC_E_TOO_LATE = 0x80010119;
  24504. //
  24505. // MessageId: RPC_E_NO_GOOD_SECURITY_PACKAGES
  24506. //
  24507. // MessageText:
  24508. //
  24509. // No security packages are installed on this machine or the user is not logged on or there are no compatible security packages between the client and server.
  24510. //
  24511. const auto RPC_E_NO_GOOD_SECURITY_PACKAGES = 0x8001011A;
  24512. //
  24513. // MessageId: RPC_E_ACCESS_DENIED
  24514. //
  24515. // MessageText:
  24516. //
  24517. // Access is denied.
  24518. //
  24519. const auto RPC_E_ACCESS_DENIED = 0x8001011B;
  24520. //
  24521. // MessageId: RPC_E_REMOTE_DISABLED
  24522. //
  24523. // MessageText:
  24524. //
  24525. // Remote calls are not allowed for this process.
  24526. //
  24527. const auto RPC_E_REMOTE_DISABLED = 0x8001011C;
  24528. //
  24529. // MessageId: RPC_E_INVALID_OBJREF
  24530. //
  24531. // MessageText:
  24532. //
  24533. // The marshaled interface data packet (OBJREF) has an invalid or unknown format.
  24534. //
  24535. const auto RPC_E_INVALID_OBJREF = 0x8001011D;
  24536. //
  24537. // MessageId: RPC_E_NO_CONTEXT
  24538. //
  24539. // MessageText:
  24540. //
  24541. // No context is associated with this call. This happens for some custom marshalled calls and on the client side of the call.
  24542. //
  24543. const auto RPC_E_NO_CONTEXT = 0x8001011E;
  24544. //
  24545. // MessageId: RPC_E_TIMEOUT
  24546. //
  24547. // MessageText:
  24548. //
  24549. // This operation returned because the timeout period expired.
  24550. //
  24551. const auto RPC_E_TIMEOUT = 0x8001011F;
  24552. //
  24553. // MessageId: RPC_E_NO_SYNC
  24554. //
  24555. // MessageText:
  24556. //
  24557. // There are no synchronize objects to wait on.
  24558. //
  24559. const auto RPC_E_NO_SYNC = 0x80010120;
  24560. //
  24561. // MessageId: RPC_E_FULLSIC_REQUIRED
  24562. //
  24563. // MessageText:
  24564. //
  24565. // Full subject issuer chain SSL principal name expected from the server.
  24566. //
  24567. const auto RPC_E_FULLSIC_REQUIRED = 0x80010121;
  24568. //
  24569. // MessageId: RPC_E_INVALID_STD_NAME
  24570. //
  24571. // MessageText:
  24572. //
  24573. // Principal name is not a valid MSSTD name.
  24574. //
  24575. const auto RPC_E_INVALID_STD_NAME = 0x80010122;
  24576. //
  24577. // MessageId: CO_E_FAILEDTOIMPERSONATE
  24578. //
  24579. // MessageText:
  24580. //
  24581. // Unable to impersonate DCOM client
  24582. //
  24583. const auto CO_E_FAILEDTOIMPERSONATE = 0x80010123;
  24584. //
  24585. // MessageId: CO_E_FAILEDTOGETSECCTX
  24586. //
  24587. // MessageText:
  24588. //
  24589. // Unable to obtain server's security context
  24590. //
  24591. const auto CO_E_FAILEDTOGETSECCTX = 0x80010124;
  24592. //
  24593. // MessageId: CO_E_FAILEDTOOPENTHREADTOKEN
  24594. //
  24595. // MessageText:
  24596. //
  24597. // Unable to open the access token of the current thread
  24598. //
  24599. const auto CO_E_FAILEDTOOPENTHREADTOKEN = 0x80010125;
  24600. //
  24601. // MessageId: CO_E_FAILEDTOGETTOKENINFO
  24602. //
  24603. // MessageText:
  24604. //
  24605. // Unable to obtain user info from an access token
  24606. //
  24607. const auto CO_E_FAILEDTOGETTOKENINFO = 0x80010126;
  24608. //
  24609. // MessageId: CO_E_TRUSTEEDOESNTMATCHCLIENT
  24610. //
  24611. // MessageText:
  24612. //
  24613. // The client who called IAccessControl::IsAccessPermitted was not the trustee provided to the method
  24614. //
  24615. const auto CO_E_TRUSTEEDOESNTMATCHCLIENT = 0x80010127;
  24616. //
  24617. // MessageId: CO_E_FAILEDTOQUERYCLIENTBLANKET
  24618. //
  24619. // MessageText:
  24620. //
  24621. // Unable to obtain the client's security blanket
  24622. //
  24623. const auto CO_E_FAILEDTOQUERYCLIENTBLANKET = 0x80010128;
  24624. //
  24625. // MessageId: CO_E_FAILEDTOSETDACL
  24626. //
  24627. // MessageText:
  24628. //
  24629. // Unable to set a discretionary ACL into a security descriptor
  24630. //
  24631. const auto CO_E_FAILEDTOSETDACL = 0x80010129;
  24632. //
  24633. // MessageId: CO_E_ACCESSCHECKFAILED
  24634. //
  24635. // MessageText:
  24636. //
  24637. // The system function, AccessCheck, returned false
  24638. //
  24639. const auto CO_E_ACCESSCHECKFAILED = 0x8001012A;
  24640. //
  24641. // MessageId: CO_E_NETACCESSAPIFAILED
  24642. //
  24643. // MessageText:
  24644. //
  24645. // Either NetAccessDel or NetAccessAdd returned an error code.
  24646. //
  24647. const auto CO_E_NETACCESSAPIFAILED = 0x8001012B;
  24648. //
  24649. // MessageId: CO_E_WRONGTRUSTEENAMESYNTAX
  24650. //
  24651. // MessageText:
  24652. //
  24653. // One of the trustee strings provided by the user did not conform to the <Domain>\<Name> syntax and it was not the "*" string
  24654. //
  24655. const auto CO_E_WRONGTRUSTEENAMESYNTAX = 0x8001012C;
  24656. //
  24657. // MessageId: CO_E_INVALIDSID
  24658. //
  24659. // MessageText:
  24660. //
  24661. // One of the security identifiers provided by the user was invalid
  24662. //
  24663. const auto CO_E_INVALIDSID = 0x8001012D;
  24664. //
  24665. // MessageId: CO_E_CONVERSIONFAILED
  24666. //
  24667. // MessageText:
  24668. //
  24669. // Unable to convert a wide character trustee string to a multibyte trustee string
  24670. //
  24671. const auto CO_E_CONVERSIONFAILED = 0x8001012E;
  24672. //
  24673. // MessageId: CO_E_NOMATCHINGSIDFOUND
  24674. //
  24675. // MessageText:
  24676. //
  24677. // Unable to find a security identifier that corresponds to a trustee string provided by the user
  24678. //
  24679. const auto CO_E_NOMATCHINGSIDFOUND = 0x8001012F;
  24680. //
  24681. // MessageId: CO_E_LOOKUPACCSIDFAILED
  24682. //
  24683. // MessageText:
  24684. //
  24685. // The system function, LookupAccountSID, failed
  24686. //
  24687. const auto CO_E_LOOKUPACCSIDFAILED = 0x80010130;
  24688. //
  24689. // MessageId: CO_E_NOMATCHINGNAMEFOUND
  24690. //
  24691. // MessageText:
  24692. //
  24693. // Unable to find a trustee name that corresponds to a security identifier provided by the user
  24694. //
  24695. const auto CO_E_NOMATCHINGNAMEFOUND = 0x80010131;
  24696. //
  24697. // MessageId: CO_E_LOOKUPACCNAMEFAILED
  24698. //
  24699. // MessageText:
  24700. //
  24701. // The system function, LookupAccountName, failed
  24702. //
  24703. const auto CO_E_LOOKUPACCNAMEFAILED = 0x80010132;
  24704. //
  24705. // MessageId: CO_E_SETSERLHNDLFAILED
  24706. //
  24707. // MessageText:
  24708. //
  24709. // Unable to set or reset a serialization handle
  24710. //
  24711. const auto CO_E_SETSERLHNDLFAILED = 0x80010133;
  24712. //
  24713. // MessageId: CO_E_FAILEDTOGETWINDIR
  24714. //
  24715. // MessageText:
  24716. //
  24717. // Unable to obtain the Windows directory
  24718. //
  24719. const auto CO_E_FAILEDTOGETWINDIR = 0x80010134;
  24720. //
  24721. // MessageId: CO_E_PATHTOOLONG
  24722. //
  24723. // MessageText:
  24724. //
  24725. // Path too long
  24726. //
  24727. const auto CO_E_PATHTOOLONG = 0x80010135;
  24728. //
  24729. // MessageId: CO_E_FAILEDTOGENUUID
  24730. //
  24731. // MessageText:
  24732. //
  24733. // Unable to generate a uuid.
  24734. //
  24735. const auto CO_E_FAILEDTOGENUUID = 0x80010136;
  24736. //
  24737. // MessageId: CO_E_FAILEDTOCREATEFILE
  24738. //
  24739. // MessageText:
  24740. //
  24741. // Unable to create file
  24742. //
  24743. const auto CO_E_FAILEDTOCREATEFILE = 0x80010137;
  24744. //
  24745. // MessageId: CO_E_FAILEDTOCLOSEHANDLE
  24746. //
  24747. // MessageText:
  24748. //
  24749. // Unable to close a serialization handle or a file handle.
  24750. //
  24751. const auto CO_E_FAILEDTOCLOSEHANDLE = 0x80010138;
  24752. //
  24753. // MessageId: CO_E_EXCEEDSYSACLLIMIT
  24754. //
  24755. // MessageText:
  24756. //
  24757. // The number of ACEs in an ACL exceeds the system limit.
  24758. //
  24759. const auto CO_E_EXCEEDSYSACLLIMIT = 0x80010139;
  24760. //
  24761. // MessageId: CO_E_ACESINWRONGORDER
  24762. //
  24763. // MessageText:
  24764. //
  24765. // Not all the DENY_ACCESS ACEs are arranged in front of the GRANT_ACCESS ACEs in the stream.
  24766. //
  24767. const auto CO_E_ACESINWRONGORDER = 0x8001013A;
  24768. //
  24769. // MessageId: CO_E_INCOMPATIBLESTREAMVERSION
  24770. //
  24771. // MessageText:
  24772. //
  24773. // The version of ACL format in the stream is not supported by this implementation of IAccessControl
  24774. //
  24775. const auto CO_E_INCOMPATIBLESTREAMVERSION = 0x8001013B;
  24776. //
  24777. // MessageId: CO_E_FAILEDTOOPENPROCESSTOKEN
  24778. //
  24779. // MessageText:
  24780. //
  24781. // Unable to open the access token of the server process
  24782. //
  24783. const auto CO_E_FAILEDTOOPENPROCESSTOKEN = 0x8001013C;
  24784. //
  24785. // MessageId: CO_E_DECODEFAILED
  24786. //
  24787. // MessageText:
  24788. //
  24789. // Unable to decode the ACL in the stream provided by the user
  24790. //
  24791. const auto CO_E_DECODEFAILED = 0x8001013D;
  24792. //
  24793. // MessageId: CO_E_ACNOTINITIALIZED
  24794. //
  24795. // MessageText:
  24796. //
  24797. // The COM IAccessControl object is not initialized
  24798. //
  24799. const auto CO_E_ACNOTINITIALIZED = 0x8001013F;
  24800. //
  24801. // MessageId: CO_E_CANCEL_DISABLED
  24802. //
  24803. // MessageText:
  24804. //
  24805. // Call Cancellation is disabled
  24806. //
  24807. const auto CO_E_CANCEL_DISABLED = 0x80010140;
  24808. //
  24809. // MessageId: RPC_E_UNEXPECTED
  24810. //
  24811. // MessageText:
  24812. //
  24813. // An internal error occurred.
  24814. //
  24815. const auto RPC_E_UNEXPECTED = 0x8001FFFF;
  24816. //////////////////////////////////////
  24817. // //
  24818. // Additional Security Status Codes //
  24819. // //
  24820. // Facility=Security //
  24821. // //
  24822. //////////////////////////////////////
  24823. //
  24824. // MessageId: ERROR_AUDITING_DISABLED
  24825. //
  24826. // MessageText:
  24827. //
  24828. // The specified event is currently not being audited.
  24829. //
  24830. const auto ERROR_AUDITING_DISABLED = 0xC0090001;
  24831. //
  24832. // MessageId: ERROR_ALL_SIDS_FILTERED
  24833. //
  24834. // MessageText:
  24835. //
  24836. // The SID filtering operation removed all SIDs.
  24837. //
  24838. const auto ERROR_ALL_SIDS_FILTERED = 0xC0090002;
  24839. //
  24840. // MessageId: ERROR_BIZRULES_NOT_ENABLED
  24841. //
  24842. // MessageText:
  24843. //
  24844. // Business rule scripts are disabled for the calling application.
  24845. //
  24846. const auto ERROR_BIZRULES_NOT_ENABLED = 0xC0090003;
  24847. /////////////////////////////////////////////
  24848. // //
  24849. // end of Additional Security Status Codes //
  24850. // //
  24851. /////////////////////////////////////////////
  24852. /////////////////
  24853. //
  24854. // FACILITY_SSPI
  24855. //
  24856. /////////////////
  24857. //
  24858. // MessageId: NTE_BAD_UID
  24859. //
  24860. // MessageText:
  24861. //
  24862. // Bad UID.
  24863. //
  24864. const auto NTE_BAD_UID = 0x80090001;
  24865. //
  24866. // MessageId: NTE_BAD_HASH
  24867. //
  24868. // MessageText:
  24869. //
  24870. // Bad Hash.
  24871. //
  24872. const auto NTE_BAD_HASH = 0x80090002;
  24873. //
  24874. // MessageId: NTE_BAD_KEY
  24875. //
  24876. // MessageText:
  24877. //
  24878. // Bad Key.
  24879. //
  24880. const auto NTE_BAD_KEY = 0x80090003;
  24881. //
  24882. // MessageId: NTE_BAD_LEN
  24883. //
  24884. // MessageText:
  24885. //
  24886. // Bad Length.
  24887. //
  24888. const auto NTE_BAD_LEN = 0x80090004;
  24889. //
  24890. // MessageId: NTE_BAD_DATA
  24891. //
  24892. // MessageText:
  24893. //
  24894. // Bad Data.
  24895. //
  24896. const auto NTE_BAD_DATA = 0x80090005;
  24897. //
  24898. // MessageId: NTE_BAD_SIGNATURE
  24899. //
  24900. // MessageText:
  24901. //
  24902. // Invalid Signature.
  24903. //
  24904. const auto NTE_BAD_SIGNATURE = 0x80090006;
  24905. //
  24906. // MessageId: NTE_BAD_VER
  24907. //
  24908. // MessageText:
  24909. //
  24910. // Bad Version of provider.
  24911. //
  24912. const auto NTE_BAD_VER = 0x80090007;
  24913. //
  24914. // MessageId: NTE_BAD_ALGID
  24915. //
  24916. // MessageText:
  24917. //
  24918. // Invalid algorithm specified.
  24919. //
  24920. const auto NTE_BAD_ALGID = 0x80090008;
  24921. //
  24922. // MessageId: NTE_BAD_FLAGS
  24923. //
  24924. // MessageText:
  24925. //
  24926. // Invalid flags specified.
  24927. //
  24928. const auto NTE_BAD_FLAGS = 0x80090009;
  24929. //
  24930. // MessageId: NTE_BAD_TYPE
  24931. //
  24932. // MessageText:
  24933. //
  24934. // Invalid type specified.
  24935. //
  24936. const auto NTE_BAD_TYPE = 0x8009000A;
  24937. //
  24938. // MessageId: NTE_BAD_KEY_STATE
  24939. //
  24940. // MessageText:
  24941. //
  24942. // Key not valid for use in specified state.
  24943. //
  24944. const auto NTE_BAD_KEY_STATE = 0x8009000B;
  24945. //
  24946. // MessageId: NTE_BAD_HASH_STATE
  24947. //
  24948. // MessageText:
  24949. //
  24950. // Hash not valid for use in specified state.
  24951. //
  24952. const auto NTE_BAD_HASH_STATE = 0x8009000C;
  24953. //
  24954. // MessageId: NTE_NO_KEY
  24955. //
  24956. // MessageText:
  24957. //
  24958. // Key does not exist.
  24959. //
  24960. const auto NTE_NO_KEY = 0x8009000D;
  24961. //
  24962. // MessageId: NTE_NO_MEMORY
  24963. //
  24964. // MessageText:
  24965. //
  24966. // Insufficient memory available for the operation.
  24967. //
  24968. const auto NTE_NO_MEMORY = 0x8009000E;
  24969. //
  24970. // MessageId: NTE_EXISTS
  24971. //
  24972. // MessageText:
  24973. //
  24974. // Object already exists.
  24975. //
  24976. const auto NTE_EXISTS = 0x8009000F;
  24977. //
  24978. // MessageId: NTE_PERM
  24979. //
  24980. // MessageText:
  24981. //
  24982. // Access denied.
  24983. //
  24984. const auto NTE_PERM = 0x80090010;
  24985. //
  24986. // MessageId: NTE_NOT_FOUND
  24987. //
  24988. // MessageText:
  24989. //
  24990. // Object was not found.
  24991. //
  24992. const auto NTE_NOT_FOUND = 0x80090011;
  24993. //
  24994. // MessageId: NTE_DOUBLE_ENCRYPT
  24995. //
  24996. // MessageText:
  24997. //
  24998. // Data already encrypted.
  24999. //
  25000. const auto NTE_DOUBLE_ENCRYPT = 0x80090012;
  25001. //
  25002. // MessageId: NTE_BAD_PROVIDER
  25003. //
  25004. // MessageText:
  25005. //
  25006. // Invalid provider specified.
  25007. //
  25008. const auto NTE_BAD_PROVIDER = 0x80090013;
  25009. //
  25010. // MessageId: NTE_BAD_PROV_TYPE
  25011. //
  25012. // MessageText:
  25013. //
  25014. // Invalid provider type specified.
  25015. //
  25016. const auto NTE_BAD_PROV_TYPE = 0x80090014;
  25017. //
  25018. // MessageId: NTE_BAD_PUBLIC_KEY
  25019. //
  25020. // MessageText:
  25021. //
  25022. // Provider's public key is invalid.
  25023. //
  25024. const auto NTE_BAD_PUBLIC_KEY = 0x80090015;
  25025. //
  25026. // MessageId: NTE_BAD_KEYSET
  25027. //
  25028. // MessageText:
  25029. //
  25030. // Keyset does not exist
  25031. //
  25032. const auto NTE_BAD_KEYSET = 0x80090016;
  25033. //
  25034. // MessageId: NTE_PROV_TYPE_NOT_DEF
  25035. //
  25036. // MessageText:
  25037. //
  25038. // Provider type not defined.
  25039. //
  25040. const auto NTE_PROV_TYPE_NOT_DEF = 0x80090017;
  25041. //
  25042. // MessageId: NTE_PROV_TYPE_ENTRY_BAD
  25043. //
  25044. // MessageText:
  25045. //
  25046. // Provider type as registered is invalid.
  25047. //
  25048. const auto NTE_PROV_TYPE_ENTRY_BAD = 0x80090018;
  25049. //
  25050. // MessageId: NTE_KEYSET_NOT_DEF
  25051. //
  25052. // MessageText:
  25053. //
  25054. // The keyset is not defined.
  25055. //
  25056. const auto NTE_KEYSET_NOT_DEF = 0x80090019;
  25057. //
  25058. // MessageId: NTE_KEYSET_ENTRY_BAD
  25059. //
  25060. // MessageText:
  25061. //
  25062. // Keyset as registered is invalid.
  25063. //
  25064. const auto NTE_KEYSET_ENTRY_BAD = 0x8009001A;
  25065. //
  25066. // MessageId: NTE_PROV_TYPE_NO_MATCH
  25067. //
  25068. // MessageText:
  25069. //
  25070. // Provider type does not match registered value.
  25071. //
  25072. const auto NTE_PROV_TYPE_NO_MATCH = 0x8009001B;
  25073. //
  25074. // MessageId: NTE_SIGNATURE_FILE_BAD
  25075. //
  25076. // MessageText:
  25077. //
  25078. // The digital signature file is corrupt.
  25079. //
  25080. const auto NTE_SIGNATURE_FILE_BAD = 0x8009001C;
  25081. //
  25082. // MessageId: NTE_PROVIDER_DLL_FAIL
  25083. //
  25084. // MessageText:
  25085. //
  25086. // Provider DLL failed to initialize correctly.
  25087. //
  25088. const auto NTE_PROVIDER_DLL_FAIL = 0x8009001D;
  25089. //
  25090. // MessageId: NTE_PROV_DLL_NOT_FOUND
  25091. //
  25092. // MessageText:
  25093. //
  25094. // Provider DLL could not be found.
  25095. //
  25096. const auto NTE_PROV_DLL_NOT_FOUND = 0x8009001E;
  25097. //
  25098. // MessageId: NTE_BAD_KEYSET_PARAM
  25099. //
  25100. // MessageText:
  25101. //
  25102. // The Keyset parameter is invalid.
  25103. //
  25104. const auto NTE_BAD_KEYSET_PARAM = 0x8009001F;
  25105. //
  25106. // MessageId: NTE_FAIL
  25107. //
  25108. // MessageText:
  25109. //
  25110. // An internal error occurred.
  25111. //
  25112. const auto NTE_FAIL = 0x80090020;
  25113. //
  25114. // MessageId: NTE_SYS_ERR
  25115. //
  25116. // MessageText:
  25117. //
  25118. // A base error occurred.
  25119. //
  25120. const auto NTE_SYS_ERR = 0x80090021;
  25121. //
  25122. // MessageId: NTE_SILENT_CONTEXT
  25123. //
  25124. // MessageText:
  25125. //
  25126. // Provider could not perform the action since the context was acquired as silent.
  25127. //
  25128. const auto NTE_SILENT_CONTEXT = 0x80090022;
  25129. //
  25130. // MessageId: NTE_TOKEN_KEYSET_STORAGE_FULL
  25131. //
  25132. // MessageText:
  25133. //
  25134. // The security token does not have storage space available for an additional container.
  25135. //
  25136. const auto NTE_TOKEN_KEYSET_STORAGE_FULL = 0x80090023;
  25137. //
  25138. // MessageId: NTE_TEMPORARY_PROFILE
  25139. //
  25140. // MessageText:
  25141. //
  25142. // The profile for the user is a temporary profile.
  25143. //
  25144. const auto NTE_TEMPORARY_PROFILE = 0x80090024;
  25145. //
  25146. // MessageId: NTE_FIXEDPARAMETER
  25147. //
  25148. // MessageText:
  25149. //
  25150. // The key parameters could not be set because the CSP uses fixed parameters.
  25151. //
  25152. const auto NTE_FIXEDPARAMETER = 0x80090025;
  25153. //
  25154. // MessageId: NTE_INVALID_HANDLE
  25155. //
  25156. // MessageText:
  25157. //
  25158. // The supplied handle is invalid.
  25159. //
  25160. const auto NTE_INVALID_HANDLE = 0x80090026;
  25161. //
  25162. // MessageId: NTE_INVALID_PARAMETER
  25163. //
  25164. // MessageText:
  25165. //
  25166. // The parameter is incorrect.
  25167. //
  25168. const auto NTE_INVALID_PARAMETER = 0x80090027;
  25169. //
  25170. // MessageId: NTE_BUFFER_TOO_SMALL
  25171. //
  25172. // MessageText:
  25173. //
  25174. // The buffer supplied to a function was too small.
  25175. //
  25176. const auto NTE_BUFFER_TOO_SMALL = 0x80090028;
  25177. //
  25178. // MessageId: NTE_NOT_SUPPORTED
  25179. //
  25180. // MessageText:
  25181. //
  25182. // The requested operation is not supported.
  25183. //
  25184. const auto NTE_NOT_SUPPORTED = 0x80090029;
  25185. //
  25186. // MessageId: NTE_NO_MORE_ITEMS
  25187. //
  25188. // MessageText:
  25189. //
  25190. // No more data is available.
  25191. //
  25192. const auto NTE_NO_MORE_ITEMS = 0x8009002A;
  25193. //
  25194. // MessageId: NTE_BUFFERS_OVERLAP
  25195. //
  25196. // MessageText:
  25197. //
  25198. // The supplied buffers overlap incorrectly.
  25199. //
  25200. const auto NTE_BUFFERS_OVERLAP = 0x8009002B;
  25201. //
  25202. // MessageId: NTE_DECRYPTION_FAILURE
  25203. //
  25204. // MessageText:
  25205. //
  25206. // The specified data could not be decrypted.
  25207. //
  25208. const auto NTE_DECRYPTION_FAILURE = 0x8009002C;
  25209. //
  25210. // MessageId: NTE_INTERNAL_ERROR
  25211. //
  25212. // MessageText:
  25213. //
  25214. // An internal consistency check failed.
  25215. //
  25216. const auto NTE_INTERNAL_ERROR = 0x8009002D;
  25217. //
  25218. // MessageId: NTE_UI_REQUIRED
  25219. //
  25220. // MessageText:
  25221. //
  25222. // This operation requires input from the user.
  25223. //
  25224. const auto NTE_UI_REQUIRED = 0x8009002E;
  25225. //
  25226. // MessageId: NTE_HMAC_NOT_SUPPORTED
  25227. //
  25228. // MessageText:
  25229. //
  25230. // The cryptographic provider does not support HMAC.
  25231. //
  25232. const auto NTE_HMAC_NOT_SUPPORTED = 0x8009002F;
  25233. //
  25234. // MessageId: SEC_E_INSUFFICIENT_MEMORY
  25235. //
  25236. // MessageText:
  25237. //
  25238. // Not enough memory is available to complete this request
  25239. //
  25240. const auto SEC_E_INSUFFICIENT_MEMORY = 0x80090300;
  25241. //
  25242. // MessageId: SEC_E_INVALID_HANDLE
  25243. //
  25244. // MessageText:
  25245. //
  25246. // The handle specified is invalid
  25247. //
  25248. const auto SEC_E_INVALID_HANDLE = 0x80090301;
  25249. //
  25250. // MessageId: SEC_E_UNSUPPORTED_FUNCTION
  25251. //
  25252. // MessageText:
  25253. //
  25254. // The function requested is not supported
  25255. //
  25256. const auto SEC_E_UNSUPPORTED_FUNCTION = 0x80090302;
  25257. //
  25258. // MessageId: SEC_E_TARGET_UNKNOWN
  25259. //
  25260. // MessageText:
  25261. //
  25262. // The specified target is unknown or unreachable
  25263. //
  25264. const auto SEC_E_TARGET_UNKNOWN = 0x80090303;
  25265. //
  25266. // MessageId: SEC_E_INTERNAL_ERROR
  25267. //
  25268. // MessageText:
  25269. //
  25270. // The Local Security Authority cannot be contacted
  25271. //
  25272. const auto SEC_E_INTERNAL_ERROR = 0x80090304;
  25273. //
  25274. // MessageId: SEC_E_SECPKG_NOT_FOUND
  25275. //
  25276. // MessageText:
  25277. //
  25278. // The requested security package does not exist
  25279. //
  25280. const auto SEC_E_SECPKG_NOT_FOUND = 0x80090305;
  25281. //
  25282. // MessageId: SEC_E_NOT_OWNER
  25283. //
  25284. // MessageText:
  25285. //
  25286. // The caller is not the owner of the desired credentials
  25287. //
  25288. const auto SEC_E_NOT_OWNER = 0x80090306;
  25289. //
  25290. // MessageId: SEC_E_CANNOT_INSTALL
  25291. //
  25292. // MessageText:
  25293. //
  25294. // The security package failed to initialize, and cannot be installed
  25295. //
  25296. const auto SEC_E_CANNOT_INSTALL = 0x80090307;
  25297. //
  25298. // MessageId: SEC_E_INVALID_TOKEN
  25299. //
  25300. // MessageText:
  25301. //
  25302. // The token supplied to the function is invalid
  25303. //
  25304. const auto SEC_E_INVALID_TOKEN = 0x80090308;
  25305. //
  25306. // MessageId: SEC_E_CANNOT_PACK
  25307. //
  25308. // MessageText:
  25309. //
  25310. // The security package is not able to marshall the logon buffer, so the logon attempt has failed
  25311. //
  25312. const auto SEC_E_CANNOT_PACK = 0x80090309;
  25313. //
  25314. // MessageId: SEC_E_QOP_NOT_SUPPORTED
  25315. //
  25316. // MessageText:
  25317. //
  25318. // The per-message Quality of Protection is not supported by the security package
  25319. //
  25320. const auto SEC_E_QOP_NOT_SUPPORTED = 0x8009030A;
  25321. //
  25322. // MessageId: SEC_E_NO_IMPERSONATION
  25323. //
  25324. // MessageText:
  25325. //
  25326. // The security context does not allow impersonation of the client
  25327. //
  25328. const auto SEC_E_NO_IMPERSONATION = 0x8009030B;
  25329. //
  25330. // MessageId: SEC_E_LOGON_DENIED
  25331. //
  25332. // MessageText:
  25333. //
  25334. // The logon attempt failed
  25335. //
  25336. const auto SEC_E_LOGON_DENIED = 0x8009030C;
  25337. //
  25338. // MessageId: SEC_E_UNKNOWN_CREDENTIALS
  25339. //
  25340. // MessageText:
  25341. //
  25342. // The credentials supplied to the package were not recognized
  25343. //
  25344. const auto SEC_E_UNKNOWN_CREDENTIALS = 0x8009030D;
  25345. //
  25346. // MessageId: SEC_E_NO_CREDENTIALS
  25347. //
  25348. // MessageText:
  25349. //
  25350. // No credentials are available in the security package
  25351. //
  25352. const auto SEC_E_NO_CREDENTIALS = 0x8009030E;
  25353. //
  25354. // MessageId: SEC_E_MESSAGE_ALTERED
  25355. //
  25356. // MessageText:
  25357. //
  25358. // The message or signature supplied for verification has been altered
  25359. //
  25360. const auto SEC_E_MESSAGE_ALTERED = 0x8009030F;
  25361. //
  25362. // MessageId: SEC_E_OUT_OF_SEQUENCE
  25363. //
  25364. // MessageText:
  25365. //
  25366. // The message supplied for verification is out of sequence
  25367. //
  25368. const auto SEC_E_OUT_OF_SEQUENCE = 0x80090310;
  25369. //
  25370. // MessageId: SEC_E_NO_AUTHENTICATING_AUTHORITY
  25371. //
  25372. // MessageText:
  25373. //
  25374. // No authority could be contacted for authentication.
  25375. //
  25376. const auto SEC_E_NO_AUTHENTICATING_AUTHORITY = 0x80090311;
  25377. //
  25378. // MessageId: SEC_I_CONTINUE_NEEDED
  25379. //
  25380. // MessageText:
  25381. //
  25382. // The function completed successfully, but must be called again to complete the context
  25383. //
  25384. const auto SEC_I_CONTINUE_NEEDED = 0x00090312;
  25385. //
  25386. // MessageId: SEC_I_COMPLETE_NEEDED
  25387. //
  25388. // MessageText:
  25389. //
  25390. // The function completed successfully, but CompleteToken must be called
  25391. //
  25392. const auto SEC_I_COMPLETE_NEEDED = 0x00090313;
  25393. //
  25394. // MessageId: SEC_I_COMPLETE_AND_CONTINUE
  25395. //
  25396. // MessageText:
  25397. //
  25398. // The function completed successfully, but both CompleteToken and this function must be called to complete the context
  25399. //
  25400. const auto SEC_I_COMPLETE_AND_CONTINUE = 0x00090314;
  25401. //
  25402. // MessageId: SEC_I_LOCAL_LOGON
  25403. //
  25404. // MessageText:
  25405. //
  25406. // The logon was completed, but no network authority was available. The logon was made using locally known information
  25407. //
  25408. const auto SEC_I_LOCAL_LOGON = 0x00090315;
  25409. //
  25410. // MessageId: SEC_E_BAD_PKGID
  25411. //
  25412. // MessageText:
  25413. //
  25414. // The requested security package does not exist
  25415. //
  25416. const auto SEC_E_BAD_PKGID = 0x80090316;
  25417. //
  25418. // MessageId: SEC_E_CONTEXT_EXPIRED
  25419. //
  25420. // MessageText:
  25421. //
  25422. // The context has expired and can no longer be used.
  25423. //
  25424. const auto SEC_E_CONTEXT_EXPIRED = 0x80090317;
  25425. //
  25426. // MessageId: SEC_I_CONTEXT_EXPIRED
  25427. //
  25428. // MessageText:
  25429. //
  25430. // The context has expired and can no longer be used.
  25431. //
  25432. const auto SEC_I_CONTEXT_EXPIRED = 0x00090317;
  25433. //
  25434. // MessageId: SEC_E_INCOMPLETE_MESSAGE
  25435. //
  25436. // MessageText:
  25437. //
  25438. // The supplied message is incomplete. The signature was not verified.
  25439. //
  25440. const auto SEC_E_INCOMPLETE_MESSAGE = 0x80090318;
  25441. //
  25442. // MessageId: SEC_E_INCOMPLETE_CREDENTIALS
  25443. //
  25444. // MessageText:
  25445. //
  25446. // The credentials supplied were not complete, and could not be verified. The context could not be initialized.
  25447. //
  25448. const auto SEC_E_INCOMPLETE_CREDENTIALS = 0x80090320;
  25449. //
  25450. // MessageId: SEC_E_BUFFER_TOO_SMALL
  25451. //
  25452. // MessageText:
  25453. //
  25454. // The buffers supplied to a function was too small.
  25455. //
  25456. const auto SEC_E_BUFFER_TOO_SMALL = 0x80090321;
  25457. //
  25458. // MessageId: SEC_I_INCOMPLETE_CREDENTIALS
  25459. //
  25460. // MessageText:
  25461. //
  25462. // The credentials supplied were not complete, and could not be verified. Additional information can be returned from the context.
  25463. //
  25464. const auto SEC_I_INCOMPLETE_CREDENTIALS = 0x00090320;
  25465. //
  25466. // MessageId: SEC_I_RENEGOTIATE
  25467. //
  25468. // MessageText:
  25469. //
  25470. // The context data must be renegotiated with the peer.
  25471. //
  25472. const auto SEC_I_RENEGOTIATE = 0x00090321;
  25473. //
  25474. // MessageId: SEC_E_WRONG_PRINCIPAL
  25475. //
  25476. // MessageText:
  25477. //
  25478. // The target principal name is incorrect.
  25479. //
  25480. const auto SEC_E_WRONG_PRINCIPAL = 0x80090322;
  25481. //
  25482. // MessageId: SEC_I_NO_LSA_CONTEXT
  25483. //
  25484. // MessageText:
  25485. //
  25486. // There is no LSA mode context associated with this context.
  25487. //
  25488. const auto SEC_I_NO_LSA_CONTEXT = 0x00090323;
  25489. //
  25490. // MessageId: SEC_E_TIME_SKEW
  25491. //
  25492. // MessageText:
  25493. //
  25494. // The clocks on the client and server machines are skewed.
  25495. //
  25496. const auto SEC_E_TIME_SKEW = 0x80090324;
  25497. //
  25498. // MessageId: SEC_E_UNTRUSTED_ROOT
  25499. //
  25500. // MessageText:
  25501. //
  25502. // The certificate chain was issued by an authority that is not trusted.
  25503. //
  25504. const auto SEC_E_UNTRUSTED_ROOT = 0x80090325;
  25505. //
  25506. // MessageId: SEC_E_ILLEGAL_MESSAGE
  25507. //
  25508. // MessageText:
  25509. //
  25510. // The message received was unexpected or badly formatted.
  25511. //
  25512. const auto SEC_E_ILLEGAL_MESSAGE = 0x80090326;
  25513. //
  25514. // MessageId: SEC_E_CERT_UNKNOWN
  25515. //
  25516. // MessageText:
  25517. //
  25518. // An unknown error occurred while processing the certificate.
  25519. //
  25520. const auto SEC_E_CERT_UNKNOWN = 0x80090327;
  25521. //
  25522. // MessageId: SEC_E_CERT_EXPIRED
  25523. //
  25524. // MessageText:
  25525. //
  25526. // The received certificate has expired.
  25527. //
  25528. const auto SEC_E_CERT_EXPIRED = 0x80090328;
  25529. //
  25530. // MessageId: SEC_E_ENCRYPT_FAILURE
  25531. //
  25532. // MessageText:
  25533. //
  25534. // The specified data could not be encrypted.
  25535. //
  25536. const auto SEC_E_ENCRYPT_FAILURE = 0x80090329;
  25537. //
  25538. // MessageId: SEC_E_DECRYPT_FAILURE
  25539. //
  25540. // MessageText:
  25541. //
  25542. // The specified data could not be decrypted.
  25543. //
  25544. //
  25545. const auto SEC_E_DECRYPT_FAILURE = 0x80090330;
  25546. //
  25547. // MessageId: SEC_E_ALGORITHM_MISMATCH
  25548. //
  25549. // MessageText:
  25550. //
  25551. // The client and server cannot communicate, because they do not possess a common algorithm.
  25552. //
  25553. const auto SEC_E_ALGORITHM_MISMATCH = 0x80090331;
  25554. //
  25555. // MessageId: SEC_E_SECURITY_QOS_FAILED
  25556. //
  25557. // MessageText:
  25558. //
  25559. // The security context could not be established due to a failure in the requested quality of service (e.g. mutual authentication or delegation).
  25560. //
  25561. const auto SEC_E_SECURITY_QOS_FAILED = 0x80090332;
  25562. //
  25563. // MessageId: SEC_E_UNFINISHED_CONTEXT_DELETED
  25564. //
  25565. // MessageText:
  25566. //
  25567. // A security context was deleted before the context was completed. This is considered a logon failure.
  25568. //
  25569. const auto SEC_E_UNFINISHED_CONTEXT_DELETED = 0x80090333;
  25570. //
  25571. // MessageId: SEC_E_NO_TGT_REPLY
  25572. //
  25573. // MessageText:
  25574. //
  25575. // The client is trying to negotiate a context and the server requires user-to-user but didn't send a TGT reply.
  25576. //
  25577. const auto SEC_E_NO_TGT_REPLY = 0x80090334;
  25578. //
  25579. // MessageId: SEC_E_NO_IP_ADDRESSES
  25580. //
  25581. // MessageText:
  25582. //
  25583. // Unable to accomplish the requested task because the local machine does not have any IP addresses.
  25584. //
  25585. const auto SEC_E_NO_IP_ADDRESSES = 0x80090335;
  25586. //
  25587. // MessageId: SEC_E_WRONG_CREDENTIAL_HANDLE
  25588. //
  25589. // MessageText:
  25590. //
  25591. // The supplied credential handle does not match the credential associated with the security context.
  25592. //
  25593. const auto SEC_E_WRONG_CREDENTIAL_HANDLE = 0x80090336;
  25594. //
  25595. // MessageId: SEC_E_CRYPTO_SYSTEM_INVALID
  25596. //
  25597. // MessageText:
  25598. //
  25599. // The crypto system or checksum function is invalid because a required function is unavailable.
  25600. //
  25601. const auto SEC_E_CRYPTO_SYSTEM_INVALID = 0x80090337;
  25602. //
  25603. // MessageId: SEC_E_MAX_REFERRALS_EXCEEDED
  25604. //
  25605. // MessageText:
  25606. //
  25607. // The number of maximum ticket referrals has been exceeded.
  25608. //
  25609. const auto SEC_E_MAX_REFERRALS_EXCEEDED = 0x80090338;
  25610. //
  25611. // MessageId: SEC_E_MUST_BE_KDC
  25612. //
  25613. // MessageText:
  25614. //
  25615. // The local machine must be a Kerberos KDC (domain controller) and it is not.
  25616. //
  25617. const auto SEC_E_MUST_BE_KDC = 0x80090339;
  25618. //
  25619. // MessageId: SEC_E_STRONG_CRYPTO_NOT_SUPPORTED
  25620. //
  25621. // MessageText:
  25622. //
  25623. // The other end of the security negotiation is requires strong crypto but it is not supported on the local machine.
  25624. //
  25625. const auto SEC_E_STRONG_CRYPTO_NOT_SUPPORTED = 0x8009033A;
  25626. //
  25627. // MessageId: SEC_E_TOO_MANY_PRINCIPALS
  25628. //
  25629. // MessageText:
  25630. //
  25631. // The KDC reply contained more than one principal name.
  25632. //
  25633. const auto SEC_E_TOO_MANY_PRINCIPALS = 0x8009033B;
  25634. //
  25635. // MessageId: SEC_E_NO_PA_DATA
  25636. //
  25637. // MessageText:
  25638. //
  25639. // Expected to find PA data for a hint of what etype to use, but it was not found.
  25640. //
  25641. const auto SEC_E_NO_PA_DATA = 0x8009033C;
  25642. //
  25643. // MessageId: SEC_E_PKINIT_NAME_MISMATCH
  25644. //
  25645. // MessageText:
  25646. //
  25647. // The client certificate does not contain a valid UPN, or does not match the client name
  25648. // in the logon request. Please contact your administrator.
  25649. //
  25650. const auto SEC_E_PKINIT_NAME_MISMATCH = 0x8009033D;
  25651. //
  25652. // MessageId: SEC_E_SMARTCARD_LOGON_REQUIRED
  25653. //
  25654. // MessageText:
  25655. //
  25656. // Smartcard logon is required and was not used.
  25657. //
  25658. const auto SEC_E_SMARTCARD_LOGON_REQUIRED = 0x8009033E;
  25659. //
  25660. // MessageId: SEC_E_SHUTDOWN_IN_PROGRESS
  25661. //
  25662. // MessageText:
  25663. //
  25664. // A system shutdown is in progress.
  25665. //
  25666. const auto SEC_E_SHUTDOWN_IN_PROGRESS = 0x8009033F;
  25667. //
  25668. // MessageId: SEC_E_KDC_INVALID_REQUEST
  25669. //
  25670. // MessageText:
  25671. //
  25672. // An invalid request was sent to the KDC.
  25673. //
  25674. const auto SEC_E_KDC_INVALID_REQUEST = 0x80090340;
  25675. //
  25676. // MessageId: SEC_E_KDC_UNABLE_TO_REFER
  25677. //
  25678. // MessageText:
  25679. //
  25680. // The KDC was unable to generate a referral for the service requested.
  25681. //
  25682. const auto SEC_E_KDC_UNABLE_TO_REFER = 0x80090341;
  25683. //
  25684. // MessageId: SEC_E_KDC_UNKNOWN_ETYPE
  25685. //
  25686. // MessageText:
  25687. //
  25688. // The encryption type requested is not supported by the KDC.
  25689. //
  25690. const auto SEC_E_KDC_UNKNOWN_ETYPE = 0x80090342;
  25691. //
  25692. // MessageId: SEC_E_UNSUPPORTED_PREAUTH
  25693. //
  25694. // MessageText:
  25695. //
  25696. // An unsupported preauthentication mechanism was presented to the kerberos package.
  25697. //
  25698. const auto SEC_E_UNSUPPORTED_PREAUTH = 0x80090343;
  25699. //
  25700. // MessageId: SEC_E_DELEGATION_REQUIRED
  25701. //
  25702. // MessageText:
  25703. //
  25704. // The requested operation cannot be completed. The computer must be trusted for delegation and the current user account must be configured to allow delegation.
  25705. //
  25706. const auto SEC_E_DELEGATION_REQUIRED = 0x80090345;
  25707. //
  25708. // MessageId: SEC_E_BAD_BINDINGS
  25709. //
  25710. // MessageText:
  25711. //
  25712. // Client's supplied SSPI channel bindings were incorrect.
  25713. //
  25714. const auto SEC_E_BAD_BINDINGS = 0x80090346;
  25715. //
  25716. // MessageId: SEC_E_MULTIPLE_ACCOUNTS
  25717. //
  25718. // MessageText:
  25719. //
  25720. // The received certificate was mapped to multiple accounts.
  25721. //
  25722. const auto SEC_E_MULTIPLE_ACCOUNTS = 0x80090347;
  25723. //
  25724. // MessageId: SEC_E_NO_KERB_KEY
  25725. //
  25726. // MessageText:
  25727. //
  25728. // SEC_E_NO_KERB_KEY
  25729. //
  25730. const auto SEC_E_NO_KERB_KEY = 0x80090348;
  25731. //
  25732. // MessageId: SEC_E_CERT_WRONG_USAGE
  25733. //
  25734. // MessageText:
  25735. //
  25736. // The certificate is not valid for the requested usage.
  25737. //
  25738. const auto SEC_E_CERT_WRONG_USAGE = 0x80090349;
  25739. //
  25740. // MessageId: SEC_E_DOWNGRADE_DETECTED
  25741. //
  25742. // MessageText:
  25743. //
  25744. // The system detected a possible attempt to compromise security. Please ensure that you can contact the server that authenticated you.
  25745. //
  25746. const auto SEC_E_DOWNGRADE_DETECTED = 0x80090350;
  25747. //
  25748. // MessageId: SEC_E_SMARTCARD_CERT_REVOKED
  25749. //
  25750. // MessageText:
  25751. //
  25752. // The smartcard certificate used for authentication has been revoked. Please contact your system administrator. There may be additional information in the event log.
  25753. //
  25754. const auto SEC_E_SMARTCARD_CERT_REVOKED = 0x80090351;
  25755. //
  25756. // MessageId: SEC_E_ISSUING_CA_UNTRUSTED
  25757. //
  25758. // MessageText:
  25759. //
  25760. // An untrusted certificate authority was detected While processing the smartcard certificate used for authentication. Please contact your system administrator.
  25761. //
  25762. const auto SEC_E_ISSUING_CA_UNTRUSTED = 0x80090352;
  25763. //
  25764. // MessageId: SEC_E_REVOCATION_OFFLINE_C
  25765. //
  25766. // MessageText:
  25767. //
  25768. // The revocation status of the smartcard certificate used for
  25769. // authentication could not be determined. Please contact your system administrator.
  25770. //
  25771. const auto SEC_E_REVOCATION_OFFLINE_C = 0x80090353;
  25772. //
  25773. // MessageId: SEC_E_PKINIT_CLIENT_FAILURE
  25774. //
  25775. // MessageText:
  25776. //
  25777. // The smartcard certificate used for authentication was not trusted. Please contact your system administrator.
  25778. //
  25779. const auto SEC_E_PKINIT_CLIENT_FAILURE = 0x80090354;
  25780. //
  25781. // MessageId: SEC_E_SMARTCARD_CERT_EXPIRED
  25782. //
  25783. // MessageText:
  25784. //
  25785. // The smartcard certificate used for authentication has expired. Please contact your system administrator.
  25786. //
  25787. const auto SEC_E_SMARTCARD_CERT_EXPIRED = 0x80090355;
  25788. //
  25789. // MessageId: SEC_E_NO_S4U_PROT_SUPPORT
  25790. //
  25791. // MessageText:
  25792. //
  25793. // The Kerberos subsystem encountered an error. A service for user protocol request was made against a domain controller which does not support service for user.
  25794. //
  25795. const auto SEC_E_NO_S4U_PROT_SUPPORT = 0x80090356;
  25796. //
  25797. // MessageId: SEC_E_CROSSREALM_DELEGATION_FAILURE
  25798. //
  25799. // MessageText:
  25800. //
  25801. // An attempt was made by this server to make a Kerberos constrained delegation request for a target outside of the server's realm. This is not supported, and indicates a misconfiguration on this server's allowed to delegate to list. Please contact your administrator.
  25802. //
  25803. const auto SEC_E_CROSSREALM_DELEGATION_FAILURE = 0x80090357;
  25804. //
  25805. // MessageId: SEC_E_REVOCATION_OFFLINE_KDC
  25806. //
  25807. // MessageText:
  25808. //
  25809. // The revocation status of the domain controller certificate used for smartcard authentication could not be determined. There is additional information in the system event log. Please contact your system administrator.
  25810. //
  25811. const auto SEC_E_REVOCATION_OFFLINE_KDC = 0x80090358;
  25812. //
  25813. // MessageId: SEC_E_ISSUING_CA_UNTRUSTED_KDC
  25814. //
  25815. // MessageText:
  25816. //
  25817. // An untrusted certificate authority was detected while processing the domain controller certificate used for authentication. There is additional information in the system event log. Please contact your system administrator.
  25818. //
  25819. const auto SEC_E_ISSUING_CA_UNTRUSTED_KDC = 0x80090359;
  25820. //
  25821. // MessageId: SEC_E_KDC_CERT_EXPIRED
  25822. //
  25823. // MessageText:
  25824. //
  25825. // The domain controller certificate used for smartcard logon has expired. Please contact your system administrator with the contents of your system event log.
  25826. //
  25827. const auto SEC_E_KDC_CERT_EXPIRED = 0x8009035A;
  25828. //
  25829. // MessageId: SEC_E_KDC_CERT_REVOKED
  25830. //
  25831. // MessageText:
  25832. //
  25833. // The domain controller certificate used for smartcard logon has been revoked. Please contact your system administrator with the contents of your system event log.
  25834. //
  25835. const auto SEC_E_KDC_CERT_REVOKED = 0x8009035B;
  25836. //
  25837. // MessageId: SEC_I_SIGNATURE_NEEDED
  25838. //
  25839. // MessageText:
  25840. //
  25841. // A signature operation must be performed before the user can authenticate.
  25842. //
  25843. const auto SEC_I_SIGNATURE_NEEDED = 0x0009035C;
  25844. //
  25845. // MessageId: SEC_E_INVALID_PARAMETER
  25846. //
  25847. // MessageText:
  25848. //
  25849. // One or more of the parameters passed to the function was invalid.
  25850. //
  25851. const auto SEC_E_INVALID_PARAMETER = 0x8009035D;
  25852. //
  25853. // MessageId: SEC_E_DELEGATION_POLICY
  25854. //
  25855. // MessageText:
  25856. //
  25857. // Client policy does not allow credential delegation to target server.
  25858. //
  25859. const auto SEC_E_DELEGATION_POLICY = 0x8009035E;
  25860. //
  25861. // MessageId: SEC_E_POLICY_NLTM_ONLY
  25862. //
  25863. // MessageText:
  25864. //
  25865. // Client policy does not allow credential delegation to target server with NLTM only authentication.
  25866. //
  25867. const auto SEC_E_POLICY_NLTM_ONLY = 0x8009035F;
  25868. //
  25869. // MessageId: SEC_I_NO_RENEGOTIATION
  25870. //
  25871. // MessageText:
  25872. //
  25873. // The recipient rejected the renegotiation request.
  25874. //
  25875. const auto SEC_I_NO_RENEGOTIATION = 0x00090360;
  25876. //
  25877. // Provided for backwards compatibility
  25878. //
  25879. alias SEC_E_INTERNAL_ERROR SEC_E_NO_SPM;
  25880. alias SEC_E_UNSUPPORTED_FUNCTION SEC_E_NOT_SUPPORTED;
  25881. //
  25882. // MessageId: CRYPT_E_MSG_ERROR
  25883. //
  25884. // MessageText:
  25885. //
  25886. // An error occurred while performing an operation on a cryptographic message.
  25887. //
  25888. const auto CRYPT_E_MSG_ERROR = 0x80091001;
  25889. //
  25890. // MessageId: CRYPT_E_UNKNOWN_ALGO
  25891. //
  25892. // MessageText:
  25893. //
  25894. // Unknown cryptographic algorithm.
  25895. //
  25896. const auto CRYPT_E_UNKNOWN_ALGO = 0x80091002;
  25897. //
  25898. // MessageId: CRYPT_E_OID_FORMAT
  25899. //
  25900. // MessageText:
  25901. //
  25902. // The object identifier is poorly formatted.
  25903. //
  25904. const auto CRYPT_E_OID_FORMAT = 0x80091003;
  25905. //
  25906. // MessageId: CRYPT_E_INVALID_MSG_TYPE
  25907. //
  25908. // MessageText:
  25909. //
  25910. // Invalid cryptographic message type.
  25911. //
  25912. const auto CRYPT_E_INVALID_MSG_TYPE = 0x80091004;
  25913. //
  25914. // MessageId: CRYPT_E_UNEXPECTED_ENCODING
  25915. //
  25916. // MessageText:
  25917. //
  25918. // Unexpected cryptographic message encoding.
  25919. //
  25920. const auto CRYPT_E_UNEXPECTED_ENCODING = 0x80091005;
  25921. //
  25922. // MessageId: CRYPT_E_AUTH_ATTR_MISSING
  25923. //
  25924. // MessageText:
  25925. //
  25926. // The cryptographic message does not contain an expected authenticated attribute.
  25927. //
  25928. const auto CRYPT_E_AUTH_ATTR_MISSING = 0x80091006;
  25929. //
  25930. // MessageId: CRYPT_E_HASH_VALUE
  25931. //
  25932. // MessageText:
  25933. //
  25934. // The hash value is not correct.
  25935. //
  25936. const auto CRYPT_E_HASH_VALUE = 0x80091007;
  25937. //
  25938. // MessageId: CRYPT_E_INVALID_INDEX
  25939. //
  25940. // MessageText:
  25941. //
  25942. // The index value is not valid.
  25943. //
  25944. const auto CRYPT_E_INVALID_INDEX = 0x80091008;
  25945. //
  25946. // MessageId: CRYPT_E_ALREADY_DECRYPTED
  25947. //
  25948. // MessageText:
  25949. //
  25950. // The content of the cryptographic message has already been decrypted.
  25951. //
  25952. const auto CRYPT_E_ALREADY_DECRYPTED = 0x80091009;
  25953. //
  25954. // MessageId: CRYPT_E_NOT_DECRYPTED
  25955. //
  25956. // MessageText:
  25957. //
  25958. // The content of the cryptographic message has not been decrypted yet.
  25959. //
  25960. const auto CRYPT_E_NOT_DECRYPTED = 0x8009100A;
  25961. //
  25962. // MessageId: CRYPT_E_RECIPIENT_NOT_FOUND
  25963. //
  25964. // MessageText:
  25965. //
  25966. // The enveloped-data message does not contain the specified recipient.
  25967. //
  25968. const auto CRYPT_E_RECIPIENT_NOT_FOUND = 0x8009100B;
  25969. //
  25970. // MessageId: CRYPT_E_CONTROL_TYPE
  25971. //
  25972. // MessageText:
  25973. //
  25974. // Invalid control type.
  25975. //
  25976. const auto CRYPT_E_CONTROL_TYPE = 0x8009100C;
  25977. //
  25978. // MessageId: CRYPT_E_ISSUER_SERIALNUMBER
  25979. //
  25980. // MessageText:
  25981. //
  25982. // Invalid issuer and/or serial number.
  25983. //
  25984. const auto CRYPT_E_ISSUER_SERIALNUMBER = 0x8009100D;
  25985. //
  25986. // MessageId: CRYPT_E_SIGNER_NOT_FOUND
  25987. //
  25988. // MessageText:
  25989. //
  25990. // Cannot find the original signer.
  25991. //
  25992. const auto CRYPT_E_SIGNER_NOT_FOUND = 0x8009100E;
  25993. //
  25994. // MessageId: CRYPT_E_ATTRIBUTES_MISSING
  25995. //
  25996. // MessageText:
  25997. //
  25998. // The cryptographic message does not contain all of the requested attributes.
  25999. //
  26000. const auto CRYPT_E_ATTRIBUTES_MISSING = 0x8009100F;
  26001. //
  26002. // MessageId: CRYPT_E_STREAM_MSG_NOT_READY
  26003. //
  26004. // MessageText:
  26005. //
  26006. // The streamed cryptographic message is not ready to return data.
  26007. //
  26008. const auto CRYPT_E_STREAM_MSG_NOT_READY = 0x80091010;
  26009. //
  26010. // MessageId: CRYPT_E_STREAM_INSUFFICIENT_DATA
  26011. //
  26012. // MessageText:
  26013. //
  26014. // The streamed cryptographic message requires more data to complete the decode operation.
  26015. //
  26016. const auto CRYPT_E_STREAM_INSUFFICIENT_DATA = 0x80091011;
  26017. //
  26018. // MessageId: CRYPT_I_NEW_PROTECTION_REQUIRED
  26019. //
  26020. // MessageText:
  26021. //
  26022. // The protected data needs to be re-protected.
  26023. //
  26024. const auto CRYPT_I_NEW_PROTECTION_REQUIRED = 0x00091012;
  26025. //
  26026. // MessageId: CRYPT_E_BAD_LEN
  26027. //
  26028. // MessageText:
  26029. //
  26030. // The length specified for the output data was insufficient.
  26031. //
  26032. const auto CRYPT_E_BAD_LEN = 0x80092001;
  26033. //
  26034. // MessageId: CRYPT_E_BAD_ENCODE
  26035. //
  26036. // MessageText:
  26037. //
  26038. // An error occurred during encode or decode operation.
  26039. //
  26040. const auto CRYPT_E_BAD_ENCODE = 0x80092002;
  26041. //
  26042. // MessageId: CRYPT_E_FILE_ERROR
  26043. //
  26044. // MessageText:
  26045. //
  26046. // An error occurred while reading or writing to a file.
  26047. //
  26048. const auto CRYPT_E_FILE_ERROR = 0x80092003;
  26049. //
  26050. // MessageId: CRYPT_E_NOT_FOUND
  26051. //
  26052. // MessageText:
  26053. //
  26054. // Cannot find object or property.
  26055. //
  26056. const auto CRYPT_E_NOT_FOUND = 0x80092004;
  26057. //
  26058. // MessageId: CRYPT_E_EXISTS
  26059. //
  26060. // MessageText:
  26061. //
  26062. // The object or property already exists.
  26063. //
  26064. const auto CRYPT_E_EXISTS = 0x80092005;
  26065. //
  26066. // MessageId: CRYPT_E_NO_PROVIDER
  26067. //
  26068. // MessageText:
  26069. //
  26070. // No provider was specified for the store or object.
  26071. //
  26072. const auto CRYPT_E_NO_PROVIDER = 0x80092006;
  26073. //
  26074. // MessageId: CRYPT_E_SELF_SIGNED
  26075. //
  26076. // MessageText:
  26077. //
  26078. // The specified certificate is self signed.
  26079. //
  26080. const auto CRYPT_E_SELF_SIGNED = 0x80092007;
  26081. //
  26082. // MessageId: CRYPT_E_DELETED_PREV
  26083. //
  26084. // MessageText:
  26085. //
  26086. // The previous certificate or CRL context was deleted.
  26087. //
  26088. const auto CRYPT_E_DELETED_PREV = 0x80092008;
  26089. //
  26090. // MessageId: CRYPT_E_NO_MATCH
  26091. //
  26092. // MessageText:
  26093. //
  26094. // Cannot find the requested object.
  26095. //
  26096. const auto CRYPT_E_NO_MATCH = 0x80092009;
  26097. //
  26098. // MessageId: CRYPT_E_UNEXPECTED_MSG_TYPE
  26099. //
  26100. // MessageText:
  26101. //
  26102. // The certificate does not have a property that references a private key.
  26103. //
  26104. const auto CRYPT_E_UNEXPECTED_MSG_TYPE = 0x8009200A;
  26105. //
  26106. // MessageId: CRYPT_E_NO_KEY_PROPERTY
  26107. //
  26108. // MessageText:
  26109. //
  26110. // Cannot find the certificate and private key for decryption.
  26111. //
  26112. const auto CRYPT_E_NO_KEY_PROPERTY = 0x8009200B;
  26113. //
  26114. // MessageId: CRYPT_E_NO_DECRYPT_CERT
  26115. //
  26116. // MessageText:
  26117. //
  26118. // Cannot find the certificate and private key to use for decryption.
  26119. //
  26120. const auto CRYPT_E_NO_DECRYPT_CERT = 0x8009200C;
  26121. //
  26122. // MessageId: CRYPT_E_BAD_MSG
  26123. //
  26124. // MessageText:
  26125. //
  26126. // Not a cryptographic message or the cryptographic message is not formatted correctly.
  26127. //
  26128. const auto CRYPT_E_BAD_MSG = 0x8009200D;
  26129. //
  26130. // MessageId: CRYPT_E_NO_SIGNER
  26131. //
  26132. // MessageText:
  26133. //
  26134. // The signed cryptographic message does not have a signer for the specified signer index.
  26135. //
  26136. const auto CRYPT_E_NO_SIGNER = 0x8009200E;
  26137. //
  26138. // MessageId: CRYPT_E_PENDING_CLOSE
  26139. //
  26140. // MessageText:
  26141. //
  26142. // Final closure is pending until additional frees or closes.
  26143. //
  26144. const auto CRYPT_E_PENDING_CLOSE = 0x8009200F;
  26145. //
  26146. // MessageId: CRYPT_E_REVOKED
  26147. //
  26148. // MessageText:
  26149. //
  26150. // The certificate is revoked.
  26151. //
  26152. const auto CRYPT_E_REVOKED = 0x80092010;
  26153. //
  26154. // MessageId: CRYPT_E_NO_REVOCATION_DLL
  26155. //
  26156. // MessageText:
  26157. //
  26158. // No Dll or exported function was found to verify revocation.
  26159. //
  26160. const auto CRYPT_E_NO_REVOCATION_DLL = 0x80092011;
  26161. //
  26162. // MessageId: CRYPT_E_NO_REVOCATION_CHECK
  26163. //
  26164. // MessageText:
  26165. //
  26166. // The revocation function was unable to check revocation for the certificate.
  26167. //
  26168. const auto CRYPT_E_NO_REVOCATION_CHECK = 0x80092012;
  26169. //
  26170. // MessageId: CRYPT_E_REVOCATION_OFFLINE
  26171. //
  26172. // MessageText:
  26173. //
  26174. // The revocation function was unable to check revocation because the revocation server was offline.
  26175. //
  26176. const auto CRYPT_E_REVOCATION_OFFLINE = 0x80092013;
  26177. //
  26178. // MessageId: CRYPT_E_NOT_IN_REVOCATION_DATABASE
  26179. //
  26180. // MessageText:
  26181. //
  26182. // The certificate is not in the revocation server's database.
  26183. //
  26184. const auto CRYPT_E_NOT_IN_REVOCATION_DATABASE = 0x80092014;
  26185. //
  26186. // MessageId: CRYPT_E_INVALID_NUMERIC_STRING
  26187. //
  26188. // MessageText:
  26189. //
  26190. // The string contains a non-numeric character.
  26191. //
  26192. const auto CRYPT_E_INVALID_NUMERIC_STRING = 0x80092020;
  26193. //
  26194. // MessageId: CRYPT_E_INVALID_PRINTABLE_STRING
  26195. //
  26196. // MessageText:
  26197. //
  26198. // The string contains a non-printable character.
  26199. //
  26200. const auto CRYPT_E_INVALID_PRINTABLE_STRING = 0x80092021;
  26201. //
  26202. // MessageId: CRYPT_E_INVALID_IA5_STRING
  26203. //
  26204. // MessageText:
  26205. //
  26206. // The string contains a character not in the 7 bit ASCII character set.
  26207. //
  26208. const auto CRYPT_E_INVALID_IA5_STRING = 0x80092022;
  26209. //
  26210. // MessageId: CRYPT_E_INVALID_X500_STRING
  26211. //
  26212. // MessageText:
  26213. //
  26214. // The string contains an invalid X500 name attribute key, oid, value or delimiter.
  26215. //
  26216. const auto CRYPT_E_INVALID_X500_STRING = 0x80092023;
  26217. //
  26218. // MessageId: CRYPT_E_NOT_CHAR_STRING
  26219. //
  26220. // MessageText:
  26221. //
  26222. // The dwValueType for the CERT_NAME_VALUE is not one of the character strings. Most likely it is either a CERT_RDN_ENCODED_BLOB or CERT_TDN_OCTED_STRING.
  26223. //
  26224. const auto CRYPT_E_NOT_CHAR_STRING = 0x80092024;
  26225. //
  26226. // MessageId: CRYPT_E_FILERESIZED
  26227. //
  26228. // MessageText:
  26229. //
  26230. // The Put operation cannot continue. The file needs to be resized. However, there is already a signature present. A complete signing operation must be done.
  26231. //
  26232. const auto CRYPT_E_FILERESIZED = 0x80092025;
  26233. //
  26234. // MessageId: CRYPT_E_SECURITY_SETTINGS
  26235. //
  26236. // MessageText:
  26237. //
  26238. // The cryptographic operation failed due to a local security option setting.
  26239. //
  26240. const auto CRYPT_E_SECURITY_SETTINGS = 0x80092026;
  26241. //
  26242. // MessageId: CRYPT_E_NO_VERIFY_USAGE_DLL
  26243. //
  26244. // MessageText:
  26245. //
  26246. // No DLL or exported function was found to verify subject usage.
  26247. //
  26248. const auto CRYPT_E_NO_VERIFY_USAGE_DLL = 0x80092027;
  26249. //
  26250. // MessageId: CRYPT_E_NO_VERIFY_USAGE_CHECK
  26251. //
  26252. // MessageText:
  26253. //
  26254. // The called function was unable to do a usage check on the subject.
  26255. //
  26256. const auto CRYPT_E_NO_VERIFY_USAGE_CHECK = 0x80092028;
  26257. //
  26258. // MessageId: CRYPT_E_VERIFY_USAGE_OFFLINE
  26259. //
  26260. // MessageText:
  26261. //
  26262. // Since the server was offline, the called function was unable to complete the usage check.
  26263. //
  26264. const auto CRYPT_E_VERIFY_USAGE_OFFLINE = 0x80092029;
  26265. //
  26266. // MessageId: CRYPT_E_NOT_IN_CTL
  26267. //
  26268. // MessageText:
  26269. //
  26270. // The subject was not found in a Certificate Trust List (CT.
  26271. //
  26272. const auto CRYPT_E_NOT_IN_CTL = 0x8009202A;
  26273. //
  26274. // MessageId: CRYPT_E_NO_TRUSTED_SIGNER
  26275. //
  26276. // MessageText:
  26277. //
  26278. // None of the signers of the cryptographic message or certificate trust list is trusted.
  26279. //
  26280. const auto CRYPT_E_NO_TRUSTED_SIGNER = 0x8009202B;
  26281. //
  26282. // MessageId: CRYPT_E_MISSING_PUBKEY_PARA
  26283. //
  26284. // MessageText:
  26285. //
  26286. // The public key's algorithm parameters are missing.
  26287. //
  26288. const auto CRYPT_E_MISSING_PUBKEY_PARA = 0x8009202C;
  26289. //
  26290. // MessageId: CRYPT_E_OSS_ERROR
  26291. //
  26292. // MessageText:
  26293. //
  26294. // OSS Certificate encode/decode error code base
  26295. //
  26296. // See asn1code.h for a definition of the OSS runtime errors. The OSS
  26297. // error values are offset by CRYPT_E_OSS_ERROR.
  26298. //
  26299. const auto CRYPT_E_OSS_ERROR = 0x80093000;
  26300. //
  26301. // MessageId: OSS_MORE_BUF
  26302. //
  26303. // MessageText:
  26304. //
  26305. // OSS ASN.1 Error: Output Buffer is too small.
  26306. //
  26307. const auto OSS_MORE_BUF = 0x80093001;
  26308. //
  26309. // MessageId: OSS_NEGATIVE_UINTEGER
  26310. //
  26311. // MessageText:
  26312. //
  26313. // OSS ASN.1 Error: Signed integer is encoded as a unsigned integer.
  26314. //
  26315. const auto OSS_NEGATIVE_UINTEGER = 0x80093002;
  26316. //
  26317. // MessageId: OSS_PDU_RANGE
  26318. //
  26319. // MessageText:
  26320. //
  26321. // OSS ASN.1 Error: Unknown ASN.1 data type.
  26322. //
  26323. const auto OSS_PDU_RANGE = 0x80093003;
  26324. //
  26325. // MessageId: OSS_MORE_INPUT
  26326. //
  26327. // MessageText:
  26328. //
  26329. // OSS ASN.1 Error: Output buffer is too small, the decoded data has been truncated.
  26330. //
  26331. const auto OSS_MORE_INPUT = 0x80093004;
  26332. //
  26333. // MessageId: OSS_DATA_ERROR
  26334. //
  26335. // MessageText:
  26336. //
  26337. // OSS ASN.1 Error: Invalid data.
  26338. //
  26339. const auto OSS_DATA_ERROR = 0x80093005;
  26340. //
  26341. // MessageId: OSS_BAD_ARG
  26342. //
  26343. // MessageText:
  26344. //
  26345. // OSS ASN.1 Error: Invalid argument.
  26346. //
  26347. const auto OSS_BAD_ARG = 0x80093006;
  26348. //
  26349. // MessageId: OSS_BAD_VERSION
  26350. //
  26351. // MessageText:
  26352. //
  26353. // OSS ASN.1 Error: Encode/Decode version mismatch.
  26354. //
  26355. const auto OSS_BAD_VERSION = 0x80093007;
  26356. //
  26357. // MessageId: OSS_OUT_MEMORY
  26358. //
  26359. // MessageText:
  26360. //
  26361. // OSS ASN.1 Error: Out of memory.
  26362. //
  26363. const auto OSS_OUT_MEMORY = 0x80093008;
  26364. //
  26365. // MessageId: OSS_PDU_MISMATCH
  26366. //
  26367. // MessageText:
  26368. //
  26369. // OSS ASN.1 Error: Encode/Decode Error.
  26370. //
  26371. const auto OSS_PDU_MISMATCH = 0x80093009;
  26372. //
  26373. // MessageId: OSS_LIMITED
  26374. //
  26375. // MessageText:
  26376. //
  26377. // OSS ASN.1 Error: Internal Error.
  26378. //
  26379. const auto OSS_LIMITED = 0x8009300A;
  26380. //
  26381. // MessageId: OSS_BAD_PTR
  26382. //
  26383. // MessageText:
  26384. //
  26385. // OSS ASN.1 Error: Invalid data.
  26386. //
  26387. const auto OSS_BAD_PTR = 0x8009300B;
  26388. //
  26389. // MessageId: OSS_BAD_TIME
  26390. //
  26391. // MessageText:
  26392. //
  26393. // OSS ASN.1 Error: Invalid data.
  26394. //
  26395. const auto OSS_BAD_TIME = 0x8009300C;
  26396. //
  26397. // MessageId: OSS_INDEFINITE_NOT_SUPPORTED
  26398. //
  26399. // MessageText:
  26400. //
  26401. // OSS ASN.1 Error: Unsupported BER indefinite-length encoding.
  26402. //
  26403. const auto OSS_INDEFINITE_NOT_SUPPORTED = 0x8009300D;
  26404. //
  26405. // MessageId: OSS_MEM_ERROR
  26406. //
  26407. // MessageText:
  26408. //
  26409. // OSS ASN.1 Error: Access violation.
  26410. //
  26411. const auto OSS_MEM_ERROR = 0x8009300E;
  26412. //
  26413. // MessageId: OSS_BAD_TABLE
  26414. //
  26415. // MessageText:
  26416. //
  26417. // OSS ASN.1 Error: Invalid data.
  26418. //
  26419. const auto OSS_BAD_TABLE = 0x8009300F;
  26420. //
  26421. // MessageId: OSS_TOO_LONG
  26422. //
  26423. // MessageText:
  26424. //
  26425. // OSS ASN.1 Error: Invalid data.
  26426. //
  26427. const auto OSS_TOO_LONG = 0x80093010;
  26428. //
  26429. // MessageId: OSS_CONSTRAINT_VIOLATED
  26430. //
  26431. // MessageText:
  26432. //
  26433. // OSS ASN.1 Error: Invalid data.
  26434. //
  26435. const auto OSS_CONSTRAINT_VIOLATED = 0x80093011;
  26436. //
  26437. // MessageId: OSS_FATAL_ERROR
  26438. //
  26439. // MessageText:
  26440. //
  26441. // OSS ASN.1 Error: Internal Error.
  26442. //
  26443. const auto OSS_FATAL_ERROR = 0x80093012;
  26444. //
  26445. // MessageId: OSS_ACCESS_SERIALIZATION_ERROR
  26446. //
  26447. // MessageText:
  26448. //
  26449. // OSS ASN.1 Error: Multi-threading conflict.
  26450. //
  26451. const auto OSS_ACCESS_SERIALIZATION_ERROR = 0x80093013;
  26452. //
  26453. // MessageId: OSS_NULL_TBL
  26454. //
  26455. // MessageText:
  26456. //
  26457. // OSS ASN.1 Error: Invalid data.
  26458. //
  26459. const auto OSS_NULL_TBL = 0x80093014;
  26460. //
  26461. // MessageId: OSS_NULL_FCN
  26462. //
  26463. // MessageText:
  26464. //
  26465. // OSS ASN.1 Error: Invalid data.
  26466. //
  26467. const auto OSS_NULL_FCN = 0x80093015;
  26468. //
  26469. // MessageId: OSS_BAD_ENCRULES
  26470. //
  26471. // MessageText:
  26472. //
  26473. // OSS ASN.1 Error: Invalid data.
  26474. //
  26475. const auto OSS_BAD_ENCRULES = 0x80093016;
  26476. //
  26477. // MessageId: OSS_UNAVAIL_ENCRULES
  26478. //
  26479. // MessageText:
  26480. //
  26481. // OSS ASN.1 Error: Encode/Decode function not implemented.
  26482. //
  26483. const auto OSS_UNAVAIL_ENCRULES = 0x80093017;
  26484. //
  26485. // MessageId: OSS_CANT_OPEN_TRACE_WINDOW
  26486. //
  26487. // MessageText:
  26488. //
  26489. // OSS ASN.1 Error: Trace file error.
  26490. //
  26491. const auto OSS_CANT_OPEN_TRACE_WINDOW = 0x80093018;
  26492. //
  26493. // MessageId: OSS_UNIMPLEMENTED
  26494. //
  26495. // MessageText:
  26496. //
  26497. // OSS ASN.1 Error: Function not implemented.
  26498. //
  26499. const auto OSS_UNIMPLEMENTED = 0x80093019;
  26500. //
  26501. // MessageId: OSS_OID_DLL_NOT_LINKED
  26502. //
  26503. // MessageText:
  26504. //
  26505. // OSS ASN.1 Error: Program link error.
  26506. //
  26507. const auto OSS_OID_DLL_NOT_LINKED = 0x8009301A;
  26508. //
  26509. // MessageId: OSS_CANT_OPEN_TRACE_FILE
  26510. //
  26511. // MessageText:
  26512. //
  26513. // OSS ASN.1 Error: Trace file error.
  26514. //
  26515. const auto OSS_CANT_OPEN_TRACE_FILE = 0x8009301B;
  26516. //
  26517. // MessageId: OSS_TRACE_FILE_ALREADY_OPEN
  26518. //
  26519. // MessageText:
  26520. //
  26521. // OSS ASN.1 Error: Trace file error.
  26522. //
  26523. const auto OSS_TRACE_FILE_ALREADY_OPEN = 0x8009301C;
  26524. //
  26525. // MessageId: OSS_TABLE_MISMATCH
  26526. //
  26527. // MessageText:
  26528. //
  26529. // OSS ASN.1 Error: Invalid data.
  26530. //
  26531. const auto OSS_TABLE_MISMATCH = 0x8009301D;
  26532. //
  26533. // MessageId: OSS_TYPE_NOT_SUPPORTED
  26534. //
  26535. // MessageText:
  26536. //
  26537. // OSS ASN.1 Error: Invalid data.
  26538. //
  26539. const auto OSS_TYPE_NOT_SUPPORTED = 0x8009301E;
  26540. //
  26541. // MessageId: OSS_REAL_DLL_NOT_LINKED
  26542. //
  26543. // MessageText:
  26544. //
  26545. // OSS ASN.1 Error: Program link error.
  26546. //
  26547. const auto OSS_REAL_DLL_NOT_LINKED = 0x8009301F;
  26548. //
  26549. // MessageId: OSS_REAL_CODE_NOT_LINKED
  26550. //
  26551. // MessageText:
  26552. //
  26553. // OSS ASN.1 Error: Program link error.
  26554. //
  26555. const auto OSS_REAL_CODE_NOT_LINKED = 0x80093020;
  26556. //
  26557. // MessageId: OSS_OUT_OF_RANGE
  26558. //
  26559. // MessageText:
  26560. //
  26561. // OSS ASN.1 Error: Program link error.
  26562. //
  26563. const auto OSS_OUT_OF_RANGE = 0x80093021;
  26564. //
  26565. // MessageId: OSS_COPIER_DLL_NOT_LINKED
  26566. //
  26567. // MessageText:
  26568. //
  26569. // OSS ASN.1 Error: Program link error.
  26570. //
  26571. const auto OSS_COPIER_DLL_NOT_LINKED = 0x80093022;
  26572. //
  26573. // MessageId: OSS_CONSTRAINT_DLL_NOT_LINKED
  26574. //
  26575. // MessageText:
  26576. //
  26577. // OSS ASN.1 Error: Program link error.
  26578. //
  26579. const auto OSS_CONSTRAINT_DLL_NOT_LINKED = 0x80093023;
  26580. //
  26581. // MessageId: OSS_COMPARATOR_DLL_NOT_LINKED
  26582. //
  26583. // MessageText:
  26584. //
  26585. // OSS ASN.1 Error: Program link error.
  26586. //
  26587. const auto OSS_COMPARATOR_DLL_NOT_LINKED = 0x80093024;
  26588. //
  26589. // MessageId: OSS_COMPARATOR_CODE_NOT_LINKED
  26590. //
  26591. // MessageText:
  26592. //
  26593. // OSS ASN.1 Error: Program link error.
  26594. //
  26595. const auto OSS_COMPARATOR_CODE_NOT_LINKED = 0x80093025;
  26596. //
  26597. // MessageId: OSS_MEM_MGR_DLL_NOT_LINKED
  26598. //
  26599. // MessageText:
  26600. //
  26601. // OSS ASN.1 Error: Program link error.
  26602. //
  26603. const auto OSS_MEM_MGR_DLL_NOT_LINKED = 0x80093026;
  26604. //
  26605. // MessageId: OSS_PDV_DLL_NOT_LINKED
  26606. //
  26607. // MessageText:
  26608. //
  26609. // OSS ASN.1 Error: Program link error.
  26610. //
  26611. const auto OSS_PDV_DLL_NOT_LINKED = 0x80093027;
  26612. //
  26613. // MessageId: OSS_PDV_CODE_NOT_LINKED
  26614. //
  26615. // MessageText:
  26616. //
  26617. // OSS ASN.1 Error: Program link error.
  26618. //
  26619. const auto OSS_PDV_CODE_NOT_LINKED = 0x80093028;
  26620. //
  26621. // MessageId: OSS_API_DLL_NOT_LINKED
  26622. //
  26623. // MessageText:
  26624. //
  26625. // OSS ASN.1 Error: Program link error.
  26626. //
  26627. const auto OSS_API_DLL_NOT_LINKED = 0x80093029;
  26628. //
  26629. // MessageId: OSS_BERDER_DLL_NOT_LINKED
  26630. //
  26631. // MessageText:
  26632. //
  26633. // OSS ASN.1 Error: Program link error.
  26634. //
  26635. const auto OSS_BERDER_DLL_NOT_LINKED = 0x8009302A;
  26636. //
  26637. // MessageId: OSS_PER_DLL_NOT_LINKED
  26638. //
  26639. // MessageText:
  26640. //
  26641. // OSS ASN.1 Error: Program link error.
  26642. //
  26643. const auto OSS_PER_DLL_NOT_LINKED = 0x8009302B;
  26644. //
  26645. // MessageId: OSS_OPEN_TYPE_ERROR
  26646. //
  26647. // MessageText:
  26648. //
  26649. // OSS ASN.1 Error: Program link error.
  26650. //
  26651. const auto OSS_OPEN_TYPE_ERROR = 0x8009302C;
  26652. //
  26653. // MessageId: OSS_MUTEX_NOT_CREATED
  26654. //
  26655. // MessageText:
  26656. //
  26657. // OSS ASN.1 Error: System resource error.
  26658. //
  26659. const auto OSS_MUTEX_NOT_CREATED = 0x8009302D;
  26660. //
  26661. // MessageId: OSS_CANT_CLOSE_TRACE_FILE
  26662. //
  26663. // MessageText:
  26664. //
  26665. // OSS ASN.1 Error: Trace file error.
  26666. //
  26667. const auto OSS_CANT_CLOSE_TRACE_FILE = 0x8009302E;
  26668. //
  26669. // MessageId: CRYPT_E_ASN1_ERROR
  26670. //
  26671. // MessageText:
  26672. //
  26673. // ASN1 Certificate encode/decode error code base.
  26674. //
  26675. // The ASN1 error values are offset by CRYPT_E_ASN1_ERROR.
  26676. //
  26677. const auto CRYPT_E_ASN1_ERROR = 0x80093100;
  26678. //
  26679. // MessageId: CRYPT_E_ASN1_INTERNAL
  26680. //
  26681. // MessageText:
  26682. //
  26683. // ASN1 internal encode or decode error.
  26684. //
  26685. const auto CRYPT_E_ASN1_INTERNAL = 0x80093101;
  26686. //
  26687. // MessageId: CRYPT_E_ASN1_EOD
  26688. //
  26689. // MessageText:
  26690. //
  26691. // ASN1 unexpected end of data.
  26692. //
  26693. const auto CRYPT_E_ASN1_EOD = 0x80093102;
  26694. //
  26695. // MessageId: CRYPT_E_ASN1_CORRUPT
  26696. //
  26697. // MessageText:
  26698. //
  26699. // ASN1 corrupted data.
  26700. //
  26701. const auto CRYPT_E_ASN1_CORRUPT = 0x80093103;
  26702. //
  26703. // MessageId: CRYPT_E_ASN1_LARGE
  26704. //
  26705. // MessageText:
  26706. //
  26707. // ASN1 value too large.
  26708. //
  26709. const auto CRYPT_E_ASN1_LARGE = 0x80093104;
  26710. //
  26711. // MessageId: CRYPT_E_ASN1_CONSTRAINT
  26712. //
  26713. // MessageText:
  26714. //
  26715. // ASN1 constraint violated.
  26716. //
  26717. const auto CRYPT_E_ASN1_CONSTRAINT = 0x80093105;
  26718. //
  26719. // MessageId: CRYPT_E_ASN1_MEMORY
  26720. //
  26721. // MessageText:
  26722. //
  26723. // ASN1 out of memory.
  26724. //
  26725. const auto CRYPT_E_ASN1_MEMORY = 0x80093106;
  26726. //
  26727. // MessageId: CRYPT_E_ASN1_OVERFLOW
  26728. //
  26729. // MessageText:
  26730. //
  26731. // ASN1 buffer overflow.
  26732. //
  26733. const auto CRYPT_E_ASN1_OVERFLOW = 0x80093107;
  26734. //
  26735. // MessageId: CRYPT_E_ASN1_BADPDU
  26736. //
  26737. // MessageText:
  26738. //
  26739. // ASN1 function not supported for this PDU.
  26740. //
  26741. const auto CRYPT_E_ASN1_BADPDU = 0x80093108;
  26742. //
  26743. // MessageId: CRYPT_E_ASN1_BADARGS
  26744. //
  26745. // MessageText:
  26746. //
  26747. // ASN1 bad arguments to function call.
  26748. //
  26749. const auto CRYPT_E_ASN1_BADARGS = 0x80093109;
  26750. //
  26751. // MessageId: CRYPT_E_ASN1_BADREAL
  26752. //
  26753. // MessageText:
  26754. //
  26755. // ASN1 bad real value.
  26756. //
  26757. const auto CRYPT_E_ASN1_BADREAL = 0x8009310A;
  26758. //
  26759. // MessageId: CRYPT_E_ASN1_BADTAG
  26760. //
  26761. // MessageText:
  26762. //
  26763. // ASN1 bad tag value met.
  26764. //
  26765. const auto CRYPT_E_ASN1_BADTAG = 0x8009310B;
  26766. //
  26767. // MessageId: CRYPT_E_ASN1_CHOICE
  26768. //
  26769. // MessageText:
  26770. //
  26771. // ASN1 bad choice value.
  26772. //
  26773. const auto CRYPT_E_ASN1_CHOICE = 0x8009310C;
  26774. //
  26775. // MessageId: CRYPT_E_ASN1_RULE
  26776. //
  26777. // MessageText:
  26778. //
  26779. // ASN1 bad encoding rule.
  26780. //
  26781. const auto CRYPT_E_ASN1_RULE = 0x8009310D;
  26782. //
  26783. // MessageId: CRYPT_E_ASN1_UTF8
  26784. //
  26785. // MessageText:
  26786. //
  26787. // ASN1 bad unicode (UTF8).
  26788. //
  26789. const auto CRYPT_E_ASN1_UTF8 = 0x8009310E;
  26790. //
  26791. // MessageId: CRYPT_E_ASN1_PDU_TYPE
  26792. //
  26793. // MessageText:
  26794. //
  26795. // ASN1 bad PDU type.
  26796. //
  26797. const auto CRYPT_E_ASN1_PDU_TYPE = 0x80093133;
  26798. //
  26799. // MessageId: CRYPT_E_ASN1_NYI
  26800. //
  26801. // MessageText:
  26802. //
  26803. // ASN1 not yet implemented.
  26804. //
  26805. const auto CRYPT_E_ASN1_NYI = 0x80093134;
  26806. //
  26807. // MessageId: CRYPT_E_ASN1_EXTENDED
  26808. //
  26809. // MessageText:
  26810. //
  26811. // ASN1 skipped unknown extension(s).
  26812. //
  26813. const auto CRYPT_E_ASN1_EXTENDED = 0x80093201;
  26814. //
  26815. // MessageId: CRYPT_E_ASN1_NOEOD
  26816. //
  26817. // MessageText:
  26818. //
  26819. // ASN1 end of data expected
  26820. //
  26821. const auto CRYPT_E_ASN1_NOEOD = 0x80093202;
  26822. //
  26823. // MessageId: CERTSRV_E_BAD_REQUESTSUBJECT
  26824. //
  26825. // MessageText:
  26826. //
  26827. // The request subject name is invalid or too long.
  26828. //
  26829. const auto CERTSRV_E_BAD_REQUESTSUBJECT = 0x80094001;
  26830. //
  26831. // MessageId: CERTSRV_E_NO_REQUEST
  26832. //
  26833. // MessageText:
  26834. //
  26835. // The request does not exist.
  26836. //
  26837. const auto CERTSRV_E_NO_REQUEST = 0x80094002;
  26838. //
  26839. // MessageId: CERTSRV_E_BAD_REQUESTSTATUS
  26840. //
  26841. // MessageText:
  26842. //
  26843. // The request's current status does not allow this operation.
  26844. //
  26845. const auto CERTSRV_E_BAD_REQUESTSTATUS = 0x80094003;
  26846. //
  26847. // MessageId: CERTSRV_E_PROPERTY_EMPTY
  26848. //
  26849. // MessageText:
  26850. //
  26851. // The requested property value is empty.
  26852. //
  26853. const auto CERTSRV_E_PROPERTY_EMPTY = 0x80094004;
  26854. //
  26855. // MessageId: CERTSRV_E_INVALID_CA_CERTIFICATE
  26856. //
  26857. // MessageText:
  26858. //
  26859. // The certification authority's certificate contains invalid data.
  26860. //
  26861. const auto CERTSRV_E_INVALID_CA_CERTIFICATE = 0x80094005;
  26862. //
  26863. // MessageId: CERTSRV_E_SERVER_SUSPENDED
  26864. //
  26865. // MessageText:
  26866. //
  26867. // Certificate service has been suspended for a database restore operation.
  26868. //
  26869. const auto CERTSRV_E_SERVER_SUSPENDED = 0x80094006;
  26870. //
  26871. // MessageId: CERTSRV_E_ENCODING_LENGTH
  26872. //
  26873. // MessageText:
  26874. //
  26875. // The certificate contains an encoded length that is potentially incompatible with older enrollment software.
  26876. //
  26877. const auto CERTSRV_E_ENCODING_LENGTH = 0x80094007;
  26878. //
  26879. // MessageId: CERTSRV_E_ROLECONFLICT
  26880. //
  26881. // MessageText:
  26882. //
  26883. // The operation is denied. The user has multiple roles assigned and the certification authority is configured to enforce role separation.
  26884. //
  26885. const auto CERTSRV_E_ROLECONFLICT = 0x80094008;
  26886. //
  26887. // MessageId: CERTSRV_E_RESTRICTEDOFFICER
  26888. //
  26889. // MessageText:
  26890. //
  26891. // The operation is denied. It can only be performed by a certificate manager that is allowed to manage certificates for the current requester.
  26892. //
  26893. const auto CERTSRV_E_RESTRICTEDOFFICER = 0x80094009;
  26894. //
  26895. // MessageId: CERTSRV_E_KEY_ARCHIVAL_NOT_CONFIGURED
  26896. //
  26897. // MessageText:
  26898. //
  26899. // Cannot archive private key. The certification authority is not configured for key archival.
  26900. //
  26901. const auto CERTSRV_E_KEY_ARCHIVAL_NOT_CONFIGURED = 0x8009400A;
  26902. //
  26903. // MessageId: CERTSRV_E_NO_VALID_KRA
  26904. //
  26905. // MessageText:
  26906. //
  26907. // Cannot archive private key. The certification authority could not verify one or more key recovery certificates.
  26908. //
  26909. const auto CERTSRV_E_NO_VALID_KRA = 0x8009400B;
  26910. //
  26911. // MessageId: CERTSRV_E_BAD_REQUEST_KEY_ARCHIVAL
  26912. //
  26913. // MessageText:
  26914. //
  26915. // The request is incorrectly formatted. The encrypted private key must be in an unauthenticated attribute in an outermost signature.
  26916. //
  26917. const auto CERTSRV_E_BAD_REQUEST_KEY_ARCHIVAL = 0x8009400C;
  26918. //
  26919. // MessageId: CERTSRV_E_NO_CAADMIN_DEFINED
  26920. //
  26921. // MessageText:
  26922. //
  26923. // At least one security principal must have the permission to manage this CA.
  26924. //
  26925. const auto CERTSRV_E_NO_CAADMIN_DEFINED = 0x8009400D;
  26926. //
  26927. // MessageId: CERTSRV_E_BAD_RENEWAL_CERT_ATTRIBUTE
  26928. //
  26929. // MessageText:
  26930. //
  26931. // The request contains an invalid renewal certificate attribute.
  26932. //
  26933. const auto CERTSRV_E_BAD_RENEWAL_CERT_ATTRIBUTE = 0x8009400E;
  26934. //
  26935. // MessageId: CERTSRV_E_NO_DB_SESSIONS
  26936. //
  26937. // MessageText:
  26938. //
  26939. // An attempt was made to open a Certification Authority database session, but there are already too many active sessions. The server may need to be configured to allow additional sessions.
  26940. //
  26941. const auto CERTSRV_E_NO_DB_SESSIONS = 0x8009400F;
  26942. //
  26943. // MessageId: CERTSRV_E_ALIGNMENT_FAULT
  26944. //
  26945. // MessageText:
  26946. //
  26947. // A memory reference caused a data alignment fault.
  26948. //
  26949. const auto CERTSRV_E_ALIGNMENT_FAULT = 0x80094010;
  26950. //
  26951. // MessageId: CERTSRV_E_ENROLL_DENIED
  26952. //
  26953. // MessageText:
  26954. //
  26955. // The permissions on this certification authority do not allow the current user to enroll for certificates.
  26956. //
  26957. const auto CERTSRV_E_ENROLL_DENIED = 0x80094011;
  26958. //
  26959. // MessageId: CERTSRV_E_TEMPLATE_DENIED
  26960. //
  26961. // MessageText:
  26962. //
  26963. // The permissions on the certificate template do not allow the current user to enroll for this type of certificate.
  26964. //
  26965. const auto CERTSRV_E_TEMPLATE_DENIED = 0x80094012;
  26966. //
  26967. // MessageId: CERTSRV_E_DOWNLEVEL_DC_SSL_OR_UPGRADE
  26968. //
  26969. // MessageText:
  26970. //
  26971. // The contacted domain controller cannot support signed LDAP traffic. Update the domain controller or configure Certificate Services to use SSL for Active Directory access.
  26972. //
  26973. const auto CERTSRV_E_DOWNLEVEL_DC_SSL_OR_UPGRADE = 0x80094013;
  26974. //
  26975. // MessageId: CERTSRV_E_UNSUPPORTED_CERT_TYPE
  26976. //
  26977. // MessageText:
  26978. //
  26979. // The requested certificate template is not supported by this CA.
  26980. //
  26981. const auto CERTSRV_E_UNSUPPORTED_CERT_TYPE = 0x80094800;
  26982. //
  26983. // MessageId: CERTSRV_E_NO_CERT_TYPE
  26984. //
  26985. // MessageText:
  26986. //
  26987. // The request contains no certificate template information.
  26988. //
  26989. const auto CERTSRV_E_NO_CERT_TYPE = 0x80094801;
  26990. //
  26991. // MessageId: CERTSRV_E_TEMPLATE_CONFLICT
  26992. //
  26993. // MessageText:
  26994. //
  26995. // The request contains conflicting template information.
  26996. //
  26997. const auto CERTSRV_E_TEMPLATE_CONFLICT = 0x80094802;
  26998. //
  26999. // MessageId: CERTSRV_E_SUBJECT_ALT_NAME_REQUIRED
  27000. //
  27001. // MessageText:
  27002. //
  27003. // The request is missing a required Subject Alternate name extension.
  27004. //
  27005. const auto CERTSRV_E_SUBJECT_ALT_NAME_REQUIRED = 0x80094803;
  27006. //
  27007. // MessageId: CERTSRV_E_ARCHIVED_KEY_REQUIRED
  27008. //
  27009. // MessageText:
  27010. //
  27011. // The request is missing a required private key for archival by the server.
  27012. //
  27013. const auto CERTSRV_E_ARCHIVED_KEY_REQUIRED = 0x80094804;
  27014. //
  27015. // MessageId: CERTSRV_E_SMIME_REQUIRED
  27016. //
  27017. // MessageText:
  27018. //
  27019. // The request is missing a required SMIME capabilities extension.
  27020. //
  27021. const auto CERTSRV_E_SMIME_REQUIRED = 0x80094805;
  27022. //
  27023. // MessageId: CERTSRV_E_BAD_RENEWAL_SUBJECT
  27024. //
  27025. // MessageText:
  27026. //
  27027. // The request was made on behalf of a subject other than the caller. The certificate template must be configured to require at least one signature to authorize the request.
  27028. //
  27029. const auto CERTSRV_E_BAD_RENEWAL_SUBJECT = 0x80094806;
  27030. //
  27031. // MessageId: CERTSRV_E_BAD_TEMPLATE_VERSION
  27032. //
  27033. // MessageText:
  27034. //
  27035. // The request template version is newer than the supported template version.
  27036. //
  27037. const auto CERTSRV_E_BAD_TEMPLATE_VERSION = 0x80094807;
  27038. //
  27039. // MessageId: CERTSRV_E_TEMPLATE_POLICY_REQUIRED
  27040. //
  27041. // MessageText:
  27042. //
  27043. // The template is missing a required signature policy attribute.
  27044. //
  27045. const auto CERTSRV_E_TEMPLATE_POLICY_REQUIRED = 0x80094808;
  27046. //
  27047. // MessageId: CERTSRV_E_SIGNATURE_POLICY_REQUIRED
  27048. //
  27049. // MessageText:
  27050. //
  27051. // The request is missing required signature policy information.
  27052. //
  27053. const auto CERTSRV_E_SIGNATURE_POLICY_REQUIRED = 0x80094809;
  27054. //
  27055. // MessageId: CERTSRV_E_SIGNATURE_COUNT
  27056. //
  27057. // MessageText:
  27058. //
  27059. // The request is missing one or more required signatures.
  27060. //
  27061. const auto CERTSRV_E_SIGNATURE_COUNT = 0x8009480A;
  27062. //
  27063. // MessageId: CERTSRV_E_SIGNATURE_REJECTED
  27064. //
  27065. // MessageText:
  27066. //
  27067. // One or more signatures did not include the required application or issuance policies. The request is missing one or more required valid signatures.
  27068. //
  27069. const auto CERTSRV_E_SIGNATURE_REJECTED = 0x8009480B;
  27070. //
  27071. // MessageId: CERTSRV_E_ISSUANCE_POLICY_REQUIRED
  27072. //
  27073. // MessageText:
  27074. //
  27075. // The request is missing one or more required signature issuance policies.
  27076. //
  27077. const auto CERTSRV_E_ISSUANCE_POLICY_REQUIRED = 0x8009480C;
  27078. //
  27079. // MessageId: CERTSRV_E_SUBJECT_UPN_REQUIRED
  27080. //
  27081. // MessageText:
  27082. //
  27083. // The UPN is unavailable and cannot be added to the Subject Alternate name.
  27084. //
  27085. const auto CERTSRV_E_SUBJECT_UPN_REQUIRED = 0x8009480D;
  27086. //
  27087. // MessageId: CERTSRV_E_SUBJECT_DIRECTORY_GUID_REQUIRED
  27088. //
  27089. // MessageText:
  27090. //
  27091. // The Active Directory GUID is unavailable and cannot be added to the Subject Alternate name.
  27092. //
  27093. const auto CERTSRV_E_SUBJECT_DIRECTORY_GUID_REQUIRED = 0x8009480E;
  27094. //
  27095. // MessageId: CERTSRV_E_SUBJECT_DNS_REQUIRED
  27096. //
  27097. // MessageText:
  27098. //
  27099. // The DNS name is unavailable and cannot be added to the Subject Alternate name.
  27100. //
  27101. const auto CERTSRV_E_SUBJECT_DNS_REQUIRED = 0x8009480F;
  27102. //
  27103. // MessageId: CERTSRV_E_ARCHIVED_KEY_UNEXPECTED
  27104. //
  27105. // MessageText:
  27106. //
  27107. // The request includes a private key for archival by the server, but key archival is not enabled for the specified certificate template.
  27108. //
  27109. const auto CERTSRV_E_ARCHIVED_KEY_UNEXPECTED = 0x80094810;
  27110. //
  27111. // MessageId: CERTSRV_E_KEY_LENGTH
  27112. //
  27113. // MessageText:
  27114. //
  27115. // The public key does not meet the minimum size required by the specified certificate template.
  27116. //
  27117. const auto CERTSRV_E_KEY_LENGTH = 0x80094811;
  27118. //
  27119. // MessageId: CERTSRV_E_SUBJECT_EMAIL_REQUIRED
  27120. //
  27121. // MessageText:
  27122. //
  27123. // The EMail name is unavailable and cannot be added to the Subject or Subject Alternate name.
  27124. //
  27125. const auto CERTSRV_E_SUBJECT_EMAIL_REQUIRED = 0x80094812;
  27126. //
  27127. // MessageId: CERTSRV_E_UNKNOWN_CERT_TYPE
  27128. //
  27129. // MessageText:
  27130. //
  27131. // One or more certificate templates to be enabled on this certification authority could not be found.
  27132. //
  27133. const auto CERTSRV_E_UNKNOWN_CERT_TYPE = 0x80094813;
  27134. //
  27135. // MessageId: CERTSRV_E_CERT_TYPE_OVERLAP
  27136. //
  27137. // MessageText:
  27138. //
  27139. // The certificate template renewal period is longer than the certificate validity period. The template should be reconfigured or the CA certificate renewed.
  27140. //
  27141. const auto CERTSRV_E_CERT_TYPE_OVERLAP = 0x80094814;
  27142. //
  27143. // MessageId: CERTSRV_E_TOO_MANY_SIGNATURES
  27144. //
  27145. // MessageText:
  27146. //
  27147. // The certificate template requires too many RA signatures. Only one RA signature is allowed.
  27148. //
  27149. const auto CERTSRV_E_TOO_MANY_SIGNATURES = 0x80094815;
  27150. //
  27151. // The range 0x5000-0x51ff is reserved for XENROLL errors.
  27152. //
  27153. //
  27154. // MessageId: XENROLL_E_KEY_NOT_EXPORTABLE
  27155. //
  27156. // MessageText:
  27157. //
  27158. // The key is not exportable.
  27159. //
  27160. const auto XENROLL_E_KEY_NOT_EXPORTABLE = 0x80095000;
  27161. //
  27162. // MessageId: XENROLL_E_CANNOT_ADD_ROOT_CERT
  27163. //
  27164. // MessageText:
  27165. //
  27166. // You cannot add the root CA certificate into your local store.
  27167. //
  27168. const auto XENROLL_E_CANNOT_ADD_ROOT_CERT = 0x80095001;
  27169. //
  27170. // MessageId: XENROLL_E_RESPONSE_KA_HASH_NOT_FOUND
  27171. //
  27172. // MessageText:
  27173. //
  27174. // The key archival hash attribute was not found in the response.
  27175. //
  27176. const auto XENROLL_E_RESPONSE_KA_HASH_NOT_FOUND = 0x80095002;
  27177. //
  27178. // MessageId: XENROLL_E_RESPONSE_UNEXPECTED_KA_HASH
  27179. //
  27180. // MessageText:
  27181. //
  27182. // An unexpected key archival hash attribute was found in the response.
  27183. //
  27184. const auto XENROLL_E_RESPONSE_UNEXPECTED_KA_HASH = 0x80095003;
  27185. //
  27186. // MessageId: XENROLL_E_RESPONSE_KA_HASH_MISMATCH
  27187. //
  27188. // MessageText:
  27189. //
  27190. // There is a key archival hash mismatch between the request and the response.
  27191. //
  27192. const auto XENROLL_E_RESPONSE_KA_HASH_MISMATCH = 0x80095004;
  27193. //
  27194. // MessageId: XENROLL_E_KEYSPEC_SMIME_MISMATCH
  27195. //
  27196. // MessageText:
  27197. //
  27198. // Signing certificate cannot include SMIME extension.
  27199. //
  27200. const auto XENROLL_E_KEYSPEC_SMIME_MISMATCH = 0x80095005;
  27201. //
  27202. // MessageId: TRUST_E_SYSTEM_ERROR
  27203. //
  27204. // MessageText:
  27205. //
  27206. // A system-level error occurred while verifying trust.
  27207. //
  27208. const auto TRUST_E_SYSTEM_ERROR = 0x80096001;
  27209. //
  27210. // MessageId: TRUST_E_NO_SIGNER_CERT
  27211. //
  27212. // MessageText:
  27213. //
  27214. // The certificate for the signer of the message is invalid or not found.
  27215. //
  27216. const auto TRUST_E_NO_SIGNER_CERT = 0x80096002;
  27217. //
  27218. // MessageId: TRUST_E_COUNTER_SIGNER
  27219. //
  27220. // MessageText:
  27221. //
  27222. // One of the counter signatures was invalid.
  27223. //
  27224. const auto TRUST_E_COUNTER_SIGNER = 0x80096003;
  27225. //
  27226. // MessageId: TRUST_E_CERT_SIGNATURE
  27227. //
  27228. // MessageText:
  27229. //
  27230. // The signature of the certificate cannot be verified.
  27231. //
  27232. const auto TRUST_E_CERT_SIGNATURE = 0x80096004;
  27233. //
  27234. // MessageId: TRUST_E_TIME_STAMP
  27235. //
  27236. // MessageText:
  27237. //
  27238. // The timestamp signature and/or certificate could not be verified or is malformed.
  27239. //
  27240. const auto TRUST_E_TIME_STAMP = 0x80096005;
  27241. //
  27242. // MessageId: TRUST_E_BAD_DIGEST
  27243. //
  27244. // MessageText:
  27245. //
  27246. // The digital signature of the object did not verify.
  27247. //
  27248. const auto TRUST_E_BAD_DIGEST = 0x80096010;
  27249. //
  27250. // MessageId: TRUST_E_BASIC_CONSTRAINTS
  27251. //
  27252. // MessageText:
  27253. //
  27254. // A certificate's basic constraint extension has not been observed.
  27255. //
  27256. const auto TRUST_E_BASIC_CONSTRAINTS = 0x80096019;
  27257. //
  27258. // MessageId: TRUST_E_FINANCIAL_CRITERIA
  27259. //
  27260. // MessageText:
  27261. //
  27262. // The certificate does not meet or contain the Authenticode(tm) financial extensions.
  27263. //
  27264. const auto TRUST_E_FINANCIAL_CRITERIA = 0x8009601E;
  27265. //
  27266. // Error codes for mssipotf.dll
  27267. // Most of the error codes can only occur when an error occurs
  27268. // during font file signing
  27269. //
  27270. //
  27271. //
  27272. // MessageId: MSSIPOTF_E_OUTOFMEMRANGE
  27273. //
  27274. // MessageText:
  27275. //
  27276. // Tried to reference a part of the file outside the proper range.
  27277. //
  27278. const auto MSSIPOTF_E_OUTOFMEMRANGE = 0x80097001;
  27279. //
  27280. // MessageId: MSSIPOTF_E_CANTGETOBJECT
  27281. //
  27282. // MessageText:
  27283. //
  27284. // Could not retrieve an object from the file.
  27285. //
  27286. const auto MSSIPOTF_E_CANTGETOBJECT = 0x80097002;
  27287. //
  27288. // MessageId: MSSIPOTF_E_NOHEADTABLE
  27289. //
  27290. // MessageText:
  27291. //
  27292. // Could not find the head table in the file.
  27293. //
  27294. const auto MSSIPOTF_E_NOHEADTABLE = 0x80097003;
  27295. //
  27296. // MessageId: MSSIPOTF_E_BAD_MAGICNUMBER
  27297. //
  27298. // MessageText:
  27299. //
  27300. // The magic number in the head table is incorrect.
  27301. //
  27302. const auto MSSIPOTF_E_BAD_MAGICNUMBER = 0x80097004;
  27303. //
  27304. // MessageId: MSSIPOTF_E_BAD_OFFSET_TABLE
  27305. //
  27306. // MessageText:
  27307. //
  27308. // The offset table has incorrect values.
  27309. //
  27310. const auto MSSIPOTF_E_BAD_OFFSET_TABLE = 0x80097005;
  27311. //
  27312. // MessageId: MSSIPOTF_E_TABLE_TAGORDER
  27313. //
  27314. // MessageText:
  27315. //
  27316. // Duplicate table tags or tags out of alphabetical order.
  27317. //
  27318. const auto MSSIPOTF_E_TABLE_TAGORDER = 0x80097006;
  27319. //
  27320. // MessageId: MSSIPOTF_E_TABLE_LONGWORD
  27321. //
  27322. // MessageText:
  27323. //
  27324. // A table does not start on a long word boundary.
  27325. //
  27326. const auto MSSIPOTF_E_TABLE_LONGWORD = 0x80097007;
  27327. //
  27328. // MessageId: MSSIPOTF_E_BAD_FIRST_TABLE_PLACEMENT
  27329. //
  27330. // MessageText:
  27331. //
  27332. // First table does not appear after header information.
  27333. //
  27334. const auto MSSIPOTF_E_BAD_FIRST_TABLE_PLACEMENT = 0x80097008;
  27335. //
  27336. // MessageId: MSSIPOTF_E_TABLES_OVERLAP
  27337. //
  27338. // MessageText:
  27339. //
  27340. // Two or more tables overlap.
  27341. //
  27342. const auto MSSIPOTF_E_TABLES_OVERLAP = 0x80097009;
  27343. //
  27344. // MessageId: MSSIPOTF_E_TABLE_PADBYTES
  27345. //
  27346. // MessageText:
  27347. //
  27348. // Too many pad bytes between tables or pad bytes are not 0.
  27349. //
  27350. const auto MSSIPOTF_E_TABLE_PADBYTES = 0x8009700A;
  27351. //
  27352. // MessageId: MSSIPOTF_E_FILETOOSMALL
  27353. //
  27354. // MessageText:
  27355. //
  27356. // File is too small to contain the last table.
  27357. //
  27358. const auto MSSIPOTF_E_FILETOOSMALL = 0x8009700B;
  27359. //
  27360. // MessageId: MSSIPOTF_E_TABLE_CHECKSUM
  27361. //
  27362. // MessageText:
  27363. //
  27364. // A table checksum is incorrect.
  27365. //
  27366. const auto MSSIPOTF_E_TABLE_CHECKSUM = 0x8009700C;
  27367. //
  27368. // MessageId: MSSIPOTF_E_FILE_CHECKSUM
  27369. //
  27370. // MessageText:
  27371. //
  27372. // The file checksum is incorrect.
  27373. //
  27374. const auto MSSIPOTF_E_FILE_CHECKSUM = 0x8009700D;
  27375. //
  27376. // MessageId: MSSIPOTF_E_FAILED_POLICY
  27377. //
  27378. // MessageText:
  27379. //
  27380. // The signature does not have the correct attributes for the policy.
  27381. //
  27382. const auto MSSIPOTF_E_FAILED_POLICY = 0x80097010;
  27383. //
  27384. // MessageId: MSSIPOTF_E_FAILED_HINTS_CHECK
  27385. //
  27386. // MessageText:
  27387. //
  27388. // The file did not pass the hints check.
  27389. //
  27390. const auto MSSIPOTF_E_FAILED_HINTS_CHECK = 0x80097011;
  27391. //
  27392. // MessageId: MSSIPOTF_E_NOT_OPENTYPE
  27393. //
  27394. // MessageText:
  27395. //
  27396. // The file is not an OpenType file.
  27397. //
  27398. const auto MSSIPOTF_E_NOT_OPENTYPE = 0x80097012;
  27399. //
  27400. // MessageId: MSSIPOTF_E_FILE
  27401. //
  27402. // MessageText:
  27403. //
  27404. // Failed on a file operation (open, map, read, write).
  27405. //
  27406. const auto MSSIPOTF_E_FILE = 0x80097013;
  27407. //
  27408. // MessageId: MSSIPOTF_E_CRYPT
  27409. //
  27410. // MessageText:
  27411. //
  27412. // A call to a CryptoAPI function failed.
  27413. //
  27414. const auto MSSIPOTF_E_CRYPT = 0x80097014;
  27415. //
  27416. // MessageId: MSSIPOTF_E_BADVERSION
  27417. //
  27418. // MessageText:
  27419. //
  27420. // There is a bad version number in the file.
  27421. //
  27422. const auto MSSIPOTF_E_BADVERSION = 0x80097015;
  27423. //
  27424. // MessageId: MSSIPOTF_E_DSIG_STRUCTURE
  27425. //
  27426. // MessageText:
  27427. //
  27428. // The structure of the DSIG table is incorrect.
  27429. //
  27430. const auto MSSIPOTF_E_DSIG_STRUCTURE = 0x80097016;
  27431. //
  27432. // MessageId: MSSIPOTF_E_PCONST_CHECK
  27433. //
  27434. // MessageText:
  27435. //
  27436. // A check failed in a partially constant table.
  27437. //
  27438. const auto MSSIPOTF_E_PCONST_CHECK = 0x80097017;
  27439. //
  27440. // MessageId: MSSIPOTF_E_STRUCTURE
  27441. //
  27442. // MessageText:
  27443. //
  27444. // Some kind of structural error.
  27445. //
  27446. const auto MSSIPOTF_E_STRUCTURE = 0x80097018;
  27447. //
  27448. // MessageId: ERROR_CRED_REQUIRES_CONFIRMATION
  27449. //
  27450. // MessageText:
  27451. //
  27452. // The requested credential requires confirmation.
  27453. //
  27454. const auto ERROR_CRED_REQUIRES_CONFIRMATION = 0x80097019;
  27455. const auto NTE_OP_OK = 0;
  27456. //
  27457. // Note that additional FACILITY_SSPI errors are in issperr.h
  27458. //
  27459. // ******************
  27460. // FACILITY_CERT
  27461. // ******************
  27462. //
  27463. // MessageId: TRUST_E_PROVIDER_UNKNOWN
  27464. //
  27465. // MessageText:
  27466. //
  27467. // Unknown trust provider.
  27468. //
  27469. const auto TRUST_E_PROVIDER_UNKNOWN = 0x800B0001;
  27470. //
  27471. // MessageId: TRUST_E_ACTION_UNKNOWN
  27472. //
  27473. // MessageText:
  27474. //
  27475. // The trust verification action specified is not supported by the specified trust provider.
  27476. //
  27477. const auto TRUST_E_ACTION_UNKNOWN = 0x800B0002;
  27478. //
  27479. // MessageId: TRUST_E_SUBJECT_FORM_UNKNOWN
  27480. //
  27481. // MessageText:
  27482. //
  27483. // The form specified for the subject is not one supported or known by the specified trust provider.
  27484. //
  27485. const auto TRUST_E_SUBJECT_FORM_UNKNOWN = 0x800B0003;
  27486. //
  27487. // MessageId: TRUST_E_SUBJECT_NOT_TRUSTED
  27488. //
  27489. // MessageText:
  27490. //
  27491. // The subject is not trusted for the specified action.
  27492. //
  27493. const auto TRUST_E_SUBJECT_NOT_TRUSTED = 0x800B0004;
  27494. //
  27495. // MessageId: DIGSIG_E_ENCODE
  27496. //
  27497. // MessageText:
  27498. //
  27499. // Error due to problem in ASN.1 encoding process.
  27500. //
  27501. const auto DIGSIG_E_ENCODE = 0x800B0005;
  27502. //
  27503. // MessageId: DIGSIG_E_DECODE
  27504. //
  27505. // MessageText:
  27506. //
  27507. // Error due to problem in ASN.1 decoding process.
  27508. //
  27509. const auto DIGSIG_E_DECODE = 0x800B0006;
  27510. //
  27511. // MessageId: DIGSIG_E_EXTENSIBILITY
  27512. //
  27513. // MessageText:
  27514. //
  27515. // Reading / writing Extensions where Attributes are appropriate, and visa versa.
  27516. //
  27517. const auto DIGSIG_E_EXTENSIBILITY = 0x800B0007;
  27518. //
  27519. // MessageId: DIGSIG_E_CRYPTO
  27520. //
  27521. // MessageText:
  27522. //
  27523. // Unspecified cryptographic failure.
  27524. //
  27525. const auto DIGSIG_E_CRYPTO = 0x800B0008;
  27526. //
  27527. // MessageId: PERSIST_E_SIZEDEFINITE
  27528. //
  27529. // MessageText:
  27530. //
  27531. // The size of the data could not be determined.
  27532. //
  27533. const auto PERSIST_E_SIZEDEFINITE = 0x800B0009;
  27534. //
  27535. // MessageId: PERSIST_E_SIZEINDEFINITE
  27536. //
  27537. // MessageText:
  27538. //
  27539. // The size of the indefinite-sized data could not be determined.
  27540. //
  27541. const auto PERSIST_E_SIZEINDEFINITE = 0x800B000A;
  27542. //
  27543. // MessageId: PERSIST_E_NOTSELFSIZING
  27544. //
  27545. // MessageText:
  27546. //
  27547. // This object does not read and write self-sizing data.
  27548. //
  27549. const auto PERSIST_E_NOTSELFSIZING = 0x800B000B;
  27550. //
  27551. // MessageId: TRUST_E_NOSIGNATURE
  27552. //
  27553. // MessageText:
  27554. //
  27555. // No signature was present in the subject.
  27556. //
  27557. const auto TRUST_E_NOSIGNATURE = 0x800B0100;
  27558. //
  27559. // MessageId: CERT_E_EXPIRED
  27560. //
  27561. // MessageText:
  27562. //
  27563. // A required certificate is not within its validity period when verifying against the current system clock or the timestamp in the signed file.
  27564. //
  27565. const auto CERT_E_EXPIRED = 0x800B0101;
  27566. //
  27567. // MessageId: CERT_E_VALIDITYPERIODNESTING
  27568. //
  27569. // MessageText:
  27570. //
  27571. // The validity periods of the certification chain do not nest correctly.
  27572. //
  27573. const auto CERT_E_VALIDITYPERIODNESTING = 0x800B0102;
  27574. //
  27575. // MessageId: CERT_E_ROLE
  27576. //
  27577. // MessageText:
  27578. //
  27579. // A certificate that can only be used as an end-entity is being used as a CA or visa versa.
  27580. //
  27581. const auto CERT_E_ROLE = 0x800B0103;
  27582. //
  27583. // MessageId: CERT_E_PATHLENCONST
  27584. //
  27585. // MessageText:
  27586. //
  27587. // A path length constraint in the certification chain has been violated.
  27588. //
  27589. const auto CERT_E_PATHLENCONST = 0x800B0104;
  27590. //
  27591. // MessageId: CERT_E_CRITICAL
  27592. //
  27593. // MessageText:
  27594. //
  27595. // A certificate contains an unknown extension that is marked 'critical'.
  27596. //
  27597. const auto CERT_E_CRITICAL = 0x800B0105;
  27598. //
  27599. // MessageId: CERT_E_PURPOSE
  27600. //
  27601. // MessageText:
  27602. //
  27603. // A certificate being used for a purpose other than the ones specified by its CA.
  27604. //
  27605. const auto CERT_E_PURPOSE = 0x800B0106;
  27606. //
  27607. // MessageId: CERT_E_ISSUERCHAINING
  27608. //
  27609. // MessageText:
  27610. //
  27611. // A parent of a given certificate in fact did not issue that child certificate.
  27612. //
  27613. const auto CERT_E_ISSUERCHAINING = 0x800B0107;
  27614. //
  27615. // MessageId: CERT_E_MALFORMED
  27616. //
  27617. // MessageText:
  27618. //
  27619. // A certificate is missing or has an empty value for an important field, such as a subject or issuer name.
  27620. //
  27621. const auto CERT_E_MALFORMED = 0x800B0108;
  27622. //
  27623. // MessageId: CERT_E_UNTRUSTEDROOT
  27624. //
  27625. // MessageText:
  27626. //
  27627. // A certificate chain processed, but terminated in a root certificate which is not trusted by the trust provider.
  27628. //
  27629. const auto CERT_E_UNTRUSTEDROOT = 0x800B0109;
  27630. //
  27631. // MessageId: CERT_E_CHAINING
  27632. //
  27633. // MessageText:
  27634. //
  27635. // A certificate chain could not be built to a trusted root authority.
  27636. //
  27637. const auto CERT_E_CHAINING = 0x800B010A;
  27638. //
  27639. // MessageId: TRUST_E_FAIL
  27640. //
  27641. // MessageText:
  27642. //
  27643. // Generic trust failure.
  27644. //
  27645. const auto TRUST_E_FAIL = 0x800B010B;
  27646. //
  27647. // MessageId: CERT_E_REVOKED
  27648. //
  27649. // MessageText:
  27650. //
  27651. // A certificate was explicitly revoked by its issuer.
  27652. //
  27653. const auto CERT_E_REVOKED = 0x800B010C;
  27654. //
  27655. // MessageId: CERT_E_UNTRUSTEDTESTROOT
  27656. //
  27657. // MessageText:
  27658. //
  27659. // The certification path terminates with the test root which is not trusted with the current policy settings.
  27660. //
  27661. const auto CERT_E_UNTRUSTEDTESTROOT = 0x800B010D;
  27662. //
  27663. // MessageId: CERT_E_REVOCATION_FAILURE
  27664. //
  27665. // MessageText:
  27666. //
  27667. // The revocation process could not continue - the certificate(s) could not be checked.
  27668. //
  27669. const auto CERT_E_REVOCATION_FAILURE = 0x800B010E;
  27670. //
  27671. // MessageId: CERT_E_CN_NO_MATCH
  27672. //
  27673. // MessageText:
  27674. //
  27675. // The certificate's CN name does not match the passed value.
  27676. //
  27677. const auto CERT_E_CN_NO_MATCH = 0x800B010F;
  27678. //
  27679. // MessageId: CERT_E_WRONG_USAGE
  27680. //
  27681. // MessageText:
  27682. //
  27683. // The certificate is not valid for the requested usage.
  27684. //
  27685. const auto CERT_E_WRONG_USAGE = 0x800B0110;
  27686. //
  27687. // MessageId: TRUST_E_EXPLICIT_DISTRUST
  27688. //
  27689. // MessageText:
  27690. //
  27691. // The certificate was explicitly marked as untrusted by the user.
  27692. //
  27693. const auto TRUST_E_EXPLICIT_DISTRUST = 0x800B0111;
  27694. //
  27695. // MessageId: CERT_E_UNTRUSTEDCA
  27696. //
  27697. // MessageText:
  27698. //
  27699. // A certification chain processed correctly, but one of the CA certificates is not trusted by the policy provider.
  27700. //
  27701. const auto CERT_E_UNTRUSTEDCA = 0x800B0112;
  27702. //
  27703. // MessageId: CERT_E_INVALID_POLICY
  27704. //
  27705. // MessageText:
  27706. //
  27707. // The certificate has invalid policy.
  27708. //
  27709. const auto CERT_E_INVALID_POLICY = 0x800B0113;
  27710. //
  27711. // MessageId: CERT_E_INVALID_NAME
  27712. //
  27713. // MessageText:
  27714. //
  27715. // The certificate has an invalid name. The name is not included in the permitted list or is explicitly excluded.
  27716. //
  27717. const auto CERT_E_INVALID_NAME = 0x800B0114;
  27718. // *****************
  27719. // FACILITY_SETUPAPI
  27720. // *****************
  27721. //
  27722. // Since these error codes aren't in the standard Win32 range (i.e., 0-64K), define a
  27723. // macro to map either Win32 or SetupAPI error codes into an HRESULT.
  27724. //
  27725. //
  27726. // MessageId: SPAPI_E_EXPECTED_SECTION_NAME
  27727. //
  27728. // MessageText:
  27729. //
  27730. // A non-empty line was encountered in the INF before the start of a section.
  27731. //
  27732. const auto SPAPI_E_EXPECTED_SECTION_NAME = 0x800F0000;
  27733. //
  27734. // MessageId: SPAPI_E_BAD_SECTION_NAME_LINE
  27735. //
  27736. // MessageText:
  27737. //
  27738. // A section name marker in the INF is not complete, or does not exist on a line by itself.
  27739. //
  27740. const auto SPAPI_E_BAD_SECTION_NAME_LINE = 0x800F0001;
  27741. //
  27742. // MessageId: SPAPI_E_SECTION_NAME_TOO_LONG
  27743. //
  27744. // MessageText:
  27745. //
  27746. // An INF section was encountered whose name exceeds the maximum section name length.
  27747. //
  27748. const auto SPAPI_E_SECTION_NAME_TOO_LONG = 0x800F0002;
  27749. //
  27750. // MessageId: SPAPI_E_GENERAL_SYNTAX
  27751. //
  27752. // MessageText:
  27753. //
  27754. // The syntax of the INF is invalid.
  27755. //
  27756. const auto SPAPI_E_GENERAL_SYNTAX = 0x800F0003;
  27757. //
  27758. // MessageId: SPAPI_E_WRONG_INF_STYLE
  27759. //
  27760. // MessageText:
  27761. //
  27762. // The style of the INF is different than what was requested.
  27763. //
  27764. const auto SPAPI_E_WRONG_INF_STYLE = 0x800F0100;
  27765. //
  27766. // MessageId: SPAPI_E_SECTION_NOT_FOUND
  27767. //
  27768. // MessageText:
  27769. //
  27770. // The required section was not found in the INF.
  27771. //
  27772. const auto SPAPI_E_SECTION_NOT_FOUND = 0x800F0101;
  27773. //
  27774. // MessageId: SPAPI_E_LINE_NOT_FOUND
  27775. //
  27776. // MessageText:
  27777. //
  27778. // The required line was not found in the INF.
  27779. //
  27780. const auto SPAPI_E_LINE_NOT_FOUND = 0x800F0102;
  27781. //
  27782. // MessageId: SPAPI_E_NO_BACKUP
  27783. //
  27784. // MessageText:
  27785. //
  27786. // The files affected by the installation of this file queue have not been backed up for uninstall.
  27787. //
  27788. const auto SPAPI_E_NO_BACKUP = 0x800F0103;
  27789. //
  27790. // MessageId: SPAPI_E_NO_ASSOCIATED_CLASS
  27791. //
  27792. // MessageText:
  27793. //
  27794. // The INF or the device information set or element does not have an associated install class.
  27795. //
  27796. const auto SPAPI_E_NO_ASSOCIATED_CLASS = 0x800F0200;
  27797. //
  27798. // MessageId: SPAPI_E_CLASS_MISMATCH
  27799. //
  27800. // MessageText:
  27801. //
  27802. // The INF or the device information set or element does not match the specified install class.
  27803. //
  27804. const auto SPAPI_E_CLASS_MISMATCH = 0x800F0201;
  27805. //
  27806. // MessageId: SPAPI_E_DUPLICATE_FOUND
  27807. //
  27808. // MessageText:
  27809. //
  27810. // An existing device was found that is a duplicate of the device being manually installed.
  27811. //
  27812. const auto SPAPI_E_DUPLICATE_FOUND = 0x800F0202;
  27813. //
  27814. // MessageId: SPAPI_E_NO_DRIVER_SELECTED
  27815. //
  27816. // MessageText:
  27817. //
  27818. // There is no driver selected for the device information set or element.
  27819. //
  27820. const auto SPAPI_E_NO_DRIVER_SELECTED = 0x800F0203;
  27821. //
  27822. // MessageId: SPAPI_E_KEY_DOES_NOT_EXIST
  27823. //
  27824. // MessageText:
  27825. //
  27826. // The requested device registry key does not exist.
  27827. //
  27828. const auto SPAPI_E_KEY_DOES_NOT_EXIST = 0x800F0204;
  27829. //
  27830. // MessageId: SPAPI_E_INVALID_DEVINST_NAME
  27831. //
  27832. // MessageText:
  27833. //
  27834. // The device instance name is invalid.
  27835. //
  27836. const auto SPAPI_E_INVALID_DEVINST_NAME = 0x800F0205;
  27837. //
  27838. // MessageId: SPAPI_E_INVALID_CLASS
  27839. //
  27840. // MessageText:
  27841. //
  27842. // The install class is not present or is invalid.
  27843. //
  27844. const auto SPAPI_E_INVALID_CLASS = 0x800F0206;
  27845. //
  27846. // MessageId: SPAPI_E_DEVINST_ALREADY_EXISTS
  27847. //
  27848. // MessageText:
  27849. //
  27850. // The device instance cannot be created because it already exists.
  27851. //
  27852. const auto SPAPI_E_DEVINST_ALREADY_EXISTS = 0x800F0207;
  27853. //
  27854. // MessageId: SPAPI_E_DEVINFO_NOT_REGISTERED
  27855. //
  27856. // MessageText:
  27857. //
  27858. // The operation cannot be performed on a device information element that has not been registered.
  27859. //
  27860. const auto SPAPI_E_DEVINFO_NOT_REGISTERED = 0x800F0208;
  27861. //
  27862. // MessageId: SPAPI_E_INVALID_REG_PROPERTY
  27863. //
  27864. // MessageText:
  27865. //
  27866. // The device property code is invalid.
  27867. //
  27868. const auto SPAPI_E_INVALID_REG_PROPERTY = 0x800F0209;
  27869. //
  27870. // MessageId: SPAPI_E_NO_INF
  27871. //
  27872. // MessageText:
  27873. //
  27874. // The INF from which a driver list is to be built does not exist.
  27875. //
  27876. const auto SPAPI_E_NO_INF = 0x800F020A;
  27877. //
  27878. // MessageId: SPAPI_E_NO_SUCH_DEVINST
  27879. //
  27880. // MessageText:
  27881. //
  27882. // The device instance does not exist in the hardware tree.
  27883. //
  27884. const auto SPAPI_E_NO_SUCH_DEVINST = 0x800F020B;
  27885. //
  27886. // MessageId: SPAPI_E_CANT_LOAD_CLASS_ICON
  27887. //
  27888. // MessageText:
  27889. //
  27890. // The icon representing this install class cannot be loaded.
  27891. //
  27892. const auto SPAPI_E_CANT_LOAD_CLASS_ICON = 0x800F020C;
  27893. //
  27894. // MessageId: SPAPI_E_INVALID_CLASS_INSTALLER
  27895. //
  27896. // MessageText:
  27897. //
  27898. // The class installer registry entry is invalid.
  27899. //
  27900. const auto SPAPI_E_INVALID_CLASS_INSTALLER = 0x800F020D;
  27901. //
  27902. // MessageId: SPAPI_E_DI_DO_DEFAULT
  27903. //
  27904. // MessageText:
  27905. //
  27906. // The class installer has indicated that the default action should be performed for this installation request.
  27907. //
  27908. const auto SPAPI_E_DI_DO_DEFAULT = 0x800F020E;
  27909. //
  27910. // MessageId: SPAPI_E_DI_NOFILECOPY
  27911. //
  27912. // MessageText:
  27913. //
  27914. // The operation does not require any files to be copied.
  27915. //
  27916. const auto SPAPI_E_DI_NOFILECOPY = 0x800F020F;
  27917. //
  27918. // MessageId: SPAPI_E_INVALID_HWPROFILE
  27919. //
  27920. // MessageText:
  27921. //
  27922. // The specified hardware profile does not exist.
  27923. //
  27924. const auto SPAPI_E_INVALID_HWPROFILE = 0x800F0210;
  27925. //
  27926. // MessageId: SPAPI_E_NO_DEVICE_SELECTED
  27927. //
  27928. // MessageText:
  27929. //
  27930. // There is no device information element currently selected for this device information set.
  27931. //
  27932. const auto SPAPI_E_NO_DEVICE_SELECTED = 0x800F0211;
  27933. //
  27934. // MessageId: SPAPI_E_DEVINFO_LIST_LOCKED
  27935. //
  27936. // MessageText:
  27937. //
  27938. // The operation cannot be performed because the device information set is locked.
  27939. //
  27940. const auto SPAPI_E_DEVINFO_LIST_LOCKED = 0x800F0212;
  27941. //
  27942. // MessageId: SPAPI_E_DEVINFO_DATA_LOCKED
  27943. //
  27944. // MessageText:
  27945. //
  27946. // The operation cannot be performed because the device information element is locked.
  27947. //
  27948. const auto SPAPI_E_DEVINFO_DATA_LOCKED = 0x800F0213;
  27949. //
  27950. // MessageId: SPAPI_E_DI_BAD_PATH
  27951. //
  27952. // MessageText:
  27953. //
  27954. // The specified path does not contain any applicable device INFs.
  27955. //
  27956. const auto SPAPI_E_DI_BAD_PATH = 0x800F0214;
  27957. //
  27958. // MessageId: SPAPI_E_NO_CLASSINSTALL_PARAMS
  27959. //
  27960. // MessageText:
  27961. //
  27962. // No class installer parameters have been set for the device information set or element.
  27963. //
  27964. const auto SPAPI_E_NO_CLASSINSTALL_PARAMS = 0x800F0215;
  27965. //
  27966. // MessageId: SPAPI_E_FILEQUEUE_LOCKED
  27967. //
  27968. // MessageText:
  27969. //
  27970. // The operation cannot be performed because the file queue is locked.
  27971. //
  27972. const auto SPAPI_E_FILEQUEUE_LOCKED = 0x800F0216;
  27973. //
  27974. // MessageId: SPAPI_E_BAD_SERVICE_INSTALLSECT
  27975. //
  27976. // MessageText:
  27977. //
  27978. // A service installation section in this INF is invalid.
  27979. //
  27980. const auto SPAPI_E_BAD_SERVICE_INSTALLSECT = 0x800F0217;
  27981. //
  27982. // MessageId: SPAPI_E_NO_CLASS_DRIVER_LIST
  27983. //
  27984. // MessageText:
  27985. //
  27986. // There is no class driver list for the device information element.
  27987. //
  27988. const auto SPAPI_E_NO_CLASS_DRIVER_LIST = 0x800F0218;
  27989. //
  27990. // MessageId: SPAPI_E_NO_ASSOCIATED_SERVICE
  27991. //
  27992. // MessageText:
  27993. //
  27994. // The installation failed because a function driver was not specified for this device instance.
  27995. //
  27996. const auto SPAPI_E_NO_ASSOCIATED_SERVICE = 0x800F0219;
  27997. //
  27998. // MessageId: SPAPI_E_NO_DEFAULT_DEVICE_INTERFACE
  27999. //
  28000. // MessageText:
  28001. //
  28002. // There is presently no default device interface designated for this interface class.
  28003. //
  28004. const auto SPAPI_E_NO_DEFAULT_DEVICE_INTERFACE = 0x800F021A;
  28005. //
  28006. // MessageId: SPAPI_E_DEVICE_INTERFACE_ACTIVE
  28007. //
  28008. // MessageText:
  28009. //
  28010. // The operation cannot be performed because the device interface is currently active.
  28011. //
  28012. const auto SPAPI_E_DEVICE_INTERFACE_ACTIVE = 0x800F021B;
  28013. //
  28014. // MessageId: SPAPI_E_DEVICE_INTERFACE_REMOVED
  28015. //
  28016. // MessageText:
  28017. //
  28018. // The operation cannot be performed because the device interface has been removed from the system.
  28019. //
  28020. const auto SPAPI_E_DEVICE_INTERFACE_REMOVED = 0x800F021C;
  28021. //
  28022. // MessageId: SPAPI_E_BAD_INTERFACE_INSTALLSECT
  28023. //
  28024. // MessageText:
  28025. //
  28026. // An interface installation section in this INF is invalid.
  28027. //
  28028. const auto SPAPI_E_BAD_INTERFACE_INSTALLSECT = 0x800F021D;
  28029. //
  28030. // MessageId: SPAPI_E_NO_SUCH_INTERFACE_CLASS
  28031. //
  28032. // MessageText:
  28033. //
  28034. // This interface class does not exist in the system.
  28035. //
  28036. const auto SPAPI_E_NO_SUCH_INTERFACE_CLASS = 0x800F021E;
  28037. //
  28038. // MessageId: SPAPI_E_INVALID_REFERENCE_STRING
  28039. //
  28040. // MessageText:
  28041. //
  28042. // The reference string supplied for this interface device is invalid.
  28043. //
  28044. const auto SPAPI_E_INVALID_REFERENCE_STRING = 0x800F021F;
  28045. //
  28046. // MessageId: SPAPI_E_INVALID_MACHINENAME
  28047. //
  28048. // MessageText:
  28049. //
  28050. // The specified machine name does not conform to UNC naming conventions.
  28051. //
  28052. const auto SPAPI_E_INVALID_MACHINENAME = 0x800F0220;
  28053. //
  28054. // MessageId: SPAPI_E_REMOTE_COMM_FAILURE
  28055. //
  28056. // MessageText:
  28057. //
  28058. // A general remote communication error occurred.
  28059. //
  28060. const auto SPAPI_E_REMOTE_COMM_FAILURE = 0x800F0221;
  28061. //
  28062. // MessageId: SPAPI_E_MACHINE_UNAVAILABLE
  28063. //
  28064. // MessageText:
  28065. //
  28066. // The machine selected for remote communication is not available at this time.
  28067. //
  28068. const auto SPAPI_E_MACHINE_UNAVAILABLE = 0x800F0222;
  28069. //
  28070. // MessageId: SPAPI_E_NO_CONFIGMGR_SERVICES
  28071. //
  28072. // MessageText:
  28073. //
  28074. // The Plug and Play service is not available on the remote machine.
  28075. //
  28076. const auto SPAPI_E_NO_CONFIGMGR_SERVICES = 0x800F0223;
  28077. //
  28078. // MessageId: SPAPI_E_INVALID_PROPPAGE_PROVIDER
  28079. //
  28080. // MessageText:
  28081. //
  28082. // The property page provider registry entry is invalid.
  28083. //
  28084. const auto SPAPI_E_INVALID_PROPPAGE_PROVIDER = 0x800F0224;
  28085. //
  28086. // MessageId: SPAPI_E_NO_SUCH_DEVICE_INTERFACE
  28087. //
  28088. // MessageText:
  28089. //
  28090. // The requested device interface is not present in the system.
  28091. //
  28092. const auto SPAPI_E_NO_SUCH_DEVICE_INTERFACE = 0x800F0225;
  28093. //
  28094. // MessageId: SPAPI_E_DI_POSTPROCESSING_REQUIRED
  28095. //
  28096. // MessageText:
  28097. //
  28098. // The device's co-installer has additional work to perform after installation is complete.
  28099. //
  28100. const auto SPAPI_E_DI_POSTPROCESSING_REQUIRED = 0x800F0226;
  28101. //
  28102. // MessageId: SPAPI_E_INVALID_COINSTALLER
  28103. //
  28104. // MessageText:
  28105. //
  28106. // The device's co-installer is invalid.
  28107. //
  28108. const auto SPAPI_E_INVALID_COINSTALLER = 0x800F0227;
  28109. //
  28110. // MessageId: SPAPI_E_NO_COMPAT_DRIVERS
  28111. //
  28112. // MessageText:
  28113. //
  28114. // There are no compatible drivers for this device.
  28115. //
  28116. const auto SPAPI_E_NO_COMPAT_DRIVERS = 0x800F0228;
  28117. //
  28118. // MessageId: SPAPI_E_NO_DEVICE_ICON
  28119. //
  28120. // MessageText:
  28121. //
  28122. // There is no icon that represents this device or device type.
  28123. //
  28124. const auto SPAPI_E_NO_DEVICE_ICON = 0x800F0229;
  28125. //
  28126. // MessageId: SPAPI_E_INVALID_INF_LOGCONFIG
  28127. //
  28128. // MessageText:
  28129. //
  28130. // A logical configuration specified in this INF is invalid.
  28131. //
  28132. const auto SPAPI_E_INVALID_INF_LOGCONFIG = 0x800F022A;
  28133. //
  28134. // MessageId: SPAPI_E_DI_DONT_INSTALL
  28135. //
  28136. // MessageText:
  28137. //
  28138. // The class installer has denied the request to install or upgrade this device.
  28139. //
  28140. const auto SPAPI_E_DI_DONT_INSTALL = 0x800F022B;
  28141. //
  28142. // MessageId: SPAPI_E_INVALID_FILTER_DRIVER
  28143. //
  28144. // MessageText:
  28145. //
  28146. // One of the filter drivers installed for this device is invalid.
  28147. //
  28148. const auto SPAPI_E_INVALID_FILTER_DRIVER = 0x800F022C;
  28149. //
  28150. // MessageId: SPAPI_E_NON_WINDOWS_NT_DRIVER
  28151. //
  28152. // MessageText:
  28153. //
  28154. // The driver selected for this device does not support Windows Vista.
  28155. //
  28156. const auto SPAPI_E_NON_WINDOWS_NT_DRIVER = 0x800F022D;
  28157. //
  28158. // MessageId: SPAPI_E_NON_WINDOWS_DRIVER
  28159. //
  28160. // MessageText:
  28161. //
  28162. // The driver selected for this device does not support Windows.
  28163. //
  28164. const auto SPAPI_E_NON_WINDOWS_DRIVER = 0x800F022E;
  28165. //
  28166. // MessageId: SPAPI_E_NO_CATALOG_FOR_OEM_INF
  28167. //
  28168. // MessageText:
  28169. //
  28170. // The third-party INF does not contain digital signature information.
  28171. //
  28172. const auto SPAPI_E_NO_CATALOG_FOR_OEM_INF = 0x800F022F;
  28173. //
  28174. // MessageId: SPAPI_E_DEVINSTALL_QUEUE_NONNATIVE
  28175. //
  28176. // MessageText:
  28177. //
  28178. // An invalid attempt was made to use a device installation file queue for verification of digital signatures relative to other platforms.
  28179. //
  28180. const auto SPAPI_E_DEVINSTALL_QUEUE_NONNATIVE = 0x800F0230;
  28181. //
  28182. // MessageId: SPAPI_E_NOT_DISABLEABLE
  28183. //
  28184. // MessageText:
  28185. //
  28186. // The device cannot be disabled.
  28187. //
  28188. const auto SPAPI_E_NOT_DISABLEABLE = 0x800F0231;
  28189. //
  28190. // MessageId: SPAPI_E_CANT_REMOVE_DEVINST
  28191. //
  28192. // MessageText:
  28193. //
  28194. // The device could not be dynamically removed.
  28195. //
  28196. const auto SPAPI_E_CANT_REMOVE_DEVINST = 0x800F0232;
  28197. //
  28198. // MessageId: SPAPI_E_INVALID_TARGET
  28199. //
  28200. // MessageText:
  28201. //
  28202. // Cannot copy to specified target.
  28203. //
  28204. const auto SPAPI_E_INVALID_TARGET = 0x800F0233;
  28205. //
  28206. // MessageId: SPAPI_E_DRIVER_NONNATIVE
  28207. //
  28208. // MessageText:
  28209. //
  28210. // Driver is not intended for this platform.
  28211. //
  28212. const auto SPAPI_E_DRIVER_NONNATIVE = 0x800F0234;
  28213. //
  28214. // MessageId: SPAPI_E_IN_WOW64
  28215. //
  28216. // MessageText:
  28217. //
  28218. // Operation not allowed in WOW64.
  28219. //
  28220. const auto SPAPI_E_IN_WOW64 = 0x800F0235;
  28221. //
  28222. // MessageId: SPAPI_E_SET_SYSTEM_RESTORE_POINT
  28223. //
  28224. // MessageText:
  28225. //
  28226. // The operation involving unsigned file copying was rolled back, so that a system restore point could be set.
  28227. //
  28228. const auto SPAPI_E_SET_SYSTEM_RESTORE_POINT = 0x800F0236;
  28229. //
  28230. // MessageId: SPAPI_E_INCORRECTLY_COPIED_INF
  28231. //
  28232. // MessageText:
  28233. //
  28234. // An INF was copied into the Windows INF directory in an improper manner.
  28235. //
  28236. const auto SPAPI_E_INCORRECTLY_COPIED_INF = 0x800F0237;
  28237. //
  28238. // MessageId: SPAPI_E_SCE_DISABLED
  28239. //
  28240. // MessageText:
  28241. //
  28242. // The Security Configuration Editor (SCE) APIs have been disabled on this Embedded product.
  28243. //
  28244. const auto SPAPI_E_SCE_DISABLED = 0x800F0238;
  28245. //
  28246. // MessageId: SPAPI_E_UNKNOWN_EXCEPTION
  28247. //
  28248. // MessageText:
  28249. //
  28250. // An unknown exception was encountered.
  28251. //
  28252. const auto SPAPI_E_UNKNOWN_EXCEPTION = 0x800F0239;
  28253. //
  28254. // MessageId: SPAPI_E_PNP_REGISTRY_ERROR
  28255. //
  28256. // MessageText:
  28257. //
  28258. // A problem was encountered when accessing the Plug and Play registry database.
  28259. //
  28260. const auto SPAPI_E_PNP_REGISTRY_ERROR = 0x800F023A;
  28261. //
  28262. // MessageId: SPAPI_E_REMOTE_REQUEST_UNSUPPORTED
  28263. //
  28264. // MessageText:
  28265. //
  28266. // The requested operation is not supported for a remote machine.
  28267. //
  28268. const auto SPAPI_E_REMOTE_REQUEST_UNSUPPORTED = 0x800F023B;
  28269. //
  28270. // MessageId: SPAPI_E_NOT_AN_INSTALLED_OEM_INF
  28271. //
  28272. // MessageText:
  28273. //
  28274. // The specified file is not an installed OEM INF.
  28275. //
  28276. const auto SPAPI_E_NOT_AN_INSTALLED_OEM_INF = 0x800F023C;
  28277. //
  28278. // MessageId: SPAPI_E_INF_IN_USE_BY_DEVICES
  28279. //
  28280. // MessageText:
  28281. //
  28282. // One or more devices are presently installed using the specified INF.
  28283. //
  28284. const auto SPAPI_E_INF_IN_USE_BY_DEVICES = 0x800F023D;
  28285. //
  28286. // MessageId: SPAPI_E_DI_FUNCTION_OBSOLETE
  28287. //
  28288. // MessageText:
  28289. //
  28290. // The requested device install operation is obsolete.
  28291. //
  28292. const auto SPAPI_E_DI_FUNCTION_OBSOLETE = 0x800F023E;
  28293. //
  28294. // MessageId: SPAPI_E_NO_AUTHENTICODE_CATALOG
  28295. //
  28296. // MessageText:
  28297. //
  28298. // A file could not be verified because it does not have an associated catalog signed via Authenticode(tm).
  28299. //
  28300. const auto SPAPI_E_NO_AUTHENTICODE_CATALOG = 0x800F023F;
  28301. //
  28302. // MessageId: SPAPI_E_AUTHENTICODE_DISALLOWED
  28303. //
  28304. // MessageText:
  28305. //
  28306. // Authenticode(tm) signature verification is not supported for the specified INF.
  28307. //
  28308. const auto SPAPI_E_AUTHENTICODE_DISALLOWED = 0x800F0240;
  28309. //
  28310. // MessageId: SPAPI_E_AUTHENTICODE_TRUSTED_PUBLISHER
  28311. //
  28312. // MessageText:
  28313. //
  28314. // The INF was signed with an Authenticode(tm) catalog from a trusted publisher.
  28315. //
  28316. const auto SPAPI_E_AUTHENTICODE_TRUSTED_PUBLISHER = 0x800F0241;
  28317. //
  28318. // MessageId: SPAPI_E_AUTHENTICODE_TRUST_NOT_ESTABLISHED
  28319. //
  28320. // MessageText:
  28321. //
  28322. // The publisher of an Authenticode(tm) signed catalog has not yet been established as trusted.
  28323. //
  28324. const auto SPAPI_E_AUTHENTICODE_TRUST_NOT_ESTABLISHED = 0x800F0242;
  28325. //
  28326. // MessageId: SPAPI_E_AUTHENTICODE_PUBLISHER_NOT_TRUSTED
  28327. //
  28328. // MessageText:
  28329. //
  28330. // The publisher of an Authenticode(tm) signed catalog was not established as trusted.
  28331. //
  28332. const auto SPAPI_E_AUTHENTICODE_PUBLISHER_NOT_TRUSTED = 0x800F0243;
  28333. //
  28334. // MessageId: SPAPI_E_SIGNATURE_OSATTRIBUTE_MISMATCH
  28335. //
  28336. // MessageText:
  28337. //
  28338. // The software was tested for compliance with Windows Logo requirements on a different version of Windows, and may not be compatible with this version.
  28339. //
  28340. const auto SPAPI_E_SIGNATURE_OSATTRIBUTE_MISMATCH = 0x800F0244;
  28341. //
  28342. // MessageId: SPAPI_E_ONLY_VALIDATE_VIA_AUTHENTICODE
  28343. //
  28344. // MessageText:
  28345. //
  28346. // The file may only be validated by a catalog signed via Authenticode(tm).
  28347. //
  28348. const auto SPAPI_E_ONLY_VALIDATE_VIA_AUTHENTICODE = 0x800F0245;
  28349. //
  28350. // MessageId: SPAPI_E_DEVICE_INSTALLER_NOT_READY
  28351. //
  28352. // MessageText:
  28353. //
  28354. // One of the installers for this device cannot perform the installation at this time.
  28355. //
  28356. const auto SPAPI_E_DEVICE_INSTALLER_NOT_READY = 0x800F0246;
  28357. //
  28358. // MessageId: SPAPI_E_DRIVER_STORE_ADD_FAILED
  28359. //
  28360. // MessageText:
  28361. //
  28362. // A problem was encountered while attempting to add the driver to the store.
  28363. //
  28364. const auto SPAPI_E_DRIVER_STORE_ADD_FAILED = 0x800F0247;
  28365. //
  28366. // MessageId: SPAPI_E_DEVICE_INSTALL_BLOCKED
  28367. //
  28368. // MessageText:
  28369. //
  28370. // The installation of this device is forbidden by system policy. Contact your system administrator.
  28371. //
  28372. const auto SPAPI_E_DEVICE_INSTALL_BLOCKED = 0x800F0248;
  28373. //
  28374. // MessageId: SPAPI_E_DRIVER_INSTALL_BLOCKED
  28375. //
  28376. // MessageText:
  28377. //
  28378. // The installation of this driver is forbidden by system policy. Contact your system administrator.
  28379. //
  28380. const auto SPAPI_E_DRIVER_INSTALL_BLOCKED = 0x800F0249;
  28381. //
  28382. // MessageId: SPAPI_E_WRONG_INF_TYPE
  28383. //
  28384. // MessageText:
  28385. //
  28386. // The specified INF is the wrong type for this operation.
  28387. //
  28388. const auto SPAPI_E_WRONG_INF_TYPE = 0x800F024A;
  28389. //
  28390. // MessageId: SPAPI_E_FILE_HASH_NOT_IN_CATALOG
  28391. //
  28392. // MessageText:
  28393. //
  28394. // The hash for the file is not present in the specified catalog file. The file is likely corrupt or the victim of tampering.
  28395. //
  28396. const auto SPAPI_E_FILE_HASH_NOT_IN_CATALOG = 0x800F024B;
  28397. //
  28398. // MessageId: SPAPI_E_DRIVER_STORE_DELETE_FAILED
  28399. //
  28400. // MessageText:
  28401. //
  28402. // A problem was encountered while attempting to delete the driver from the store.
  28403. //
  28404. const auto SPAPI_E_DRIVER_STORE_DELETE_FAILED = 0x800F024C;
  28405. //
  28406. // MessageId: SPAPI_E_UNRECOVERABLE_STACK_OVERFLOW
  28407. //
  28408. // MessageText:
  28409. //
  28410. // An unrecoverable stack overflow was encountered.
  28411. //
  28412. const auto SPAPI_E_UNRECOVERABLE_STACK_OVERFLOW = 0x800F0300;
  28413. //
  28414. // MessageId: SPAPI_E_ERROR_NOT_INSTALLED
  28415. //
  28416. // MessageText:
  28417. //
  28418. // No installed components were detected.
  28419. //
  28420. const auto SPAPI_E_ERROR_NOT_INSTALLED = 0x800F1000;
  28421. // *****************
  28422. // FACILITY_SCARD
  28423. // *****************
  28424. //
  28425. // =============================
  28426. // Facility SCARD Error Messages
  28427. // =============================
  28428. //
  28429. //
  28430. alias NO_ERROR SCARD_S_SUCCESS;
  28431. // MessageId: SCARD_F_INTERNAL_ERROR
  28432. //
  28433. // MessageText:
  28434. //
  28435. // An internal consistency check failed.
  28436. //
  28437. const auto SCARD_F_INTERNAL_ERROR = 0x80100001;
  28438. //
  28439. // MessageId: SCARD_E_CANCELLED
  28440. //
  28441. // MessageText:
  28442. //
  28443. // The action was cancelled by an SCardCancel request.
  28444. //
  28445. const auto SCARD_E_CANCELLED = 0x80100002;
  28446. //
  28447. // MessageId: SCARD_E_INVALID_HANDLE
  28448. //
  28449. // MessageText:
  28450. //
  28451. // The supplied handle was invalid.
  28452. //
  28453. const auto SCARD_E_INVALID_HANDLE = 0x80100003;
  28454. //
  28455. // MessageId: SCARD_E_INVALID_PARAMETER
  28456. //
  28457. // MessageText:
  28458. //
  28459. // One or more of the supplied parameters could not be properly interpreted.
  28460. //
  28461. const auto SCARD_E_INVALID_PARAMETER = 0x80100004;
  28462. //
  28463. // MessageId: SCARD_E_INVALID_TARGET
  28464. //
  28465. // MessageText:
  28466. //
  28467. // Registry startup information is missing or invalid.
  28468. //
  28469. const auto SCARD_E_INVALID_TARGET = 0x80100005;
  28470. //
  28471. // MessageId: SCARD_E_NO_MEMORY
  28472. //
  28473. // MessageText:
  28474. //
  28475. // Not enough memory available to complete this command.
  28476. //
  28477. const auto SCARD_E_NO_MEMORY = 0x80100006;
  28478. //
  28479. // MessageId: SCARD_F_WAITED_TOO_LONG
  28480. //
  28481. // MessageText:
  28482. //
  28483. // An internal consistency timer has expired.
  28484. //
  28485. const auto SCARD_F_WAITED_TOO_LONG = 0x80100007;
  28486. //
  28487. // MessageId: SCARD_E_INSUFFICIENT_BUFFER
  28488. //
  28489. // MessageText:
  28490. //
  28491. // The data buffer to receive returned data is too small for the returned data.
  28492. //
  28493. const auto SCARD_E_INSUFFICIENT_BUFFER = 0x80100008;
  28494. //
  28495. // MessageId: SCARD_E_UNKNOWN_READER
  28496. //
  28497. // MessageText:
  28498. //
  28499. // The specified reader name is not recognized.
  28500. //
  28501. const auto SCARD_E_UNKNOWN_READER = 0x80100009;
  28502. //
  28503. // MessageId: SCARD_E_TIMEOUT
  28504. //
  28505. // MessageText:
  28506. //
  28507. // The user-specified timeout value has expired.
  28508. //
  28509. const auto SCARD_E_TIMEOUT = 0x8010000A;
  28510. //
  28511. // MessageId: SCARD_E_SHARING_VIOLATION
  28512. //
  28513. // MessageText:
  28514. //
  28515. // The smart card cannot be accessed because of other connections outstanding.
  28516. //
  28517. const auto SCARD_E_SHARING_VIOLATION = 0x8010000B;
  28518. //
  28519. // MessageId: SCARD_E_NO_SMARTCARD
  28520. //
  28521. // MessageText:
  28522. //
  28523. // The operation requires a Smart Card, but no Smart Card is currently in the device.
  28524. //
  28525. const auto SCARD_E_NO_SMARTCARD = 0x8010000C;
  28526. //
  28527. // MessageId: SCARD_E_UNKNOWN_CARD
  28528. //
  28529. // MessageText:
  28530. //
  28531. // The specified smart card name is not recognized.
  28532. //
  28533. const auto SCARD_E_UNKNOWN_CARD = 0x8010000D;
  28534. //
  28535. // MessageId: SCARD_E_CANT_DISPOSE
  28536. //
  28537. // MessageText:
  28538. //
  28539. // The system could not dispose of the media in the requested manner.
  28540. //
  28541. const auto SCARD_E_CANT_DISPOSE = 0x8010000E;
  28542. //
  28543. // MessageId: SCARD_E_PROTO_MISMATCH
  28544. //
  28545. // MessageText:
  28546. //
  28547. // The requested protocols are incompatible with the protocol currently in use with the smart card.
  28548. //
  28549. const auto SCARD_E_PROTO_MISMATCH = 0x8010000F;
  28550. //
  28551. // MessageId: SCARD_E_NOT_READY
  28552. //
  28553. // MessageText:
  28554. //
  28555. // The reader or smart card is not ready to accept commands.
  28556. //
  28557. const auto SCARD_E_NOT_READY = 0x80100010;
  28558. //
  28559. // MessageId: SCARD_E_INVALID_VALUE
  28560. //
  28561. // MessageText:
  28562. //
  28563. // One or more of the supplied parameters values could not be properly interpreted.
  28564. //
  28565. const auto SCARD_E_INVALID_VALUE = 0x80100011;
  28566. //
  28567. // MessageId: SCARD_E_SYSTEM_CANCELLED
  28568. //
  28569. // MessageText:
  28570. //
  28571. // The action was cancelled by the system, presumably to log off or shut down.
  28572. //
  28573. const auto SCARD_E_SYSTEM_CANCELLED = 0x80100012;
  28574. //
  28575. // MessageId: SCARD_F_COMM_ERROR
  28576. //
  28577. // MessageText:
  28578. //
  28579. // An internal communications error has been detected.
  28580. //
  28581. const auto SCARD_F_COMM_ERROR = 0x80100013;
  28582. //
  28583. // MessageId: SCARD_F_UNKNOWN_ERROR
  28584. //
  28585. // MessageText:
  28586. //
  28587. // An internal error has been detected, but the source is unknown.
  28588. //
  28589. const auto SCARD_F_UNKNOWN_ERROR = 0x80100014;
  28590. //
  28591. // MessageId: SCARD_E_INVALID_ATR
  28592. //
  28593. // MessageText:
  28594. //
  28595. // An ATR obtained from the registry is not a valid ATR string.
  28596. //
  28597. const auto SCARD_E_INVALID_ATR = 0x80100015;
  28598. //
  28599. // MessageId: SCARD_E_NOT_TRANSACTED
  28600. //
  28601. // MessageText:
  28602. //
  28603. // An attempt was made to end a non-existent transaction.
  28604. //
  28605. const auto SCARD_E_NOT_TRANSACTED = 0x80100016;
  28606. //
  28607. // MessageId: SCARD_E_READER_UNAVAILABLE
  28608. //
  28609. // MessageText:
  28610. //
  28611. // The specified reader is not currently available for use.
  28612. //
  28613. const auto SCARD_E_READER_UNAVAILABLE = 0x80100017;
  28614. //
  28615. // MessageId: SCARD_P_SHUTDOWN
  28616. //
  28617. // MessageText:
  28618. //
  28619. // The operation has been aborted to allow the server application to exit.
  28620. //
  28621. const auto SCARD_P_SHUTDOWN = 0x80100018;
  28622. //
  28623. // MessageId: SCARD_E_PCI_TOO_SMALL
  28624. //
  28625. // MessageText:
  28626. //
  28627. // The PCI Receive buffer was too small.
  28628. //
  28629. const auto SCARD_E_PCI_TOO_SMALL = 0x80100019;
  28630. //
  28631. // MessageId: SCARD_E_READER_UNSUPPORTED
  28632. //
  28633. // MessageText:
  28634. //
  28635. // The reader driver does not meet minimal requirements for support.
  28636. //
  28637. const auto SCARD_E_READER_UNSUPPORTED = 0x8010001A;
  28638. //
  28639. // MessageId: SCARD_E_DUPLICATE_READER
  28640. //
  28641. // MessageText:
  28642. //
  28643. // The reader driver did not produce a unique reader name.
  28644. //
  28645. const auto SCARD_E_DUPLICATE_READER = 0x8010001B;
  28646. //
  28647. // MessageId: SCARD_E_CARD_UNSUPPORTED
  28648. //
  28649. // MessageText:
  28650. //
  28651. // The smart card does not meet minimal requirements for support.
  28652. //
  28653. const auto SCARD_E_CARD_UNSUPPORTED = 0x8010001C;
  28654. //
  28655. // MessageId: SCARD_E_NO_SERVICE
  28656. //
  28657. // MessageText:
  28658. //
  28659. // The Smart card resource manager is not running.
  28660. //
  28661. const auto SCARD_E_NO_SERVICE = 0x8010001D;
  28662. //
  28663. // MessageId: SCARD_E_SERVICE_STOPPED
  28664. //
  28665. // MessageText:
  28666. //
  28667. // The Smart card resource manager has shut down.
  28668. //
  28669. const auto SCARD_E_SERVICE_STOPPED = 0x8010001E;
  28670. //
  28671. // MessageId: SCARD_E_UNEXPECTED
  28672. //
  28673. // MessageText:
  28674. //
  28675. // An unexpected card error has occurred.
  28676. //
  28677. const auto SCARD_E_UNEXPECTED = 0x8010001F;
  28678. //
  28679. // MessageId: SCARD_E_ICC_INSTALLATION
  28680. //
  28681. // MessageText:
  28682. //
  28683. // No Primary Provider can be found for the smart card.
  28684. //
  28685. const auto SCARD_E_ICC_INSTALLATION = 0x80100020;
  28686. //
  28687. // MessageId: SCARD_E_ICC_CREATEORDER
  28688. //
  28689. // MessageText:
  28690. //
  28691. // The requested order of object creation is not supported.
  28692. //
  28693. const auto SCARD_E_ICC_CREATEORDER = 0x80100021;
  28694. //
  28695. // MessageId: SCARD_E_UNSUPPORTED_FEATURE
  28696. //
  28697. // MessageText:
  28698. //
  28699. // This smart card does not support the requested feature.
  28700. //
  28701. const auto SCARD_E_UNSUPPORTED_FEATURE = 0x80100022;
  28702. //
  28703. // MessageId: SCARD_E_DIR_NOT_FOUND
  28704. //
  28705. // MessageText:
  28706. //
  28707. // The identified directory does not exist in the smart card.
  28708. //
  28709. const auto SCARD_E_DIR_NOT_FOUND = 0x80100023;
  28710. //
  28711. // MessageId: SCARD_E_FILE_NOT_FOUND
  28712. //
  28713. // MessageText:
  28714. //
  28715. // The identified file does not exist in the smart card.
  28716. //
  28717. const auto SCARD_E_FILE_NOT_FOUND = 0x80100024;
  28718. //
  28719. // MessageId: SCARD_E_NO_DIR
  28720. //
  28721. // MessageText:
  28722. //
  28723. // The supplied path does not represent a smart card directory.
  28724. //
  28725. const auto SCARD_E_NO_DIR = 0x80100025;
  28726. //
  28727. // MessageId: SCARD_E_NO_FILE
  28728. //
  28729. // MessageText:
  28730. //
  28731. // The supplied path does not represent a smart card file.
  28732. //
  28733. const auto SCARD_E_NO_FILE = 0x80100026;
  28734. //
  28735. // MessageId: SCARD_E_NO_ACCESS
  28736. //
  28737. // MessageText:
  28738. //
  28739. // Access is denied to this file.
  28740. //
  28741. const auto SCARD_E_NO_ACCESS = 0x80100027;
  28742. //
  28743. // MessageId: SCARD_E_WRITE_TOO_MANY
  28744. //
  28745. // MessageText:
  28746. //
  28747. // The smartcard does not have enough memory to store the information.
  28748. //
  28749. const auto SCARD_E_WRITE_TOO_MANY = 0x80100028;
  28750. //
  28751. // MessageId: SCARD_E_BAD_SEEK
  28752. //
  28753. // MessageText:
  28754. //
  28755. // There was an error trying to set the smart card file object pointer.
  28756. //
  28757. const auto SCARD_E_BAD_SEEK = 0x80100029;
  28758. //
  28759. // MessageId: SCARD_E_INVALID_CHV
  28760. //
  28761. // MessageText:
  28762. //
  28763. // The supplied PIN is incorrect.
  28764. //
  28765. const auto SCARD_E_INVALID_CHV = 0x8010002A;
  28766. //
  28767. // MessageId: SCARD_E_UNKNOWN_RES_MNG
  28768. //
  28769. // MessageText:
  28770. //
  28771. // An unrecognized error code was returned from a layered component.
  28772. //
  28773. const auto SCARD_E_UNKNOWN_RES_MNG = 0x8010002B;
  28774. //
  28775. // MessageId: SCARD_E_NO_SUCH_CERTIFICATE
  28776. //
  28777. // MessageText:
  28778. //
  28779. // The requested certificate does not exist.
  28780. //
  28781. const auto SCARD_E_NO_SUCH_CERTIFICATE = 0x8010002C;
  28782. //
  28783. // MessageId: SCARD_E_CERTIFICATE_UNAVAILABLE
  28784. //
  28785. // MessageText:
  28786. //
  28787. // The requested certificate could not be obtained.
  28788. //
  28789. const auto SCARD_E_CERTIFICATE_UNAVAILABLE = 0x8010002D;
  28790. //
  28791. // MessageId: SCARD_E_NO_READERS_AVAILABLE
  28792. //
  28793. // MessageText:
  28794. //
  28795. // Cannot find a smart card reader.
  28796. //
  28797. const auto SCARD_E_NO_READERS_AVAILABLE = 0x8010002E;
  28798. //
  28799. // MessageId: SCARD_E_COMM_DATA_LOST
  28800. //
  28801. // MessageText:
  28802. //
  28803. // A communications error with the smart card has been detected. Retry the operation.
  28804. //
  28805. const auto SCARD_E_COMM_DATA_LOST = 0x8010002F;
  28806. //
  28807. // MessageId: SCARD_E_NO_KEY_CONTAINER
  28808. //
  28809. // MessageText:
  28810. //
  28811. // The requested key container does not exist on the smart card.
  28812. //
  28813. const auto SCARD_E_NO_KEY_CONTAINER = 0x80100030;
  28814. //
  28815. // MessageId: SCARD_E_SERVER_TOO_BUSY
  28816. //
  28817. // MessageText:
  28818. //
  28819. // The Smart card resource manager is too busy to complete this operation.
  28820. //
  28821. const auto SCARD_E_SERVER_TOO_BUSY = 0x80100031;
  28822. //
  28823. // These are warning codes.
  28824. //
  28825. //
  28826. // MessageId: SCARD_W_UNSUPPORTED_CARD
  28827. //
  28828. // MessageText:
  28829. //
  28830. // The reader cannot communicate with the smart card, due to ATR configuration conflicts.
  28831. //
  28832. const auto SCARD_W_UNSUPPORTED_CARD = 0x80100065;
  28833. //
  28834. // MessageId: SCARD_W_UNRESPONSIVE_CARD
  28835. //
  28836. // MessageText:
  28837. //
  28838. // The smart card is not responding to a reset.
  28839. //
  28840. const auto SCARD_W_UNRESPONSIVE_CARD = 0x80100066;
  28841. //
  28842. // MessageId: SCARD_W_UNPOWERED_CARD
  28843. //
  28844. // MessageText:
  28845. //
  28846. // Power has been removed from the smart card, so that further communication is not possible.
  28847. //
  28848. const auto SCARD_W_UNPOWERED_CARD = 0x80100067;
  28849. //
  28850. // MessageId: SCARD_W_RESET_CARD
  28851. //
  28852. // MessageText:
  28853. //
  28854. // The smart card has been reset, so any shared state information is invalid.
  28855. //
  28856. const auto SCARD_W_RESET_CARD = 0x80100068;
  28857. //
  28858. // MessageId: SCARD_W_REMOVED_CARD
  28859. //
  28860. // MessageText:
  28861. //
  28862. // The smart card has been removed, so that further communication is not possible.
  28863. //
  28864. const auto SCARD_W_REMOVED_CARD = 0x80100069;
  28865. //
  28866. // MessageId: SCARD_W_SECURITY_VIOLATION
  28867. //
  28868. // MessageText:
  28869. //
  28870. // Access was denied because of a security violation.
  28871. //
  28872. const auto SCARD_W_SECURITY_VIOLATION = 0x8010006A;
  28873. //
  28874. // MessageId: SCARD_W_WRONG_CHV
  28875. //
  28876. // MessageText:
  28877. //
  28878. // The card cannot be accessed because the wrong PIN was presented.
  28879. //
  28880. const auto SCARD_W_WRONG_CHV = 0x8010006B;
  28881. //
  28882. // MessageId: SCARD_W_CHV_BLOCKED
  28883. //
  28884. // MessageText:
  28885. //
  28886. // The card cannot be accessed because the maximum number of PIN entry attempts has been reached.
  28887. //
  28888. const auto SCARD_W_CHV_BLOCKED = 0x8010006C;
  28889. //
  28890. // MessageId: SCARD_W_EOF
  28891. //
  28892. // MessageText:
  28893. //
  28894. // The end of the smart card file has been reached.
  28895. //
  28896. const auto SCARD_W_EOF = 0x8010006D;
  28897. //
  28898. // MessageId: SCARD_W_CANCELLED_BY_USER
  28899. //
  28900. // MessageText:
  28901. //
  28902. // The action was cancelled by the user.
  28903. //
  28904. const auto SCARD_W_CANCELLED_BY_USER = 0x8010006E;
  28905. //
  28906. // MessageId: SCARD_W_CARD_NOT_AUTHENTICATED
  28907. //
  28908. // MessageText:
  28909. //
  28910. // No PIN was presented to the smart card.
  28911. //
  28912. const auto SCARD_W_CARD_NOT_AUTHENTICATED = 0x8010006F;
  28913. //
  28914. // MessageId: SCARD_W_CACHE_ITEM_NOT_FOUND
  28915. //
  28916. // MessageText:
  28917. //
  28918. // The requested item could not be found in the cache.
  28919. //
  28920. const auto SCARD_W_CACHE_ITEM_NOT_FOUND = 0x80100070;
  28921. //
  28922. // MessageId: SCARD_W_CACHE_ITEM_STALE
  28923. //
  28924. // MessageText:
  28925. //
  28926. // The requested cache item is too old and was deleted from the cache.
  28927. //
  28928. const auto SCARD_W_CACHE_ITEM_STALE = 0x80100071;
  28929. //
  28930. // MessageId: SCARD_W_CACHE_ITEM_TOO_BIG
  28931. //
  28932. // MessageText:
  28933. //
  28934. // The new cache item exceeds the maximum per-item size defined for the cache.
  28935. //
  28936. const auto SCARD_W_CACHE_ITEM_TOO_BIG = 0x80100072;
  28937. // *****************
  28938. // FACILITY_COMPLUS
  28939. // *****************
  28940. //
  28941. // ===============================
  28942. // Facility COMPLUS Error Messages
  28943. // ===============================
  28944. //
  28945. //
  28946. // The following are the subranges within the COMPLUS facility
  28947. // 0x400 - 0x4ff COMADMIN_E_CAT
  28948. // 0x600 - 0x6ff COMQC errors
  28949. // 0x700 - 0x7ff MSDTC errors
  28950. // 0x800 - 0x8ff Other COMADMIN errors
  28951. //
  28952. // COMPLUS Admin errors
  28953. //
  28954. //
  28955. // MessageId: COMADMIN_E_OBJECTERRORS
  28956. //
  28957. // MessageText:
  28958. //
  28959. // Errors occurred accessing one or more objects - the ErrorInfo collection may have more detail
  28960. //
  28961. const auto COMADMIN_E_OBJECTERRORS = 0x80110401;
  28962. //
  28963. // MessageId: COMADMIN_E_OBJECTINVALID
  28964. //
  28965. // MessageText:
  28966. //
  28967. // One or more of the object's properties are missing or invalid
  28968. //
  28969. const auto COMADMIN_E_OBJECTINVALID = 0x80110402;
  28970. //
  28971. // MessageId: COMADMIN_E_KEYMISSING
  28972. //
  28973. // MessageText:
  28974. //
  28975. // The object was not found in the catalog
  28976. //
  28977. const auto COMADMIN_E_KEYMISSING = 0x80110403;
  28978. //
  28979. // MessageId: COMADMIN_E_ALREADYINSTALLED
  28980. //
  28981. // MessageText:
  28982. //
  28983. // The object is already registered
  28984. //
  28985. const auto COMADMIN_E_ALREADYINSTALLED = 0x80110404;
  28986. //
  28987. // MessageId: COMADMIN_E_APP_FILE_WRITEFAIL
  28988. //
  28989. // MessageText:
  28990. //
  28991. // Error occurred writing to the application file
  28992. //
  28993. const auto COMADMIN_E_APP_FILE_WRITEFAIL = 0x80110407;
  28994. //
  28995. // MessageId: COMADMIN_E_APP_FILE_READFAIL
  28996. //
  28997. // MessageText:
  28998. //
  28999. // Error occurred reading the application file
  29000. //
  29001. const auto COMADMIN_E_APP_FILE_READFAIL = 0x80110408;
  29002. //
  29003. // MessageId: COMADMIN_E_APP_FILE_VERSION
  29004. //
  29005. // MessageText:
  29006. //
  29007. // Invalid version number in application file
  29008. //
  29009. const auto COMADMIN_E_APP_FILE_VERSION = 0x80110409;
  29010. //
  29011. // MessageId: COMADMIN_E_BADPATH
  29012. //
  29013. // MessageText:
  29014. //
  29015. // The file path is invalid
  29016. //
  29017. const auto COMADMIN_E_BADPATH = 0x8011040A;
  29018. //
  29019. // MessageId: COMADMIN_E_APPLICATIONEXISTS
  29020. //
  29021. // MessageText:
  29022. //
  29023. // The application is already installed
  29024. //
  29025. const auto COMADMIN_E_APPLICATIONEXISTS = 0x8011040B;
  29026. //
  29027. // MessageId: COMADMIN_E_ROLEEXISTS
  29028. //
  29029. // MessageText:
  29030. //
  29031. // The role already exists
  29032. //
  29033. const auto COMADMIN_E_ROLEEXISTS = 0x8011040C;
  29034. //
  29035. // MessageId: COMADMIN_E_CANTCOPYFILE
  29036. //
  29037. // MessageText:
  29038. //
  29039. // An error occurred copying the file
  29040. //
  29041. const auto COMADMIN_E_CANTCOPYFILE = 0x8011040D;
  29042. //
  29043. // MessageId: COMADMIN_E_NOUSER
  29044. //
  29045. // MessageText:
  29046. //
  29047. // One or more users are not valid
  29048. //
  29049. const auto COMADMIN_E_NOUSER = 0x8011040F;
  29050. //
  29051. // MessageId: COMADMIN_E_INVALIDUSERIDS
  29052. //
  29053. // MessageText:
  29054. //
  29055. // One or more users in the application file are not valid
  29056. //
  29057. const auto COMADMIN_E_INVALIDUSERIDS = 0x80110410;
  29058. //
  29059. // MessageId: COMADMIN_E_NOREGISTRYCLSID
  29060. //
  29061. // MessageText:
  29062. //
  29063. // The component's CLSID is missing or corrupt
  29064. //
  29065. const auto COMADMIN_E_NOREGISTRYCLSID = 0x80110411;
  29066. //
  29067. // MessageId: COMADMIN_E_BADREGISTRYPROGID
  29068. //
  29069. // MessageText:
  29070. //
  29071. // The component's progID is missing or corrupt
  29072. //
  29073. const auto COMADMIN_E_BADREGISTRYPROGID = 0x80110412;
  29074. //
  29075. // MessageId: COMADMIN_E_AUTHENTICATIONLEVEL
  29076. //
  29077. // MessageText:
  29078. //
  29079. // Unable to set required authentication level for update request
  29080. //
  29081. const auto COMADMIN_E_AUTHENTICATIONLEVEL = 0x80110413;
  29082. //
  29083. // MessageId: COMADMIN_E_USERPASSWDNOTVALID
  29084. //
  29085. // MessageText:
  29086. //
  29087. // The identity or password set on the application is not valid
  29088. //
  29089. const auto COMADMIN_E_USERPASSWDNOTVALID = 0x80110414;
  29090. //
  29091. // MessageId: COMADMIN_E_CLSIDORIIDMISMATCH
  29092. //
  29093. // MessageText:
  29094. //
  29095. // Application file CLSIDs or IIDs do not match corresponding DLLs
  29096. //
  29097. const auto COMADMIN_E_CLSIDORIIDMISMATCH = 0x80110418;
  29098. //
  29099. // MessageId: COMADMIN_E_REMOTEINTERFACE
  29100. //
  29101. // MessageText:
  29102. //
  29103. // Interface information is either missing or changed
  29104. //
  29105. const auto COMADMIN_E_REMOTEINTERFACE = 0x80110419;
  29106. //
  29107. // MessageId: COMADMIN_E_DLLREGISTERSERVER
  29108. //
  29109. // MessageText:
  29110. //
  29111. // DllRegisterServer failed on component install
  29112. //
  29113. const auto COMADMIN_E_DLLREGISTERSERVER = 0x8011041A;
  29114. //
  29115. // MessageId: COMADMIN_E_NOSERVERSHARE
  29116. //
  29117. // MessageText:
  29118. //
  29119. // No server file share available
  29120. //
  29121. const auto COMADMIN_E_NOSERVERSHARE = 0x8011041B;
  29122. //
  29123. // MessageId: COMADMIN_E_DLLLOADFAILED
  29124. //
  29125. // MessageText:
  29126. //
  29127. // DLL could not be loaded
  29128. //
  29129. const auto COMADMIN_E_DLLLOADFAILED = 0x8011041D;
  29130. //
  29131. // MessageId: COMADMIN_E_BADREGISTRYLIBID
  29132. //
  29133. // MessageText:
  29134. //
  29135. // The registered TypeLib ID is not valid
  29136. //
  29137. const auto COMADMIN_E_BADREGISTRYLIBID = 0x8011041E;
  29138. //
  29139. // MessageId: COMADMIN_E_APPDIRNOTFOUND
  29140. //
  29141. // MessageText:
  29142. //
  29143. // Application install directory not found
  29144. //
  29145. const auto COMADMIN_E_APPDIRNOTFOUND = 0x8011041F;
  29146. //
  29147. // MessageId: COMADMIN_E_REGISTRARFAILED
  29148. //
  29149. // MessageText:
  29150. //
  29151. // Errors occurred while in the component registrar
  29152. //
  29153. const auto COMADMIN_E_REGISTRARFAILED = 0x80110423;
  29154. //
  29155. // MessageId: COMADMIN_E_COMPFILE_DOESNOTEXIST
  29156. //
  29157. // MessageText:
  29158. //
  29159. // The file does not exist
  29160. //
  29161. const auto COMADMIN_E_COMPFILE_DOESNOTEXIST = 0x80110424;
  29162. //
  29163. // MessageId: COMADMIN_E_COMPFILE_LOADDLLFAIL
  29164. //
  29165. // MessageText:
  29166. //
  29167. // The DLL could not be loaded
  29168. //
  29169. const auto COMADMIN_E_COMPFILE_LOADDLLFAIL = 0x80110425;
  29170. //
  29171. // MessageId: COMADMIN_E_COMPFILE_GETCLASSOBJ
  29172. //
  29173. // MessageText:
  29174. //
  29175. // GetClassObject failed in the DLL
  29176. //
  29177. const auto COMADMIN_E_COMPFILE_GETCLASSOBJ = 0x80110426;
  29178. //
  29179. // MessageId: COMADMIN_E_COMPFILE_CLASSNOTAVAIL
  29180. //
  29181. // MessageText:
  29182. //
  29183. // The DLL does not support the components listed in the TypeLib
  29184. //
  29185. const auto COMADMIN_E_COMPFILE_CLASSNOTAVAIL = 0x80110427;
  29186. //
  29187. // MessageId: COMADMIN_E_COMPFILE_BADTLB
  29188. //
  29189. // MessageText:
  29190. //
  29191. // The TypeLib could not be loaded
  29192. //
  29193. const auto COMADMIN_E_COMPFILE_BADTLB = 0x80110428;
  29194. //
  29195. // MessageId: COMADMIN_E_COMPFILE_NOTINSTALLABLE
  29196. //
  29197. // MessageText:
  29198. //
  29199. // The file does not contain components or component information
  29200. //
  29201. const auto COMADMIN_E_COMPFILE_NOTINSTALLABLE = 0x80110429;
  29202. //
  29203. // MessageId: COMADMIN_E_NOTCHANGEABLE
  29204. //
  29205. // MessageText:
  29206. //
  29207. // Changes to this object and its sub-objects have been disabled
  29208. //
  29209. const auto COMADMIN_E_NOTCHANGEABLE = 0x8011042A;
  29210. //
  29211. // MessageId: COMADMIN_E_NOTDELETEABLE
  29212. //
  29213. // MessageText:
  29214. //
  29215. // The delete function has been disabled for this object
  29216. //
  29217. const auto COMADMIN_E_NOTDELETEABLE = 0x8011042B;
  29218. //
  29219. // MessageId: COMADMIN_E_SESSION
  29220. //
  29221. // MessageText:
  29222. //
  29223. // The server catalog version is not supported
  29224. //
  29225. const auto COMADMIN_E_SESSION = 0x8011042C;
  29226. //
  29227. // MessageId: COMADMIN_E_COMP_MOVE_LOCKED
  29228. //
  29229. // MessageText:
  29230. //
  29231. // The component move was disallowed, because the source or destination application is either a system application or currently locked against changes
  29232. //
  29233. const auto COMADMIN_E_COMP_MOVE_LOCKED = 0x8011042D;
  29234. //
  29235. // MessageId: COMADMIN_E_COMP_MOVE_BAD_DEST
  29236. //
  29237. // MessageText:
  29238. //
  29239. // The component move failed because the destination application no longer exists
  29240. //
  29241. const auto COMADMIN_E_COMP_MOVE_BAD_DEST = 0x8011042E;
  29242. //
  29243. // MessageId: COMADMIN_E_REGISTERTLB
  29244. //
  29245. // MessageText:
  29246. //
  29247. // The system was unable to register the TypeLib
  29248. //
  29249. const auto COMADMIN_E_REGISTERTLB = 0x80110430;
  29250. //
  29251. // MessageId: COMADMIN_E_SYSTEMAPP
  29252. //
  29253. // MessageText:
  29254. //
  29255. // This operation cannot be performed on the system application
  29256. //
  29257. const auto COMADMIN_E_SYSTEMAPP = 0x80110433;
  29258. //
  29259. // MessageId: COMADMIN_E_COMPFILE_NOREGISTRAR
  29260. //
  29261. // MessageText:
  29262. //
  29263. // The component registrar referenced in this file is not available
  29264. //
  29265. const auto COMADMIN_E_COMPFILE_NOREGISTRAR = 0x80110434;
  29266. //
  29267. // MessageId: COMADMIN_E_COREQCOMPINSTALLED
  29268. //
  29269. // MessageText:
  29270. //
  29271. // A component in the same DLL is already installed
  29272. //
  29273. const auto COMADMIN_E_COREQCOMPINSTALLED = 0x80110435;
  29274. //
  29275. // MessageId: COMADMIN_E_SERVICENOTINSTALLED
  29276. //
  29277. // MessageText:
  29278. //
  29279. // The service is not installed
  29280. //
  29281. const auto COMADMIN_E_SERVICENOTINSTALLED = 0x80110436;
  29282. //
  29283. // MessageId: COMADMIN_E_PROPERTYSAVEFAILED
  29284. //
  29285. // MessageText:
  29286. //
  29287. // One or more property settings are either invalid or in conflict with each other
  29288. //
  29289. const auto COMADMIN_E_PROPERTYSAVEFAILED = 0x80110437;
  29290. //
  29291. // MessageId: COMADMIN_E_OBJECTEXISTS
  29292. //
  29293. // MessageText:
  29294. //
  29295. // The object you are attempting to add or rename already exists
  29296. //
  29297. const auto COMADMIN_E_OBJECTEXISTS = 0x80110438;
  29298. //
  29299. // MessageId: COMADMIN_E_COMPONENTEXISTS
  29300. //
  29301. // MessageText:
  29302. //
  29303. // The component already exists
  29304. //
  29305. const auto COMADMIN_E_COMPONENTEXISTS = 0x80110439;
  29306. //
  29307. // MessageId: COMADMIN_E_REGFILE_CORRUPT
  29308. //
  29309. // MessageText:
  29310. //
  29311. // The registration file is corrupt
  29312. //
  29313. const auto COMADMIN_E_REGFILE_CORRUPT = 0x8011043B;
  29314. //
  29315. // MessageId: COMADMIN_E_PROPERTY_OVERFLOW
  29316. //
  29317. // MessageText:
  29318. //
  29319. // The property value is too large
  29320. //
  29321. const auto COMADMIN_E_PROPERTY_OVERFLOW = 0x8011043C;
  29322. //
  29323. // MessageId: COMADMIN_E_NOTINREGISTRY
  29324. //
  29325. // MessageText:
  29326. //
  29327. // Object was not found in registry
  29328. //
  29329. const auto COMADMIN_E_NOTINREGISTRY = 0x8011043E;
  29330. //
  29331. // MessageId: COMADMIN_E_OBJECTNOTPOOLABLE
  29332. //
  29333. // MessageText:
  29334. //
  29335. // This object is not poolable
  29336. //
  29337. const auto COMADMIN_E_OBJECTNOTPOOLABLE = 0x8011043F;
  29338. //
  29339. // MessageId: COMADMIN_E_APPLID_MATCHES_CLSID
  29340. //
  29341. // MessageText:
  29342. //
  29343. // A CLSID with the same GUID as the new application ID is already installed on this machine
  29344. //
  29345. const auto COMADMIN_E_APPLID_MATCHES_CLSID = 0x80110446;
  29346. //
  29347. // MessageId: COMADMIN_E_ROLE_DOES_NOT_EXIST
  29348. //
  29349. // MessageText:
  29350. //
  29351. // A role assigned to a component, interface, or method did not exist in the application
  29352. //
  29353. const auto COMADMIN_E_ROLE_DOES_NOT_EXIST = 0x80110447;
  29354. //
  29355. // MessageId: COMADMIN_E_START_APP_NEEDS_COMPONENTS
  29356. //
  29357. // MessageText:
  29358. //
  29359. // You must have components in an application in order to start the application
  29360. //
  29361. const auto COMADMIN_E_START_APP_NEEDS_COMPONENTS = 0x80110448;
  29362. //
  29363. // MessageId: COMADMIN_E_REQUIRES_DIFFERENT_PLATFORM
  29364. //
  29365. // MessageText:
  29366. //
  29367. // This operation is not enabled on this platform
  29368. //
  29369. const auto COMADMIN_E_REQUIRES_DIFFERENT_PLATFORM = 0x80110449;
  29370. //
  29371. // MessageId: COMADMIN_E_CAN_NOT_EXPORT_APP_PROXY
  29372. //
  29373. // MessageText:
  29374. //
  29375. // Application Proxy is not exportable
  29376. //
  29377. const auto COMADMIN_E_CAN_NOT_EXPORT_APP_PROXY = 0x8011044A;
  29378. //
  29379. // MessageId: COMADMIN_E_CAN_NOT_START_APP
  29380. //
  29381. // MessageText:
  29382. //
  29383. // Failed to start application because it is either a library application or an application proxy
  29384. //
  29385. const auto COMADMIN_E_CAN_NOT_START_APP = 0x8011044B;
  29386. //
  29387. // MessageId: COMADMIN_E_CAN_NOT_EXPORT_SYS_APP
  29388. //
  29389. // MessageText:
  29390. //
  29391. // System application is not exportable
  29392. //
  29393. const auto COMADMIN_E_CAN_NOT_EXPORT_SYS_APP = 0x8011044C;
  29394. //
  29395. // MessageId: COMADMIN_E_CANT_SUBSCRIBE_TO_COMPONENT
  29396. //
  29397. // MessageText:
  29398. //
  29399. // Cannot subscribe to this component (the component may have been imported)
  29400. //
  29401. const auto COMADMIN_E_CANT_SUBSCRIBE_TO_COMPONENT = 0x8011044D;
  29402. //
  29403. // MessageId: COMADMIN_E_EVENTCLASS_CANT_BE_SUBSCRIBER
  29404. //
  29405. // MessageText:
  29406. //
  29407. // An event class cannot also be a subscriber component
  29408. //
  29409. const auto COMADMIN_E_EVENTCLASS_CANT_BE_SUBSCRIBER = 0x8011044E;
  29410. //
  29411. // MessageId: COMADMIN_E_LIB_APP_PROXY_INCOMPATIBLE
  29412. //
  29413. // MessageText:
  29414. //
  29415. // Library applications and application proxies are incompatible
  29416. //
  29417. const auto COMADMIN_E_LIB_APP_PROXY_INCOMPATIBLE = 0x8011044F;
  29418. //
  29419. // MessageId: COMADMIN_E_BASE_PARTITION_ONLY
  29420. //
  29421. // MessageText:
  29422. //
  29423. // This function is valid for the base partition only
  29424. //
  29425. const auto COMADMIN_E_BASE_PARTITION_ONLY = 0x80110450;
  29426. //
  29427. // MessageId: COMADMIN_E_START_APP_DISABLED
  29428. //
  29429. // MessageText:
  29430. //
  29431. // You cannot start an application that has been disabled
  29432. //
  29433. const auto COMADMIN_E_START_APP_DISABLED = 0x80110451;
  29434. //
  29435. // MessageId: COMADMIN_E_CAT_DUPLICATE_PARTITION_NAME
  29436. //
  29437. // MessageText:
  29438. //
  29439. // The specified partition name is already in use on this computer
  29440. //
  29441. const auto COMADMIN_E_CAT_DUPLICATE_PARTITION_NAME = 0x80110457;
  29442. //
  29443. // MessageId: COMADMIN_E_CAT_INVALID_PARTITION_NAME
  29444. //
  29445. // MessageText:
  29446. //
  29447. // The specified partition name is invalid. Check that the name contains at least one visible character
  29448. //
  29449. const auto COMADMIN_E_CAT_INVALID_PARTITION_NAME = 0x80110458;
  29450. //
  29451. // MessageId: COMADMIN_E_CAT_PARTITION_IN_USE
  29452. //
  29453. // MessageText:
  29454. //
  29455. // The partition cannot be deleted because it is the default partition for one or more users
  29456. //
  29457. const auto COMADMIN_E_CAT_PARTITION_IN_USE = 0x80110459;
  29458. //
  29459. // MessageId: COMADMIN_E_FILE_PARTITION_DUPLICATE_FILES
  29460. //
  29461. // MessageText:
  29462. //
  29463. // The partition cannot be exported, because one or more components in the partition have the same file name
  29464. //
  29465. const auto COMADMIN_E_FILE_PARTITION_DUPLICATE_FILES = 0x8011045A;
  29466. //
  29467. // MessageId: COMADMIN_E_CAT_IMPORTED_COMPONENTS_NOT_ALLOWED
  29468. //
  29469. // MessageText:
  29470. //
  29471. // Applications that contain one or more imported components cannot be installed into a non-base partition
  29472. //
  29473. const auto COMADMIN_E_CAT_IMPORTED_COMPONENTS_NOT_ALLOWED = 0x8011045B;
  29474. //
  29475. // MessageId: COMADMIN_E_AMBIGUOUS_APPLICATION_NAME
  29476. //
  29477. // MessageText:
  29478. //
  29479. // The application name is not unique and cannot be resolved to an application id
  29480. //
  29481. const auto COMADMIN_E_AMBIGUOUS_APPLICATION_NAME = 0x8011045C;
  29482. //
  29483. // MessageId: COMADMIN_E_AMBIGUOUS_PARTITION_NAME
  29484. //
  29485. // MessageText:
  29486. //
  29487. // The partition name is not unique and cannot be resolved to a partition id
  29488. //
  29489. const auto COMADMIN_E_AMBIGUOUS_PARTITION_NAME = 0x8011045D;
  29490. //
  29491. // MessageId: COMADMIN_E_REGDB_NOTINITIALIZED
  29492. //
  29493. // MessageText:
  29494. //
  29495. // The COM+ registry database has not been initialized
  29496. //
  29497. const auto COMADMIN_E_REGDB_NOTINITIALIZED = 0x80110472;
  29498. //
  29499. // MessageId: COMADMIN_E_REGDB_NOTOPEN
  29500. //
  29501. // MessageText:
  29502. //
  29503. // The COM+ registry database is not open
  29504. //
  29505. const auto COMADMIN_E_REGDB_NOTOPEN = 0x80110473;
  29506. //
  29507. // MessageId: COMADMIN_E_REGDB_SYSTEMERR
  29508. //
  29509. // MessageText:
  29510. //
  29511. // The COM+ registry database detected a system error
  29512. //
  29513. const auto COMADMIN_E_REGDB_SYSTEMERR = 0x80110474;
  29514. //
  29515. // MessageId: COMADMIN_E_REGDB_ALREADYRUNNING
  29516. //
  29517. // MessageText:
  29518. //
  29519. // The COM+ registry database is already running
  29520. //
  29521. const auto COMADMIN_E_REGDB_ALREADYRUNNING = 0x80110475;
  29522. //
  29523. // MessageId: COMADMIN_E_MIG_VERSIONNOTSUPPORTED
  29524. //
  29525. // MessageText:
  29526. //
  29527. // This version of the COM+ registry database cannot be migrated
  29528. //
  29529. const auto COMADMIN_E_MIG_VERSIONNOTSUPPORTED = 0x80110480;
  29530. //
  29531. // MessageId: COMADMIN_E_MIG_SCHEMANOTFOUND
  29532. //
  29533. // MessageText:
  29534. //
  29535. // The schema version to be migrated could not be found in the COM+ registry database
  29536. //
  29537. const auto COMADMIN_E_MIG_SCHEMANOTFOUND = 0x80110481;
  29538. //
  29539. // MessageId: COMADMIN_E_CAT_BITNESSMISMATCH
  29540. //
  29541. // MessageText:
  29542. //
  29543. // There was a type mismatch between binaries
  29544. //
  29545. const auto COMADMIN_E_CAT_BITNESSMISMATCH = 0x80110482;
  29546. //
  29547. // MessageId: COMADMIN_E_CAT_UNACCEPTABLEBITNESS
  29548. //
  29549. // MessageText:
  29550. //
  29551. // A binary of unknown or invalid type was provided
  29552. //
  29553. const auto COMADMIN_E_CAT_UNACCEPTABLEBITNESS = 0x80110483;
  29554. //
  29555. // MessageId: COMADMIN_E_CAT_WRONGAPPBITNESS
  29556. //
  29557. // MessageText:
  29558. //
  29559. // There was a type mismatch between a binary and an application
  29560. //
  29561. const auto COMADMIN_E_CAT_WRONGAPPBITNESS = 0x80110484;
  29562. //
  29563. // MessageId: COMADMIN_E_CAT_PAUSE_RESUME_NOT_SUPPORTED
  29564. //
  29565. // MessageText:
  29566. //
  29567. // The application cannot be paused or resumed
  29568. //
  29569. const auto COMADMIN_E_CAT_PAUSE_RESUME_NOT_SUPPORTED = 0x80110485;
  29570. //
  29571. // MessageId: COMADMIN_E_CAT_SERVERFAULT
  29572. //
  29573. // MessageText:
  29574. //
  29575. // The COM+ Catalog Server threw an exception during execution
  29576. //
  29577. const auto COMADMIN_E_CAT_SERVERFAULT = 0x80110486;
  29578. //
  29579. // COMPLUS Queued component errors
  29580. //
  29581. //
  29582. // MessageId: COMQC_E_APPLICATION_NOT_QUEUED
  29583. //
  29584. // MessageText:
  29585. //
  29586. // Only COM+ Applications marked "queued" can be invoked using the "queue" moniker
  29587. //
  29588. const auto COMQC_E_APPLICATION_NOT_QUEUED = 0x80110600;
  29589. //
  29590. // MessageId: COMQC_E_NO_QUEUEABLE_INTERFACES
  29591. //
  29592. // MessageText:
  29593. //
  29594. // At least one interface must be marked "queued" in order to create a queued component instance with the "queue" moniker
  29595. //
  29596. const auto COMQC_E_NO_QUEUEABLE_INTERFACES = 0x80110601;
  29597. //
  29598. // MessageId: COMQC_E_QUEUING_SERVICE_NOT_AVAILABLE
  29599. //
  29600. // MessageText:
  29601. //
  29602. // MSMQ is required for the requested operation and is not installed
  29603. //
  29604. const auto COMQC_E_QUEUING_SERVICE_NOT_AVAILABLE = 0x80110602;
  29605. //
  29606. // MessageId: COMQC_E_NO_IPERSISTSTREAM
  29607. //
  29608. // MessageText:
  29609. //
  29610. // Unable to marshal an interface that does not support IPersistStream
  29611. //
  29612. const auto COMQC_E_NO_IPERSISTSTREAM = 0x80110603;
  29613. //
  29614. // MessageId: COMQC_E_BAD_MESSAGE
  29615. //
  29616. // MessageText:
  29617. //
  29618. // The message is improperly formatted or was damaged in transit
  29619. //
  29620. const auto COMQC_E_BAD_MESSAGE = 0x80110604;
  29621. //
  29622. // MessageId: COMQC_E_UNAUTHENTICATED
  29623. //
  29624. // MessageText:
  29625. //
  29626. // An unauthenticated message was received by an application that accepts only authenticated messages
  29627. //
  29628. const auto COMQC_E_UNAUTHENTICATED = 0x80110605;
  29629. //
  29630. // MessageId: COMQC_E_UNTRUSTED_ENQUEUER
  29631. //
  29632. // MessageText:
  29633. //
  29634. // The message was requeued or moved by a user not in the "QC Trusted User" role
  29635. //
  29636. const auto COMQC_E_UNTRUSTED_ENQUEUER = 0x80110606;
  29637. //
  29638. // The range 0x700-0x7ff is reserved for MSDTC errors.
  29639. //
  29640. //
  29641. // MessageId: MSDTC_E_DUPLICATE_RESOURCE
  29642. //
  29643. // MessageText:
  29644. //
  29645. // Cannot create a duplicate resource of type Distributed Transaction Coordinator
  29646. //
  29647. const auto MSDTC_E_DUPLICATE_RESOURCE = 0x80110701;
  29648. //
  29649. // More COMADMIN errors from 0x8**
  29650. //
  29651. //
  29652. // MessageId: COMADMIN_E_OBJECT_PARENT_MISSING
  29653. //
  29654. // MessageText:
  29655. //
  29656. // One of the objects being inserted or updated does not belong to a valid parent collection
  29657. //
  29658. const auto COMADMIN_E_OBJECT_PARENT_MISSING = 0x80110808;
  29659. //
  29660. // MessageId: COMADMIN_E_OBJECT_DOES_NOT_EXIST
  29661. //
  29662. // MessageText:
  29663. //
  29664. // One of the specified objects cannot be found
  29665. //
  29666. const auto COMADMIN_E_OBJECT_DOES_NOT_EXIST = 0x80110809;
  29667. //
  29668. // MessageId: COMADMIN_E_APP_NOT_RUNNING
  29669. //
  29670. // MessageText:
  29671. //
  29672. // The specified application is not currently running
  29673. //
  29674. const auto COMADMIN_E_APP_NOT_RUNNING = 0x8011080A;
  29675. //
  29676. // MessageId: COMADMIN_E_INVALID_PARTITION
  29677. //
  29678. // MessageText:
  29679. //
  29680. // The partition(s) specified are not valid.
  29681. //
  29682. const auto COMADMIN_E_INVALID_PARTITION = 0x8011080B;
  29683. //
  29684. // MessageId: COMADMIN_E_SVCAPP_NOT_POOLABLE_OR_RECYCLABLE
  29685. //
  29686. // MessageText:
  29687. //
  29688. // COM+ applications that run as NT service may not be pooled or recycled
  29689. //
  29690. const auto COMADMIN_E_SVCAPP_NOT_POOLABLE_OR_RECYCLABLE = 0x8011080D;
  29691. //
  29692. // MessageId: COMADMIN_E_USER_IN_SET
  29693. //
  29694. // MessageText:
  29695. //
  29696. // One or more users are already assigned to a local partition set.
  29697. //
  29698. const auto COMADMIN_E_USER_IN_SET = 0x8011080E;
  29699. //
  29700. // MessageId: COMADMIN_E_CANTRECYCLELIBRARYAPPS
  29701. //
  29702. // MessageText:
  29703. //
  29704. // Library applications may not be recycled.
  29705. //
  29706. const auto COMADMIN_E_CANTRECYCLELIBRARYAPPS = 0x8011080F;
  29707. //
  29708. // MessageId: COMADMIN_E_CANTRECYCLESERVICEAPPS
  29709. //
  29710. // MessageText:
  29711. //
  29712. // Applications running as NT services may not be recycled.
  29713. //
  29714. const auto COMADMIN_E_CANTRECYCLESERVICEAPPS = 0x80110811;
  29715. //
  29716. // MessageId: COMADMIN_E_PROCESSALREADYRECYCLED
  29717. //
  29718. // MessageText:
  29719. //
  29720. // The process has already been recycled.
  29721. //
  29722. const auto COMADMIN_E_PROCESSALREADYRECYCLED = 0x80110812;
  29723. //
  29724. // MessageId: COMADMIN_E_PAUSEDPROCESSMAYNOTBERECYCLED
  29725. //
  29726. // MessageText:
  29727. //
  29728. // A paused process may not be recycled.
  29729. //
  29730. const auto COMADMIN_E_PAUSEDPROCESSMAYNOTBERECYCLED = 0x80110813;
  29731. //
  29732. // MessageId: COMADMIN_E_CANTMAKEINPROCSERVICE
  29733. //
  29734. // MessageText:
  29735. //
  29736. // Library applications may not be NT services.
  29737. //
  29738. const auto COMADMIN_E_CANTMAKEINPROCSERVICE = 0x80110814;
  29739. //
  29740. // MessageId: COMADMIN_E_PROGIDINUSEBYCLSID
  29741. //
  29742. // MessageText:
  29743. //
  29744. // The ProgID provided to the copy operation is invalid. The ProgID is in use by another registered CLSID.
  29745. //
  29746. const auto COMADMIN_E_PROGIDINUSEBYCLSID = 0x80110815;
  29747. //
  29748. // MessageId: COMADMIN_E_DEFAULT_PARTITION_NOT_IN_SET
  29749. //
  29750. // MessageText:
  29751. //
  29752. // The partition specified as default is not a member of the partition set.
  29753. //
  29754. const auto COMADMIN_E_DEFAULT_PARTITION_NOT_IN_SET = 0x80110816;
  29755. //
  29756. // MessageId: COMADMIN_E_RECYCLEDPROCESSMAYNOTBEPAUSED
  29757. //
  29758. // MessageText:
  29759. //
  29760. // A recycled process may not be paused.
  29761. //
  29762. const auto COMADMIN_E_RECYCLEDPROCESSMAYNOTBEPAUSED = 0x80110817;
  29763. //
  29764. // MessageId: COMADMIN_E_PARTITION_ACCESSDENIED
  29765. //
  29766. // MessageText:
  29767. //
  29768. // Access to the specified partition is denied.
  29769. //
  29770. const auto COMADMIN_E_PARTITION_ACCESSDENIED = 0x80110818;
  29771. //
  29772. // MessageId: COMADMIN_E_PARTITION_MSI_ONLY
  29773. //
  29774. // MessageText:
  29775. //
  29776. // Only Application Files (*.MSI files) can be installed into partitions.
  29777. //
  29778. const auto COMADMIN_E_PARTITION_MSI_ONLY = 0x80110819;
  29779. //
  29780. // MessageId: COMADMIN_E_LEGACYCOMPS_NOT_ALLOWED_IN_1_0_FORMAT
  29781. //
  29782. // MessageText:
  29783. //
  29784. // Applications containing one or more legacy components may not be exported to 1.0 format.
  29785. //
  29786. const auto COMADMIN_E_LEGACYCOMPS_NOT_ALLOWED_IN_1_0_FORMAT = 0x8011081A;
  29787. //
  29788. // MessageId: COMADMIN_E_LEGACYCOMPS_NOT_ALLOWED_IN_NONBASE_PARTITIONS
  29789. //
  29790. // MessageText:
  29791. //
  29792. // Legacy components may not exist in non-base partitions.
  29793. //
  29794. const auto COMADMIN_E_LEGACYCOMPS_NOT_ALLOWED_IN_NONBASE_PARTITIONS = 0x8011081B;
  29795. //
  29796. // MessageId: COMADMIN_E_COMP_MOVE_SOURCE
  29797. //
  29798. // MessageText:
  29799. //
  29800. // A component cannot be moved (or copied) from the System Application, an application proxy or a non-changeable application
  29801. //
  29802. const auto COMADMIN_E_COMP_MOVE_SOURCE = 0x8011081C;
  29803. //
  29804. // MessageId: COMADMIN_E_COMP_MOVE_DEST
  29805. //
  29806. // MessageText:
  29807. //
  29808. // A component cannot be moved (or copied) to the System Application, an application proxy or a non-changeable application
  29809. //
  29810. const auto COMADMIN_E_COMP_MOVE_DEST = 0x8011081D;
  29811. //
  29812. // MessageId: COMADMIN_E_COMP_MOVE_PRIVATE
  29813. //
  29814. // MessageText:
  29815. //
  29816. // A private component cannot be moved (or copied) to a library application or to the base partition
  29817. //
  29818. const auto COMADMIN_E_COMP_MOVE_PRIVATE = 0x8011081E;
  29819. //
  29820. // MessageId: COMADMIN_E_BASEPARTITION_REQUIRED_IN_SET
  29821. //
  29822. // MessageText:
  29823. //
  29824. // The Base Application Partition exists in all partition sets and cannot be removed.
  29825. //
  29826. const auto COMADMIN_E_BASEPARTITION_REQUIRED_IN_SET = 0x8011081F;
  29827. //
  29828. // MessageId: COMADMIN_E_CANNOT_ALIAS_EVENTCLASS
  29829. //
  29830. // MessageText:
  29831. //
  29832. // Alas, Event Class components cannot be aliased.
  29833. //
  29834. const auto COMADMIN_E_CANNOT_ALIAS_EVENTCLASS = 0x80110820;
  29835. //
  29836. // MessageId: COMADMIN_E_PRIVATE_ACCESSDENIED
  29837. //
  29838. // MessageText:
  29839. //
  29840. // Access is denied because the component is private.
  29841. //
  29842. const auto COMADMIN_E_PRIVATE_ACCESSDENIED = 0x80110821;
  29843. //
  29844. // MessageId: COMADMIN_E_SAFERINVALID
  29845. //
  29846. // MessageText:
  29847. //
  29848. // The specified SAFER level is invalid.
  29849. //
  29850. const auto COMADMIN_E_SAFERINVALID = 0x80110822;
  29851. //
  29852. // MessageId: COMADMIN_E_REGISTRY_ACCESSDENIED
  29853. //
  29854. // MessageText:
  29855. //
  29856. // The specified user cannot write to the system registry
  29857. //
  29858. const auto COMADMIN_E_REGISTRY_ACCESSDENIED = 0x80110823;
  29859. //
  29860. // MessageId: COMADMIN_E_PARTITIONS_DISABLED
  29861. //
  29862. // MessageText:
  29863. //
  29864. // COM+ partitions are currently disabled.
  29865. //
  29866. const auto COMADMIN_E_PARTITIONS_DISABLED = 0x80110824;
  29867. // ***********************
  29868. // FACILITY_USERMODE_FILTER_MANAGER
  29869. // ***********************
  29870. //
  29871. // Translation macro for converting:
  29872. // NTSTATUS --> HRESULT
  29873. //
  29874. //
  29875. // MessageId: ERROR_FLT_IO_COMPLETE
  29876. //
  29877. // MessageText:
  29878. //
  29879. // The IO was completed by a filter.
  29880. //
  29881. const auto ERROR_FLT_IO_COMPLETE = 0x001F0001;
  29882. //
  29883. // MessageId: ERROR_FLT_NO_HANDLER_DEFINED
  29884. //
  29885. // MessageText:
  29886. //
  29887. // A handler was not defined by the filter for this operation.
  29888. //
  29889. const auto ERROR_FLT_NO_HANDLER_DEFINED = 0x801F0001;
  29890. //
  29891. // MessageId: ERROR_FLT_CONTEXT_ALREADY_DEFINED
  29892. //
  29893. // MessageText:
  29894. //
  29895. // A context is already defined for this object.
  29896. //
  29897. const auto ERROR_FLT_CONTEXT_ALREADY_DEFINED = 0x801F0002;
  29898. //
  29899. // MessageId: ERROR_FLT_INVALID_ASYNCHRONOUS_REQUEST
  29900. //
  29901. // MessageText:
  29902. //
  29903. // Asynchronous requests are not valid for this operation.
  29904. //
  29905. const auto ERROR_FLT_INVALID_ASYNCHRONOUS_REQUEST = 0x801F0003;
  29906. //
  29907. // MessageId: ERROR_FLT_DISALLOW_FAST_IO
  29908. //
  29909. // MessageText:
  29910. //
  29911. // Disallow the Fast IO path for this operation.
  29912. //
  29913. const auto ERROR_FLT_DISALLOW_FAST_IO = 0x801F0004;
  29914. //
  29915. // MessageId: ERROR_FLT_INVALID_NAME_REQUEST
  29916. //
  29917. // MessageText:
  29918. //
  29919. // An invalid name request was made. The name requested cannot be retrieved at this time.
  29920. //
  29921. const auto ERROR_FLT_INVALID_NAME_REQUEST = 0x801F0005;
  29922. //
  29923. // MessageId: ERROR_FLT_NOT_SAFE_TO_POST_OPERATION
  29924. //
  29925. // MessageText:
  29926. //
  29927. // Posting this operation to a worker thread for further processing is not safe at this time because it could lead to a system deadlock.
  29928. //
  29929. const auto ERROR_FLT_NOT_SAFE_TO_POST_OPERATION = 0x801F0006;
  29930. //
  29931. // MessageId: ERROR_FLT_NOT_INITIALIZED
  29932. //
  29933. // MessageText:
  29934. //
  29935. // The Filter Manager was not initialized when a filter tried to register. Make sure that the Filter Manager is getting loaded as a driver.
  29936. //
  29937. const auto ERROR_FLT_NOT_INITIALIZED = 0x801F0007;
  29938. //
  29939. // MessageId: ERROR_FLT_FILTER_NOT_READY
  29940. //
  29941. // MessageText:
  29942. //
  29943. // The filter is not ready for attachment to volumes because it has not finished initializing (FltStartFiltering has not been called).
  29944. //
  29945. const auto ERROR_FLT_FILTER_NOT_READY = 0x801F0008;
  29946. //
  29947. // MessageId: ERROR_FLT_POST_OPERATION_CLEANUP
  29948. //
  29949. // MessageText:
  29950. //
  29951. // The filter must cleanup any operation specific context at this time because it is being removed from the system before the operation is completed by the lower drivers.
  29952. //
  29953. const auto ERROR_FLT_POST_OPERATION_CLEANUP = 0x801F0009;
  29954. //
  29955. // MessageId: ERROR_FLT_INTERNAL_ERROR
  29956. //
  29957. // MessageText:
  29958. //
  29959. // The Filter Manager had an internal error from which it cannot recover, therefore the operation has been failed. This is usually the result of a filter returning an invalid value from a pre-operation callback.
  29960. //
  29961. const auto ERROR_FLT_INTERNAL_ERROR = 0x801F000A;
  29962. //
  29963. // MessageId: ERROR_FLT_DELETING_OBJECT
  29964. //
  29965. // MessageText:
  29966. //
  29967. // The object specified for this action is in the process of being deleted, therefore the action requested cannot be completed at this time.
  29968. //
  29969. const auto ERROR_FLT_DELETING_OBJECT = 0x801F000B;
  29970. //
  29971. // MessageId: ERROR_FLT_MUST_BE_NONPAGED_POOL
  29972. //
  29973. // MessageText:
  29974. //
  29975. // Non-paged pool must be used for this type of context.
  29976. //
  29977. const auto ERROR_FLT_MUST_BE_NONPAGED_POOL = 0x801F000C;
  29978. //
  29979. // MessageId: ERROR_FLT_DUPLICATE_ENTRY
  29980. //
  29981. // MessageText:
  29982. //
  29983. // A duplicate handler definition has been provided for an operation.
  29984. //
  29985. const auto ERROR_FLT_DUPLICATE_ENTRY = 0x801F000D;
  29986. //
  29987. // MessageId: ERROR_FLT_CBDQ_DISABLED
  29988. //
  29989. // MessageText:
  29990. //
  29991. // The callback data queue has been disabled.
  29992. //
  29993. const auto ERROR_FLT_CBDQ_DISABLED = 0x801F000E;
  29994. //
  29995. // MessageId: ERROR_FLT_DO_NOT_ATTACH
  29996. //
  29997. // MessageText:
  29998. //
  29999. // Do not attach the filter to the volume at this time.
  30000. //
  30001. const auto ERROR_FLT_DO_NOT_ATTACH = 0x801F000F;
  30002. //
  30003. // MessageId: ERROR_FLT_DO_NOT_DETACH
  30004. //
  30005. // MessageText:
  30006. //
  30007. // Do not detach the filter from the volume at this time.
  30008. //
  30009. const auto ERROR_FLT_DO_NOT_DETACH = 0x801F0010;
  30010. //
  30011. // MessageId: ERROR_FLT_INSTANCE_ALTITUDE_COLLISION
  30012. //
  30013. // MessageText:
  30014. //
  30015. // An instance already exists at this altitude on the volume specified.
  30016. //
  30017. const auto ERROR_FLT_INSTANCE_ALTITUDE_COLLISION = 0x801F0011;
  30018. //
  30019. // MessageId: ERROR_FLT_INSTANCE_NAME_COLLISION
  30020. //
  30021. // MessageText:
  30022. //
  30023. // An instance already exists with this name on the volume specified.
  30024. //
  30025. const auto ERROR_FLT_INSTANCE_NAME_COLLISION = 0x801F0012;
  30026. //
  30027. // MessageId: ERROR_FLT_FILTER_NOT_FOUND
  30028. //
  30029. // MessageText:
  30030. //
  30031. // The system could not find the filter specified.
  30032. //
  30033. const auto ERROR_FLT_FILTER_NOT_FOUND = 0x801F0013;
  30034. //
  30035. // MessageId: ERROR_FLT_VOLUME_NOT_FOUND
  30036. //
  30037. // MessageText:
  30038. //
  30039. // The system could not find the volume specified.
  30040. //
  30041. const auto ERROR_FLT_VOLUME_NOT_FOUND = 0x801F0014;
  30042. //
  30043. // MessageId: ERROR_FLT_INSTANCE_NOT_FOUND
  30044. //
  30045. // MessageText:
  30046. //
  30047. // The system could not find the instance specified.
  30048. //
  30049. const auto ERROR_FLT_INSTANCE_NOT_FOUND = 0x801F0015;
  30050. //
  30051. // MessageId: ERROR_FLT_CONTEXT_ALLOCATION_NOT_FOUND
  30052. //
  30053. // MessageText:
  30054. //
  30055. // No registered context allocation definition was found for the given request.
  30056. //
  30057. const auto ERROR_FLT_CONTEXT_ALLOCATION_NOT_FOUND = 0x801F0016;
  30058. //
  30059. // MessageId: ERROR_FLT_INVALID_CONTEXT_REGISTRATION
  30060. //
  30061. // MessageText:
  30062. //
  30063. // An invalid parameter was specified during context registration.
  30064. //
  30065. const auto ERROR_FLT_INVALID_CONTEXT_REGISTRATION = 0x801F0017;
  30066. //
  30067. // MessageId: ERROR_FLT_NAME_CACHE_MISS
  30068. //
  30069. // MessageText:
  30070. //
  30071. // The name requested was not found in Filter Manager's name cache and could not be retrieved from the file system.
  30072. //
  30073. const auto ERROR_FLT_NAME_CACHE_MISS = 0x801F0018;
  30074. //
  30075. // MessageId: ERROR_FLT_NO_DEVICE_OBJECT
  30076. //
  30077. // MessageText:
  30078. //
  30079. // The requested device object does not exist for the given volume.
  30080. //
  30081. const auto ERROR_FLT_NO_DEVICE_OBJECT = 0x801F0019;
  30082. //
  30083. // MessageId: ERROR_FLT_VOLUME_ALREADY_MOUNTED
  30084. //
  30085. // MessageText:
  30086. //
  30087. // The specified volume is already mounted.
  30088. //
  30089. const auto ERROR_FLT_VOLUME_ALREADY_MOUNTED = 0x801F001A;
  30090. //
  30091. // MessageId: ERROR_FLT_ALREADY_ENLISTED
  30092. //
  30093. // MessageText:
  30094. //
  30095. // The specified Transaction Context is already enlisted in a transaction
  30096. //
  30097. const auto ERROR_FLT_ALREADY_ENLISTED = 0x801F001B;
  30098. //
  30099. // MessageId: ERROR_FLT_CONTEXT_ALREADY_LINKED
  30100. //
  30101. // MessageText:
  30102. //
  30103. // The specifiec context is already attached to another object
  30104. //
  30105. const auto ERROR_FLT_CONTEXT_ALREADY_LINKED = 0x801F001C;
  30106. //
  30107. // MessageId: ERROR_FLT_NO_WAITER_FOR_REPLY
  30108. //
  30109. // MessageText:
  30110. //
  30111. // No waiter is present for the filter's reply to this message.
  30112. //
  30113. const auto ERROR_FLT_NO_WAITER_FOR_REPLY = 0x801F0020;
  30114. //
  30115. // ===============================
  30116. // Facility Graphics Error Messages
  30117. // ===============================
  30118. //
  30119. //
  30120. // The following are the subranges within the Graphics facility
  30121. //
  30122. // 0x0000 - 0x0fff Display Driver Loader driver & Video Port errors (displdr.sys, videoprt.sys)
  30123. // 0x1000 - 0x1fff Monitor Class Function driver errors (monitor.sys)
  30124. // 0x2000 - 0x2fff Windows Graphics Kernel Subsystem errors (dxgkrnl.sys)
  30125. // 0x3000 - 0x3fff Desktop Window Manager errors
  30126. // 0x2000 - 0x20ff Common errors
  30127. // 0x2100 - 0x21ff Video Memory Manager (VidMM) subsystem errors
  30128. // 0x2200 - 0x22ff Video GPU Scheduler (VidSch) subsystem errors
  30129. // 0x2300 - 0x23ff Video Display Mode Management (VidDMM) subsystem errors
  30130. //
  30131. // Display Driver Loader driver & Video Port errors {0x0000..0x0fff}
  30132. //
  30133. //
  30134. // MessageId: ERROR_HUNG_DISPLAY_DRIVER_THREAD
  30135. //
  30136. // MessageText:
  30137. //
  30138. // {Display Driver Stopped Responding}
  30139. // The %hs display driver has stopped working normally. Save your work and reboot the system to restore full display functionality.
  30140. // The next time you reboot the machine a dialog will be displayed giving you a chance to report this failure to Microsoft.
  30141. //
  30142. const auto ERROR_HUNG_DISPLAY_DRIVER_THREAD = 0x80260001;
  30143. //
  30144. // Desktop Window Manager errors {0x3000..0x3fff}
  30145. //
  30146. //
  30147. // MessageId: DWM_E_COMPOSITIONDISABLED
  30148. //
  30149. // MessageText:
  30150. //
  30151. // {Desktop composition is disabled}
  30152. // The operation could not be completed because desktop composition is disabled.
  30153. //
  30154. const auto DWM_E_COMPOSITIONDISABLED = 0x80263001;
  30155. //
  30156. // MessageId: DWM_E_REMOTING_NOT_SUPPORTED
  30157. //
  30158. // MessageText:
  30159. //
  30160. // {Some desktop composition APIs are not supported while remoting}
  30161. // The operation is not supported while running in a remote session.
  30162. //
  30163. const auto DWM_E_REMOTING_NOT_SUPPORTED = 0x80263002;
  30164. //
  30165. // MessageId: DWM_E_NO_REDIRECTION_SURFACE_AVAILABLE
  30166. //
  30167. // MessageText:
  30168. //
  30169. // {No DWM redirection surface is available}
  30170. // The DWM was unable to provide a redireciton surface to complete the DirectX present.
  30171. //
  30172. const auto DWM_E_NO_REDIRECTION_SURFACE_AVAILABLE = 0x80263003;
  30173. //
  30174. // MessageId: DWM_E_NOT_QUEUING_PRESENTS
  30175. //
  30176. // MessageText:
  30177. //
  30178. // {DWM is not queuing presents for the specified window}
  30179. // The window specified is not currently using queued presents.
  30180. //
  30181. const auto DWM_E_NOT_QUEUING_PRESENTS = 0x80263004;
  30182. //
  30183. // Monitor class function driver errors {0x1000..0x1fff}
  30184. //
  30185. //
  30186. // MessageId: ERROR_MONITOR_NO_DESCRIPTOR
  30187. //
  30188. // MessageText:
  30189. //
  30190. // Monitor descriptor could not be obtained.
  30191. //
  30192. const auto ERROR_MONITOR_NO_DESCRIPTOR = 0x80261001;
  30193. //
  30194. // MessageId: ERROR_MONITOR_UNKNOWN_DESCRIPTOR_FORMAT
  30195. //
  30196. // MessageText:
  30197. //
  30198. // Format of the obtained monitor descriptor is not supported by this release.
  30199. //
  30200. const auto ERROR_MONITOR_UNKNOWN_DESCRIPTOR_FORMAT = 0x80261002;
  30201. //
  30202. // MessageId: ERROR_MONITOR_INVALID_DESCRIPTOR_CHECKSUM
  30203. //
  30204. // MessageText:
  30205. //
  30206. // Checksum of the obtained monitor descriptor is invalid.
  30207. //
  30208. const auto ERROR_MONITOR_INVALID_DESCRIPTOR_CHECKSUM = 0xC0261003;
  30209. //
  30210. // MessageId: ERROR_MONITOR_INVALID_STANDARD_TIMING_BLOCK
  30211. //
  30212. // MessageText:
  30213. //
  30214. // Monitor descriptor contains an invalid standard timing block.
  30215. //
  30216. const auto ERROR_MONITOR_INVALID_STANDARD_TIMING_BLOCK = 0xC0261004;
  30217. //
  30218. // MessageId: ERROR_MONITOR_WMI_DATABLOCK_REGISTRATION_FAILED
  30219. //
  30220. // MessageText:
  30221. //
  30222. // WMI data block registration failed for one of the MSMonitorClass WMI subclasses.
  30223. //
  30224. const auto ERROR_MONITOR_WMI_DATABLOCK_REGISTRATION_FAILED = 0xC0261005;
  30225. //
  30226. // MessageId: ERROR_MONITOR_INVALID_SERIAL_NUMBER_MONDSC_BLOCK
  30227. //
  30228. // MessageText:
  30229. //
  30230. // Provided monitor descriptor block is either corrupted or does not contain monitor's detailed serial number.
  30231. //
  30232. const auto ERROR_MONITOR_INVALID_SERIAL_NUMBER_MONDSC_BLOCK = 0xC0261006;
  30233. //
  30234. // MessageId: ERROR_MONITOR_INVALID_USER_FRIENDLY_MONDSC_BLOCK
  30235. //
  30236. // MessageText:
  30237. //
  30238. // Provided monitor descriptor block is either corrupted or does not contain monitor's user friendly name.
  30239. //
  30240. const auto ERROR_MONITOR_INVALID_USER_FRIENDLY_MONDSC_BLOCK = 0xC0261007;
  30241. //
  30242. // MessageId: ERROR_MONITOR_NO_MORE_DESCRIPTOR_DATA
  30243. //
  30244. // MessageText:
  30245. //
  30246. // There is no monitor descriptor data at the specified (offset, size) region.
  30247. //
  30248. const auto ERROR_MONITOR_NO_MORE_DESCRIPTOR_DATA = 0xC0261008;
  30249. //
  30250. // MessageId: ERROR_MONITOR_INVALID_DETAILED_TIMING_BLOCK
  30251. //
  30252. // MessageText:
  30253. //
  30254. // Monitor descriptor contains an invalid detailed timing block.
  30255. //
  30256. const auto ERROR_MONITOR_INVALID_DETAILED_TIMING_BLOCK = 0xC0261009;
  30257. //
  30258. // Windows Graphics Kernel Subsystem errors {0x2000..0x2fff}
  30259. //
  30260. // TODO: Add DXG Win32 errors here
  30261. //
  30262. // Common errors {0x2000..0x20ff}
  30263. //
  30264. //
  30265. // MessageId: ERROR_GRAPHICS_NOT_EXCLUSIVE_MODE_OWNER
  30266. //
  30267. // MessageText:
  30268. //
  30269. // Exclusive mode ownership is needed to create unmanaged primary allocation.
  30270. //
  30271. const auto ERROR_GRAPHICS_NOT_EXCLUSIVE_MODE_OWNER = 0xC0262000;
  30272. //
  30273. // MessageId: ERROR_GRAPHICS_INSUFFICIENT_DMA_BUFFER
  30274. //
  30275. // MessageText:
  30276. //
  30277. // The driver needs more DMA buffer space in order to complete the requested operation.
  30278. //
  30279. const auto ERROR_GRAPHICS_INSUFFICIENT_DMA_BUFFER = 0xC0262001;
  30280. //
  30281. // MessageId: ERROR_GRAPHICS_INVALID_DISPLAY_ADAPTER
  30282. //
  30283. // MessageText:
  30284. //
  30285. // Specified display adapter handle is invalid.
  30286. //
  30287. const auto ERROR_GRAPHICS_INVALID_DISPLAY_ADAPTER = 0xC0262002;
  30288. //
  30289. // MessageId: ERROR_GRAPHICS_ADAPTER_WAS_RESET
  30290. //
  30291. // MessageText:
  30292. //
  30293. // Specified display adapter and all of its state has been reset.
  30294. //
  30295. const auto ERROR_GRAPHICS_ADAPTER_WAS_RESET = 0xC0262003;
  30296. //
  30297. // MessageId: ERROR_GRAPHICS_INVALID_DRIVER_MODEL
  30298. //
  30299. // MessageText:
  30300. //
  30301. // The driver stack doesn't match the expected driver model.
  30302. //
  30303. const auto ERROR_GRAPHICS_INVALID_DRIVER_MODEL = 0xC0262004;
  30304. //
  30305. // MessageId: ERROR_GRAPHICS_PRESENT_MODE_CHANGED
  30306. //
  30307. // MessageText:
  30308. //
  30309. // Present happened but ended up into the changed desktop mode
  30310. //
  30311. const auto ERROR_GRAPHICS_PRESENT_MODE_CHANGED = 0xC0262005;
  30312. //
  30313. // MessageId: ERROR_GRAPHICS_PRESENT_OCCLUDED
  30314. //
  30315. // MessageText:
  30316. //
  30317. // Nothing to present due to desktop occlusion
  30318. //
  30319. const auto ERROR_GRAPHICS_PRESENT_OCCLUDED = 0xC0262006;
  30320. //
  30321. // MessageId: ERROR_GRAPHICS_PRESENT_DENIED
  30322. //
  30323. // MessageText:
  30324. //
  30325. // Not able to present due to denial of desktop access
  30326. //
  30327. const auto ERROR_GRAPHICS_PRESENT_DENIED = 0xC0262007;
  30328. //
  30329. // MessageId: ERROR_GRAPHICS_CANNOTCOLORCONVERT
  30330. //
  30331. // MessageText:
  30332. //
  30333. // Not able to present with color convertion
  30334. //
  30335. const auto ERROR_GRAPHICS_CANNOTCOLORCONVERT = 0xC0262008;
  30336. //
  30337. // MessageId: ERROR_GRAPHICS_DRIVER_MISMATCH
  30338. //
  30339. // MessageText:
  30340. //
  30341. // The kernel driver detected a version mismatch between it and the user mode driver.
  30342. //
  30343. const auto ERROR_GRAPHICS_DRIVER_MISMATCH = 0xC0262009;
  30344. //
  30345. // MessageId: ERROR_GRAPHICS_PARTIAL_DATA_POPULATED
  30346. //
  30347. // MessageText:
  30348. //
  30349. // Specified buffer is not big enough to contain entire requested dataset. Partial data populated upto the size of the buffer.
  30350. // Caller needs to provide buffer of size as specified in the partially populated buffer's content (interface specific).
  30351. //
  30352. const auto ERROR_GRAPHICS_PARTIAL_DATA_POPULATED = 0x4026200A;
  30353. //
  30354. // Video Memory Manager (VidMM) subsystem errors {0x2100..0x21ff}
  30355. //
  30356. //
  30357. // MessageId: ERROR_GRAPHICS_NO_VIDEO_MEMORY
  30358. //
  30359. // MessageText:
  30360. //
  30361. // Not enough video memory available to complete the operation.
  30362. //
  30363. const auto ERROR_GRAPHICS_NO_VIDEO_MEMORY = 0xC0262100;
  30364. //
  30365. // MessageId: ERROR_GRAPHICS_CANT_LOCK_MEMORY
  30366. //
  30367. // MessageText:
  30368. //
  30369. // Couldn't probe and lock the underlying memory of an allocation.
  30370. //
  30371. const auto ERROR_GRAPHICS_CANT_LOCK_MEMORY = 0xC0262101;
  30372. //
  30373. // MessageId: ERROR_GRAPHICS_ALLOCATION_BUSY
  30374. //
  30375. // MessageText:
  30376. //
  30377. // The allocation is currently busy.
  30378. //
  30379. const auto ERROR_GRAPHICS_ALLOCATION_BUSY = 0xC0262102;
  30380. //
  30381. // MessageId: ERROR_GRAPHICS_TOO_MANY_REFERENCES
  30382. //
  30383. // MessageText:
  30384. //
  30385. // An object being referenced has reach the maximum reference count already and can't be reference further.
  30386. //
  30387. const auto ERROR_GRAPHICS_TOO_MANY_REFERENCES = 0xC0262103;
  30388. //
  30389. // MessageId: ERROR_GRAPHICS_TRY_AGAIN_LATER
  30390. //
  30391. // MessageText:
  30392. //
  30393. // A problem couldn't be solved due to some currently existing condition. The problem should be tried again later.
  30394. //
  30395. const auto ERROR_GRAPHICS_TRY_AGAIN_LATER = 0xC0262104;
  30396. //
  30397. // MessageId: ERROR_GRAPHICS_TRY_AGAIN_NOW
  30398. //
  30399. // MessageText:
  30400. //
  30401. // A problem couldn't be solved due to some currently existing condition. The problem should be tried again immediately.
  30402. //
  30403. const auto ERROR_GRAPHICS_TRY_AGAIN_NOW = 0xC0262105;
  30404. //
  30405. // MessageId: ERROR_GRAPHICS_ALLOCATION_INVALID
  30406. //
  30407. // MessageText:
  30408. //
  30409. // The allocation is invalid.
  30410. //
  30411. const auto ERROR_GRAPHICS_ALLOCATION_INVALID = 0xC0262106;
  30412. //
  30413. // MessageId: ERROR_GRAPHICS_UNSWIZZLING_APERTURE_UNAVAILABLE
  30414. //
  30415. // MessageText:
  30416. //
  30417. // No more unswizzling aperture are currently available.
  30418. //
  30419. const auto ERROR_GRAPHICS_UNSWIZZLING_APERTURE_UNAVAILABLE = 0xC0262107;
  30420. //
  30421. // MessageId: ERROR_GRAPHICS_UNSWIZZLING_APERTURE_UNSUPPORTED
  30422. //
  30423. // MessageText:
  30424. //
  30425. // The current allocation can't be unswizzled by an aperture.
  30426. //
  30427. const auto ERROR_GRAPHICS_UNSWIZZLING_APERTURE_UNSUPPORTED = 0xC0262108;
  30428. //
  30429. // MessageId: ERROR_GRAPHICS_CANT_EVICT_PINNED_ALLOCATION
  30430. //
  30431. // MessageText:
  30432. //
  30433. // The request failed because a pinned allocation can't be evicted.
  30434. //
  30435. const auto ERROR_GRAPHICS_CANT_EVICT_PINNED_ALLOCATION = 0xC0262109;
  30436. //
  30437. // MessageId: ERROR_GRAPHICS_INVALID_ALLOCATION_USAGE
  30438. //
  30439. // MessageText:
  30440. //
  30441. // The allocation can't be used from it's current segment location for the specified operation.
  30442. //
  30443. const auto ERROR_GRAPHICS_INVALID_ALLOCATION_USAGE = 0xC0262110;
  30444. //
  30445. // MessageId: ERROR_GRAPHICS_CANT_RENDER_LOCKED_ALLOCATION
  30446. //
  30447. // MessageText:
  30448. //
  30449. // A locked allocation can't be used in the current command buffer.
  30450. //
  30451. const auto ERROR_GRAPHICS_CANT_RENDER_LOCKED_ALLOCATION = 0xC0262111;
  30452. //
  30453. // MessageId: ERROR_GRAPHICS_ALLOCATION_CLOSED
  30454. //
  30455. // MessageText:
  30456. //
  30457. // The allocation being referenced has been closed permanently.
  30458. //
  30459. const auto ERROR_GRAPHICS_ALLOCATION_CLOSED = 0xC0262112;
  30460. //
  30461. // MessageId: ERROR_GRAPHICS_INVALID_ALLOCATION_INSTANCE
  30462. //
  30463. // MessageText:
  30464. //
  30465. // An invalid allocation instance is being referenced.
  30466. //
  30467. const auto ERROR_GRAPHICS_INVALID_ALLOCATION_INSTANCE = 0xC0262113;
  30468. //
  30469. // MessageId: ERROR_GRAPHICS_INVALID_ALLOCATION_HANDLE
  30470. //
  30471. // MessageText:
  30472. //
  30473. // An invalid allocation handle is being referenced.
  30474. //
  30475. const auto ERROR_GRAPHICS_INVALID_ALLOCATION_HANDLE = 0xC0262114;
  30476. //
  30477. // MessageId: ERROR_GRAPHICS_WRONG_ALLOCATION_DEVICE
  30478. //
  30479. // MessageText:
  30480. //
  30481. // The allocation being referenced doesn't belong to the current device.
  30482. //
  30483. const auto ERROR_GRAPHICS_WRONG_ALLOCATION_DEVICE = 0xC0262115;
  30484. //
  30485. // MessageId: ERROR_GRAPHICS_ALLOCATION_CONTENT_LOST
  30486. //
  30487. // MessageText:
  30488. //
  30489. // The specified allocation lost its content.
  30490. //
  30491. const auto ERROR_GRAPHICS_ALLOCATION_CONTENT_LOST = 0xC0262116;
  30492. //
  30493. // Video GPU Scheduler (VidSch) subsystem errors {0x2200..0x22ff}
  30494. //
  30495. //
  30496. // MessageId: ERROR_GRAPHICS_GPU_EXCEPTION_ON_DEVICE
  30497. //
  30498. // MessageText:
  30499. //
  30500. // GPU exception is detected on the given device. The device is not able to be scheduled.
  30501. //
  30502. const auto ERROR_GRAPHICS_GPU_EXCEPTION_ON_DEVICE = 0xC0262200;
  30503. //
  30504. // Video Present Network Management (VidPNMgr) subsystem errors {0x2300..0x23ff}
  30505. //
  30506. //
  30507. // MessageId: ERROR_GRAPHICS_INVALID_VIDPN_TOPOLOGY
  30508. //
  30509. // MessageText:
  30510. //
  30511. // Specified VidPN topology is invalid.
  30512. //
  30513. const auto ERROR_GRAPHICS_INVALID_VIDPN_TOPOLOGY = 0xC0262300;
  30514. //
  30515. // MessageId: ERROR_GRAPHICS_VIDPN_TOPOLOGY_NOT_SUPPORTED
  30516. //
  30517. // MessageText:
  30518. //
  30519. // Specified VidPN topology is valid but is not supported by this model of the display adapter.
  30520. //
  30521. const auto ERROR_GRAPHICS_VIDPN_TOPOLOGY_NOT_SUPPORTED = 0xC0262301;
  30522. //
  30523. // MessageId: ERROR_GRAPHICS_VIDPN_TOPOLOGY_CURRENTLY_NOT_SUPPORTED
  30524. //
  30525. // MessageText:
  30526. //
  30527. // Specified VidPN topology is valid but is not supported by the display adapter at this time, due to current allocation of its resources.
  30528. //
  30529. const auto ERROR_GRAPHICS_VIDPN_TOPOLOGY_CURRENTLY_NOT_SUPPORTED = 0xC0262302;
  30530. //
  30531. // MessageId: ERROR_GRAPHICS_INVALID_VIDPN
  30532. //
  30533. // MessageText:
  30534. //
  30535. // Specified VidPN handle is invalid.
  30536. //
  30537. const auto ERROR_GRAPHICS_INVALID_VIDPN = 0xC0262303;
  30538. //
  30539. // MessageId: ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE
  30540. //
  30541. // MessageText:
  30542. //
  30543. // Specified video present source is invalid.
  30544. //
  30545. const auto ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE = 0xC0262304;
  30546. //
  30547. // MessageId: ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET
  30548. //
  30549. // MessageText:
  30550. //
  30551. // Specified video present target is invalid.
  30552. //
  30553. const auto ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET = 0xC0262305;
  30554. //
  30555. // MessageId: ERROR_GRAPHICS_VIDPN_MODALITY_NOT_SUPPORTED
  30556. //
  30557. // MessageText:
  30558. //
  30559. // Specified VidPN modality is not supported (e.g. at least two of the pinned modes are not cofunctional).
  30560. //
  30561. const auto ERROR_GRAPHICS_VIDPN_MODALITY_NOT_SUPPORTED = 0xC0262306;
  30562. //
  30563. // MessageId: ERROR_GRAPHICS_MODE_NOT_PINNED
  30564. //
  30565. // MessageText:
  30566. //
  30567. // No mode is pinned on the specified VidPN source/target.
  30568. //
  30569. const auto ERROR_GRAPHICS_MODE_NOT_PINNED = 0x00262307;
  30570. //
  30571. // MessageId: ERROR_GRAPHICS_INVALID_VIDPN_SOURCEMODESET
  30572. //
  30573. // MessageText:
  30574. //
  30575. // Specified VidPN source mode set is invalid.
  30576. //
  30577. const auto ERROR_GRAPHICS_INVALID_VIDPN_SOURCEMODESET = 0xC0262308;
  30578. //
  30579. // MessageId: ERROR_GRAPHICS_INVALID_VIDPN_TARGETMODESET
  30580. //
  30581. // MessageText:
  30582. //
  30583. // Specified VidPN target mode set is invalid.
  30584. //
  30585. const auto ERROR_GRAPHICS_INVALID_VIDPN_TARGETMODESET = 0xC0262309;
  30586. //
  30587. // MessageId: ERROR_GRAPHICS_INVALID_FREQUENCY
  30588. //
  30589. // MessageText:
  30590. //
  30591. // Specified video signal frequency is invalid.
  30592. //
  30593. const auto ERROR_GRAPHICS_INVALID_FREQUENCY = 0xC026230A;
  30594. //
  30595. // MessageId: ERROR_GRAPHICS_INVALID_ACTIVE_REGION
  30596. //
  30597. // MessageText:
  30598. //
  30599. // Specified video signal active region is invalid.
  30600. //
  30601. const auto ERROR_GRAPHICS_INVALID_ACTIVE_REGION = 0xC026230B;
  30602. //
  30603. // MessageId: ERROR_GRAPHICS_INVALID_TOTAL_REGION
  30604. //
  30605. // MessageText:
  30606. //
  30607. // Specified video signal total region is invalid.
  30608. //
  30609. const auto ERROR_GRAPHICS_INVALID_TOTAL_REGION = 0xC026230C;
  30610. //
  30611. // MessageId: ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE_MODE
  30612. //
  30613. // MessageText:
  30614. //
  30615. // Specified video present source mode is invalid.
  30616. //
  30617. const auto ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE_MODE = 0xC0262310;
  30618. //
  30619. // MessageId: ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET_MODE
  30620. //
  30621. // MessageText:
  30622. //
  30623. // Specified video present target mode is invalid.
  30624. //
  30625. const auto ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET_MODE = 0xC0262311;
  30626. //
  30627. // MessageId: ERROR_GRAPHICS_PINNED_MODE_MUST_REMAIN_IN_SET
  30628. //
  30629. // MessageText:
  30630. //
  30631. // Pinned mode must remain in the set on VidPN's cofunctional modality enumeration.
  30632. //
  30633. const auto ERROR_GRAPHICS_PINNED_MODE_MUST_REMAIN_IN_SET = 0xC0262312;
  30634. //
  30635. // MessageId: ERROR_GRAPHICS_PATH_ALREADY_IN_TOPOLOGY
  30636. //
  30637. // MessageText:
  30638. //
  30639. // Specified video present path is already in VidPN's topology.
  30640. //
  30641. const auto ERROR_GRAPHICS_PATH_ALREADY_IN_TOPOLOGY = 0xC0262313;
  30642. //
  30643. // MessageId: ERROR_GRAPHICS_MODE_ALREADY_IN_MODESET
  30644. //
  30645. // MessageText:
  30646. //
  30647. // Specified mode is already in the mode set.
  30648. //
  30649. const auto ERROR_GRAPHICS_MODE_ALREADY_IN_MODESET = 0xC0262314;
  30650. //
  30651. // MessageId: ERROR_GRAPHICS_INVALID_VIDEOPRESENTSOURCESET
  30652. //
  30653. // MessageText:
  30654. //
  30655. // Specified video present source set is invalid.
  30656. //
  30657. const auto ERROR_GRAPHICS_INVALID_VIDEOPRESENTSOURCESET = 0xC0262315;
  30658. //
  30659. // MessageId: ERROR_GRAPHICS_INVALID_VIDEOPRESENTTARGETSET
  30660. //
  30661. // MessageText:
  30662. //
  30663. // Specified video present target set is invalid.
  30664. //
  30665. const auto ERROR_GRAPHICS_INVALID_VIDEOPRESENTTARGETSET = 0xC0262316;
  30666. //
  30667. // MessageId: ERROR_GRAPHICS_SOURCE_ALREADY_IN_SET
  30668. //
  30669. // MessageText:
  30670. //
  30671. // Specified video present source is already in the video present source set.
  30672. //
  30673. const auto ERROR_GRAPHICS_SOURCE_ALREADY_IN_SET = 0xC0262317;
  30674. //
  30675. // MessageId: ERROR_GRAPHICS_TARGET_ALREADY_IN_SET
  30676. //
  30677. // MessageText:
  30678. //
  30679. // Specified video present target is already in the video present target set.
  30680. //
  30681. const auto ERROR_GRAPHICS_TARGET_ALREADY_IN_SET = 0xC0262318;
  30682. //
  30683. // MessageId: ERROR_GRAPHICS_INVALID_VIDPN_PRESENT_PATH
  30684. //
  30685. // MessageText:
  30686. //
  30687. // Specified VidPN present path is invalid.
  30688. //
  30689. const auto ERROR_GRAPHICS_INVALID_VIDPN_PRESENT_PATH = 0xC0262319;
  30690. //
  30691. // MessageId: ERROR_GRAPHICS_NO_RECOMMENDED_VIDPN_TOPOLOGY
  30692. //
  30693. // MessageText:
  30694. //
  30695. // Miniport has no recommendation for augmentation of the specified VidPN's topology.
  30696. //
  30697. const auto ERROR_GRAPHICS_NO_RECOMMENDED_VIDPN_TOPOLOGY = 0xC026231A;
  30698. //
  30699. // MessageId: ERROR_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGESET
  30700. //
  30701. // MessageText:
  30702. //
  30703. // Specified monitor frequency range set is invalid.
  30704. //
  30705. const auto ERROR_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGESET = 0xC026231B;
  30706. //
  30707. // MessageId: ERROR_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE
  30708. //
  30709. // MessageText:
  30710. //
  30711. // Specified monitor frequency range is invalid.
  30712. //
  30713. const auto ERROR_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE = 0xC026231C;
  30714. //
  30715. // MessageId: ERROR_GRAPHICS_FREQUENCYRANGE_NOT_IN_SET
  30716. //
  30717. // MessageText:
  30718. //
  30719. // Specified frequency range is not in the specified monitor frequency range set.
  30720. //
  30721. const auto ERROR_GRAPHICS_FREQUENCYRANGE_NOT_IN_SET = 0xC026231D;
  30722. //
  30723. // MessageId: ERROR_GRAPHICS_NO_PREFERRED_MODE
  30724. //
  30725. // MessageText:
  30726. //
  30727. // Specified mode set does not specify preference for one of its modes.
  30728. //
  30729. const auto ERROR_GRAPHICS_NO_PREFERRED_MODE = 0x0026231E;
  30730. //
  30731. // MessageId: ERROR_GRAPHICS_FREQUENCYRANGE_ALREADY_IN_SET
  30732. //
  30733. // MessageText:
  30734. //
  30735. // Specified frequency range is already in the specified monitor frequency range set.
  30736. //
  30737. const auto ERROR_GRAPHICS_FREQUENCYRANGE_ALREADY_IN_SET = 0xC026231F;
  30738. //
  30739. // MessageId: ERROR_GRAPHICS_STALE_MODESET
  30740. //
  30741. // MessageText:
  30742. //
  30743. // Specified mode set is stale. Please reacquire the new mode set.
  30744. //
  30745. const auto ERROR_GRAPHICS_STALE_MODESET = 0xC0262320;
  30746. //
  30747. // MessageId: ERROR_GRAPHICS_INVALID_MONITOR_SOURCEMODESET
  30748. //
  30749. // MessageText:
  30750. //
  30751. // Specified monitor source mode set is invalid.
  30752. //
  30753. const auto ERROR_GRAPHICS_INVALID_MONITOR_SOURCEMODESET = 0xC0262321;
  30754. //
  30755. // MessageId: ERROR_GRAPHICS_INVALID_MONITOR_SOURCE_MODE
  30756. //
  30757. // MessageText:
  30758. //
  30759. // Specified monitor source mode is invalid.
  30760. //
  30761. const auto ERROR_GRAPHICS_INVALID_MONITOR_SOURCE_MODE = 0xC0262322;
  30762. //
  30763. // MessageId: ERROR_GRAPHICS_NO_RECOMMENDED_FUNCTIONAL_VIDPN
  30764. //
  30765. // MessageText:
  30766. //
  30767. // Miniport does not have any recommendation regarding the request to provide a functional VidPN given the current display adapter configuration.
  30768. //
  30769. const auto ERROR_GRAPHICS_NO_RECOMMENDED_FUNCTIONAL_VIDPN = 0xC0262323;
  30770. //
  30771. // MessageId: ERROR_GRAPHICS_MODE_ID_MUST_BE_UNIQUE
  30772. //
  30773. // MessageText:
  30774. //
  30775. // ID of the specified mode is already used by another mode in the set.
  30776. //
  30777. const auto ERROR_GRAPHICS_MODE_ID_MUST_BE_UNIQUE = 0xC0262324;
  30778. //
  30779. // MessageId: ERROR_GRAPHICS_EMPTY_ADAPTER_MONITOR_MODE_SUPPORT_INTERSECTION
  30780. //
  30781. // MessageText:
  30782. //
  30783. // System failed to determine a mode that is supported by both the display adapter and the monitor connected to it.
  30784. //
  30785. const auto ERROR_GRAPHICS_EMPTY_ADAPTER_MONITOR_MODE_SUPPORT_INTERSECTION = 0xC0262325;
  30786. //
  30787. // MessageId: ERROR_GRAPHICS_VIDEO_PRESENT_TARGETS_LESS_THAN_SOURCES
  30788. //
  30789. // MessageText:
  30790. //
  30791. // Number of video present targets must be greater than or equal to the number of video present sources.
  30792. //
  30793. const auto ERROR_GRAPHICS_VIDEO_PRESENT_TARGETS_LESS_THAN_SOURCES = 0xC0262326;
  30794. //
  30795. // MessageId: ERROR_GRAPHICS_PATH_NOT_IN_TOPOLOGY
  30796. //
  30797. // MessageText:
  30798. //
  30799. // Specified present path is not in VidPN's topology.
  30800. //
  30801. const auto ERROR_GRAPHICS_PATH_NOT_IN_TOPOLOGY = 0xC0262327;
  30802. //
  30803. // MessageId: ERROR_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_SOURCE
  30804. //
  30805. // MessageText:
  30806. //
  30807. // Display adapter must have at least one video present source.
  30808. //
  30809. const auto ERROR_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_SOURCE = 0xC0262328;
  30810. //
  30811. // MessageId: ERROR_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_TARGET
  30812. //
  30813. // MessageText:
  30814. //
  30815. // Display adapter must have at least one video present target.
  30816. //
  30817. const auto ERROR_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_TARGET = 0xC0262329;
  30818. //
  30819. // MessageId: ERROR_GRAPHICS_INVALID_MONITORDESCRIPTORSET
  30820. //
  30821. // MessageText:
  30822. //
  30823. // Specified monitor descriptor set is invalid.
  30824. //
  30825. const auto ERROR_GRAPHICS_INVALID_MONITORDESCRIPTORSET = 0xC026232A;
  30826. //
  30827. // MessageId: ERROR_GRAPHICS_INVALID_MONITORDESCRIPTOR
  30828. //
  30829. // MessageText:
  30830. //
  30831. // Specified monitor descriptor is invalid.
  30832. //
  30833. const auto ERROR_GRAPHICS_INVALID_MONITORDESCRIPTOR = 0xC026232B;
  30834. //
  30835. // MessageId: ERROR_GRAPHICS_MONITORDESCRIPTOR_NOT_IN_SET
  30836. //
  30837. // MessageText:
  30838. //
  30839. // Specified descriptor is not in the specified monitor descriptor set.
  30840. //
  30841. const auto ERROR_GRAPHICS_MONITORDESCRIPTOR_NOT_IN_SET = 0xC026232C;
  30842. //
  30843. // MessageId: ERROR_GRAPHICS_MONITORDESCRIPTOR_ALREADY_IN_SET
  30844. //
  30845. // MessageText:
  30846. //
  30847. // Specified descriptor is already in the specified monitor descriptor set.
  30848. //
  30849. const auto ERROR_GRAPHICS_MONITORDESCRIPTOR_ALREADY_IN_SET = 0xC026232D;
  30850. //
  30851. // MessageId: ERROR_GRAPHICS_MONITORDESCRIPTOR_ID_MUST_BE_UNIQUE
  30852. //
  30853. // MessageText:
  30854. //
  30855. // ID of the specified monitor descriptor is already used by another descriptor in the set.
  30856. //
  30857. const auto ERROR_GRAPHICS_MONITORDESCRIPTOR_ID_MUST_BE_UNIQUE = 0xC026232E;
  30858. //
  30859. // MessageId: ERROR_GRAPHICS_INVALID_VIDPN_TARGET_SUBSET_TYPE
  30860. //
  30861. // MessageText:
  30862. //
  30863. // Specified video present target subset type is invalid.
  30864. //
  30865. const auto ERROR_GRAPHICS_INVALID_VIDPN_TARGET_SUBSET_TYPE = 0xC026232F;
  30866. //
  30867. // MessageId: ERROR_GRAPHICS_RESOURCES_NOT_RELATED
  30868. //
  30869. // MessageText:
  30870. //
  30871. // Two or more of the specified resources are not related to each other, as defined by the interface semantics.
  30872. //
  30873. const auto ERROR_GRAPHICS_RESOURCES_NOT_RELATED = 0xC0262330;
  30874. //
  30875. // MessageId: ERROR_GRAPHICS_SOURCE_ID_MUST_BE_UNIQUE
  30876. //
  30877. // MessageText:
  30878. //
  30879. // ID of the specified video present source is already used by another source in the set.
  30880. //
  30881. const auto ERROR_GRAPHICS_SOURCE_ID_MUST_BE_UNIQUE = 0xC0262331;
  30882. //
  30883. // MessageId: ERROR_GRAPHICS_TARGET_ID_MUST_BE_UNIQUE
  30884. //
  30885. // MessageText:
  30886. //
  30887. // ID of the specified video present target is already used by another target in the set.
  30888. //
  30889. const auto ERROR_GRAPHICS_TARGET_ID_MUST_BE_UNIQUE = 0xC0262332;
  30890. //
  30891. // MessageId: ERROR_GRAPHICS_NO_AVAILABLE_VIDPN_TARGET
  30892. //
  30893. // MessageText:
  30894. //
  30895. // Specified VidPN source cannot be used because there is no available VidPN target to connect it to.
  30896. //
  30897. const auto ERROR_GRAPHICS_NO_AVAILABLE_VIDPN_TARGET = 0xC0262333;
  30898. //
  30899. // MessageId: ERROR_GRAPHICS_MONITOR_COULD_NOT_BE_ASSOCIATED_WITH_ADAPTER
  30900. //
  30901. // MessageText:
  30902. //
  30903. // Newly arrived monitor could not be associated with a display adapter.
  30904. //
  30905. const auto ERROR_GRAPHICS_MONITOR_COULD_NOT_BE_ASSOCIATED_WITH_ADAPTER = 0xC0262334;
  30906. //
  30907. // MessageId: ERROR_GRAPHICS_NO_VIDPNMGR
  30908. //
  30909. // MessageText:
  30910. //
  30911. // Display adapter in question does not have an associated VidPN manager.
  30912. //
  30913. const auto ERROR_GRAPHICS_NO_VIDPNMGR = 0xC0262335;
  30914. //
  30915. // MessageId: ERROR_GRAPHICS_NO_ACTIVE_VIDPN
  30916. //
  30917. // MessageText:
  30918. //
  30919. // VidPN manager of the display adapter in question does not have an active VidPN.
  30920. //
  30921. const auto ERROR_GRAPHICS_NO_ACTIVE_VIDPN = 0xC0262336;
  30922. //
  30923. // MessageId: ERROR_GRAPHICS_STALE_VIDPN_TOPOLOGY
  30924. //
  30925. // MessageText:
  30926. //
  30927. // Specified VidPN topology is stale. Please reacquire the new topology.
  30928. //
  30929. const auto ERROR_GRAPHICS_STALE_VIDPN_TOPOLOGY = 0xC0262337;
  30930. //
  30931. // MessageId: ERROR_GRAPHICS_MONITOR_NOT_CONNECTED
  30932. //
  30933. // MessageText:
  30934. //
  30935. // There is no monitor connected on the specified video present target.
  30936. //
  30937. const auto ERROR_GRAPHICS_MONITOR_NOT_CONNECTED = 0xC0262338;
  30938. //
  30939. // MessageId: ERROR_GRAPHICS_SOURCE_NOT_IN_TOPOLOGY
  30940. //
  30941. // MessageText:
  30942. //
  30943. // Specified source is not part of the specified VidPN's topology.
  30944. //
  30945. const auto ERROR_GRAPHICS_SOURCE_NOT_IN_TOPOLOGY = 0xC0262339;
  30946. //
  30947. // MessageId: ERROR_GRAPHICS_INVALID_PRIMARYSURFACE_SIZE
  30948. //
  30949. // MessageText:
  30950. //
  30951. // Specified primary surface size is invalid.
  30952. //
  30953. const auto ERROR_GRAPHICS_INVALID_PRIMARYSURFACE_SIZE = 0xC026233A;
  30954. //
  30955. // MessageId: ERROR_GRAPHICS_INVALID_VISIBLEREGION_SIZE
  30956. //
  30957. // MessageText:
  30958. //
  30959. // Specified visible region size is invalid.
  30960. //
  30961. const auto ERROR_GRAPHICS_INVALID_VISIBLEREGION_SIZE = 0xC026233B;
  30962. //
  30963. // MessageId: ERROR_GRAPHICS_INVALID_STRIDE
  30964. //
  30965. // MessageText:
  30966. //
  30967. // Specified stride is invalid.
  30968. //
  30969. const auto ERROR_GRAPHICS_INVALID_STRIDE = 0xC026233C;
  30970. //
  30971. // MessageId: ERROR_GRAPHICS_INVALID_PIXELFORMAT
  30972. //
  30973. // MessageText:
  30974. //
  30975. // Specified pixel format is invalid.
  30976. //
  30977. const auto ERROR_GRAPHICS_INVALID_PIXELFORMAT = 0xC026233D;
  30978. //
  30979. // MessageId: ERROR_GRAPHICS_INVALID_COLORBASIS
  30980. //
  30981. // MessageText:
  30982. //
  30983. // Specified color basis is invalid.
  30984. //
  30985. const auto ERROR_GRAPHICS_INVALID_COLORBASIS = 0xC026233E;
  30986. //
  30987. // MessageId: ERROR_GRAPHICS_INVALID_PIXELVALUEACCESSMODE
  30988. //
  30989. // MessageText:
  30990. //
  30991. // Specified pixel value access mode is invalid.
  30992. //
  30993. const auto ERROR_GRAPHICS_INVALID_PIXELVALUEACCESSMODE = 0xC026233F;
  30994. //
  30995. // MessageId: ERROR_GRAPHICS_TARGET_NOT_IN_TOPOLOGY
  30996. //
  30997. // MessageText:
  30998. //
  30999. // Specified target is not part of the specified VidPN's topology.
  31000. //
  31001. const auto ERROR_GRAPHICS_TARGET_NOT_IN_TOPOLOGY = 0xC0262340;
  31002. //
  31003. // MessageId: ERROR_GRAPHICS_NO_DISPLAY_MODE_MANAGEMENT_SUPPORT
  31004. //
  31005. // MessageText:
  31006. //
  31007. // Failed to acquire display mode management interface.
  31008. //
  31009. const auto ERROR_GRAPHICS_NO_DISPLAY_MODE_MANAGEMENT_SUPPORT = 0xC0262341;
  31010. //
  31011. // MessageId: ERROR_GRAPHICS_VIDPN_SOURCE_IN_USE
  31012. //
  31013. // MessageText:
  31014. //
  31015. // Specified VidPN source is already owned by a DMM client and cannot be used until that client releases it.
  31016. //
  31017. const auto ERROR_GRAPHICS_VIDPN_SOURCE_IN_USE = 0xC0262342;
  31018. //
  31019. // MessageId: ERROR_GRAPHICS_CANT_ACCESS_ACTIVE_VIDPN
  31020. //
  31021. // MessageText:
  31022. //
  31023. // Specified VidPN is active and cannot be accessed.
  31024. //
  31025. const auto ERROR_GRAPHICS_CANT_ACCESS_ACTIVE_VIDPN = 0xC0262343;
  31026. //
  31027. // MessageId: ERROR_GRAPHICS_INVALID_PATH_IMPORTANCE_ORDINAL
  31028. //
  31029. // MessageText:
  31030. //
  31031. // Specified VidPN present path importance ordinal is invalid.
  31032. //
  31033. const auto ERROR_GRAPHICS_INVALID_PATH_IMPORTANCE_ORDINAL = 0xC0262344;
  31034. //
  31035. // MessageId: ERROR_GRAPHICS_INVALID_PATH_CONTENT_GEOMETRY_TRANSFORMATION
  31036. //
  31037. // MessageText:
  31038. //
  31039. // Specified VidPN present path content geometry transformation is invalid.
  31040. //
  31041. const auto ERROR_GRAPHICS_INVALID_PATH_CONTENT_GEOMETRY_TRANSFORMATION = 0xC0262345;
  31042. //
  31043. // MessageId: ERROR_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_SUPPORTED
  31044. //
  31045. // MessageText:
  31046. //
  31047. // Specified content geometry transformation is not supported on the respective VidPN present path.
  31048. //
  31049. const auto ERROR_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_SUPPORTED = 0xC0262346;
  31050. //
  31051. // MessageId: ERROR_GRAPHICS_INVALID_GAMMA_RAMP
  31052. //
  31053. // MessageText:
  31054. //
  31055. // Specified gamma ramp is invalid.
  31056. //
  31057. const auto ERROR_GRAPHICS_INVALID_GAMMA_RAMP = 0xC0262347;
  31058. //
  31059. // MessageId: ERROR_GRAPHICS_GAMMA_RAMP_NOT_SUPPORTED
  31060. //
  31061. // MessageText:
  31062. //
  31063. // Specified gamma ramp is not supported on the respective VidPN present path.
  31064. //
  31065. const auto ERROR_GRAPHICS_GAMMA_RAMP_NOT_SUPPORTED = 0xC0262348;
  31066. //
  31067. // MessageId: ERROR_GRAPHICS_MULTISAMPLING_NOT_SUPPORTED
  31068. //
  31069. // MessageText:
  31070. //
  31071. // Multi-sampling is not supported on the respective VidPN present path.
  31072. //
  31073. const auto ERROR_GRAPHICS_MULTISAMPLING_NOT_SUPPORTED = 0xC0262349;
  31074. //
  31075. // MessageId: ERROR_GRAPHICS_MODE_NOT_IN_MODESET
  31076. //
  31077. // MessageText:
  31078. //
  31079. // Specified mode is not in the specified mode set.
  31080. //
  31081. const auto ERROR_GRAPHICS_MODE_NOT_IN_MODESET = 0xC026234A;
  31082. //
  31083. // MessageId: ERROR_GRAPHICS_DATASET_IS_EMPTY
  31084. //
  31085. // MessageText:
  31086. //
  31087. // Specified data set (e.g. mode set, frequency range set, descriptor set, topology, etc.) is empty.
  31088. //
  31089. const auto ERROR_GRAPHICS_DATASET_IS_EMPTY = 0x0026234B;
  31090. //
  31091. // MessageId: ERROR_GRAPHICS_NO_MORE_ELEMENTS_IN_DATASET
  31092. //
  31093. // MessageText:
  31094. //
  31095. // Specified data set (e.g. mode set, frequency range set, descriptor set, topology, etc.) does not contain any more elements.
  31096. //
  31097. const auto ERROR_GRAPHICS_NO_MORE_ELEMENTS_IN_DATASET = 0x0026234C;
  31098. //
  31099. // MessageId: ERROR_GRAPHICS_INVALID_VIDPN_TOPOLOGY_RECOMMENDATION_REASON
  31100. //
  31101. // MessageText:
  31102. //
  31103. // Specified VidPN topology recommendation reason is invalid.
  31104. //
  31105. const auto ERROR_GRAPHICS_INVALID_VIDPN_TOPOLOGY_RECOMMENDATION_REASON = 0xC026234D;
  31106. //
  31107. // MessageId: ERROR_GRAPHICS_INVALID_PATH_CONTENT_TYPE
  31108. //
  31109. // MessageText:
  31110. //
  31111. // Specified VidPN present path content type is invalid.
  31112. //
  31113. const auto ERROR_GRAPHICS_INVALID_PATH_CONTENT_TYPE = 0xC026234E;
  31114. //
  31115. // MessageId: ERROR_GRAPHICS_INVALID_COPYPROTECTION_TYPE
  31116. //
  31117. // MessageText:
  31118. //
  31119. // Specified VidPN present path copy protection type is invalid.
  31120. //
  31121. const auto ERROR_GRAPHICS_INVALID_COPYPROTECTION_TYPE = 0xC026234F;
  31122. //
  31123. // MessageId: ERROR_GRAPHICS_UNASSIGNED_MODESET_ALREADY_EXISTS
  31124. //
  31125. // MessageText:
  31126. //
  31127. // No more than one unassigned mode set can exist at any given time for a given VidPN source/target.
  31128. //
  31129. const auto ERROR_GRAPHICS_UNASSIGNED_MODESET_ALREADY_EXISTS = 0xC0262350;
  31130. //
  31131. // MessageId: ERROR_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_PINNED
  31132. //
  31133. // MessageText:
  31134. //
  31135. // Specified content transformation is not pinned on the specified VidPN present path.
  31136. //
  31137. const auto ERROR_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_PINNED = 0x00262351;
  31138. //
  31139. // MessageId: ERROR_GRAPHICS_INVALID_SCANLINE_ORDERING
  31140. //
  31141. // MessageText:
  31142. //
  31143. // Specified scanline ordering type is invalid.
  31144. //
  31145. const auto ERROR_GRAPHICS_INVALID_SCANLINE_ORDERING = 0xC0262352;
  31146. //
  31147. // MessageId: ERROR_GRAPHICS_TOPOLOGY_CHANGES_NOT_ALLOWED
  31148. //
  31149. // MessageText:
  31150. //
  31151. // Topology changes are not allowed for the specified VidPN.
  31152. //
  31153. const auto ERROR_GRAPHICS_TOPOLOGY_CHANGES_NOT_ALLOWED = 0xC0262353;
  31154. //
  31155. // MessageId: ERROR_GRAPHICS_NO_AVAILABLE_IMPORTANCE_ORDINALS
  31156. //
  31157. // MessageText:
  31158. //
  31159. // All available importance ordinals are already used in specified topology.
  31160. //
  31161. const auto ERROR_GRAPHICS_NO_AVAILABLE_IMPORTANCE_ORDINALS = 0xC0262354;
  31162. //
  31163. // MessageId: ERROR_GRAPHICS_INCOMPATIBLE_PRIVATE_FORMAT
  31164. //
  31165. // MessageText:
  31166. //
  31167. // Specified primary surface has a different private format attribute than the current primary surface
  31168. //
  31169. const auto ERROR_GRAPHICS_INCOMPATIBLE_PRIVATE_FORMAT = 0xC0262355;
  31170. //
  31171. // MessageId: ERROR_GRAPHICS_INVALID_MODE_PRUNING_ALGORITHM
  31172. //
  31173. // MessageText:
  31174. //
  31175. // Specified mode pruning algorithm is invalid
  31176. //
  31177. const auto ERROR_GRAPHICS_INVALID_MODE_PRUNING_ALGORITHM = 0xC0262356;
  31178. //
  31179. // MessageId: ERROR_GRAPHICS_INVALID_MONITOR_CAPABILITY_ORIGIN
  31180. //
  31181. // MessageText:
  31182. //
  31183. // Specified monitor capability origin is invalid.
  31184. //
  31185. const auto ERROR_GRAPHICS_INVALID_MONITOR_CAPABILITY_ORIGIN = 0xC0262357;
  31186. //
  31187. // MessageId: ERROR_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE_CONSTRAINT
  31188. //
  31189. // MessageText:
  31190. //
  31191. // Specified monitor frequency range constraint is invalid.
  31192. //
  31193. const auto ERROR_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE_CONSTRAINT = 0xC0262358;
  31194. //
  31195. // MessageId: ERROR_GRAPHICS_MAX_NUM_PATHS_REACHED
  31196. //
  31197. // MessageText:
  31198. //
  31199. // Maximum supported number of present paths has been reached.
  31200. //
  31201. const auto ERROR_GRAPHICS_MAX_NUM_PATHS_REACHED = 0xC0262359;
  31202. //
  31203. // MessageId: ERROR_GRAPHICS_CANCEL_VIDPN_TOPOLOGY_AUGMENTATION
  31204. //
  31205. // MessageText:
  31206. //
  31207. // Miniport requested that augmentation be cancelled for the specified source of the specified VidPN's topology.
  31208. //
  31209. const auto ERROR_GRAPHICS_CANCEL_VIDPN_TOPOLOGY_AUGMENTATION = 0xC026235A;
  31210. //
  31211. // MessageId: ERROR_GRAPHICS_INVALID_CLIENT_TYPE
  31212. //
  31213. // MessageText:
  31214. //
  31215. // Specified client type was not recognized.
  31216. //
  31217. const auto ERROR_GRAPHICS_INVALID_CLIENT_TYPE = 0xC026235B;
  31218. //
  31219. // MessageId: ERROR_GRAPHICS_CLIENTVIDPN_NOT_SET
  31220. //
  31221. // MessageText:
  31222. //
  31223. // Client VidPN is not set on this adapter (e.g. no user mode initiated mode changes took place on this adapter yet).
  31224. //
  31225. const auto ERROR_GRAPHICS_CLIENTVIDPN_NOT_SET = 0xC026235C;
  31226. //
  31227. // Port specific status codes {0x2400..0x24ff}
  31228. //
  31229. //
  31230. // MessageId: ERROR_GRAPHICS_SPECIFIED_CHILD_ALREADY_CONNECTED
  31231. //
  31232. // MessageText:
  31233. //
  31234. // Specified display adapter child device already has an external device connected to it.
  31235. //
  31236. const auto ERROR_GRAPHICS_SPECIFIED_CHILD_ALREADY_CONNECTED = 0xC0262400;
  31237. //
  31238. // MessageId: ERROR_GRAPHICS_CHILD_DESCRIPTOR_NOT_SUPPORTED
  31239. //
  31240. // MessageText:
  31241. //
  31242. // Specified display adapter child device does not support descriptor exposure.
  31243. //
  31244. const auto ERROR_GRAPHICS_CHILD_DESCRIPTOR_NOT_SUPPORTED = 0xC0262401;
  31245. //
  31246. // MessageId: ERROR_GRAPHICS_UNKNOWN_CHILD_STATUS
  31247. //
  31248. // MessageText:
  31249. //
  31250. // Child device presence was not reliably detected.
  31251. //
  31252. const auto ERROR_GRAPHICS_UNKNOWN_CHILD_STATUS = 0x4026242F;
  31253. //
  31254. // MessageId: ERROR_GRAPHICS_NOT_A_LINKED_ADAPTER
  31255. //
  31256. // MessageText:
  31257. //
  31258. // The display adapter is not linked to any other adapters.
  31259. //
  31260. const auto ERROR_GRAPHICS_NOT_A_LINKED_ADAPTER = 0xC0262430;
  31261. //
  31262. // MessageId: ERROR_GRAPHICS_LEADLINK_NOT_ENUMERATED
  31263. //
  31264. // MessageText:
  31265. //
  31266. // Lead adapter in a linked configuration was not enumerated yet.
  31267. //
  31268. const auto ERROR_GRAPHICS_LEADLINK_NOT_ENUMERATED = 0xC0262431;
  31269. //
  31270. // MessageId: ERROR_GRAPHICS_CHAINLINKS_NOT_ENUMERATED
  31271. //
  31272. // MessageText:
  31273. //
  31274. // Some chain adapters in a linked configuration were not enumerated yet.
  31275. //
  31276. const auto ERROR_GRAPHICS_CHAINLINKS_NOT_ENUMERATED = 0xC0262432;
  31277. //
  31278. // MessageId: ERROR_GRAPHICS_ADAPTER_CHAIN_NOT_READY
  31279. //
  31280. // MessageText:
  31281. //
  31282. // The chain of linked adapters is not ready to start because of an unknown failure.
  31283. //
  31284. const auto ERROR_GRAPHICS_ADAPTER_CHAIN_NOT_READY = 0xC0262433;
  31285. //
  31286. // MessageId: ERROR_GRAPHICS_CHAINLINKS_NOT_STARTED
  31287. //
  31288. // MessageText:
  31289. //
  31290. // An attempt was made to start a lead link display adapter when the chain links were not started yet.
  31291. //
  31292. const auto ERROR_GRAPHICS_CHAINLINKS_NOT_STARTED = 0xC0262434;
  31293. //
  31294. // MessageId: ERROR_GRAPHICS_CHAINLINKS_NOT_POWERED_ON
  31295. //
  31296. // MessageText:
  31297. //
  31298. // An attempt was made to power up a lead link display adapter when the chain links were powered down.
  31299. //
  31300. const auto ERROR_GRAPHICS_CHAINLINKS_NOT_POWERED_ON = 0xC0262435;
  31301. //
  31302. // MessageId: ERROR_GRAPHICS_INCONSISTENT_DEVICE_LINK_STATE
  31303. //
  31304. // MessageText:
  31305. //
  31306. // The adapter link was found to be in an inconsistent state. Not all adapters are in an expected PNP/Power state.
  31307. //
  31308. const auto ERROR_GRAPHICS_INCONSISTENT_DEVICE_LINK_STATE = 0xC0262436;
  31309. //
  31310. // MessageId: ERROR_GRAPHICS_LEADLINK_START_DEFERRED
  31311. //
  31312. // MessageText:
  31313. //
  31314. // Starting the leadlink adapter has been deferred temporarily.
  31315. //
  31316. const auto ERROR_GRAPHICS_LEADLINK_START_DEFERRED = 0x40262437;
  31317. //
  31318. // MessageId: ERROR_GRAPHICS_NOT_POST_DEVICE_DRIVER
  31319. //
  31320. // MessageText:
  31321. //
  31322. // The driver trying to start is not the same as the driver for the POSTed display adapter.
  31323. //
  31324. const auto ERROR_GRAPHICS_NOT_POST_DEVICE_DRIVER = 0xC0262438;
  31325. //
  31326. // MessageId: ERROR_GRAPHICS_POLLING_TOO_FREQUENTLY
  31327. //
  31328. // MessageText:
  31329. //
  31330. // The display adapter is being polled for children too frequently at the same polling level.
  31331. //
  31332. const auto ERROR_GRAPHICS_POLLING_TOO_FREQUENTLY = 0x40262439;
  31333. //
  31334. // MessageId: ERROR_GRAPHICS_START_DEFERRED
  31335. //
  31336. // MessageText:
  31337. //
  31338. // Starting the adapter has been deferred temporarily.
  31339. //
  31340. const auto ERROR_GRAPHICS_START_DEFERRED = 0x4026243A;
  31341. //
  31342. // MessageId: ERROR_GRAPHICS_ADAPTER_ACCESS_NOT_EXCLUDED
  31343. //
  31344. // MessageText:
  31345. //
  31346. // An operation is being attempted that requires the display adapter to be in a quiescent state.
  31347. //
  31348. const auto ERROR_GRAPHICS_ADAPTER_ACCESS_NOT_EXCLUDED = 0xC026243B;
  31349. //
  31350. // OPM, UAB and PVP specific error codes {0x2500..0x257f}
  31351. //
  31352. //
  31353. // MessageId: ERROR_GRAPHICS_OPM_NOT_SUPPORTED
  31354. //
  31355. // MessageText:
  31356. //
  31357. // The driver does not support OPM.
  31358. //
  31359. const auto ERROR_GRAPHICS_OPM_NOT_SUPPORTED = 0xC0262500;
  31360. //
  31361. // MessageId: ERROR_GRAPHICS_COPP_NOT_SUPPORTED
  31362. //
  31363. // MessageText:
  31364. //
  31365. // The driver does not support COPP.
  31366. //
  31367. const auto ERROR_GRAPHICS_COPP_NOT_SUPPORTED = 0xC0262501;
  31368. //
  31369. // MessageId: ERROR_GRAPHICS_UAB_NOT_SUPPORTED
  31370. //
  31371. // MessageText:
  31372. //
  31373. // The driver does not support UAB.
  31374. //
  31375. const auto ERROR_GRAPHICS_UAB_NOT_SUPPORTED = 0xC0262502;
  31376. //
  31377. // MessageId: ERROR_GRAPHICS_OPM_INVALID_ENCRYPTED_PARAMETERS
  31378. //
  31379. // MessageText:
  31380. //
  31381. // The specified encrypted parameters are invalid.
  31382. //
  31383. const auto ERROR_GRAPHICS_OPM_INVALID_ENCRYPTED_PARAMETERS = 0xC0262503;
  31384. //
  31385. // MessageId: ERROR_GRAPHICS_OPM_NO_VIDEO_OUTPUTS_EXIST
  31386. //
  31387. // MessageText:
  31388. //
  31389. // The GDI display device passed to this function does not have any active video outputs.
  31390. //
  31391. const auto ERROR_GRAPHICS_OPM_NO_VIDEO_OUTPUTS_EXIST = 0xC0262505;
  31392. //
  31393. // MessageId: ERROR_GRAPHICS_OPM_INTERNAL_ERROR
  31394. //
  31395. // MessageText:
  31396. //
  31397. // An internal error caused this operation to fail.
  31398. //
  31399. const auto ERROR_GRAPHICS_OPM_INTERNAL_ERROR = 0xC026250B;
  31400. //
  31401. // MessageId: ERROR_GRAPHICS_OPM_INVALID_HANDLE
  31402. //
  31403. // MessageText:
  31404. //
  31405. // The function failed because the caller passed in an invalid OPM user mode handle.
  31406. //
  31407. const auto ERROR_GRAPHICS_OPM_INVALID_HANDLE = 0xC026250C;
  31408. //
  31409. // MessageId: ERROR_GRAPHICS_PVP_INVALID_CERTIFICATE_LENGTH
  31410. //
  31411. // MessageText:
  31412. //
  31413. // A certificate could not be returned because the certificate buffer passed to the function was too small.
  31414. //
  31415. const auto ERROR_GRAPHICS_PVP_INVALID_CERTIFICATE_LENGTH = 0xC026250E;
  31416. //
  31417. // MessageId: ERROR_GRAPHICS_OPM_SPANNING_MODE_ENABLED
  31418. //
  31419. // MessageText:
  31420. //
  31421. // A video output could not be created because the frame buffer is in spanning mode.
  31422. //
  31423. const auto ERROR_GRAPHICS_OPM_SPANNING_MODE_ENABLED = 0xC026250F;
  31424. //
  31425. // MessageId: ERROR_GRAPHICS_OPM_THEATER_MODE_ENABLED
  31426. //
  31427. // MessageText:
  31428. //
  31429. // A video output could not be created because the frame buffer is in theater mode.
  31430. //
  31431. const auto ERROR_GRAPHICS_OPM_THEATER_MODE_ENABLED = 0xC0262510;
  31432. //
  31433. // MessageId: ERROR_GRAPHICS_PVP_HFS_FAILED
  31434. //
  31435. // MessageText:
  31436. //
  31437. // The function failed because the display adapter's Hardware Functionality Scan failed to validate the graphics hardware.
  31438. //
  31439. const auto ERROR_GRAPHICS_PVP_HFS_FAILED = 0xC0262511;
  31440. //
  31441. // MessageId: ERROR_GRAPHICS_OPM_INVALID_SRM
  31442. //
  31443. // MessageText:
  31444. //
  31445. // The HDCP System Renewability Message passed to this function did not comply with section 5 of the HDCP 1.1 specification.
  31446. //
  31447. const auto ERROR_GRAPHICS_OPM_INVALID_SRM = 0xC0262512;
  31448. //
  31449. // MessageId: ERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_HDCP
  31450. //
  31451. // MessageText:
  31452. //
  31453. // The video output cannot enable the High-bandwidth Digital Content Protection (HDCP) System because it does not support HDCP.
  31454. //
  31455. const auto ERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_HDCP = 0xC0262513;
  31456. //
  31457. // MessageId: ERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_ACP
  31458. //
  31459. // MessageText:
  31460. //
  31461. // The video output cannot enable Analogue Copy Protection (ACP) because it does not support ACP.
  31462. //
  31463. const auto ERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_ACP = 0xC0262514;
  31464. //
  31465. // MessageId: ERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_CGMSA
  31466. //
  31467. // MessageText:
  31468. //
  31469. // The video output cannot enable the Content Generation Management System Analogue (CGMS-A) protection technology because it does not support CGMS-A.
  31470. //
  31471. const auto ERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_CGMSA = 0xC0262515;
  31472. //
  31473. // MessageId: ERROR_GRAPHICS_OPM_HDCP_SRM_NEVER_SET
  31474. //
  31475. // MessageText:
  31476. //
  31477. // The IOPMVideoOutput::GetInformation method cannot return the version of the SRM being used because the application never successfully passed an SRM to the video output.
  31478. //
  31479. const auto ERROR_GRAPHICS_OPM_HDCP_SRM_NEVER_SET = 0xC0262516;
  31480. //
  31481. // MessageId: ERROR_GRAPHICS_OPM_RESOLUTION_TOO_HIGH
  31482. //
  31483. // MessageText:
  31484. //
  31485. // The IOPMVideoOutput::Configure method cannot enable the specified output protection technology because the output's screen resolution is too high.
  31486. //
  31487. const auto ERROR_GRAPHICS_OPM_RESOLUTION_TOO_HIGH = 0xC0262517;
  31488. //
  31489. // MessageId: ERROR_GRAPHICS_OPM_ALL_HDCP_HARDWARE_ALREADY_IN_USE
  31490. //
  31491. // MessageText:
  31492. //
  31493. // The IOPMVideoOutput::Configure method cannot enable HDCP because the display adapter's HDCP hardware is already being used by other physical outputs.
  31494. //
  31495. const auto ERROR_GRAPHICS_OPM_ALL_HDCP_HARDWARE_ALREADY_IN_USE = 0xC0262518;
  31496. //
  31497. // MessageId: ERROR_GRAPHICS_OPM_VIDEO_OUTPUT_NO_LONGER_EXISTS
  31498. //
  31499. // MessageText:
  31500. //
  31501. // The operating system asynchronously destroyed this OPM video output because the operating system's state changed. This error typically occurs because the monitor PDO associated with this video output was removed, the monitor PDO associated with this video output was stopped, the video output's session became a non-console session or the video output's desktop became an inactive desktop.
  31502. //
  31503. const auto ERROR_GRAPHICS_OPM_VIDEO_OUTPUT_NO_LONGER_EXISTS = 0xC026251A;
  31504. //
  31505. // MessageId: ERROR_GRAPHICS_OPM_SESSION_TYPE_CHANGE_IN_PROGRESS
  31506. //
  31507. // MessageText:
  31508. //
  31509. // The method failed because the session is changing its type. No IOPMVideoOutput methods can be called when a session is changing its type. There are currently three types of sessions: console, disconnected and remote (RDP or ICA).
  31510. //
  31511. const auto ERROR_GRAPHICS_OPM_SESSION_TYPE_CHANGE_IN_PROGRESS = 0xC026251B;
  31512. //
  31513. // MessageId: ERROR_GRAPHICS_OPM_VIDEO_OUTPUT_DOES_NOT_HAVE_COPP_SEMANTICS
  31514. //
  31515. // MessageText:
  31516. //
  31517. // Either the IOPMVideoOutput::COPPCompatibleGetInformation, IOPMVideoOutput::GetInformation, or IOPMVideoOutput::Configure method failed. This error is only returned if a video output has OPM semantics. IOPMVideoOutput::COPPCompatibleGetInformation always returns this error if a video output has OPM semantics. IOPMVideoOutput::GetInformation returns this error code if the caller requested COPP specific information. IOPMVideoOutput::Configure returns this error when the caller tries to use a COPP specific command.
  31518. //
  31519. const auto ERROR_GRAPHICS_OPM_VIDEO_OUTPUT_DOES_NOT_HAVE_COPP_SEMANTICS = 0xC026251C;
  31520. //
  31521. // MessageId: ERROR_GRAPHICS_OPM_INVALID_INFORMATION_REQUEST
  31522. //
  31523. // MessageText:
  31524. //
  31525. // The IOPMVideoOutput::GetInformation and IOPMVideoOutput::COPPCompatibleGetInformation methods return this error if the passed in sequence number is not the expected sequence number or the passed in OMAC value is invalid.
  31526. //
  31527. const auto ERROR_GRAPHICS_OPM_INVALID_INFORMATION_REQUEST = 0xC026251D;
  31528. //
  31529. // MessageId: ERROR_GRAPHICS_OPM_DRIVER_INTERNAL_ERROR
  31530. //
  31531. // MessageText:
  31532. //
  31533. // The method failed because an unexpected error occurred inside of a display driver.
  31534. //
  31535. const auto ERROR_GRAPHICS_OPM_DRIVER_INTERNAL_ERROR = 0xC026251E;
  31536. //
  31537. // MessageId: ERROR_GRAPHICS_OPM_VIDEO_OUTPUT_DOES_NOT_HAVE_OPM_SEMANTICS
  31538. //
  31539. // MessageText:
  31540. //
  31541. // Either the IOPMVideoOutput::COPPCompatibleGetInformation, IOPMVideoOutput::GetInformation, or IOPMVideoOutput::Configure method failed. This error is only returned if a video output has COPP semantics. IOPMVideoOutput::COPPCompatibleGetInformation returns this error code if the caller requested OPM specific information. IOPMVideoOutput::GetInformation always returns this error if a video output has COPP semantics. IOPMVideoOutput::Configure returns this error when the caller tries to use an OPM specific command.
  31542. //
  31543. const auto ERROR_GRAPHICS_OPM_VIDEO_OUTPUT_DOES_NOT_HAVE_OPM_SEMANTICS = 0xC026251F;
  31544. //
  31545. // MessageId: ERROR_GRAPHICS_OPM_SIGNALING_NOT_SUPPORTED
  31546. //
  31547. // MessageText:
  31548. //
  31549. // The IOPMVideoOutput::COPPCompatibleGetInformation or IOPMVideoOutput::Configure method failed because the display driver does not support the OPM_GET_ACP_AND_CGMSA_SIGNALING and OPM_SET_ACP_AND_CGMSA_SIGNALING GUIDs.
  31550. //
  31551. const auto ERROR_GRAPHICS_OPM_SIGNALING_NOT_SUPPORTED = 0xC0262520;
  31552. //
  31553. // MessageId: ERROR_GRAPHICS_OPM_INVALID_CONFIGURATION_REQUEST
  31554. //
  31555. // MessageText:
  31556. //
  31557. // The IOPMVideoOutput::Configure function returns this error code if the passed in sequence number is not the expected sequence number or the passed in OMAC value is invalid.
  31558. //
  31559. const auto ERROR_GRAPHICS_OPM_INVALID_CONFIGURATION_REQUEST = 0xC0262521;
  31560. //
  31561. // Monitor Configuration API error codes {0x2580..0x25DF}
  31562. //
  31563. //
  31564. // MessageId: ERROR_GRAPHICS_I2C_NOT_SUPPORTED
  31565. //
  31566. // MessageText:
  31567. //
  31568. // The monitor connected to the specified video output does not have an I2C bus.
  31569. //
  31570. const auto ERROR_GRAPHICS_I2C_NOT_SUPPORTED = 0xC0262580;
  31571. //
  31572. // MessageId: ERROR_GRAPHICS_I2C_DEVICE_DOES_NOT_EXIST
  31573. //
  31574. // MessageText:
  31575. //
  31576. // No device on the I2C bus has the specified address.
  31577. //
  31578. const auto ERROR_GRAPHICS_I2C_DEVICE_DOES_NOT_EXIST = 0xC0262581;
  31579. //
  31580. // MessageId: ERROR_GRAPHICS_I2C_ERROR_TRANSMITTING_DATA
  31581. //
  31582. // MessageText:
  31583. //
  31584. // An error occurred while transmitting data to the device on the I2C bus.
  31585. //
  31586. const auto ERROR_GRAPHICS_I2C_ERROR_TRANSMITTING_DATA = 0xC0262582;
  31587. //
  31588. // MessageId: ERROR_GRAPHICS_I2C_ERROR_RECEIVING_DATA
  31589. //
  31590. // MessageText:
  31591. //
  31592. // An error occurred while receiving data from the device on the I2C bus.
  31593. //
  31594. const auto ERROR_GRAPHICS_I2C_ERROR_RECEIVING_DATA = 0xC0262583;
  31595. //
  31596. // MessageId: ERROR_GRAPHICS_DDCCI_VCP_NOT_SUPPORTED
  31597. //
  31598. // MessageText:
  31599. //
  31600. // The monitor does not support the specified VCP code.
  31601. //
  31602. const auto ERROR_GRAPHICS_DDCCI_VCP_NOT_SUPPORTED = 0xC0262584;
  31603. //
  31604. // MessageId: ERROR_GRAPHICS_DDCCI_INVALID_DATA
  31605. //
  31606. // MessageText:
  31607. //
  31608. // The data received from the monitor is invalid.
  31609. //
  31610. const auto ERROR_GRAPHICS_DDCCI_INVALID_DATA = 0xC0262585;
  31611. //
  31612. // MessageId: ERROR_GRAPHICS_DDCCI_MONITOR_RETURNED_INVALID_TIMING_STATUS_BYTE
  31613. //
  31614. // MessageText:
  31615. //
  31616. // The function failed because a monitor returned an invalid Timing Status byte when the operating system used the DDC/CI Get Timing Report & Timing Message command to get a timing report from a monitor.
  31617. //
  31618. const auto ERROR_GRAPHICS_DDCCI_MONITOR_RETURNED_INVALID_TIMING_STATUS_BYTE = 0xC0262586;
  31619. //
  31620. // MessageId: ERROR_GRAPHICS_MCA_INVALID_CAPABILITIES_STRING
  31621. //
  31622. // MessageText:
  31623. //
  31624. // The monitor returned a DDC/CI capabilities string which did not comply with the ACCESS.bus 3.0, DDC/CI 1.1, or MCCS 2 Revision 1 specification.
  31625. //
  31626. const auto ERROR_GRAPHICS_MCA_INVALID_CAPABILITIES_STRING = 0xC0262587;
  31627. //
  31628. // MessageId: ERROR_GRAPHICS_MCA_INTERNAL_ERROR
  31629. //
  31630. // MessageText:
  31631. //
  31632. // An internal Monitor Configuration API error occured.
  31633. //
  31634. const auto ERROR_GRAPHICS_MCA_INTERNAL_ERROR = 0xC0262588;
  31635. //
  31636. // MessageId: ERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_COMMAND
  31637. //
  31638. // MessageText:
  31639. //
  31640. // An operation failed because a DDC/CI message had an invalid value in its command field.
  31641. //
  31642. const auto ERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_COMMAND = 0xC0262589;
  31643. //
  31644. // MessageId: ERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_LENGTH
  31645. //
  31646. // MessageText:
  31647. //
  31648. // An error occurred because the field length of a DDC/CI message contained an invalid value.
  31649. //
  31650. const auto ERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_LENGTH = 0xC026258A;
  31651. //
  31652. // MessageId: ERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_CHECKSUM
  31653. //
  31654. // MessageText:
  31655. //
  31656. // An error occurred because the checksum field in a DDC/CI message did not match the message's computed checksum value. This error implies that the data was corrupted while it was being transmitted from a monitor to a computer.
  31657. //
  31658. const auto ERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_CHECKSUM = 0xC026258B;
  31659. //
  31660. // MessageId: ERROR_GRAPHICS_INVALID_PHYSICAL_MONITOR_HANDLE
  31661. //
  31662. // MessageText:
  31663. //
  31664. // This function failed because an invalid monitor handle was passed to it.
  31665. //
  31666. const auto ERROR_GRAPHICS_INVALID_PHYSICAL_MONITOR_HANDLE = 0xC026258C;
  31667. //
  31668. // MessageId: ERROR_GRAPHICS_MONITOR_NO_LONGER_EXISTS
  31669. //
  31670. // MessageText:
  31671. //
  31672. // The operating system asynchronously destroyed the monitor which corresponds to this handle because the operating system's state changed. This error typically occurs because the monitor PDO associated with this handle was removed, the monitor PDO associated with this handle was stopped, or a display mode change occurred. A display mode change occurs when windows sends a WM_DISPLAYCHANGE windows message to applications.
  31673. //
  31674. const auto ERROR_GRAPHICS_MONITOR_NO_LONGER_EXISTS = 0xC026258D;
  31675. //
  31676. // MessageId: ERROR_GRAPHICS_DDCCI_CURRENT_CURRENT_VALUE_GREATER_THAN_MAXIMUM_VALUE
  31677. //
  31678. // MessageText:
  31679. //
  31680. // A continuous VCP code's current value is greater than its maximum value. This error code indicates that a monitor returned an invalid value.
  31681. //
  31682. const auto ERROR_GRAPHICS_DDCCI_CURRENT_CURRENT_VALUE_GREATER_THAN_MAXIMUM_VALUE = 0xC02625D8;
  31683. //
  31684. // MessageId: ERROR_GRAPHICS_MCA_INVALID_VCP_VERSION
  31685. //
  31686. // MessageText:
  31687. //
  31688. // The monitor's VCP Version 0xDF) VCP code returned an invalid version value.
  31689. //
  31690. const auto ERROR_GRAPHICS_MCA_INVALID_VCP_VERSION = 0xC02625D9;
  31691. //
  31692. // MessageId: ERROR_GRAPHICS_MCA_MONITOR_VIOLATES_MCCS_SPECIFICATION
  31693. //
  31694. // MessageText:
  31695. //
  31696. // The monitor does not comply with the MCCS specification it claims to support.
  31697. //
  31698. const auto ERROR_GRAPHICS_MCA_MONITOR_VIOLATES_MCCS_SPECIFICATION = 0xC02625DA;
  31699. //
  31700. // MessageId: ERROR_GRAPHICS_MCA_MCCS_VERSION_MISMATCH
  31701. //
  31702. // MessageText:
  31703. //
  31704. // 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.
  31705. //
  31706. const auto ERROR_GRAPHICS_MCA_MCCS_VERSION_MISMATCH = 0xC02625DB;
  31707. //
  31708. // MessageId: ERROR_GRAPHICS_MCA_UNSUPPORTED_MCCS_VERSION
  31709. //
  31710. // MessageText:
  31711. //
  31712. // The Monitor Configuration API only works with monitors which support the MCCS 1.0 specification, MCCS 2.0 specification or the MCCS 2.0 Revision 1 specification.
  31713. //
  31714. const auto ERROR_GRAPHICS_MCA_UNSUPPORTED_MCCS_VERSION = 0xC02625DC;
  31715. //
  31716. // MessageId: ERROR_GRAPHICS_MCA_INVALID_TECHNOLOGY_TYPE_RETURNED
  31717. //
  31718. // MessageText:
  31719. //
  31720. // 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.
  31721. //
  31722. const auto ERROR_GRAPHICS_MCA_INVALID_TECHNOLOGY_TYPE_RETURNED = 0xC02625DE;
  31723. //
  31724. // MessageId: ERROR_GRAPHICS_MCA_UNSUPPORTED_COLOR_TEMPERATURE
  31725. //
  31726. // MessageText:
  31727. //
  31728. // SetMonitorColorTemperature()'s caller passed a color temperature to it which the current monitor did not support. This error implies that the monitor violated the MCCS 2.0 or MCCS 2.0 Revision 1 specification.
  31729. //
  31730. const auto ERROR_GRAPHICS_MCA_UNSUPPORTED_COLOR_TEMPERATURE = 0xC02625DF;
  31731. //
  31732. // OPM, UAB, PVP and DDC/CI shared error codes {0x25E0..0x25ff}
  31733. //
  31734. //
  31735. // MessageId: ERROR_GRAPHICS_ONLY_CONSOLE_SESSION_SUPPORTED
  31736. //
  31737. // MessageText:
  31738. //
  31739. // This function can only be used if a program is running in the local console session. It cannot be used if the program is running on a remote desktop session or on a terminal server session.
  31740. //
  31741. const auto ERROR_GRAPHICS_ONLY_CONSOLE_SESSION_SUPPORTED = 0xC02625E0;
  31742. //
  31743. // MessageId: ERROR_GRAPHICS_NO_DISPLAY_DEVICE_CORRESPONDS_TO_NAME
  31744. //
  31745. // MessageText:
  31746. //
  31747. // This function cannot find an actual GDI display device which corresponds to the specified GDI display device name.
  31748. //
  31749. const auto ERROR_GRAPHICS_NO_DISPLAY_DEVICE_CORRESPONDS_TO_NAME = 0xC02625E1;
  31750. //
  31751. // MessageId: ERROR_GRAPHICS_DISPLAY_DEVICE_NOT_ATTACHED_TO_DESKTOP
  31752. //
  31753. // MessageText:
  31754. //
  31755. // The function failed because the specified GDI display device was not attached to the Windows desktop.
  31756. //
  31757. const auto ERROR_GRAPHICS_DISPLAY_DEVICE_NOT_ATTACHED_TO_DESKTOP = 0xC02625E2;
  31758. //
  31759. // MessageId: ERROR_GRAPHICS_MIRRORING_DEVICES_NOT_SUPPORTED
  31760. //
  31761. // MessageText:
  31762. //
  31763. // This function does not support GDI mirroring display devices because GDI mirroring display devices do not have any physical monitors associated with them.
  31764. //
  31765. const auto ERROR_GRAPHICS_MIRRORING_DEVICES_NOT_SUPPORTED = 0xC02625E3;
  31766. //
  31767. // MessageId: ERROR_GRAPHICS_INVALID_POINTER
  31768. //
  31769. // MessageText:
  31770. //
  31771. // The function failed because an invalid pointer parameter was passed to it. A pointer parameter is invalid if it is NULL, points to an invalid address, points to a kernel mode address, or is not correctly aligned.
  31772. //
  31773. const auto ERROR_GRAPHICS_INVALID_POINTER = 0xC02625E4;
  31774. //
  31775. // MessageId: ERROR_GRAPHICS_NO_MONITORS_CORRESPOND_TO_DISPLAY_DEVICE
  31776. //
  31777. // MessageText:
  31778. //
  31779. // The function failed because the specified GDI device did not have any monitors associated with it.
  31780. //
  31781. const auto ERROR_GRAPHICS_NO_MONITORS_CORRESPOND_TO_DISPLAY_DEVICE = 0xC02625E5;
  31782. //
  31783. // MessageId: ERROR_GRAPHICS_PARAMETER_ARRAY_TOO_SMALL
  31784. //
  31785. // MessageText:
  31786. //
  31787. // An array passed to the function cannot hold all of the data that the function must copy into the array.
  31788. //
  31789. const auto ERROR_GRAPHICS_PARAMETER_ARRAY_TOO_SMALL = 0xC02625E6;
  31790. //
  31791. // MessageId: ERROR_GRAPHICS_INTERNAL_ERROR
  31792. //
  31793. // MessageText:
  31794. //
  31795. // An internal error caused an operation to fail.
  31796. //
  31797. const auto ERROR_GRAPHICS_INTERNAL_ERROR = 0xC02625E7;
  31798. //
  31799. // MessageId: ERROR_GRAPHICS_SESSION_TYPE_CHANGE_IN_PROGRESS
  31800. //
  31801. // MessageText:
  31802. //
  31803. // The function failed because the current session is changing its type. This function cannot be called when the current session is changing its type. There are currently three types of sessions: console, disconnected and remote (RDP or ICA).
  31804. //
  31805. const auto ERROR_GRAPHICS_SESSION_TYPE_CHANGE_IN_PROGRESS = 0xC02605E8;
  31806. //
  31807. // ===============================
  31808. // TPM Services and TPM Software Error Messages
  31809. // ===============================
  31810. //
  31811. // The TPM services and TPM software facilities are used by the various
  31812. // TPM software components. There are two facilities because the services
  31813. // errors are within the TCG-defined error space and the software errors
  31814. // are not.
  31815. //
  31816. // The following are the subranges within the TPM Services facility.
  31817. // The TPM hardware errors are defined in the document
  31818. // TPM Main Specification 1.2 Part 2 TPM Structures.
  31819. // The TBS errors are slotted into the TCG error namespace at the TBS layer.
  31820. //
  31821. // 0x0000 - 0x08ff TPM hardware errors
  31822. // 0x4000 - 0x40ff TPM Base Services errors (tbssvc.dll)
  31823. //
  31824. // The following are the subranges within the TPM Software facility. The TBS
  31825. // has two classes of errors - those that can be returned (the public errors,
  31826. // defined in the TBS spec), which are in the TPM services facility, and
  31827. // those that are internal or implementation specific, which are here in the
  31828. // TPM software facility.
  31829. //
  31830. // 0x0000 - 0x00ff TPM device driver errors (tpm.sys)
  31831. // 0x0100 - 0x01ff TPM API errors (tpmapi.lib)
  31832. // 0x0200 - 0x02ff TBS internal errors (tbssvc.dll)
  31833. // 0x0300 - 0x03ff TPM Physical Presence errors
  31834. //
  31835. //
  31836. // TPM hardware error codes {0x0000..0x08ff}
  31837. // This space is further subdivided into hardware errors, vendor-specific
  31838. // errors, and non-fatal errors.
  31839. //
  31840. //
  31841. // TPM hardware errors {0x0000..0x003ff}
  31842. //
  31843. //
  31844. // MessageId: TPM_E_ERROR_MASK
  31845. //
  31846. // MessageText:
  31847. //
  31848. // This is an error mask to convert TPM hardware errors to win errors.
  31849. //
  31850. const auto TPM_E_ERROR_MASK = 0x80280000;
  31851. //
  31852. // MessageId: TPM_E_AUTHFAIL
  31853. //
  31854. // MessageText:
  31855. //
  31856. // Authentication failed.
  31857. //
  31858. const auto TPM_E_AUTHFAIL = 0x80280001;
  31859. //
  31860. // MessageId: TPM_E_BADINDEX
  31861. //
  31862. // MessageText:
  31863. //
  31864. // The index to a PCR, DIR or other register is incorrect.
  31865. //
  31866. const auto TPM_E_BADINDEX = 0x80280002;
  31867. //
  31868. // MessageId: TPM_E_BAD_PARAMETER
  31869. //
  31870. // MessageText:
  31871. //
  31872. // One or more parameter is bad.
  31873. //
  31874. const auto TPM_E_BAD_PARAMETER = 0x80280003;
  31875. //
  31876. // MessageId: TPM_E_AUDITFAILURE
  31877. //
  31878. // MessageText:
  31879. //
  31880. // An operation completed successfully but the auditing of that operation failed.
  31881. //
  31882. const auto TPM_E_AUDITFAILURE = 0x80280004;
  31883. //
  31884. // MessageId: TPM_E_CLEAR_DISABLED
  31885. //
  31886. // MessageText:
  31887. //
  31888. // The clear disable flag is set and all clear operations now require physical access.
  31889. //
  31890. const auto TPM_E_CLEAR_DISABLED = 0x80280005;
  31891. //
  31892. // MessageId: TPM_E_DEACTIVATED
  31893. //
  31894. // MessageText:
  31895. //
  31896. // Activate the Trusted Platform Module (TPM).
  31897. //
  31898. const auto TPM_E_DEACTIVATED = 0x80280006;
  31899. //
  31900. // MessageId: TPM_E_DISABLED
  31901. //
  31902. // MessageText:
  31903. //
  31904. // Enable the Trusted Platform Module (TPM).
  31905. //
  31906. const auto TPM_E_DISABLED = 0x80280007;
  31907. //
  31908. // MessageId: TPM_E_DISABLED_CMD
  31909. //
  31910. // MessageText:
  31911. //
  31912. // The target command has been disabled.
  31913. //
  31914. const auto TPM_E_DISABLED_CMD = 0x80280008;
  31915. //
  31916. // MessageId: TPM_E_FAIL
  31917. //
  31918. // MessageText:
  31919. //
  31920. // The operation failed.
  31921. //
  31922. const auto TPM_E_FAIL = 0x80280009;
  31923. //
  31924. // MessageId: TPM_E_BAD_ORDINAL
  31925. //
  31926. // MessageText:
  31927. //
  31928. // The ordinal was unknown or inconsistent.
  31929. //
  31930. const auto TPM_E_BAD_ORDINAL = 0x8028000A;
  31931. //
  31932. // MessageId: TPM_E_INSTALL_DISABLED
  31933. //
  31934. // MessageText:
  31935. //
  31936. // The ability to install an owner is disabled.
  31937. //
  31938. const auto TPM_E_INSTALL_DISABLED = 0x8028000B;
  31939. //
  31940. // MessageId: TPM_E_INVALID_KEYHANDLE
  31941. //
  31942. // MessageText:
  31943. //
  31944. // The key handle cannot be intrepreted.
  31945. //
  31946. const auto TPM_E_INVALID_KEYHANDLE = 0x8028000C;
  31947. //
  31948. // MessageId: TPM_E_KEYNOTFOUND
  31949. //
  31950. // MessageText:
  31951. //
  31952. // The key handle points to an invalid key.
  31953. //
  31954. const auto TPM_E_KEYNOTFOUND = 0x8028000D;
  31955. //
  31956. // MessageId: TPM_E_INAPPROPRIATE_ENC
  31957. //
  31958. // MessageText:
  31959. //
  31960. // Unacceptable encryption scheme.
  31961. //
  31962. const auto TPM_E_INAPPROPRIATE_ENC = 0x8028000E;
  31963. //
  31964. // MessageId: TPM_E_MIGRATEFAIL
  31965. //
  31966. // MessageText:
  31967. //
  31968. // Migration authorization failed.
  31969. //
  31970. const auto TPM_E_MIGRATEFAIL = 0x8028000F;
  31971. //
  31972. // MessageId: TPM_E_INVALID_PCR_INFO
  31973. //
  31974. // MessageText:
  31975. //
  31976. // PCR information could not be interpreted.
  31977. //
  31978. const auto TPM_E_INVALID_PCR_INFO = 0x80280010;
  31979. //
  31980. // MessageId: TPM_E_NOSPACE
  31981. //
  31982. // MessageText:
  31983. //
  31984. // No room to load key.
  31985. //
  31986. const auto TPM_E_NOSPACE = 0x80280011;
  31987. //
  31988. // MessageId: TPM_E_NOSRK
  31989. //
  31990. // MessageText:
  31991. //
  31992. // There is no Storage Root Key (SRK) set.
  31993. //
  31994. const auto TPM_E_NOSRK = 0x80280012;
  31995. //
  31996. // MessageId: TPM_E_NOTSEALED_BLOB
  31997. //
  31998. // MessageText:
  31999. //
  32000. // An encrypted blob is invalid or was not created by this TPM.
  32001. //
  32002. const auto TPM_E_NOTSEALED_BLOB = 0x80280013;
  32003. //
  32004. // MessageId: TPM_E_OWNER_SET
  32005. //
  32006. // MessageText:
  32007. //
  32008. // The Trusted Platform Module (TPM) already has an owner.
  32009. //
  32010. const auto TPM_E_OWNER_SET = 0x80280014;
  32011. //
  32012. // MessageId: TPM_E_RESOURCES
  32013. //
  32014. // MessageText:
  32015. //
  32016. // The TPM has insufficient internal resources to perform the requested action.
  32017. //
  32018. const auto TPM_E_RESOURCES = 0x80280015;
  32019. //
  32020. // MessageId: TPM_E_SHORTRANDOM
  32021. //
  32022. // MessageText:
  32023. //
  32024. // A random string was too short.
  32025. //
  32026. const auto TPM_E_SHORTRANDOM = 0x80280016;
  32027. //
  32028. // MessageId: TPM_E_SIZE
  32029. //
  32030. // MessageText:
  32031. //
  32032. // The TPM does not have the space to perform the operation.
  32033. //
  32034. const auto TPM_E_SIZE = 0x80280017;
  32035. //
  32036. // MessageId: TPM_E_WRONGPCRVAL
  32037. //
  32038. // MessageText:
  32039. //
  32040. // The named PCR value does not match the current PCR value.
  32041. //
  32042. const auto TPM_E_WRONGPCRVAL = 0x80280018;
  32043. //
  32044. // MessageId: TPM_E_BAD_PARAM_SIZE
  32045. //
  32046. // MessageText:
  32047. //
  32048. // The paramSize argument to the command has the incorrect value .
  32049. //
  32050. const auto TPM_E_BAD_PARAM_SIZE = 0x80280019;
  32051. //
  32052. // MessageId: TPM_E_SHA_THREAD
  32053. //
  32054. // MessageText:
  32055. //
  32056. // There is no existing SHA-1 thread.
  32057. //
  32058. const auto TPM_E_SHA_THREAD = 0x8028001A;
  32059. //
  32060. // MessageId: TPM_E_SHA_ERROR
  32061. //
  32062. // MessageText:
  32063. //
  32064. // The calculation is unable to proceed because the existing SHA-1 thread has already encountered an error.
  32065. //
  32066. const auto TPM_E_SHA_ERROR = 0x8028001B;
  32067. //
  32068. // MessageId: TPM_E_FAILEDSELFTEST
  32069. //
  32070. // MessageText:
  32071. //
  32072. // Self-test has failed and the TPM has shutdown.
  32073. //
  32074. const auto TPM_E_FAILEDSELFTEST = 0x8028001C;
  32075. //
  32076. // MessageId: TPM_E_AUTH2FAIL
  32077. //
  32078. // MessageText:
  32079. //
  32080. // The authorization for the second key in a 2 key function failed authorization.
  32081. //
  32082. const auto TPM_E_AUTH2FAIL = 0x8028001D;
  32083. //
  32084. // MessageId: TPM_E_BADTAG
  32085. //
  32086. // MessageText:
  32087. //
  32088. // The tag value sent to for a command is invalid.
  32089. //
  32090. const auto TPM_E_BADTAG = 0x8028001E;
  32091. //
  32092. // MessageId: TPM_E_IOERROR
  32093. //
  32094. // MessageText:
  32095. //
  32096. // An IO error occurred transmitting information to the TPM.
  32097. //
  32098. const auto TPM_E_IOERROR = 0x8028001F;
  32099. //
  32100. // MessageId: TPM_E_ENCRYPT_ERROR
  32101. //
  32102. // MessageText:
  32103. //
  32104. // The encryption process had a problem.
  32105. //
  32106. const auto TPM_E_ENCRYPT_ERROR = 0x80280020;
  32107. //
  32108. // MessageId: TPM_E_DECRYPT_ERROR
  32109. //
  32110. // MessageText:
  32111. //
  32112. // The decryption process did not complete.
  32113. //
  32114. const auto TPM_E_DECRYPT_ERROR = 0x80280021;
  32115. //
  32116. // MessageId: TPM_E_INVALID_AUTHHANDLE
  32117. //
  32118. // MessageText:
  32119. //
  32120. // An invalid handle was used.
  32121. //
  32122. const auto TPM_E_INVALID_AUTHHANDLE = 0x80280022;
  32123. //
  32124. // MessageId: TPM_E_NO_ENDORSEMENT
  32125. //
  32126. // MessageText:
  32127. //
  32128. // The TPM does not have an Endorsement Key (EK) installed.
  32129. //
  32130. const auto TPM_E_NO_ENDORSEMENT = 0x80280023;
  32131. //
  32132. // MessageId: TPM_E_INVALID_KEYUSAGE
  32133. //
  32134. // MessageText:
  32135. //
  32136. // The usage of a key is not allowed.
  32137. //
  32138. const auto TPM_E_INVALID_KEYUSAGE = 0x80280024;
  32139. //
  32140. // MessageId: TPM_E_WRONG_ENTITYTYPE
  32141. //
  32142. // MessageText:
  32143. //
  32144. // The submitted entity type is not allowed.
  32145. //
  32146. const auto TPM_E_WRONG_ENTITYTYPE = 0x80280025;
  32147. //
  32148. // MessageId: TPM_E_INVALID_POSTINIT
  32149. //
  32150. // MessageText:
  32151. //
  32152. // The command was received in the wrong sequence relative to TPM_Init and a subsequent TPM_Startup.
  32153. //
  32154. const auto TPM_E_INVALID_POSTINIT = 0x80280026;
  32155. //
  32156. // MessageId: TPM_E_INAPPROPRIATE_SIG
  32157. //
  32158. // MessageText:
  32159. //
  32160. // Signed data cannot include additional DER information.
  32161. //
  32162. const auto TPM_E_INAPPROPRIATE_SIG = 0x80280027;
  32163. //
  32164. // MessageId: TPM_E_BAD_KEY_PROPERTY
  32165. //
  32166. // MessageText:
  32167. //
  32168. // The key properties in TPM_KEY_PARMs are not supported by this TPM.
  32169. //
  32170. const auto TPM_E_BAD_KEY_PROPERTY = 0x80280028;
  32171. //
  32172. // MessageId: TPM_E_BAD_MIGRATION
  32173. //
  32174. // MessageText:
  32175. //
  32176. // The migration properties of this key are incorrect.
  32177. //
  32178. const auto TPM_E_BAD_MIGRATION = 0x80280029;
  32179. //
  32180. // MessageId: TPM_E_BAD_SCHEME
  32181. //
  32182. // MessageText:
  32183. //
  32184. // The signature or encryption scheme for this key is incorrect or not permitted in this situation.
  32185. //
  32186. const auto TPM_E_BAD_SCHEME = 0x8028002A;
  32187. //
  32188. // MessageId: TPM_E_BAD_DATASIZE
  32189. //
  32190. // MessageText:
  32191. //
  32192. // The size of the data (or blob) parameter is bad or inconsistent with the referenced key.
  32193. //
  32194. const auto TPM_E_BAD_DATASIZE = 0x8028002B;
  32195. //
  32196. // MessageId: TPM_E_BAD_MODE
  32197. //
  32198. // MessageText:
  32199. //
  32200. // A mode parameter is bad, such as capArea or subCapArea for TPM_GetCapability, phsicalPresence parameter for TPM_PhysicalPresence, or migrationType for TPM_CreateMigrationBlob.
  32201. //
  32202. const auto TPM_E_BAD_MODE = 0x8028002C;
  32203. //
  32204. // MessageId: TPM_E_BAD_PRESENCE
  32205. //
  32206. // MessageText:
  32207. //
  32208. // Either the physicalPresence or physicalPresenceLock bits have the wrong value.
  32209. //
  32210. const auto TPM_E_BAD_PRESENCE = 0x8028002D;
  32211. //
  32212. // MessageId: TPM_E_BAD_VERSION
  32213. //
  32214. // MessageText:
  32215. //
  32216. // The TPM cannot perform this version of the capability.
  32217. //
  32218. const auto TPM_E_BAD_VERSION = 0x8028002E;
  32219. //
  32220. // MessageId: TPM_E_NO_WRAP_TRANSPORT
  32221. //
  32222. // MessageText:
  32223. //
  32224. // The TPM does not allow for wrapped transport sessions.
  32225. //
  32226. const auto TPM_E_NO_WRAP_TRANSPORT = 0x8028002F;
  32227. //
  32228. // MessageId: TPM_E_AUDITFAIL_UNSUCCESSFUL
  32229. //
  32230. // MessageText:
  32231. //
  32232. // TPM audit construction failed and the underlying command was returning a failure code also.
  32233. //
  32234. const auto TPM_E_AUDITFAIL_UNSUCCESSFUL = 0x80280030;
  32235. //
  32236. // MessageId: TPM_E_AUDITFAIL_SUCCESSFUL
  32237. //
  32238. // MessageText:
  32239. //
  32240. // TPM audit construction failed and the underlying command was returning success.
  32241. //
  32242. const auto TPM_E_AUDITFAIL_SUCCESSFUL = 0x80280031;
  32243. //
  32244. // MessageId: TPM_E_NOTRESETABLE
  32245. //
  32246. // MessageText:
  32247. //
  32248. // Attempt to reset a PCR register that does not have the resettable attribute.
  32249. //
  32250. const auto TPM_E_NOTRESETABLE = 0x80280032;
  32251. //
  32252. // MessageId: TPM_E_NOTLOCAL
  32253. //
  32254. // MessageText:
  32255. //
  32256. // Attempt to reset a PCR register that requires locality and locality modifier not part of command transport.
  32257. //
  32258. const auto TPM_E_NOTLOCAL = 0x80280033;
  32259. //
  32260. // MessageId: TPM_E_BAD_TYPE
  32261. //
  32262. // MessageText:
  32263. //
  32264. // Make identity blob not properly typed.
  32265. //
  32266. const auto TPM_E_BAD_TYPE = 0x80280034;
  32267. //
  32268. // MessageId: TPM_E_INVALID_RESOURCE
  32269. //
  32270. // MessageText:
  32271. //
  32272. // When saving context identified resource type does not match actual resource.
  32273. //
  32274. const auto TPM_E_INVALID_RESOURCE = 0x80280035;
  32275. //
  32276. // MessageId: TPM_E_NOTFIPS
  32277. //
  32278. // MessageText:
  32279. //
  32280. // The TPM is attempting to execute a command only available when in FIPS mode.
  32281. //
  32282. const auto TPM_E_NOTFIPS = 0x80280036;
  32283. //
  32284. // MessageId: TPM_E_INVALID_FAMILY
  32285. //
  32286. // MessageText:
  32287. //
  32288. // The command is attempting to use an invalid family ID.
  32289. //
  32290. const auto TPM_E_INVALID_FAMILY = 0x80280037;
  32291. //
  32292. // MessageId: TPM_E_NO_NV_PERMISSION
  32293. //
  32294. // MessageText:
  32295. //
  32296. // The permission to manipulate the NV storage is not available.
  32297. //
  32298. const auto TPM_E_NO_NV_PERMISSION = 0x80280038;
  32299. //
  32300. // MessageId: TPM_E_REQUIRES_SIGN
  32301. //
  32302. // MessageText:
  32303. //
  32304. // The operation requires a signed command.
  32305. //
  32306. const auto TPM_E_REQUIRES_SIGN = 0x80280039;
  32307. //
  32308. // MessageId: TPM_E_KEY_NOTSUPPORTED
  32309. //
  32310. // MessageText:
  32311. //
  32312. // Wrong operation to load an NV key.
  32313. //
  32314. const auto TPM_E_KEY_NOTSUPPORTED = 0x8028003A;
  32315. //
  32316. // MessageId: TPM_E_AUTH_CONFLICT
  32317. //
  32318. // MessageText:
  32319. //
  32320. // NV_LoadKey blob requires both owner and blob authorization.
  32321. //
  32322. const auto TPM_E_AUTH_CONFLICT = 0x8028003B;
  32323. //
  32324. // MessageId: TPM_E_AREA_LOCKED
  32325. //
  32326. // MessageText:
  32327. //
  32328. // The NV area is locked and not writtable.
  32329. //
  32330. const auto TPM_E_AREA_LOCKED = 0x8028003C;
  32331. //
  32332. // MessageId: TPM_E_BAD_LOCALITY
  32333. //
  32334. // MessageText:
  32335. //
  32336. // The locality is incorrect for the attempted operation.
  32337. //
  32338. const auto TPM_E_BAD_LOCALITY = 0x8028003D;
  32339. //
  32340. // MessageId: TPM_E_READ_ONLY
  32341. //
  32342. // MessageText:
  32343. //
  32344. // The NV area is read only and can't be written to.
  32345. //
  32346. const auto TPM_E_READ_ONLY = 0x8028003E;
  32347. //
  32348. // MessageId: TPM_E_PER_NOWRITE
  32349. //
  32350. // MessageText:
  32351. //
  32352. // There is no protection on the write to the NV area.
  32353. //
  32354. const auto TPM_E_PER_NOWRITE = 0x8028003F;
  32355. //
  32356. // MessageId: TPM_E_FAMILYCOUNT
  32357. //
  32358. // MessageText:
  32359. //
  32360. // The family count value does not match.
  32361. //
  32362. const auto TPM_E_FAMILYCOUNT = 0x80280040;
  32363. //
  32364. // MessageId: TPM_E_WRITE_LOCKED
  32365. //
  32366. // MessageText:
  32367. //
  32368. // The NV area has already been written to.
  32369. //
  32370. const auto TPM_E_WRITE_LOCKED = 0x80280041;
  32371. //
  32372. // MessageId: TPM_E_BAD_ATTRIBUTES
  32373. //
  32374. // MessageText:
  32375. //
  32376. // The NV area attributes conflict.
  32377. //
  32378. const auto TPM_E_BAD_ATTRIBUTES = 0x80280042;
  32379. //
  32380. // MessageId: TPM_E_INVALID_STRUCTURE
  32381. //
  32382. // MessageText:
  32383. //
  32384. // The structure tag and version are invalid or inconsistent.
  32385. //
  32386. const auto TPM_E_INVALID_STRUCTURE = 0x80280043;
  32387. //
  32388. // MessageId: TPM_E_KEY_OWNER_CONTROL
  32389. //
  32390. // MessageText:
  32391. //
  32392. // The key is under control of the TPM Owner and can only be evicted by the TPM Owner.
  32393. //
  32394. const auto TPM_E_KEY_OWNER_CONTROL = 0x80280044;
  32395. //
  32396. // MessageId: TPM_E_BAD_COUNTER
  32397. //
  32398. // MessageText:
  32399. //
  32400. // The counter handle is incorrect.
  32401. //
  32402. const auto TPM_E_BAD_COUNTER = 0x80280045;
  32403. //
  32404. // MessageId: TPM_E_NOT_FULLWRITE
  32405. //
  32406. // MessageText:
  32407. //
  32408. // The write is not a complete write of the area.
  32409. //
  32410. const auto TPM_E_NOT_FULLWRITE = 0x80280046;
  32411. //
  32412. // MessageId: TPM_E_CONTEXT_GAP
  32413. //
  32414. // MessageText:
  32415. //
  32416. // The gap between saved context counts is too large.
  32417. //
  32418. const auto TPM_E_CONTEXT_GAP = 0x80280047;
  32419. //
  32420. // MessageId: TPM_E_MAXNVWRITES
  32421. //
  32422. // MessageText:
  32423. //
  32424. // The maximum number of NV writes without an owner has been exceeded.
  32425. //
  32426. const auto TPM_E_MAXNVWRITES = 0x80280048;
  32427. //
  32428. // MessageId: TPM_E_NOOPERATOR
  32429. //
  32430. // MessageText:
  32431. //
  32432. // No operator AuthData value is set.
  32433. //
  32434. const auto TPM_E_NOOPERATOR = 0x80280049;
  32435. //
  32436. // MessageId: TPM_E_RESOURCEMISSING
  32437. //
  32438. // MessageText:
  32439. //
  32440. // The resource pointed to by context is not loaded.
  32441. //
  32442. const auto TPM_E_RESOURCEMISSING = 0x8028004A;
  32443. //
  32444. // MessageId: TPM_E_DELEGATE_LOCK
  32445. //
  32446. // MessageText:
  32447. //
  32448. // The delegate administration is locked.
  32449. //
  32450. const auto TPM_E_DELEGATE_LOCK = 0x8028004B;
  32451. //
  32452. // MessageId: TPM_E_DELEGATE_FAMILY
  32453. //
  32454. // MessageText:
  32455. //
  32456. // Attempt to manage a family other then the delegated family.
  32457. //
  32458. const auto TPM_E_DELEGATE_FAMILY = 0x8028004C;
  32459. //
  32460. // MessageId: TPM_E_DELEGATE_ADMIN
  32461. //
  32462. // MessageText:
  32463. //
  32464. // Delegation table management not enabled.
  32465. //
  32466. const auto TPM_E_DELEGATE_ADMIN = 0x8028004D;
  32467. //
  32468. // MessageId: TPM_E_TRANSPORT_NOTEXCLUSIVE
  32469. //
  32470. // MessageText:
  32471. //
  32472. // There was a command executed outside of an exclusive transport session.
  32473. //
  32474. const auto TPM_E_TRANSPORT_NOTEXCLUSIVE = 0x8028004E;
  32475. //
  32476. // MessageId: TPM_E_OWNER_CONTROL
  32477. //
  32478. // MessageText:
  32479. //
  32480. // Attempt to context save a owner evict controlled key.
  32481. //
  32482. const auto TPM_E_OWNER_CONTROL = 0x8028004F;
  32483. //
  32484. // MessageId: TPM_E_DAA_RESOURCES
  32485. //
  32486. // MessageText:
  32487. //
  32488. // The DAA command has no resources availble to execute the command.
  32489. //
  32490. const auto TPM_E_DAA_RESOURCES = 0x80280050;
  32491. //
  32492. // MessageId: TPM_E_DAA_INPUT_DATA0
  32493. //
  32494. // MessageText:
  32495. //
  32496. // The consistency check on DAA parameter inputData0 has failed.
  32497. //
  32498. const auto TPM_E_DAA_INPUT_DATA0 = 0x80280051;
  32499. //
  32500. // MessageId: TPM_E_DAA_INPUT_DATA1
  32501. //
  32502. // MessageText:
  32503. //
  32504. // The consistency check on DAA parameter inputData1 has failed.
  32505. //
  32506. const auto TPM_E_DAA_INPUT_DATA1 = 0x80280052;
  32507. //
  32508. // MessageId: TPM_E_DAA_ISSUER_SETTINGS
  32509. //
  32510. // MessageText:
  32511. //
  32512. // The consistency check on DAA_issuerSettings has failed.
  32513. //
  32514. const auto TPM_E_DAA_ISSUER_SETTINGS = 0x80280053;
  32515. //
  32516. // MessageId: TPM_E_DAA_TPM_SETTINGS
  32517. //
  32518. // MessageText:
  32519. //
  32520. // The consistency check on DAA_tpmSpecific has failed.
  32521. //
  32522. const auto TPM_E_DAA_TPM_SETTINGS = 0x80280054;
  32523. //
  32524. // MessageId: TPM_E_DAA_STAGE
  32525. //
  32526. // MessageText:
  32527. //
  32528. // The atomic process indicated by the submitted DAA command is not the expected process.
  32529. //
  32530. const auto TPM_E_DAA_STAGE = 0x80280055;
  32531. //
  32532. // MessageId: TPM_E_DAA_ISSUER_VALIDITY
  32533. //
  32534. // MessageText:
  32535. //
  32536. // The issuer's validity check has detected an inconsistency.
  32537. //
  32538. const auto TPM_E_DAA_ISSUER_VALIDITY = 0x80280056;
  32539. //
  32540. // MessageId: TPM_E_DAA_WRONG_W
  32541. //
  32542. // MessageText:
  32543. //
  32544. // The consistency check on w has failed.
  32545. //
  32546. const auto TPM_E_DAA_WRONG_W = 0x80280057;
  32547. //
  32548. // MessageId: TPM_E_BAD_HANDLE
  32549. //
  32550. // MessageText:
  32551. //
  32552. // The handle is incorrect.
  32553. //
  32554. const auto TPM_E_BAD_HANDLE = 0x80280058;
  32555. //
  32556. // MessageId: TPM_E_BAD_DELEGATE
  32557. //
  32558. // MessageText:
  32559. //
  32560. // Delegation is not correct.
  32561. //
  32562. const auto TPM_E_BAD_DELEGATE = 0x80280059;
  32563. //
  32564. // MessageId: TPM_E_BADCONTEXT
  32565. //
  32566. // MessageText:
  32567. //
  32568. // The context blob is invalid.
  32569. //
  32570. const auto TPM_E_BADCONTEXT = 0x8028005A;
  32571. //
  32572. // MessageId: TPM_E_TOOMANYCONTEXTS
  32573. //
  32574. // MessageText:
  32575. //
  32576. // Too many contexts held by the TPM.
  32577. //
  32578. const auto TPM_E_TOOMANYCONTEXTS = 0x8028005B;
  32579. //
  32580. // MessageId: TPM_E_MA_TICKET_SIGNATURE
  32581. //
  32582. // MessageText:
  32583. //
  32584. // Migration authority signature validation failure.
  32585. //
  32586. const auto TPM_E_MA_TICKET_SIGNATURE = 0x8028005C;
  32587. //
  32588. // MessageId: TPM_E_MA_DESTINATION
  32589. //
  32590. // MessageText:
  32591. //
  32592. // Migration destination not authenticated.
  32593. //
  32594. const auto TPM_E_MA_DESTINATION = 0x8028005D;
  32595. //
  32596. // MessageId: TPM_E_MA_SOURCE
  32597. //
  32598. // MessageText:
  32599. //
  32600. // Migration source incorrect.
  32601. //
  32602. const auto TPM_E_MA_SOURCE = 0x8028005E;
  32603. //
  32604. // MessageId: TPM_E_MA_AUTHORITY
  32605. //
  32606. // MessageText:
  32607. //
  32608. // Incorrect migration authority.
  32609. //
  32610. const auto TPM_E_MA_AUTHORITY = 0x8028005F;
  32611. //
  32612. // MessageId: TPM_E_PERMANENTEK
  32613. //
  32614. // MessageText:
  32615. //
  32616. // Attempt to revoke the EK and the EK is not revocable.
  32617. //
  32618. const auto TPM_E_PERMANENTEK = 0x80280061;
  32619. //
  32620. // MessageId: TPM_E_BAD_SIGNATURE
  32621. //
  32622. // MessageText:
  32623. //
  32624. // Bad signature of CMK ticket.
  32625. //
  32626. const auto TPM_E_BAD_SIGNATURE = 0x80280062;
  32627. //
  32628. // MessageId: TPM_E_NOCONTEXTSPACE
  32629. //
  32630. // MessageText:
  32631. //
  32632. // There is no room in the context list for additional contexts.
  32633. //
  32634. const auto TPM_E_NOCONTEXTSPACE = 0x80280063;
  32635. //
  32636. // TPM vendor specific hardware errors {0x0400..0x04ff}
  32637. //
  32638. //
  32639. // MessageId: TPM_E_COMMAND_BLOCKED
  32640. //
  32641. // MessageText:
  32642. //
  32643. // The command was blocked.
  32644. //
  32645. const auto TPM_E_COMMAND_BLOCKED = 0x80280400;
  32646. //
  32647. // MessageId: TPM_E_INVALID_HANDLE
  32648. //
  32649. // MessageText:
  32650. //
  32651. // The specified handle was not found.
  32652. //
  32653. const auto TPM_E_INVALID_HANDLE = 0x80280401;
  32654. //
  32655. // MessageId: TPM_E_DUPLICATE_VHANDLE
  32656. //
  32657. // MessageText:
  32658. //
  32659. // The TPM returned a duplicate handle and the command needs to be resubmitted.
  32660. //
  32661. const auto TPM_E_DUPLICATE_VHANDLE = 0x80280402;
  32662. //
  32663. // MessageId: TPM_E_EMBEDDED_COMMAND_BLOCKED
  32664. //
  32665. // MessageText:
  32666. //
  32667. // The command within the transport was blocked.
  32668. //
  32669. const auto TPM_E_EMBEDDED_COMMAND_BLOCKED = 0x80280403;
  32670. //
  32671. // MessageId: TPM_E_EMBEDDED_COMMAND_UNSUPPORTED
  32672. //
  32673. // MessageText:
  32674. //
  32675. // The command within the transport is not supported.
  32676. //
  32677. const auto TPM_E_EMBEDDED_COMMAND_UNSUPPORTED = 0x80280404;
  32678. //
  32679. // TPM non-fatal hardware errors {0x0800..0x08ff}
  32680. //
  32681. //
  32682. // MessageId: TPM_E_RETRY
  32683. //
  32684. // MessageText:
  32685. //
  32686. // The TPM is too busy to respond to the command immediately, but the command could be resubmitted at a later time.
  32687. //
  32688. const auto TPM_E_RETRY = 0x80280800;
  32689. //
  32690. // MessageId: TPM_E_NEEDS_SELFTEST
  32691. //
  32692. // MessageText:
  32693. //
  32694. // SelfTestFull has not been run.
  32695. //
  32696. const auto TPM_E_NEEDS_SELFTEST = 0x80280801;
  32697. //
  32698. // MessageId: TPM_E_DOING_SELFTEST
  32699. //
  32700. // MessageText:
  32701. //
  32702. // The TPM is currently executing a full selftest.
  32703. //
  32704. const auto TPM_E_DOING_SELFTEST = 0x80280802;
  32705. //
  32706. // MessageId: TPM_E_DEFEND_LOCK_RUNNING
  32707. //
  32708. // MessageText:
  32709. //
  32710. // The TPM is defending against dictionary attacks and is in a time-out period.
  32711. //
  32712. const auto TPM_E_DEFEND_LOCK_RUNNING = 0x80280803;
  32713. //
  32714. // TPM Base Services error codes {0x4000..0x40ff}
  32715. //
  32716. //
  32717. // MessageId: TBS_E_INTERNAL_ERROR
  32718. //
  32719. // MessageText:
  32720. //
  32721. // An internal software error has been detected.
  32722. //
  32723. const auto TBS_E_INTERNAL_ERROR = 0x80284001;
  32724. //
  32725. // MessageId: TBS_E_BAD_PARAMETER
  32726. //
  32727. // MessageText:
  32728. //
  32729. // One or more input parameters is bad.
  32730. //
  32731. const auto TBS_E_BAD_PARAMETER = 0x80284002;
  32732. //
  32733. // MessageId: TBS_E_INVALID_OUTPUT_POINTER
  32734. //
  32735. // MessageText:
  32736. //
  32737. // A specified output pointer is bad.
  32738. //
  32739. const auto TBS_E_INVALID_OUTPUT_POINTER = 0x80284003;
  32740. //
  32741. // MessageId: TBS_E_INVALID_CONTEXT
  32742. //
  32743. // MessageText:
  32744. //
  32745. // The specified context handle does not refer to a valid context.
  32746. //
  32747. const auto TBS_E_INVALID_CONTEXT = 0x80284004;
  32748. //
  32749. // MessageId: TBS_E_INSUFFICIENT_BUFFER
  32750. //
  32751. // MessageText:
  32752. //
  32753. // A specified output buffer is too small.
  32754. //
  32755. const auto TBS_E_INSUFFICIENT_BUFFER = 0x80284005;
  32756. //
  32757. // MessageId: TBS_E_IOERROR
  32758. //
  32759. // MessageText:
  32760. //
  32761. // An error occurred while communicating with the TPM.
  32762. //
  32763. const auto TBS_E_IOERROR = 0x80284006;
  32764. //
  32765. // MessageId: TBS_E_INVALID_CONTEXT_PARAM
  32766. //
  32767. // MessageText:
  32768. //
  32769. // One or more context parameters is invalid.
  32770. //
  32771. const auto TBS_E_INVALID_CONTEXT_PARAM = 0x80284007;
  32772. //
  32773. // MessageId: TBS_E_SERVICE_NOT_RUNNING
  32774. //
  32775. // MessageText:
  32776. //
  32777. // The TBS service is not running and could not be started.
  32778. //
  32779. const auto TBS_E_SERVICE_NOT_RUNNING = 0x80284008;
  32780. //
  32781. // MessageId: TBS_E_TOO_MANY_TBS_CONTEXTS
  32782. //
  32783. // MessageText:
  32784. //
  32785. // A new context could not be created because there are too many open contexts.
  32786. //
  32787. const auto TBS_E_TOO_MANY_TBS_CONTEXTS = 0x80284009;
  32788. //
  32789. // MessageId: TBS_E_TOO_MANY_RESOURCES
  32790. //
  32791. // MessageText:
  32792. //
  32793. // A new virtual resource could not be created because there are too many open
  32794. // virtual resources.
  32795. //
  32796. const auto TBS_E_TOO_MANY_RESOURCES = 0x8028400A;
  32797. //
  32798. // MessageId: TBS_E_SERVICE_START_PENDING
  32799. //
  32800. // MessageText:
  32801. //
  32802. // The TBS service has been started but is not yet running.
  32803. //
  32804. const auto TBS_E_SERVICE_START_PENDING = 0x8028400B;
  32805. //
  32806. // MessageId: TBS_E_PPI_NOT_SUPPORTED
  32807. //
  32808. // MessageText:
  32809. //
  32810. // The physical presence interface is not supported.
  32811. //
  32812. const auto TBS_E_PPI_NOT_SUPPORTED = 0x8028400C;
  32813. //
  32814. // MessageId: TBS_E_COMMAND_CANCELED
  32815. //
  32816. // MessageText:
  32817. //
  32818. // The command was canceled.
  32819. //
  32820. const auto TBS_E_COMMAND_CANCELED = 0x8028400D;
  32821. //
  32822. // MessageId: TBS_E_BUFFER_TOO_LARGE
  32823. //
  32824. // MessageText:
  32825. //
  32826. // The input or output buffer is too large.
  32827. //
  32828. const auto TBS_E_BUFFER_TOO_LARGE = 0x8028400E;
  32829. //
  32830. // MessageId: TBS_E_TPM_NOT_FOUND
  32831. //
  32832. // MessageText:
  32833. //
  32834. // A compatible Trusted Platform Module (TPM) Security Device cannot be found on this computer.
  32835. //
  32836. const auto TBS_E_TPM_NOT_FOUND = 0x8028400F;
  32837. //
  32838. // MessageId: TBS_E_SERVICE_DISABLED
  32839. //
  32840. // MessageText:
  32841. //
  32842. // The TBS service has been disabled.
  32843. //
  32844. const auto TBS_E_SERVICE_DISABLED = 0x80284010;
  32845. //
  32846. // TPM API error codes {0x0100..0x01ff}
  32847. //
  32848. //
  32849. // MessageId: TPMAPI_E_INVALID_STATE
  32850. //
  32851. // MessageText:
  32852. //
  32853. // The command buffer is not in the correct state.
  32854. //
  32855. const auto TPMAPI_E_INVALID_STATE = 0x80290100;
  32856. //
  32857. // MessageId: TPMAPI_E_NOT_ENOUGH_DATA
  32858. //
  32859. // MessageText:
  32860. //
  32861. // The command buffer does not contain enough data to satisfy the request.
  32862. //
  32863. const auto TPMAPI_E_NOT_ENOUGH_DATA = 0x80290101;
  32864. //
  32865. // MessageId: TPMAPI_E_TOO_MUCH_DATA
  32866. //
  32867. // MessageText:
  32868. //
  32869. // The command buffer cannot contain any more data.
  32870. //
  32871. const auto TPMAPI_E_TOO_MUCH_DATA = 0x80290102;
  32872. //
  32873. // MessageId: TPMAPI_E_INVALID_OUTPUT_POINTER
  32874. //
  32875. // MessageText:
  32876. //
  32877. // One or more output parameters was NULL or invalid.
  32878. //
  32879. const auto TPMAPI_E_INVALID_OUTPUT_POINTER = 0x80290103;
  32880. //
  32881. // MessageId: TPMAPI_E_INVALID_PARAMETER
  32882. //
  32883. // MessageText:
  32884. //
  32885. // One or more input parameters is invalid.
  32886. //
  32887. const auto TPMAPI_E_INVALID_PARAMETER = 0x80290104;
  32888. //
  32889. // MessageId: TPMAPI_E_OUT_OF_MEMORY
  32890. //
  32891. // MessageText:
  32892. //
  32893. // Not enough memory was available to satisfy the request.
  32894. //
  32895. const auto TPMAPI_E_OUT_OF_MEMORY = 0x80290105;
  32896. //
  32897. // MessageId: TPMAPI_E_BUFFER_TOO_SMALL
  32898. //
  32899. // MessageText:
  32900. //
  32901. // The specified buffer was too small.
  32902. //
  32903. const auto TPMAPI_E_BUFFER_TOO_SMALL = 0x80290106;
  32904. //
  32905. // MessageId: TPMAPI_E_INTERNAL_ERROR
  32906. //
  32907. // MessageText:
  32908. //
  32909. // An internal error was detected.
  32910. //
  32911. const auto TPMAPI_E_INTERNAL_ERROR = 0x80290107;
  32912. //
  32913. // MessageId: TPMAPI_E_ACCESS_DENIED
  32914. //
  32915. // MessageText:
  32916. //
  32917. // The caller does not have the appropriate rights to perform the requested
  32918. // operation.
  32919. //
  32920. const auto TPMAPI_E_ACCESS_DENIED = 0x80290108;
  32921. //
  32922. // MessageId: TPMAPI_E_AUTHORIZATION_FAILED
  32923. //
  32924. // MessageText:
  32925. //
  32926. // The specified authorization information was invalid.
  32927. //
  32928. const auto TPMAPI_E_AUTHORIZATION_FAILED = 0x80290109;
  32929. //
  32930. // MessageId: TPMAPI_E_INVALID_CONTEXT_HANDLE
  32931. //
  32932. // MessageText:
  32933. //
  32934. // The specified context handle was not valid.
  32935. //
  32936. const auto TPMAPI_E_INVALID_CONTEXT_HANDLE = 0x8029010A;
  32937. //
  32938. // MessageId: TPMAPI_E_TBS_COMMUNICATION_ERROR
  32939. //
  32940. // MessageText:
  32941. //
  32942. // An error occurred while communicating with the TBS.
  32943. //
  32944. const auto TPMAPI_E_TBS_COMMUNICATION_ERROR = 0x8029010B;
  32945. //
  32946. // MessageId: TPMAPI_E_TPM_COMMAND_ERROR
  32947. //
  32948. // MessageText:
  32949. //
  32950. // The TPM returned an unexpected result.
  32951. //
  32952. const auto TPMAPI_E_TPM_COMMAND_ERROR = 0x8029010C;
  32953. //
  32954. // MessageId: TPMAPI_E_MESSAGE_TOO_LARGE
  32955. //
  32956. // MessageText:
  32957. //
  32958. // The message was too large for the encoding scheme.
  32959. //
  32960. const auto TPMAPI_E_MESSAGE_TOO_LARGE = 0x8029010D;
  32961. //
  32962. // MessageId: TPMAPI_E_INVALID_ENCODING
  32963. //
  32964. // MessageText:
  32965. //
  32966. // The encoding in the blob was not recognized.
  32967. //
  32968. const auto TPMAPI_E_INVALID_ENCODING = 0x8029010E;
  32969. //
  32970. // MessageId: TPMAPI_E_INVALID_KEY_SIZE
  32971. //
  32972. // MessageText:
  32973. //
  32974. // The key size is not valid.
  32975. //
  32976. const auto TPMAPI_E_INVALID_KEY_SIZE = 0x8029010F;
  32977. //
  32978. // MessageId: TPMAPI_E_ENCRYPTION_FAILED
  32979. //
  32980. // MessageText:
  32981. //
  32982. // The encryption operation failed.
  32983. //
  32984. const auto TPMAPI_E_ENCRYPTION_FAILED = 0x80290110;
  32985. //
  32986. // MessageId: TPMAPI_E_INVALID_KEY_PARAMS
  32987. //
  32988. // MessageText:
  32989. //
  32990. // The key parameters structure was not valid
  32991. //
  32992. const auto TPMAPI_E_INVALID_KEY_PARAMS = 0x80290111;
  32993. //
  32994. // MessageId: TPMAPI_E_INVALID_MIGRATION_AUTHORIZATION_BLOB
  32995. //
  32996. // MessageText:
  32997. //
  32998. // The requested supplied data does not appear to be a valid migration authorization blob.
  32999. //
  33000. const auto TPMAPI_E_INVALID_MIGRATION_AUTHORIZATION_BLOB = 0x80290112;
  33001. //
  33002. // MessageId: TPMAPI_E_INVALID_PCR_INDEX
  33003. //
  33004. // MessageText:
  33005. //
  33006. // The specified PCR index was invalid
  33007. //
  33008. const auto TPMAPI_E_INVALID_PCR_INDEX = 0x80290113;
  33009. //
  33010. // MessageId: TPMAPI_E_INVALID_DELEGATE_BLOB
  33011. //
  33012. // MessageText:
  33013. //
  33014. // The data given does not appear to be a valid delegate blob.
  33015. //
  33016. const auto TPMAPI_E_INVALID_DELEGATE_BLOB = 0x80290114;
  33017. //
  33018. // MessageId: TPMAPI_E_INVALID_CONTEXT_PARAMS
  33019. //
  33020. // MessageText:
  33021. //
  33022. // One or more of the specified context parameters was not valid.
  33023. //
  33024. const auto TPMAPI_E_INVALID_CONTEXT_PARAMS = 0x80290115;
  33025. //
  33026. // MessageId: TPMAPI_E_INVALID_KEY_BLOB
  33027. //
  33028. // MessageText:
  33029. //
  33030. // The data given does not appear to be a valid key blob
  33031. //
  33032. const auto TPMAPI_E_INVALID_KEY_BLOB = 0x80290116;
  33033. //
  33034. // MessageId: TPMAPI_E_INVALID_PCR_DATA
  33035. //
  33036. // MessageText:
  33037. //
  33038. // The specified PCR data was invalid.
  33039. //
  33040. const auto TPMAPI_E_INVALID_PCR_DATA = 0x80290117;
  33041. //
  33042. // MessageId: TPMAPI_E_INVALID_OWNER_AUTH
  33043. //
  33044. // MessageText:
  33045. //
  33046. // The format of the owner auth data was invalid.
  33047. //
  33048. const auto TPMAPI_E_INVALID_OWNER_AUTH = 0x80290118;
  33049. //
  33050. // MessageId: TPMAPI_E_FIPS_RNG_CHECK_FAILED
  33051. //
  33052. // MessageText:
  33053. //
  33054. // The random number generated did not pass FIPS RNG check.
  33055. //
  33056. const auto TPMAPI_E_FIPS_RNG_CHECK_FAILED = 0x80290119;
  33057. //
  33058. // TBS implementation error codes {0x0200..0x02ff}
  33059. //
  33060. //
  33061. // MessageId: TBSIMP_E_BUFFER_TOO_SMALL
  33062. //
  33063. // MessageText:
  33064. //
  33065. // The specified buffer was too small.
  33066. //
  33067. const auto TBSIMP_E_BUFFER_TOO_SMALL = 0x80290200;
  33068. //
  33069. // MessageId: TBSIMP_E_CLEANUP_FAILED
  33070. //
  33071. // MessageText:
  33072. //
  33073. // The context could not be cleaned up.
  33074. //
  33075. const auto TBSIMP_E_CLEANUP_FAILED = 0x80290201;
  33076. //
  33077. // MessageId: TBSIMP_E_INVALID_CONTEXT_HANDLE
  33078. //
  33079. // MessageText:
  33080. //
  33081. // The specified context handle is invalid.
  33082. //
  33083. const auto TBSIMP_E_INVALID_CONTEXT_HANDLE = 0x80290202;
  33084. //
  33085. // MessageId: TBSIMP_E_INVALID_CONTEXT_PARAM
  33086. //
  33087. // MessageText:
  33088. //
  33089. // An invalid context parameter was specified.
  33090. //
  33091. const auto TBSIMP_E_INVALID_CONTEXT_PARAM = 0x80290203;
  33092. //
  33093. // MessageId: TBSIMP_E_TPM_ERROR
  33094. //
  33095. // MessageText:
  33096. //
  33097. // An error occurred while communicating with the TPM
  33098. //
  33099. const auto TBSIMP_E_TPM_ERROR = 0x80290204;
  33100. //
  33101. // MessageId: TBSIMP_E_HASH_BAD_KEY
  33102. //
  33103. // MessageText:
  33104. //
  33105. // No entry with the specified key was found.
  33106. //
  33107. const auto TBSIMP_E_HASH_BAD_KEY = 0x80290205;
  33108. //
  33109. // MessageId: TBSIMP_E_DUPLICATE_VHANDLE
  33110. //
  33111. // MessageText:
  33112. //
  33113. // The specified virtual handle matches a virtual handle already in use.
  33114. //
  33115. const auto TBSIMP_E_DUPLICATE_VHANDLE = 0x80290206;
  33116. //
  33117. // MessageId: TBSIMP_E_INVALID_OUTPUT_POINTER
  33118. //
  33119. // MessageText:
  33120. //
  33121. // The pointer to the returned handle location was NULL or invalid
  33122. //
  33123. const auto TBSIMP_E_INVALID_OUTPUT_POINTER = 0x80290207;
  33124. //
  33125. // MessageId: TBSIMP_E_INVALID_PARAMETER
  33126. //
  33127. // MessageText:
  33128. //
  33129. // One or more parameters is invalid
  33130. //
  33131. const auto TBSIMP_E_INVALID_PARAMETER = 0x80290208;
  33132. //
  33133. // MessageId: TBSIMP_E_RPC_INIT_FAILED
  33134. //
  33135. // MessageText:
  33136. //
  33137. // The RPC subsystem could not be initialized.
  33138. //
  33139. const auto TBSIMP_E_RPC_INIT_FAILED = 0x80290209;
  33140. //
  33141. // MessageId: TBSIMP_E_SCHEDULER_NOT_RUNNING
  33142. //
  33143. // MessageText:
  33144. //
  33145. // The TBS scheduler is not running.
  33146. //
  33147. const auto TBSIMP_E_SCHEDULER_NOT_RUNNING = 0x8029020A;
  33148. //
  33149. // MessageId: TBSIMP_E_COMMAND_CANCELED
  33150. //
  33151. // MessageText:
  33152. //
  33153. // The command was canceled.
  33154. //
  33155. const auto TBSIMP_E_COMMAND_CANCELED = 0x8029020B;
  33156. //
  33157. // MessageId: TBSIMP_E_OUT_OF_MEMORY
  33158. //
  33159. // MessageText:
  33160. //
  33161. // There was not enough memory to fulfill the request
  33162. //
  33163. const auto TBSIMP_E_OUT_OF_MEMORY = 0x8029020C;
  33164. //
  33165. // MessageId: TBSIMP_E_LIST_NO_MORE_ITEMS
  33166. //
  33167. // MessageText:
  33168. //
  33169. // The specified list is empty, or the iteration has reached the end of the list.
  33170. //
  33171. const auto TBSIMP_E_LIST_NO_MORE_ITEMS = 0x8029020D;
  33172. //
  33173. // MessageId: TBSIMP_E_LIST_NOT_FOUND
  33174. //
  33175. // MessageText:
  33176. //
  33177. // The specified item was not found in the list.
  33178. //
  33179. const auto TBSIMP_E_LIST_NOT_FOUND = 0x8029020E;
  33180. //
  33181. // MessageId: TBSIMP_E_NOT_ENOUGH_SPACE
  33182. //
  33183. // MessageText:
  33184. //
  33185. // The TPM does not have enough space to load the requested resource.
  33186. //
  33187. const auto TBSIMP_E_NOT_ENOUGH_SPACE = 0x8029020F;
  33188. //
  33189. // MessageId: TBSIMP_E_NOT_ENOUGH_TPM_CONTEXTS
  33190. //
  33191. // MessageText:
  33192. //
  33193. // There are too many TPM contexts in use.
  33194. //
  33195. const auto TBSIMP_E_NOT_ENOUGH_TPM_CONTEXTS = 0x80290210;
  33196. //
  33197. // MessageId: TBSIMP_E_COMMAND_FAILED
  33198. //
  33199. // MessageText:
  33200. //
  33201. // The TPM command failed.
  33202. //
  33203. const auto TBSIMP_E_COMMAND_FAILED = 0x80290211;
  33204. //
  33205. // MessageId: TBSIMP_E_UNKNOWN_ORDINAL
  33206. //
  33207. // MessageText:
  33208. //
  33209. // The TBS does not recognize the specified ordinal.
  33210. //
  33211. const auto TBSIMP_E_UNKNOWN_ORDINAL = 0x80290212;
  33212. //
  33213. // MessageId: TBSIMP_E_RESOURCE_EXPIRED
  33214. //
  33215. // MessageText:
  33216. //
  33217. // The requested resource is no longer available.
  33218. //
  33219. const auto TBSIMP_E_RESOURCE_EXPIRED = 0x80290213;
  33220. //
  33221. // MessageId: TBSIMP_E_INVALID_RESOURCE
  33222. //
  33223. // MessageText:
  33224. //
  33225. // The resource type did not match.
  33226. //
  33227. const auto TBSIMP_E_INVALID_RESOURCE = 0x80290214;
  33228. //
  33229. // MessageId: TBSIMP_E_NOTHING_TO_UNLOAD
  33230. //
  33231. // MessageText:
  33232. //
  33233. // No resources can be unloaded.
  33234. //
  33235. const auto TBSIMP_E_NOTHING_TO_UNLOAD = 0x80290215;
  33236. //
  33237. // MessageId: TBSIMP_E_HASH_TABLE_FULL
  33238. //
  33239. // MessageText:
  33240. //
  33241. // No new entries can be added to the hash table.
  33242. //
  33243. const auto TBSIMP_E_HASH_TABLE_FULL = 0x80290216;
  33244. //
  33245. // MessageId: TBSIMP_E_TOO_MANY_TBS_CONTEXTS
  33246. //
  33247. // MessageText:
  33248. //
  33249. // A new TBS context could not be created because there are too many open contexts.
  33250. //
  33251. const auto TBSIMP_E_TOO_MANY_TBS_CONTEXTS = 0x80290217;
  33252. //
  33253. // MessageId: TBSIMP_E_TOO_MANY_RESOURCES
  33254. //
  33255. // MessageText:
  33256. //
  33257. // A new virtual resource could not be created because there are too many open virtual resources.
  33258. //
  33259. const auto TBSIMP_E_TOO_MANY_RESOURCES = 0x80290218;
  33260. //
  33261. // MessageId: TBSIMP_E_PPI_NOT_SUPPORTED
  33262. //
  33263. // MessageText:
  33264. //
  33265. // The physical presence interface is not supported.
  33266. //
  33267. const auto TBSIMP_E_PPI_NOT_SUPPORTED = 0x80290219;
  33268. //
  33269. // MessageId: TBSIMP_E_TPM_INCOMPATIBLE
  33270. //
  33271. // MessageText:
  33272. //
  33273. // TBS is not compatible with the version of TPM found on the system.
  33274. //
  33275. const auto TBSIMP_E_TPM_INCOMPATIBLE = 0x8029021A;
  33276. //
  33277. // TPM Physical Presence implementation error codes {0x0300..0x03ff}
  33278. //
  33279. //
  33280. // MessageId: TPM_E_PPI_ACPI_FAILURE
  33281. //
  33282. // MessageText:
  33283. //
  33284. // A general error was detected when attempting to acquire the BIOS's response to a Physical Presence command.
  33285. //
  33286. const auto TPM_E_PPI_ACPI_FAILURE = 0x80290300;
  33287. //
  33288. // MessageId: TPM_E_PPI_USER_ABORT
  33289. //
  33290. // MessageText:
  33291. //
  33292. // The user failed to confirm the TPM operation request.
  33293. //
  33294. const auto TPM_E_PPI_USER_ABORT = 0x80290301;
  33295. //
  33296. // MessageId: TPM_E_PPI_BIOS_FAILURE
  33297. //
  33298. // MessageText:
  33299. //
  33300. // The BIOS failure prevented the successful execution of the requested TPM operation (e.g. invalid TPM operation request, BIOS communication error with the TPM).
  33301. //
  33302. const auto TPM_E_PPI_BIOS_FAILURE = 0x80290302;
  33303. //
  33304. // MessageId: TPM_E_PPI_NOT_SUPPORTED
  33305. //
  33306. // MessageText:
  33307. //
  33308. // The BIOS does not support the physical presence interface.
  33309. //
  33310. const auto TPM_E_PPI_NOT_SUPPORTED = 0x80290303;
  33311. //
  33312. // =======================================================
  33313. // Facility Performance Logs & Alerts (PLA) Error Messages
  33314. // =======================================================
  33315. //
  33316. //
  33317. // MessageId: PLA_E_DCS_NOT_FOUND
  33318. //
  33319. // MessageText:
  33320. //
  33321. // Data Collector Set was not found.
  33322. //
  33323. const auto PLA_E_DCS_NOT_FOUND = 0x80300002;
  33324. //
  33325. // MessageId: PLA_E_DCS_IN_USE
  33326. //
  33327. // MessageText:
  33328. //
  33329. // The Data Collector Set or one of its dependencies is already in use.
  33330. //
  33331. const auto PLA_E_DCS_IN_USE = 0x803000AA;
  33332. //
  33333. // MessageId: PLA_E_TOO_MANY_FOLDERS
  33334. //
  33335. // MessageText:
  33336. //
  33337. // Unable to start Data Collector Set because there are too many folders.
  33338. //
  33339. const auto PLA_E_TOO_MANY_FOLDERS = 0x80300045;
  33340. //
  33341. // MessageId: PLA_E_NO_MIN_DISK
  33342. //
  33343. // MessageText:
  33344. //
  33345. // Not enough free disk space to start Data Collector Set.
  33346. //
  33347. const auto PLA_E_NO_MIN_DISK = 0x80300070;
  33348. //
  33349. // MessageId: PLA_E_DCS_ALREADY_EXISTS
  33350. //
  33351. // MessageText:
  33352. //
  33353. // Data Collector Set already exists.
  33354. //
  33355. const auto PLA_E_DCS_ALREADY_EXISTS = 0x803000B7;
  33356. //
  33357. // MessageId: PLA_S_PROPERTY_IGNORED
  33358. //
  33359. // MessageText:
  33360. //
  33361. // Property value will be ignored.
  33362. //
  33363. const auto PLA_S_PROPERTY_IGNORED = 0x00300100;
  33364. //
  33365. // MessageId: PLA_E_PROPERTY_CONFLICT
  33366. //
  33367. // MessageText:
  33368. //
  33369. // Property value conflict.
  33370. //
  33371. const auto PLA_E_PROPERTY_CONFLICT = 0x80300101;
  33372. //
  33373. // MessageId: PLA_E_DCS_SINGLETON_REQUIRED
  33374. //
  33375. // MessageText:
  33376. //
  33377. // The current configuration for this Data Collector Set requires that it contain exactly one Data Collector.
  33378. //
  33379. const auto PLA_E_DCS_SINGLETON_REQUIRED = 0x80300102;
  33380. //
  33381. // MessageId: PLA_E_CREDENTIALS_REQUIRED
  33382. //
  33383. // MessageText:
  33384. //
  33385. // A user account is required in order to commit the current Data Collector Set properties.
  33386. //
  33387. const auto PLA_E_CREDENTIALS_REQUIRED = 0x80300103;
  33388. //
  33389. // MessageId: PLA_E_DCS_NOT_RUNNING
  33390. //
  33391. // MessageText:
  33392. //
  33393. // Data Collector Set is not running.
  33394. //
  33395. const auto PLA_E_DCS_NOT_RUNNING = 0x80300104;
  33396. //
  33397. // MessageId: PLA_E_CONFLICT_INCL_EXCL_API
  33398. //
  33399. // MessageText:
  33400. //
  33401. // A conflict was detected in the list of include/exclude APIs. Do not specify the same API in both the include list and the exclude list.
  33402. //
  33403. const auto PLA_E_CONFLICT_INCL_EXCL_API = 0x80300105;
  33404. //
  33405. // MessageId: PLA_E_NETWORK_EXE_NOT_VALID
  33406. //
  33407. // MessageText:
  33408. //
  33409. // The executable path you have specified refers to a network share or UNC path.
  33410. //
  33411. const auto PLA_E_NETWORK_EXE_NOT_VALID = 0x80300106;
  33412. //
  33413. // MessageId: PLA_E_EXE_ALREADY_CONFIGURED
  33414. //
  33415. // MessageText:
  33416. //
  33417. // The executable path you have specified is already configured for API tracing.
  33418. //
  33419. const auto PLA_E_EXE_ALREADY_CONFIGURED = 0x80300107;
  33420. //
  33421. // MessageId: PLA_E_EXE_PATH_NOT_VALID
  33422. //
  33423. // MessageText:
  33424. //
  33425. // The executable path you have specified does not exist. Verify that the specified path is correct.
  33426. //
  33427. const auto PLA_E_EXE_PATH_NOT_VALID = 0x80300108;
  33428. //
  33429. // MessageId: PLA_E_DC_ALREADY_EXISTS
  33430. //
  33431. // MessageText:
  33432. //
  33433. // Data Collector already exists.
  33434. //
  33435. const auto PLA_E_DC_ALREADY_EXISTS = 0x80300109;
  33436. //
  33437. // MessageId: PLA_E_DCS_START_WAIT_TIMEOUT
  33438. //
  33439. // MessageText:
  33440. //
  33441. // The wait for the Data Collector Set start notification has timed out.
  33442. //
  33443. const auto PLA_E_DCS_START_WAIT_TIMEOUT = 0x8030010A;
  33444. //
  33445. // MessageId: PLA_E_DC_START_WAIT_TIMEOUT
  33446. //
  33447. // MessageText:
  33448. //
  33449. // The wait for the Data Collector to start has timed out.
  33450. //
  33451. const auto PLA_E_DC_START_WAIT_TIMEOUT = 0x8030010B;
  33452. //
  33453. // MessageId: PLA_E_REPORT_WAIT_TIMEOUT
  33454. //
  33455. // MessageText:
  33456. //
  33457. // The wait for the report generation tool to finish has timed out.
  33458. //
  33459. const auto PLA_E_REPORT_WAIT_TIMEOUT = 0x8030010C;
  33460. //
  33461. // MessageId: PLA_E_NO_DUPLICATES
  33462. //
  33463. // MessageText:
  33464. //
  33465. // Duplicate items are not allowed.
  33466. //
  33467. const auto PLA_E_NO_DUPLICATES = 0x8030010D;
  33468. //
  33469. // MessageId: PLA_E_EXE_FULL_PATH_REQUIRED
  33470. //
  33471. // MessageText:
  33472. //
  33473. // When specifying the executable that you want to trace, you must specify a full path to the executable and not just a filename.
  33474. //
  33475. const auto PLA_E_EXE_FULL_PATH_REQUIRED = 0x8030010E;
  33476. //
  33477. // MessageId: PLA_E_INVALID_SESSION_NAME
  33478. //
  33479. // MessageText:
  33480. //
  33481. // The session name provided is invalid.
  33482. //
  33483. const auto PLA_E_INVALID_SESSION_NAME = 0x8030010F;
  33484. //
  33485. // MessageId: PLA_E_PLA_CHANNEL_NOT_ENABLED
  33486. //
  33487. // MessageText:
  33488. //
  33489. // The Event Log channel Microsoft-Windows-Diagnosis-PLA/Operational must be enabled to perform this operation.
  33490. //
  33491. const auto PLA_E_PLA_CHANNEL_NOT_ENABLED = 0x80300110;
  33492. //
  33493. // MessageId: PLA_E_TASKSCHED_CHANNEL_NOT_ENABLED
  33494. //
  33495. // MessageText:
  33496. //
  33497. // The Event Log channel Microsoft-Windows-TaskScheduler must be enabled to perform this operation.
  33498. //
  33499. const auto PLA_E_TASKSCHED_CHANNEL_NOT_ENABLED = 0x80300111;
  33500. //
  33501. // MessageId: PLA_E_RULES_MANAGER_FAILED
  33502. //
  33503. // MessageText:
  33504. //
  33505. // The execution of the Rules Manager failed.
  33506. //
  33507. const auto PLA_E_RULES_MANAGER_FAILED = 0x80300112;
  33508. //
  33509. // MessageId: PLA_E_CABAPI_FAILURE
  33510. //
  33511. // MessageText:
  33512. //
  33513. // An error occured while attemption to compress or extract the data.
  33514. //
  33515. const auto PLA_E_CABAPI_FAILURE = 0x80300113;
  33516. //
  33517. // =======================================================
  33518. // Full Volume Encryption Error Messages
  33519. // =======================================================
  33520. //
  33521. //
  33522. // MessageId: FVE_E_LOCKED_VOLUME
  33523. //
  33524. // MessageText:
  33525. //
  33526. // This volume is locked by BitLocker Drive Encryption. Return to the control panel to unlock volume.
  33527. //
  33528. const auto FVE_E_LOCKED_VOLUME = 0x80310000;
  33529. //
  33530. // MessageId: FVE_E_NOT_ENCRYPTED
  33531. //
  33532. // MessageText:
  33533. //
  33534. // The volume is not encrypted, no key is available.
  33535. //
  33536. const auto FVE_E_NOT_ENCRYPTED = 0x80310001;
  33537. //
  33538. // MessageId: FVE_E_NO_TPM_BIOS
  33539. //
  33540. // MessageText:
  33541. //
  33542. // The BIOS did not correctly communicate with the TPM. Contact the computer manufacturer for BIOS upgrade instructions.
  33543. //
  33544. const auto FVE_E_NO_TPM_BIOS = 0x80310002;
  33545. //
  33546. // MessageId: FVE_E_NO_MBR_METRIC
  33547. //
  33548. // MessageText:
  33549. //
  33550. // The BIOS did not correctly communicate with the Master Boot Record (MBR). Contact the computer manufacturer for BIOS upgrade instructions.
  33551. //
  33552. const auto FVE_E_NO_MBR_METRIC = 0x80310003;
  33553. //
  33554. // MessageId: FVE_E_NO_BOOTSECTOR_METRIC
  33555. //
  33556. // MessageText:
  33557. //
  33558. // If there is a bootable CD or DVD in your computer, remove it, restart the computer and turn on BitLocker again. If the problem persists contact the computer manufacturer for BIOS upgrade instructions.
  33559. //
  33560. const auto FVE_E_NO_BOOTSECTOR_METRIC = 0x80310004;
  33561. //
  33562. // MessageId: FVE_E_NO_BOOTMGR_METRIC
  33563. //
  33564. // MessageText:
  33565. //
  33566. // You have an incompatible boot sector. Update the boot manager (BOOTMGR).
  33567. //
  33568. const auto FVE_E_NO_BOOTMGR_METRIC = 0x80310005;
  33569. //
  33570. // MessageId: FVE_E_WRONG_BOOTMGR
  33571. //
  33572. // MessageText:
  33573. //
  33574. // You have an incompatible boot manager. Update the boot manager (BOOTMGR).
  33575. //
  33576. const auto FVE_E_WRONG_BOOTMGR = 0x80310006;
  33577. //
  33578. // MessageId: FVE_E_SECURE_KEY_REQUIRED
  33579. //
  33580. // MessageText:
  33581. //
  33582. // No secure key protector has been defined.
  33583. //
  33584. const auto FVE_E_SECURE_KEY_REQUIRED = 0x80310007;
  33585. //
  33586. // MessageId: FVE_E_NOT_ACTIVATED
  33587. //
  33588. // MessageText:
  33589. //
  33590. // BitLocker Drive Encryption is not enabled on this volume. Turn on BitLocker.
  33591. //
  33592. const auto FVE_E_NOT_ACTIVATED = 0x80310008;
  33593. //
  33594. // MessageId: FVE_E_ACTION_NOT_ALLOWED
  33595. //
  33596. // MessageText:
  33597. //
  33598. // BitLocker Drive Encryption could not perform requested action. This condition may occur when two requests are issued at the same time.
  33599. //
  33600. const auto FVE_E_ACTION_NOT_ALLOWED = 0x80310009;
  33601. //
  33602. // MessageId: FVE_E_AD_SCHEMA_NOT_INSTALLED
  33603. //
  33604. // MessageText:
  33605. //
  33606. // The Active Directory Domain Services forest does not contain the required attributes and classes to host BitLocker Drive Encryption or Trusted Platform Module information.
  33607. //
  33608. const auto FVE_E_AD_SCHEMA_NOT_INSTALLED = 0x8031000A;
  33609. //
  33610. // MessageId: FVE_E_AD_INVALID_DATATYPE
  33611. //
  33612. // MessageText:
  33613. //
  33614. // The type of the data obtained from Active Directory was not expected.
  33615. //
  33616. const auto FVE_E_AD_INVALID_DATATYPE = 0x8031000B;
  33617. //
  33618. // MessageId: FVE_E_AD_INVALID_DATASIZE
  33619. //
  33620. // MessageText:
  33621. //
  33622. // The size of the data obtained from Active Directory was not expected.
  33623. //
  33624. const auto FVE_E_AD_INVALID_DATASIZE = 0x8031000C;
  33625. //
  33626. // MessageId: FVE_E_AD_NO_VALUES
  33627. //
  33628. // MessageText:
  33629. //
  33630. // The attribute read from Active Directory has no (zero) values.
  33631. //
  33632. const auto FVE_E_AD_NO_VALUES = 0x8031000D;
  33633. //
  33634. // MessageId: FVE_E_AD_ATTR_NOT_SET
  33635. //
  33636. // MessageText:
  33637. //
  33638. // The attribute was not set.
  33639. //
  33640. const auto FVE_E_AD_ATTR_NOT_SET = 0x8031000E;
  33641. //
  33642. // MessageId: FVE_E_AD_GUID_NOT_FOUND
  33643. //
  33644. // MessageText:
  33645. //
  33646. // The specified GUID could not be found.
  33647. //
  33648. const auto FVE_E_AD_GUID_NOT_FOUND = 0x8031000F;
  33649. //
  33650. // MessageId: FVE_E_BAD_INFORMATION
  33651. //
  33652. // MessageText:
  33653. //
  33654. // The control block for the encrypted volume is not valid.
  33655. //
  33656. const auto FVE_E_BAD_INFORMATION = 0x80310010;
  33657. //
  33658. // MessageId: FVE_E_TOO_SMALL
  33659. //
  33660. // MessageText:
  33661. //
  33662. // The volume cannot be encrypted because it does not have enough free space.
  33663. //
  33664. const auto FVE_E_TOO_SMALL = 0x80310011;
  33665. //
  33666. // MessageId: FVE_E_SYSTEM_VOLUME
  33667. //
  33668. // MessageText:
  33669. //
  33670. // The volume cannot be encrypted because it contains system boot information.
  33671. //
  33672. const auto FVE_E_SYSTEM_VOLUME = 0x80310012;
  33673. //
  33674. // MessageId: FVE_E_FAILED_WRONG_FS
  33675. //
  33676. // MessageText:
  33677. //
  33678. // The volume cannot be encrypted because the file system is not supported.
  33679. //
  33680. const auto FVE_E_FAILED_WRONG_FS = 0x80310013;
  33681. //
  33682. // MessageId: FVE_E_FAILED_BAD_FS
  33683. //
  33684. // MessageText:
  33685. //
  33686. // The file system is corrupt. Run CHKDSK.
  33687. //
  33688. const auto FVE_E_FAILED_BAD_FS = 0x80310014;
  33689. //
  33690. // MessageId: FVE_E_NOT_SUPPORTED
  33691. //
  33692. // MessageText:
  33693. //
  33694. // This volume cannot be encrypted.
  33695. //
  33696. const auto FVE_E_NOT_SUPPORTED = 0x80310015;
  33697. //
  33698. // MessageId: FVE_E_BAD_DATA
  33699. //
  33700. // MessageText:
  33701. //
  33702. // Data supplied is malformed.
  33703. //
  33704. const auto FVE_E_BAD_DATA = 0x80310016;
  33705. //
  33706. // MessageId: FVE_E_VOLUME_NOT_BOUND
  33707. //
  33708. // MessageText:
  33709. //
  33710. // Volume is not bound to the system.
  33711. //
  33712. const auto FVE_E_VOLUME_NOT_BOUND = 0x80310017;
  33713. //
  33714. // MessageId: FVE_E_TPM_NOT_OWNED
  33715. //
  33716. // MessageText:
  33717. //
  33718. // You must take ownership of the Trusted Platform Module (TPM).
  33719. //
  33720. const auto FVE_E_TPM_NOT_OWNED = 0x80310018;
  33721. //
  33722. // MessageId: FVE_E_NOT_DATA_VOLUME
  33723. //
  33724. // MessageText:
  33725. //
  33726. // The volume specified is not a data volume.
  33727. //
  33728. const auto FVE_E_NOT_DATA_VOLUME = 0x80310019;
  33729. //
  33730. // MessageId: FVE_E_AD_INSUFFICIENT_BUFFER
  33731. //
  33732. // MessageText:
  33733. //
  33734. // The buffer supplied to a function was insufficient to contain the returned data.
  33735. //
  33736. const auto FVE_E_AD_INSUFFICIENT_BUFFER = 0x8031001A;
  33737. //
  33738. // MessageId: FVE_E_CONV_READ
  33739. //
  33740. // MessageText:
  33741. //
  33742. // A read operation failed while converting the volume.
  33743. //
  33744. const auto FVE_E_CONV_READ = 0x8031001B;
  33745. //
  33746. // MessageId: FVE_E_CONV_WRITE
  33747. //
  33748. // MessageText:
  33749. //
  33750. // A write operation failed while converting the volume.
  33751. //
  33752. const auto FVE_E_CONV_WRITE = 0x8031001C;
  33753. //
  33754. // MessageId: FVE_E_KEY_REQUIRED
  33755. //
  33756. // MessageText:
  33757. //
  33758. // One or more key protectors are required for this volume.
  33759. //
  33760. const auto FVE_E_KEY_REQUIRED = 0x8031001D;
  33761. //
  33762. // MessageId: FVE_E_CLUSTERING_NOT_SUPPORTED
  33763. //
  33764. // MessageText:
  33765. //
  33766. // Cluster configurations are not supported.
  33767. //
  33768. const auto FVE_E_CLUSTERING_NOT_SUPPORTED = 0x8031001E;
  33769. //
  33770. // MessageId: FVE_E_VOLUME_BOUND_ALREADY
  33771. //
  33772. // MessageText:
  33773. //
  33774. // The volume is already bound to the system.
  33775. //
  33776. const auto FVE_E_VOLUME_BOUND_ALREADY = 0x8031001F;
  33777. //
  33778. // MessageId: FVE_E_OS_NOT_PROTECTED
  33779. //
  33780. // MessageText:
  33781. //
  33782. // The operating system volume is not protected by BitLocker Drive Encryption.
  33783. //
  33784. const auto FVE_E_OS_NOT_PROTECTED = 0x80310020;
  33785. //
  33786. // MessageId: FVE_E_PROTECTION_DISABLED
  33787. //
  33788. // MessageText:
  33789. //
  33790. // All protectors are effectively disabled (clear key exists).
  33791. //
  33792. const auto FVE_E_PROTECTION_DISABLED = 0x80310021;
  33793. //
  33794. // MessageId: FVE_E_RECOVERY_KEY_REQUIRED
  33795. //
  33796. // MessageText:
  33797. //
  33798. // A recovery key protector is required.
  33799. //
  33800. const auto FVE_E_RECOVERY_KEY_REQUIRED = 0x80310022;
  33801. //
  33802. // MessageId: FVE_E_FOREIGN_VOLUME
  33803. //
  33804. // MessageText:
  33805. //
  33806. // This volume cannot be bound to a TPM.
  33807. //
  33808. const auto FVE_E_FOREIGN_VOLUME = 0x80310023;
  33809. //
  33810. // MessageId: FVE_E_OVERLAPPED_UPDATE
  33811. //
  33812. // MessageText:
  33813. //
  33814. // The control block for the encrypted volume was updated by another thread. Try again.
  33815. //
  33816. const auto FVE_E_OVERLAPPED_UPDATE = 0x80310024;
  33817. //
  33818. // MessageId: FVE_E_TPM_SRK_AUTH_NOT_ZERO
  33819. //
  33820. // MessageText:
  33821. //
  33822. // The authorization data for the Storage Root Key (SRK) of the Trusted Platform Module (TPM) is not zero and is therefore incompatible with BitLocker.
  33823. //
  33824. const auto FVE_E_TPM_SRK_AUTH_NOT_ZERO = 0x80310025;
  33825. //
  33826. // MessageId: FVE_E_FAILED_SECTOR_SIZE
  33827. //
  33828. // MessageText:
  33829. //
  33830. // The volume encryption algorithm cannot be used on this sector size.
  33831. //
  33832. const auto FVE_E_FAILED_SECTOR_SIZE = 0x80310026;
  33833. //
  33834. // MessageId: FVE_E_FAILED_AUTHENTICATION
  33835. //
  33836. // MessageText:
  33837. //
  33838. // The recovery information provided does not match required recovery information to unlock the volume. Confirm the information and try again.
  33839. //
  33840. const auto FVE_E_FAILED_AUTHENTICATION = 0x80310027;
  33841. //
  33842. // MessageId: FVE_E_NOT_OS_VOLUME
  33843. //
  33844. // MessageText:
  33845. //
  33846. // The volume specified is not the operating system volume.
  33847. //
  33848. const auto FVE_E_NOT_OS_VOLUME = 0x80310028;
  33849. //
  33850. // MessageId: FVE_E_AUTOUNLOCK_ENABLED
  33851. //
  33852. // MessageText:
  33853. //
  33854. // BitLocker Drive Encryption cannot be turned off. Please turn off the auto unlock on all other volumes before turning off BitLocker on the current volume.
  33855. //
  33856. const auto FVE_E_AUTOUNLOCK_ENABLED = 0x80310029;
  33857. //
  33858. // MessageId: FVE_E_WRONG_BOOTSECTOR
  33859. //
  33860. // MessageText:
  33861. //
  33862. // The system partition boot sector does not perform TPM measurements.
  33863. //
  33864. const auto FVE_E_WRONG_BOOTSECTOR = 0x8031002A;
  33865. //
  33866. // MessageId: FVE_E_WRONG_SYSTEM_FS
  33867. //
  33868. // MessageText:
  33869. //
  33870. // BitLocker requires the file system to be NTFS. Convert the volume to NTFS, then enable BitLocker.
  33871. //
  33872. const auto FVE_E_WRONG_SYSTEM_FS = 0x8031002B;
  33873. //
  33874. // MessageId: FVE_E_POLICY_PASSWORD_REQUIRED
  33875. //
  33876. // MessageText:
  33877. //
  33878. // Group policy requires a recovery password before encryption may begin.
  33879. //
  33880. const auto FVE_E_POLICY_PASSWORD_REQUIRED = 0x8031002C;
  33881. //
  33882. // MessageId: FVE_E_CANNOT_SET_FVEK_ENCRYPTED
  33883. //
  33884. // MessageText:
  33885. //
  33886. // The volume encryption algorithm and key cannot be set on an encrypted volume.
  33887. //
  33888. const auto FVE_E_CANNOT_SET_FVEK_ENCRYPTED = 0x8031002D;
  33889. //
  33890. // MessageId: FVE_E_CANNOT_ENCRYPT_NO_KEY
  33891. //
  33892. // MessageText:
  33893. //
  33894. // A key must be specified before encryption may begin.
  33895. //
  33896. const auto FVE_E_CANNOT_ENCRYPT_NO_KEY = 0x8031002E;
  33897. //
  33898. // MessageId: FVE_E_BOOTABLE_CDDVD
  33899. //
  33900. // MessageText:
  33901. //
  33902. // BitLocker Drive Encryption detected bootable media (CD, DVD, or USB) in the computer. Remove the media and restart the computer.
  33903. //
  33904. const auto FVE_E_BOOTABLE_CDDVD = 0x80310030;
  33905. //
  33906. // MessageId: FVE_E_PROTECTOR_EXISTS
  33907. //
  33908. // MessageText:
  33909. //
  33910. // An instance of this key protector already exists on the volume.
  33911. //
  33912. const auto FVE_E_PROTECTOR_EXISTS = 0x80310031;
  33913. //
  33914. // MessageId: FVE_E_RELATIVE_PATH
  33915. //
  33916. // MessageText:
  33917. //
  33918. // The file cannot be saved to a relative path.
  33919. //
  33920. const auto FVE_E_RELATIVE_PATH = 0x80310032;
  33921. //
  33922. // MessageId: FVE_E_PROTECTOR_NOT_FOUND
  33923. //
  33924. // MessageText:
  33925. //
  33926. // The specified key protector was not found on the volume. Try another key protector.
  33927. //
  33928. const auto FVE_E_PROTECTOR_NOT_FOUND = 0x80310033;
  33929. //
  33930. // MessageId: FVE_E_INVALID_KEY_FORMAT
  33931. //
  33932. // MessageText:
  33933. //
  33934. // The recovery password file on the USB device is corrupt. Try another USB device.
  33935. //
  33936. const auto FVE_E_INVALID_KEY_FORMAT = 0x80310034;
  33937. //
  33938. // MessageId: FVE_E_INVALID_PASSWORD_FORMAT
  33939. //
  33940. // MessageText:
  33941. //
  33942. // The format of the recovery password file is invalid. Select another recovery password and try again.
  33943. //
  33944. const auto FVE_E_INVALID_PASSWORD_FORMAT = 0x80310035;
  33945. //
  33946. // MessageId: FVE_E_FIPS_RNG_CHECK_FAILED
  33947. //
  33948. // MessageText:
  33949. //
  33950. // The random number generator check test failed.
  33951. //
  33952. const auto FVE_E_FIPS_RNG_CHECK_FAILED = 0x80310036;
  33953. //
  33954. // MessageId: FVE_E_FIPS_PREVENTS_RECOVERY_PASSWORD
  33955. //
  33956. // MessageText:
  33957. //
  33958. // The group policy setting requiring FIPS compliance prevented the recovery password from being generated or used. Please contact your domain administrator for more information.
  33959. //
  33960. const auto FVE_E_FIPS_PREVENTS_RECOVERY_PASSWORD = 0x80310037;
  33961. //
  33962. // MessageId: FVE_E_FIPS_PREVENTS_EXTERNAL_KEY_EXPORT
  33963. //
  33964. // MessageText:
  33965. //
  33966. // The group policy setting requiring FIPS compliance prevented the recovery password from being saved. Please contact your domain administrator for more information.
  33967. //
  33968. const auto FVE_E_FIPS_PREVENTS_EXTERNAL_KEY_EXPORT = 0x80310038;
  33969. //
  33970. // MessageId: FVE_E_NOT_DECRYPTED
  33971. //
  33972. // MessageText:
  33973. //
  33974. // The volume must be fully decrypted to complete this operation.
  33975. //
  33976. const auto FVE_E_NOT_DECRYPTED = 0x80310039;
  33977. //
  33978. // MessageId: FVE_E_INVALID_PROTECTOR_TYPE
  33979. //
  33980. // MessageText:
  33981. //
  33982. // The specified key protector is not of the correct type.
  33983. //
  33984. const auto FVE_E_INVALID_PROTECTOR_TYPE = 0x8031003A;
  33985. //
  33986. // MessageId: FVE_E_NO_PROTECTORS_TO_TEST
  33987. //
  33988. // MessageText:
  33989. //
  33990. // No TPM protectors exist on the volume to perform the hardware test.
  33991. //
  33992. const auto FVE_E_NO_PROTECTORS_TO_TEST = 0x8031003B;
  33993. //
  33994. // MessageId: FVE_E_KEYFILE_NOT_FOUND
  33995. //
  33996. // MessageText:
  33997. //
  33998. // The BitLocker startup key or recovery password could not be read from the USB device. Ensure the USB device is plugged into the computer, then turn on BitLocker and try again. If the problem persists contact the computer manufacturer for BIOS upgrade instructions.
  33999. //
  34000. const auto FVE_E_KEYFILE_NOT_FOUND = 0x8031003C;
  34001. //
  34002. // MessageId: FVE_E_KEYFILE_INVALID
  34003. //
  34004. // MessageText:
  34005. //
  34006. // The BitLocker startup key or recovery password file is corrupt or invalid.
  34007. //
  34008. const auto FVE_E_KEYFILE_INVALID = 0x8031003D;
  34009. //
  34010. // MessageId: FVE_E_KEYFILE_NO_VMK
  34011. //
  34012. // MessageText:
  34013. //
  34014. // The BitLocker encryption key could not be obtained from the startup key or recovery password.
  34015. //
  34016. const auto FVE_E_KEYFILE_NO_VMK = 0x8031003E;
  34017. //
  34018. // MessageId: FVE_E_TPM_DISABLED
  34019. //
  34020. // MessageText:
  34021. //
  34022. // The Trusted Platform Module (TPM) is disabled.
  34023. //
  34024. const auto FVE_E_TPM_DISABLED = 0x8031003F;
  34025. //
  34026. // MessageId: FVE_E_NOT_ALLOWED_IN_SAFE_MODE
  34027. //
  34028. // MessageText:
  34029. //
  34030. // BitLocker Drive Encryption can only be used for recovery purposes in Safe-Mode.
  34031. //
  34032. const auto FVE_E_NOT_ALLOWED_IN_SAFE_MODE = 0x80310040;
  34033. //
  34034. // MessageId: FVE_E_TPM_INVALID_PCR
  34035. //
  34036. // MessageText:
  34037. //
  34038. // The Trusted Platform Module (TPM) was not able to unlock the volume because the system boot information changed.
  34039. //
  34040. const auto FVE_E_TPM_INVALID_PCR = 0x80310041;
  34041. //
  34042. // MessageId: FVE_E_TPM_NO_VMK
  34043. //
  34044. // MessageText:
  34045. //
  34046. // The BitLocker encryption key could not be obtained from the Trusted Platform Module (TPM).
  34047. //
  34048. const auto FVE_E_TPM_NO_VMK = 0x80310042;
  34049. //
  34050. // MessageId: FVE_E_PIN_INVALID
  34051. //
  34052. // MessageText:
  34053. //
  34054. // The BitLocker encryption key could not be obtained from the Trusted Platform Module (TPM) and PIN.
  34055. //
  34056. const auto FVE_E_PIN_INVALID = 0x80310043;
  34057. //
  34058. // MessageId: FVE_E_AUTH_INVALID_APPLICATION
  34059. //
  34060. // MessageText:
  34061. //
  34062. // A boot application has changed since BitLocker was enabled.
  34063. //
  34064. const auto FVE_E_AUTH_INVALID_APPLICATION = 0x80310044;
  34065. //
  34066. // MessageId: FVE_E_AUTH_INVALID_CONFIG
  34067. //
  34068. // MessageText:
  34069. //
  34070. // The Boot Configuration Data (BCD) settings have changed since BitLocker was enabled.
  34071. //
  34072. const auto FVE_E_AUTH_INVALID_CONFIG = 0x80310045;
  34073. //
  34074. // MessageId: FVE_E_FIPS_DISABLE_PROTECTION_NOT_ALLOWED
  34075. //
  34076. // MessageText:
  34077. //
  34078. // The group policy setting requiring FIPS compliance prevented BitLocker from being disabled. Please contact your domain administrator for more information.
  34079. //
  34080. const auto FVE_E_FIPS_DISABLE_PROTECTION_NOT_ALLOWED = 0x80310046;
  34081. //
  34082. // MessageId: FVE_E_FS_NOT_EXTENDED
  34083. //
  34084. // MessageText:
  34085. //
  34086. // The file system does not extend to the end of the volume.
  34087. //
  34088. const auto FVE_E_FS_NOT_EXTENDED = 0x80310047;
  34089. //
  34090. // MessageId: FVE_E_FIRMWARE_TYPE_NOT_SUPPORTED
  34091. //
  34092. // MessageText:
  34093. //
  34094. // BitLocker Drive Encryption cannot be enabled on this computer. Contact the computer manufacturer for BIOS upgrade instructions.
  34095. //
  34096. const auto FVE_E_FIRMWARE_TYPE_NOT_SUPPORTED = 0x80310048;
  34097. //
  34098. // MessageId: FVE_E_NO_LICENSE
  34099. //
  34100. // MessageText:
  34101. //
  34102. // This Windows license does not support BitLocker Drive Encryption. To use BitLocker Drive Encryption, please upgrade your Windows license.
  34103. //
  34104. const auto FVE_E_NO_LICENSE = 0x80310049;
  34105. //
  34106. // MessageId: FVE_E_NOT_ON_STACK
  34107. //
  34108. // MessageText:
  34109. //
  34110. // Critical BitLocker Drive Encryption system files are not available. Use Windows Startup Repair to restore files.
  34111. //
  34112. const auto FVE_E_NOT_ON_STACK = 0x8031004A;
  34113. //
  34114. // MessageId: FVE_E_FS_MOUNTED
  34115. //
  34116. // MessageText:
  34117. //
  34118. // This operation cannot be performed while the volume is in use.
  34119. //
  34120. const auto FVE_E_FS_MOUNTED = 0x8031004B;
  34121. //
  34122. // MessageId: FVE_E_TOKEN_NOT_IMPERSONATED
  34123. //
  34124. // MessageText:
  34125. //
  34126. // The access token associated with the current thread is not an impersonated token.
  34127. //
  34128. const auto FVE_E_TOKEN_NOT_IMPERSONATED = 0x8031004C;
  34129. //
  34130. // MessageId: FVE_E_DRY_RUN_FAILED
  34131. //
  34132. // MessageText:
  34133. //
  34134. // The BitLocker encryption key could not be obtained.
  34135. //
  34136. const auto FVE_E_DRY_RUN_FAILED = 0x8031004D;
  34137. //
  34138. // MessageId: FVE_E_REBOOT_REQUIRED
  34139. //
  34140. // MessageText:
  34141. //
  34142. // No action was taken as a system reboot is required.
  34143. //
  34144. const auto FVE_E_REBOOT_REQUIRED = 0x8031004E;
  34145. //
  34146. // MessageId: FVE_E_DEBUGGER_ENABLED
  34147. //
  34148. // MessageText:
  34149. //
  34150. // Boot debugging is enabled. Run bcdedit to turn it off.
  34151. //
  34152. const auto FVE_E_DEBUGGER_ENABLED = 0x8031004F;
  34153. //
  34154. // MessageId: FVE_E_RAW_ACCESS
  34155. //
  34156. // MessageText:
  34157. //
  34158. // No action was taken as BitLocker Drive Encryption is in raw access mode.
  34159. //
  34160. const auto FVE_E_RAW_ACCESS = 0x80310050;
  34161. //
  34162. // MessageId: FVE_E_RAW_BLOCKED
  34163. //
  34164. // MessageText:
  34165. //
  34166. // BitLocker Drive Encryption cannot enter raw access mode for this volume.
  34167. //
  34168. const auto FVE_E_RAW_BLOCKED = 0x80310051;
  34169. //
  34170. // MessageId: FVE_E_BCD_APPLICATIONS_PATH_INCORRECT
  34171. //
  34172. // MessageText:
  34173. //
  34174. // The path specified in the Boot Configuration Data (BCD) for a BitLocker Drive Encryption integrity-protected application is incorrect. Please verify and correct your BCD settings and try again.
  34175. //
  34176. const auto FVE_E_BCD_APPLICATIONS_PATH_INCORRECT = 0x80310052;
  34177. //
  34178. // MessageId: FVE_E_NOT_ALLOWED_IN_VERSION
  34179. //
  34180. // MessageText:
  34181. //
  34182. // BitLocker Drive Encryption can only be used for recovery purposes in this version of Windows.
  34183. //
  34184. const auto FVE_E_NOT_ALLOWED_IN_VERSION = 0x80310053;
  34185. //
  34186. // =======================================================
  34187. // Windows Filtering Platform Error Messages
  34188. // =======================================================
  34189. //
  34190. //
  34191. // MessageId: FWP_E_CALLOUT_NOT_FOUND
  34192. //
  34193. // MessageText:
  34194. //
  34195. // The callout does not exist.
  34196. //
  34197. const auto FWP_E_CALLOUT_NOT_FOUND = 0x80320001;
  34198. //
  34199. // MessageId: FWP_E_CONDITION_NOT_FOUND
  34200. //
  34201. // MessageText:
  34202. //
  34203. // The filter condition does not exist.
  34204. //
  34205. const auto FWP_E_CONDITION_NOT_FOUND = 0x80320002;
  34206. //
  34207. // MessageId: FWP_E_FILTER_NOT_FOUND
  34208. //
  34209. // MessageText:
  34210. //
  34211. // The filter does not exist.
  34212. //
  34213. const auto FWP_E_FILTER_NOT_FOUND = 0x80320003;
  34214. //
  34215. // MessageId: FWP_E_LAYER_NOT_FOUND
  34216. //
  34217. // MessageText:
  34218. //
  34219. // The layer does not exist.
  34220. //
  34221. const auto FWP_E_LAYER_NOT_FOUND = 0x80320004;
  34222. //
  34223. // MessageId: FWP_E_PROVIDER_NOT_FOUND
  34224. //
  34225. // MessageText:
  34226. //
  34227. // The provider does not exist.
  34228. //
  34229. const auto FWP_E_PROVIDER_NOT_FOUND = 0x80320005;
  34230. //
  34231. // MessageId: FWP_E_PROVIDER_CONTEXT_NOT_FOUND
  34232. //
  34233. // MessageText:
  34234. //
  34235. // The provider context does not exist.
  34236. //
  34237. const auto FWP_E_PROVIDER_CONTEXT_NOT_FOUND = 0x80320006;
  34238. //
  34239. // MessageId: FWP_E_SUBLAYER_NOT_FOUND
  34240. //
  34241. // MessageText:
  34242. //
  34243. // The sublayer does not exist.
  34244. //
  34245. const auto FWP_E_SUBLAYER_NOT_FOUND = 0x80320007;
  34246. //
  34247. // MessageId: FWP_E_NOT_FOUND
  34248. //
  34249. // MessageText:
  34250. //
  34251. // The object does not exist.
  34252. //
  34253. const auto FWP_E_NOT_FOUND = 0x80320008;
  34254. //
  34255. // MessageId: FWP_E_ALREADY_EXISTS
  34256. //
  34257. // MessageText:
  34258. //
  34259. // An object with that GUID or LUID already exists.
  34260. //
  34261. const auto FWP_E_ALREADY_EXISTS = 0x80320009;
  34262. //
  34263. // MessageId: FWP_E_IN_USE
  34264. //
  34265. // MessageText:
  34266. //
  34267. // The object is referenced by other objects so cannot be deleted.
  34268. //
  34269. const auto FWP_E_IN_USE = 0x8032000A;
  34270. //
  34271. // MessageId: FWP_E_DYNAMIC_SESSION_IN_PROGRESS
  34272. //
  34273. // MessageText:
  34274. //
  34275. // The call is not allowed from within a dynamic session.
  34276. //
  34277. const auto FWP_E_DYNAMIC_SESSION_IN_PROGRESS = 0x8032000B;
  34278. //
  34279. // MessageId: FWP_E_WRONG_SESSION
  34280. //
  34281. // MessageText:
  34282. //
  34283. // The call was made from the wrong session so cannot be completed.
  34284. //
  34285. const auto FWP_E_WRONG_SESSION = 0x8032000C;
  34286. //
  34287. // MessageId: FWP_E_NO_TXN_IN_PROGRESS
  34288. //
  34289. // MessageText:
  34290. //
  34291. // The call must be made from within an explicit transaction.
  34292. //
  34293. const auto FWP_E_NO_TXN_IN_PROGRESS = 0x8032000D;
  34294. //
  34295. // MessageId: FWP_E_TXN_IN_PROGRESS
  34296. //
  34297. // MessageText:
  34298. //
  34299. // The call is not allowed from within an explicit transaction.
  34300. //
  34301. const auto FWP_E_TXN_IN_PROGRESS = 0x8032000E;
  34302. //
  34303. // MessageId: FWP_E_TXN_ABORTED
  34304. //
  34305. // MessageText:
  34306. //
  34307. // The explicit transaction has been forcibly cancelled.
  34308. //
  34309. const auto FWP_E_TXN_ABORTED = 0x8032000F;
  34310. //
  34311. // MessageId: FWP_E_SESSION_ABORTED
  34312. //
  34313. // MessageText:
  34314. //
  34315. // The session has been cancelled.
  34316. //
  34317. const auto FWP_E_SESSION_ABORTED = 0x80320010;
  34318. //
  34319. // MessageId: FWP_E_INCOMPATIBLE_TXN
  34320. //
  34321. // MessageText:
  34322. //
  34323. // The call is not allowed from within a read-only transaction.
  34324. //
  34325. const auto FWP_E_INCOMPATIBLE_TXN = 0x80320011;
  34326. //
  34327. // MessageId: FWP_E_TIMEOUT
  34328. //
  34329. // MessageText:
  34330. //
  34331. // The call timed out while waiting to acquire the transaction lock.
  34332. //
  34333. const auto FWP_E_TIMEOUT = 0x80320012;
  34334. //
  34335. // MessageId: FWP_E_NET_EVENTS_DISABLED
  34336. //
  34337. // MessageText:
  34338. //
  34339. // Collection of network diagnostic events is disabled.
  34340. //
  34341. const auto FWP_E_NET_EVENTS_DISABLED = 0x80320013;
  34342. //
  34343. // MessageId: FWP_E_INCOMPATIBLE_LAYER
  34344. //
  34345. // MessageText:
  34346. //
  34347. // The operation is not supported by the specified layer.
  34348. //
  34349. const auto FWP_E_INCOMPATIBLE_LAYER = 0x80320014;
  34350. //
  34351. // MessageId: FWP_E_KM_CLIENTS_ONLY
  34352. //
  34353. // MessageText:
  34354. //
  34355. // The call is allowed for kernel-mode callers only.
  34356. //
  34357. const auto FWP_E_KM_CLIENTS_ONLY = 0x80320015;
  34358. //
  34359. // MessageId: FWP_E_LIFETIME_MISMATCH
  34360. //
  34361. // MessageText:
  34362. //
  34363. // The call tried to associate two objects with incompatible lifetimes.
  34364. //
  34365. const auto FWP_E_LIFETIME_MISMATCH = 0x80320016;
  34366. //
  34367. // MessageId: FWP_E_BUILTIN_OBJECT
  34368. //
  34369. // MessageText:
  34370. //
  34371. // The object is built in so cannot be deleted.
  34372. //
  34373. const auto FWP_E_BUILTIN_OBJECT = 0x80320017;
  34374. //
  34375. // MessageId: FWP_E_TOO_MANY_CALLOUTS
  34376. //
  34377. // MessageText:
  34378. //
  34379. // The maximum number of callouts has been reached.
  34380. //
  34381. const auto FWP_E_TOO_MANY_CALLOUTS = 0x80320018;
  34382. //
  34383. // MessageId: FWP_E_NOTIFICATION_DROPPED
  34384. //
  34385. // MessageText:
  34386. //
  34387. // A notification could not be delivered because a message queue is at its maximum capacity.
  34388. //
  34389. const auto FWP_E_NOTIFICATION_DROPPED = 0x80320019;
  34390. //
  34391. // MessageId: FWP_E_TRAFFIC_MISMATCH
  34392. //
  34393. // MessageText:
  34394. //
  34395. // The traffic parameters do not match those for the security association context.
  34396. //
  34397. const auto FWP_E_TRAFFIC_MISMATCH = 0x8032001A;
  34398. //
  34399. // MessageId: FWP_E_INCOMPATIBLE_SA_STATE
  34400. //
  34401. // MessageText:
  34402. //
  34403. // The call is not allowed for the current security association state.
  34404. //
  34405. const auto FWP_E_INCOMPATIBLE_SA_STATE = 0x8032001B;
  34406. //
  34407. // MessageId: FWP_E_NULL_POINTER
  34408. //
  34409. // MessageText:
  34410. //
  34411. // A required pointer is null.
  34412. //
  34413. const auto FWP_E_NULL_POINTER = 0x8032001C;
  34414. //
  34415. // MessageId: FWP_E_INVALID_ENUMERATOR
  34416. //
  34417. // MessageText:
  34418. //
  34419. // An enumerator is not valid.
  34420. //
  34421. const auto FWP_E_INVALID_ENUMERATOR = 0x8032001D;
  34422. //
  34423. // MessageId: FWP_E_INVALID_FLAGS
  34424. //
  34425. // MessageText:
  34426. //
  34427. // The flags field contains an invalid value.
  34428. //
  34429. const auto FWP_E_INVALID_FLAGS = 0x8032001E;
  34430. //
  34431. // MessageId: FWP_E_INVALID_NET_MASK
  34432. //
  34433. // MessageText:
  34434. //
  34435. // A network mask is not valid.
  34436. //
  34437. const auto FWP_E_INVALID_NET_MASK = 0x8032001F;
  34438. //
  34439. // MessageId: FWP_E_INVALID_RANGE
  34440. //
  34441. // MessageText:
  34442. //
  34443. // An FWP_RANGE is not valid.
  34444. //
  34445. const auto FWP_E_INVALID_RANGE = 0x80320020;
  34446. //
  34447. // MessageId: FWP_E_INVALID_INTERVAL
  34448. //
  34449. // MessageText:
  34450. //
  34451. // The time interval is not valid.
  34452. //
  34453. const auto FWP_E_INVALID_INTERVAL = 0x80320021;
  34454. //
  34455. // MessageId: FWP_E_ZERO_LENGTH_ARRAY
  34456. //
  34457. // MessageText:
  34458. //
  34459. // An array that must contain at least one element is zero length.
  34460. //
  34461. const auto FWP_E_ZERO_LENGTH_ARRAY = 0x80320022;
  34462. //
  34463. // MessageId: FWP_E_NULL_DISPLAY_NAME
  34464. //
  34465. // MessageText:
  34466. //
  34467. // The displayData.name field cannot be null.
  34468. //
  34469. const auto FWP_E_NULL_DISPLAY_NAME = 0x80320023;
  34470. //
  34471. // MessageId: FWP_E_INVALID_ACTION_TYPE
  34472. //
  34473. // MessageText:
  34474. //
  34475. // The action type is not one of the allowed action types for a filter.
  34476. //
  34477. const auto FWP_E_INVALID_ACTION_TYPE = 0x80320024;
  34478. //
  34479. // MessageId: FWP_E_INVALID_WEIGHT
  34480. //
  34481. // MessageText:
  34482. //
  34483. // The filter weight is not valid.
  34484. //
  34485. const auto FWP_E_INVALID_WEIGHT = 0x80320025;
  34486. //
  34487. // MessageId: FWP_E_MATCH_TYPE_MISMATCH
  34488. //
  34489. // MessageText:
  34490. //
  34491. // A filter condition contains a match type that is not compatible with the operands.
  34492. //
  34493. const auto FWP_E_MATCH_TYPE_MISMATCH = 0x80320026;
  34494. //
  34495. // MessageId: FWP_E_TYPE_MISMATCH
  34496. //
  34497. // MessageText:
  34498. //
  34499. // An FWP_VALUE or FWPM_CONDITION_VALUE is of the wrong type.
  34500. //
  34501. const auto FWP_E_TYPE_MISMATCH = 0x80320027;
  34502. //
  34503. // MessageId: FWP_E_OUT_OF_BOUNDS
  34504. //
  34505. // MessageText:
  34506. //
  34507. // An integer value is outside the allowed range.
  34508. //
  34509. const auto FWP_E_OUT_OF_BOUNDS = 0x80320028;
  34510. //
  34511. // MessageId: FWP_E_RESERVED
  34512. //
  34513. // MessageText:
  34514. //
  34515. // A reserved field is non-zero.
  34516. //
  34517. const auto FWP_E_RESERVED = 0x80320029;
  34518. //
  34519. // MessageId: FWP_E_DUPLICATE_CONDITION
  34520. //
  34521. // MessageText:
  34522. //
  34523. // A filter cannot contain multiple conditions operating on a single field.
  34524. //
  34525. const auto FWP_E_DUPLICATE_CONDITION = 0x8032002A;
  34526. //
  34527. // MessageId: FWP_E_DUPLICATE_KEYMOD
  34528. //
  34529. // MessageText:
  34530. //
  34531. // A policy cannot contain the same keying module more than once.
  34532. //
  34533. const auto FWP_E_DUPLICATE_KEYMOD = 0x8032002B;
  34534. //
  34535. // MessageId: FWP_E_ACTION_INCOMPATIBLE_WITH_LAYER
  34536. //
  34537. // MessageText:
  34538. //
  34539. // The action type is not compatible with the layer.
  34540. //
  34541. const auto FWP_E_ACTION_INCOMPATIBLE_WITH_LAYER = 0x8032002C;
  34542. //
  34543. // MessageId: FWP_E_ACTION_INCOMPATIBLE_WITH_SUBLAYER
  34544. //
  34545. // MessageText:
  34546. //
  34547. // The action type is not compatible with the sublayer.
  34548. //
  34549. const auto FWP_E_ACTION_INCOMPATIBLE_WITH_SUBLAYER = 0x8032002D;
  34550. //
  34551. // MessageId: FWP_E_CONTEXT_INCOMPATIBLE_WITH_LAYER
  34552. //
  34553. // MessageText:
  34554. //
  34555. // The raw context or the provider context is not compatible with the layer.
  34556. //
  34557. const auto FWP_E_CONTEXT_INCOMPATIBLE_WITH_LAYER = 0x8032002E;
  34558. //
  34559. // MessageId: FWP_E_CONTEXT_INCOMPATIBLE_WITH_CALLOUT
  34560. //
  34561. // MessageText:
  34562. //
  34563. // The raw context or the provider context is not compatible with the callout.
  34564. //
  34565. const auto FWP_E_CONTEXT_INCOMPATIBLE_WITH_CALLOUT = 0x8032002F;
  34566. //
  34567. // MessageId: FWP_E_INCOMPATIBLE_AUTH_METHOD
  34568. //
  34569. // MessageText:
  34570. //
  34571. // The authentication method is not compatible with the policy type.
  34572. //
  34573. const auto FWP_E_INCOMPATIBLE_AUTH_METHOD = 0x80320030;
  34574. //
  34575. // MessageId: FWP_E_INCOMPATIBLE_DH_GROUP
  34576. //
  34577. // MessageText:
  34578. //
  34579. // The Diffie-Hellman group is not compatible with the policy type.
  34580. //
  34581. const auto FWP_E_INCOMPATIBLE_DH_GROUP = 0x80320031;
  34582. //
  34583. // MessageId: FWP_E_EM_NOT_SUPPORTED
  34584. //
  34585. // MessageText:
  34586. //
  34587. // An IKE policy cannot contain an Extended Mode policy.
  34588. //
  34589. const auto FWP_E_EM_NOT_SUPPORTED = 0x80320032;
  34590. //
  34591. // MessageId: FWP_E_NEVER_MATCH
  34592. //
  34593. // MessageText:
  34594. //
  34595. // The enumeration template or subscription will never match any objects.
  34596. //
  34597. const auto FWP_E_NEVER_MATCH = 0x80320033;
  34598. //
  34599. // MessageId: FWP_E_PROVIDER_CONTEXT_MISMATCH
  34600. //
  34601. // MessageText:
  34602. //
  34603. // The provider context is of the wrong type.
  34604. //
  34605. const auto FWP_E_PROVIDER_CONTEXT_MISMATCH = 0x80320034;
  34606. //
  34607. // MessageId: FWP_E_INVALID_PARAMETER
  34608. //
  34609. // MessageText:
  34610. //
  34611. // The parameter is incorrect.
  34612. //
  34613. const auto FWP_E_INVALID_PARAMETER = 0x80320035;
  34614. //
  34615. // MessageId: FWP_E_TOO_MANY_SUBLAYERS
  34616. //
  34617. // MessageText:
  34618. //
  34619. // The maximum number of sublayers has been reached.
  34620. //
  34621. const auto FWP_E_TOO_MANY_SUBLAYERS = 0x80320036;
  34622. //
  34623. // MessageId: FWP_E_CALLOUT_NOTIFICATION_FAILED
  34624. //
  34625. // MessageText:
  34626. //
  34627. // The notification function for a callout returned an error.
  34628. //
  34629. const auto FWP_E_CALLOUT_NOTIFICATION_FAILED = 0x80320037;
  34630. //
  34631. // MessageId: FWP_E_INVALID_AUTH_TRANSFORM
  34632. //
  34633. // MessageText:
  34634. //
  34635. // The IPsec authentication transform is not valid.
  34636. //
  34637. const auto FWP_E_INVALID_AUTH_TRANSFORM = 0x80320038;
  34638. //
  34639. // MessageId: FWP_E_INVALID_CIPHER_TRANSFORM
  34640. //
  34641. // MessageText:
  34642. //
  34643. // The IPsec cipher transform is not valid.
  34644. //
  34645. const auto FWP_E_INVALID_CIPHER_TRANSFORM = 0x80320039;
  34646. //
  34647. // NDIS error codes (ndis.sys)
  34648. //
  34649. //
  34650. // MessageId: ERROR_NDIS_INTERFACE_CLOSING
  34651. //
  34652. // MessageText:
  34653. //
  34654. // The binding to the network interface is being closed.
  34655. //
  34656. const auto ERROR_NDIS_INTERFACE_CLOSING = 0x80340002;
  34657. //
  34658. // MessageId: ERROR_NDIS_BAD_VERSION
  34659. //
  34660. // MessageText:
  34661. //
  34662. // An invalid version was specified.
  34663. //
  34664. const auto ERROR_NDIS_BAD_VERSION = 0x80340004;
  34665. //
  34666. // MessageId: ERROR_NDIS_BAD_CHARACTERISTICS
  34667. //
  34668. // MessageText:
  34669. //
  34670. // An invalid characteristics table was used.
  34671. //
  34672. const auto ERROR_NDIS_BAD_CHARACTERISTICS = 0x80340005;
  34673. //
  34674. // MessageId: ERROR_NDIS_ADAPTER_NOT_FOUND
  34675. //
  34676. // MessageText:
  34677. //
  34678. // Failed to find the network interface or network interface is not ready.
  34679. //
  34680. const auto ERROR_NDIS_ADAPTER_NOT_FOUND = 0x80340006;
  34681. //
  34682. // MessageId: ERROR_NDIS_OPEN_FAILED
  34683. //
  34684. // MessageText:
  34685. //
  34686. // Failed to open the network interface.
  34687. //
  34688. const auto ERROR_NDIS_OPEN_FAILED = 0x80340007;
  34689. //
  34690. // MessageId: ERROR_NDIS_DEVICE_FAILED
  34691. //
  34692. // MessageText:
  34693. //
  34694. // Network interface has encountered an internal unrecoverable failure.
  34695. //
  34696. const auto ERROR_NDIS_DEVICE_FAILED = 0x80340008;
  34697. //
  34698. // MessageId: ERROR_NDIS_MULTICAST_FULL
  34699. //
  34700. // MessageText:
  34701. //
  34702. // The multicast list on the network interface is full.
  34703. //
  34704. const auto ERROR_NDIS_MULTICAST_FULL = 0x80340009;
  34705. //
  34706. // MessageId: ERROR_NDIS_MULTICAST_EXISTS
  34707. //
  34708. // MessageText:
  34709. //
  34710. // An attempt was made to add a duplicate multicast address to the list.
  34711. //
  34712. const auto ERROR_NDIS_MULTICAST_EXISTS = 0x8034000A;
  34713. //
  34714. // MessageId: ERROR_NDIS_MULTICAST_NOT_FOUND
  34715. //
  34716. // MessageText:
  34717. //
  34718. // At attempt was made to remove a multicast address that was never added.
  34719. //
  34720. const auto ERROR_NDIS_MULTICAST_NOT_FOUND = 0x8034000B;
  34721. //
  34722. // MessageId: ERROR_NDIS_REQUEST_ABORTED
  34723. //
  34724. // MessageText:
  34725. //
  34726. // Netowork interface aborted the request.
  34727. //
  34728. const auto ERROR_NDIS_REQUEST_ABORTED = 0x8034000C;
  34729. //
  34730. // MessageId: ERROR_NDIS_RESET_IN_PROGRESS
  34731. //
  34732. // MessageText:
  34733. //
  34734. // Network interface can not process the request because it is being reset.
  34735. //
  34736. const auto ERROR_NDIS_RESET_IN_PROGRESS = 0x8034000D;
  34737. //
  34738. // MessageId: ERROR_NDIS_NOT_SUPPORTED
  34739. //
  34740. // MessageText:
  34741. //
  34742. // Netword interface does not support this request.
  34743. //
  34744. const auto ERROR_NDIS_NOT_SUPPORTED = 0x803400BB;
  34745. //
  34746. // MessageId: ERROR_NDIS_INVALID_PACKET
  34747. //
  34748. // MessageText:
  34749. //
  34750. // An attempt was made to send an invalid packet on a network interface.
  34751. //
  34752. const auto ERROR_NDIS_INVALID_PACKET = 0x8034000F;
  34753. //
  34754. // MessageId: ERROR_NDIS_ADAPTER_NOT_READY
  34755. //
  34756. // MessageText:
  34757. //
  34758. // Network interface is not ready to complete this operation.
  34759. //
  34760. const auto ERROR_NDIS_ADAPTER_NOT_READY = 0x80340011;
  34761. //
  34762. // MessageId: ERROR_NDIS_INVALID_LENGTH
  34763. //
  34764. // MessageText:
  34765. //
  34766. // The length of the buffer submitted for this operation is not valid.
  34767. //
  34768. const auto ERROR_NDIS_INVALID_LENGTH = 0x80340014;
  34769. //
  34770. // MessageId: ERROR_NDIS_INVALID_DATA
  34771. //
  34772. // MessageText:
  34773. //
  34774. // The data used for this operation is not valid.
  34775. //
  34776. const auto ERROR_NDIS_INVALID_DATA = 0x80340015;
  34777. //
  34778. // MessageId: ERROR_NDIS_BUFFER_TOO_SHORT
  34779. //
  34780. // MessageText:
  34781. //
  34782. // The length of buffer submitted for this operation is too small.
  34783. //
  34784. const auto ERROR_NDIS_BUFFER_TOO_SHORT = 0x80340016;
  34785. //
  34786. // MessageId: ERROR_NDIS_INVALID_OID
  34787. //
  34788. // MessageText:
  34789. //
  34790. // Network interface does not support this OID (Object Identifier)
  34791. //
  34792. const auto ERROR_NDIS_INVALID_OID = 0x80340017;
  34793. //
  34794. // MessageId: ERROR_NDIS_ADAPTER_REMOVED
  34795. //
  34796. // MessageText:
  34797. //
  34798. // The network interface has been removed.
  34799. //
  34800. const auto ERROR_NDIS_ADAPTER_REMOVED = 0x80340018;
  34801. //
  34802. // MessageId: ERROR_NDIS_UNSUPPORTED_MEDIA
  34803. //
  34804. // MessageText:
  34805. //
  34806. // Network interface does not support this media type.
  34807. //
  34808. const auto ERROR_NDIS_UNSUPPORTED_MEDIA = 0x80340019;
  34809. //
  34810. // MessageId: ERROR_NDIS_GROUP_ADDRESS_IN_USE
  34811. //
  34812. // MessageText:
  34813. //
  34814. // An attempt was made to remove a token ring group address that is in use by other components.
  34815. //
  34816. const auto ERROR_NDIS_GROUP_ADDRESS_IN_USE = 0x8034001A;
  34817. //
  34818. // MessageId: ERROR_NDIS_FILE_NOT_FOUND
  34819. //
  34820. // MessageText:
  34821. //
  34822. // An attempt was made to map a file that can not be found.
  34823. //
  34824. const auto ERROR_NDIS_FILE_NOT_FOUND = 0x8034001B;
  34825. //
  34826. // MessageId: ERROR_NDIS_ERROR_READING_FILE
  34827. //
  34828. // MessageText:
  34829. //
  34830. // An error occured while NDIS tried to map the file.
  34831. //
  34832. const auto ERROR_NDIS_ERROR_READING_FILE = 0x8034001C;
  34833. //
  34834. // MessageId: ERROR_NDIS_ALREADY_MAPPED
  34835. //
  34836. // MessageText:
  34837. //
  34838. // An attempt was made to map a file that is alreay mapped.
  34839. //
  34840. const auto ERROR_NDIS_ALREADY_MAPPED = 0x8034001D;
  34841. //
  34842. // MessageId: ERROR_NDIS_RESOURCE_CONFLICT
  34843. //
  34844. // MessageText:
  34845. //
  34846. // An attempt to allocate a hardware resource failed because the resource is used by another component.
  34847. //
  34848. const auto ERROR_NDIS_RESOURCE_CONFLICT = 0x8034001E;
  34849. //
  34850. // MessageId: ERROR_NDIS_MEDIA_DISCONNECTED
  34851. //
  34852. // MessageText:
  34853. //
  34854. // The I/O operation failed because network media is disconnected or wireless access point is out of range.
  34855. //
  34856. const auto ERROR_NDIS_MEDIA_DISCONNECTED = 0x8034001F;
  34857. //
  34858. // MessageId: ERROR_NDIS_INVALID_ADDRESS
  34859. //
  34860. // MessageText:
  34861. //
  34862. // The network address used in the request is invalid.
  34863. //
  34864. const auto ERROR_NDIS_INVALID_ADDRESS = 0x80340022;
  34865. //
  34866. // MessageId: ERROR_NDIS_INVALID_DEVICE_REQUEST
  34867. //
  34868. // MessageText:
  34869. //
  34870. // The specified request is not a valid operation for the target device.
  34871. //
  34872. const auto ERROR_NDIS_INVALID_DEVICE_REQUEST = 0x80340010;
  34873. //
  34874. // MessageId: ERROR_NDIS_PAUSED
  34875. //
  34876. // MessageText:
  34877. //
  34878. // The offload operation on the network interface has been paused.
  34879. //
  34880. const auto ERROR_NDIS_PAUSED = 0x8034002A;
  34881. //
  34882. // MessageId: ERROR_NDIS_INTERFACE_NOT_FOUND
  34883. //
  34884. // MessageText:
  34885. //
  34886. // Network interface was not found.
  34887. //
  34888. const auto ERROR_NDIS_INTERFACE_NOT_FOUND = 0x8034002B;
  34889. //
  34890. // MessageId: ERROR_NDIS_UNSUPPORTED_REVISION
  34891. //
  34892. // MessageText:
  34893. //
  34894. // The revision number specified in the structure is not supported.
  34895. //
  34896. const auto ERROR_NDIS_UNSUPPORTED_REVISION = 0x8034002C;
  34897. //
  34898. // MessageId: ERROR_NDIS_INVALID_PORT
  34899. //
  34900. // MessageText:
  34901. //
  34902. // The specified port does not exist on this network interface.
  34903. //
  34904. const auto ERROR_NDIS_INVALID_PORT = 0x8034002D;
  34905. //
  34906. // MessageId: ERROR_NDIS_INVALID_PORT_STATE
  34907. //
  34908. // MessageText:
  34909. //
  34910. // The current state of the specified port on this network interface does not support the requested operation.
  34911. //
  34912. const auto ERROR_NDIS_INVALID_PORT_STATE = 0x8034002E;
  34913. //
  34914. // MessageId: ERROR_NDIS_LOW_POWER_STATE
  34915. //
  34916. // MessageText:
  34917. //
  34918. // The miniport adapter is in low power state.
  34919. //
  34920. const auto ERROR_NDIS_LOW_POWER_STATE = 0x8034002F;
  34921. //
  34922. // NDIS error codes (802.11 wireless LAN)
  34923. //
  34924. //
  34925. // MessageId: ERROR_NDIS_DOT11_AUTO_CONFIG_ENABLED
  34926. //
  34927. // MessageText:
  34928. //
  34929. // The wireless local area network interface is in auto configuration mode and doesn't support the requested parameter change operation.
  34930. //
  34931. const auto ERROR_NDIS_DOT11_AUTO_CONFIG_ENABLED = 0x80342000;
  34932. //
  34933. // MessageId: ERROR_NDIS_DOT11_MEDIA_IN_USE
  34934. //
  34935. // MessageText:
  34936. //
  34937. // The wireless local area network interface is busy and can not perform the requested operation.
  34938. //
  34939. const auto ERROR_NDIS_DOT11_MEDIA_IN_USE = 0x80342001;
  34940. //
  34941. // MessageId: ERROR_NDIS_DOT11_POWER_STATE_INVALID
  34942. //
  34943. // MessageText:
  34944. //
  34945. // The wireless local area network interface is power down and doesn't support the requested operation.
  34946. //
  34947. const auto ERROR_NDIS_DOT11_POWER_STATE_INVALID = 0x80342002;
  34948. //
  34949. // NDIS informational code (ndis.sys)
  34950. //
  34951. //
  34952. // MessageId: ERROR_NDIS_INDICATION_REQUIRED
  34953. //
  34954. // MessageText:
  34955. //
  34956. // The request will be completed later by NDIS status indication.
  34957. //
  34958. const auto ERROR_NDIS_INDICATION_REQUIRED = 0x00340001;