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

181 lines
3.9 KiB

  1. //
  2. // Values are 32 bit values layed out as follows:
  3. //
  4. // 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
  5. // 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
  6. // +---+-+-+-----------------------+-------------------------------+
  7. // |Sev|C|R| Facility | Code |
  8. // +---+-+-+-----------------------+-------------------------------+
  9. //
  10. // where
  11. //
  12. // Sev - is the severity code
  13. //
  14. // 00 - Success
  15. // 01 - Informational
  16. // 10 - Warning
  17. // 11 - Error
  18. //
  19. // C - is the Customer code flag
  20. //
  21. // R - is a reserved bit
  22. //
  23. // Facility - is the facility code
  24. //
  25. // Code - is the facility's status code
  26. //
  27. //
  28. // Define the facility codes
  29. //
  30. //
  31. // Define the severity codes
  32. //
  33. //
  34. // MessageId: IPP_E_FIRST
  35. //
  36. // MessageText:
  37. //
  38. // Internet Publishing Provider first error message
  39. //
  40. #define IPP_E_FIRST 0x40048000L
  41. //
  42. // MessageId: IPP_E_SYNCCONFLICT
  43. //
  44. // MessageText:
  45. //
  46. // The server resource has changed since the local copy on your computer was obtained.
  47. //
  48. #define IPP_E_SYNCCONFLICT 0xC0048003L
  49. //
  50. // MessageId: IPP_E_FILENOTDIRTY
  51. //
  52. // MessageText:
  53. //
  54. // The copy of the resource on your computer has not been modified since it was downloaded from the server.
  55. //
  56. #define IPP_E_FILENOTDIRTY 0xC0048004L
  57. //
  58. // MessageId: IPP_E_MARKFOROFFLINE_FAILED
  59. //
  60. // MessageText:
  61. //
  62. // The attempt to mark or unmark the resource for offline use failed.
  63. //
  64. #define IPP_E_MARKFOROFFLINE_FAILED 0xC0048006L
  65. //
  66. // MessageId: IPP_E_OFFLINE
  67. //
  68. // MessageText:
  69. //
  70. // The requested operation could not be completed because the resource is offline.
  71. //
  72. #define IPP_E_OFFLINE 0xC0048007L
  73. //
  74. // MessageId: IPP_E_UNSYNCHRONIZED
  75. //
  76. // MessageText:
  77. //
  78. // The requested operation could not be completed because the resource has been modified
  79. // on your computer but has not been synchronized with the server.
  80. //
  81. #define IPP_E_UNSYNCHRONIZED 0xC0048008L
  82. //
  83. // MessageId: IPP_E_SERVERTYPE_NOT_SUPPORTED
  84. //
  85. // MessageText:
  86. //
  87. // This server type is not currently supported.
  88. //
  89. #define IPP_E_SERVERTYPE_NOT_SUPPORTED 0xC004800AL
  90. //
  91. // MessageId: IPP_E_MDAC_VERSION
  92. //
  93. // MessageText:
  94. //
  95. // The Microsoft Data Access Components (MDAC) are either not present on this computer or are an old version. (MSDAIPP 1.0 requires MDAC 2.1)
  96. //
  97. #define IPP_E_MDAC_VERSION 0xC004800DL
  98. //
  99. // MessageId: IPP_E_COLLECTIONEXISTS
  100. //
  101. // MessageText:
  102. //
  103. // The move or copy operation failed because a collection with that name already exists.
  104. //
  105. #define IPP_E_COLLECTIONEXISTS 0xC004800EL
  106. //
  107. // MessageId: IPP_E_CANNOTCREATEOFFLINE
  108. //
  109. // MessageText:
  110. //
  111. // The requested resource could not be created because parent cache entry does not exist.
  112. //
  113. #define IPP_E_CANNOTCREATEOFFLINE 0xC004800FL
  114. //
  115. // MessageId: IPP_E_STATUS_CANNOTCOMPLETE
  116. //
  117. // MessageText:
  118. //
  119. // This is an internal MSDAIPP.DLL error.
  120. //
  121. #define IPP_E_STATUS_CANNOTCOMPLETE 0xC0048101L
  122. //
  123. // MessageId: IPP_E_RESELECTPROVIDER
  124. //
  125. // MessageText:
  126. //
  127. // This is an internal MSDAIPP.DLL error.
  128. //
  129. #define IPP_E_RESELECTPROVIDER 0xC0048102L
  130. //
  131. // MessageId: IPP_E_CLIENTMUSTEMULATE
  132. //
  133. // MessageText:
  134. //
  135. // This is an internal MSDAIPP.DLL error.
  136. //
  137. #define IPP_E_CLIENTMUSTEMULATE 0xC0048103L
  138. //
  139. // MessageId: IPP_S_WEAKRESERVE
  140. //
  141. // MessageText:
  142. //
  143. // This is an internal MSDAIPP.DLL error.
  144. //
  145. #define IPP_S_WEAKRESERVE 0x00048104L
  146. //
  147. // MessageId: IPP_S_TRUNCATED
  148. //
  149. // MessageText:
  150. //
  151. // This is an internal MSDAIPP.DLL error.
  152. //
  153. #define IPP_S_TRUNCATED 0x00048105L
  154. //
  155. // MessageId: IPP_E_LAST
  156. //
  157. // MessageText:
  158. //
  159. // Internet Publishing Provider last error message
  160. //
  161. #define IPP_E_LAST 0x40048106L