Advertisement
MagicAndre1981

new NTSTATUS codes in Windows 10 (Build 10563)

Oct 13th, 2015
438
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.68 KB | None | 0 0
  1. Windows 10 SDK Build 10563 documents new NTSTATUS codes (ntstatus.h):
  2.  
  3. //
  4. // MessageId: STATUS_MARKED_TO_DISALLOW_WRITES
  5. //
  6. // MessageText:
  7. //
  8. // The requested operation failed because the file stream is marked to disallow writes.
  9. //
  10. #define STATUS_MARKED_TO_DISALLOW_WRITES ((NTSTATUS)0xC000048DL)
  11.  
  12. //
  13. // MessageId: STATUS_NETWORK_ACCESS_DENIED_EDP
  14. //
  15. // MessageText:
  16. //
  17. // Enterprise Data Protection policy does not allow access to this network resource.
  18. //
  19. #define STATUS_NETWORK_ACCESS_DENIED_EDP ((NTSTATUS)0xC000048EL)
  20.  
  21. //
  22. // MessageId: STATUS_ENCLAVE_FAILURE
  23. //
  24. // MessageText:
  25. //
  26. // The requested operation failed with an architecture-specific failure code.
  27. //
  28. #define STATUS_ENCLAVE_FAILURE ((NTSTATUS)0xC000048FL)
  29.  
  30. //
  31. // MessageId: STATUS_PNP_NO_COMPAT_DRIVERS
  32. //
  33. // MessageText:
  34. //
  35. // There are no compatible drivers available for this device.
  36. //
  37. #define STATUS_PNP_NO_COMPAT_DRIVERS ((NTSTATUS)0xC0000490L)
  38.  
  39. //
  40. // MessageId: STATUS_PNP_DRIVER_PACKAGE_NOT_FOUND
  41. //
  42. // MessageText:
  43. //
  44. // The specified driver package cannot be found on the system.
  45. //
  46. #define STATUS_PNP_DRIVER_PACKAGE_NOT_FOUND ((NTSTATUS)0xC0000491L)
  47.  
  48. //
  49. // MessageId: STATUS_PNP_DRIVER_CONFIGURATION_NOT_FOUND
  50. //
  51. // MessageText:
  52. //
  53. // The driver package cannot find a required driver configuration.
  54. //
  55. #define STATUS_PNP_DRIVER_CONFIGURATION_NOT_FOUND ((NTSTATUS)0xC0000492L)
  56.  
  57. //
  58. // MessageId: STATUS_PNP_DRIVER_CONFIGURATION_INCOMPLETE
  59. //
  60. // MessageText:
  61. //
  62. // The driver configuration is incomplete for use with this device.
  63. //
  64. #define STATUS_PNP_DRIVER_CONFIGURATION_INCOMPLETE ((NTSTATUS)0xC0000493L)
  65.  
  66. //
  67. // MessageId: STATUS_PNP_FUNCTION_DRIVER_REQUIRED
  68. //
  69. // MessageText:
  70. //
  71. // The device requires a driver configuration with a function driver.
  72. //
  73. #define STATUS_PNP_FUNCTION_DRIVER_REQUIRED ((NTSTATUS)0xC0000494L)
  74.  
  75. //
  76. // MessageId: STATUS_PNP_DEVICE_CONFIGURATION_PENDING
  77. //
  78. // MessageText:
  79. //
  80. // The device is pending further configuration.
  81. //
  82. #define STATUS_PNP_DEVICE_CONFIGURATION_PENDING ((NTSTATUS)0xC0000495L)
  83.  
  84. //
  85. // MessageId: STATUS_DEVICE_HINT_NAME_BUFFER_TOO_SMALL
  86. //
  87. // MessageText:
  88. //
  89. // The device hint name buffer is too small to receive the remaining name.
  90. //
  91. #define STATUS_DEVICE_HINT_NAME_BUFFER_TOO_SMALL ((NTSTATUS)0xC0000496L)
  92.  
  93. //
  94. // MessageId: STATUS_PACKAGE_NOT_AVAILABLE
  95. //
  96. // MessageText:
  97. //
  98. // The package is currently not available.
  99. //
  100. #define STATUS_PACKAGE_NOT_AVAILABLE ((NTSTATUS)0xC0000497L)
  101.  
  102. //
  103. // MessageId: STATUS_CLUSTER_CSV_INVALID_HANDLE
  104. //
  105. // MessageText:
  106. //
  107. // The operation has failed because CSV has invalidated this file object.
  108. //
  109. #define STATUS_CLUSTER_CSV_INVALID_HANDLE ((NTSTATUS)0xC0130029L)
  110.  
  111. //
  112. // MessageId: STATUS_CLUSTER_CSV_SUPPORTED_ONLY_ON_COORDINATOR
  113. //
  114. // MessageText:
  115. //
  116. // This operation is supported only on the CSV coordinator node.
  117. //
  118. #define STATUS_CLUSTER_CSV_SUPPORTED_ONLY_ON_COORDINATOR ((NTSTATUS)0xC0130030L)
  119.  
  120. //
  121. // MessageId: STATUS_NDIS_DOT11_AP_CHANNEL_CURRENTLY_NOT_AVAILABLE
  122. //
  123. // MessageText:
  124. //
  125. // The wireless local area network interface cannot start an AP on the specified channel right now.
  126. //
  127. #define STATUS_NDIS_DOT11_AP_CHANNEL_CURRENTLY_NOT_AVAILABLE ((NTSTATUS)0xC0232005L)
  128.  
  129. //
  130. // MessageId: STATUS_NDIS_DOT11_AP_BAND_CURRENTLY_NOT_AVAILABLE
  131. //
  132. // MessageText:
  133. //
  134. // The wireless local area network interface cannot start an AP on the specified band right now.
  135. //
  136. #define STATUS_NDIS_DOT11_AP_BAND_CURRENTLY_NOT_AVAILABLE ((NTSTATUS)0xC0232006L)
  137.  
  138. //
  139. // MessageId: STATUS_NDIS_DOT11_AP_CHANNEL_NOT_ALLOWED
  140. //
  141. // MessageText:
  142. //
  143. // The wireless local area network interface cannot start an AP on this channel due to regulatory reasons.
  144. //
  145. #define STATUS_NDIS_DOT11_AP_CHANNEL_NOT_ALLOWED ((NTSTATUS)0xC0232007L)
  146.  
  147. //
  148. // MessageId: STATUS_NDIS_DOT11_AP_BAND_NOT_ALLOWED
  149. //
  150. // MessageText:
  151. //
  152. // The wireless local area network interface cannot start an AP on this band due to regulatory reasons.
  153. //
  154. #define STATUS_NDIS_DOT11_AP_BAND_NOT_ALLOWED ((NTSTATUS)0xC0232008L)
  155.  
  156. //
  157. // MessageId: STATUS_HV_INVALID_VP_STATE
  158. //
  159. // MessageText:
  160. //
  161. // A virtual processor is not in the correct state for the indicated operation.
  162. //
  163. #define STATUS_HV_INVALID_VP_STATE ((NTSTATUS)0xC0350015L)
  164.  
  165. //
  166. // MessageId: STATUS_VID_VTL_ACCESS_DENIED
  167. //
  168. // MessageText:
  169. //
  170. // The specified VTL does not have the permission to access the resource.
  171. //
  172. #define STATUS_VID_VTL_ACCESS_DENIED ((NTSTATUS)0xC037002AL)
  173.  
  174. //
  175. // MessageId: STATUS_VOLSNAP_ACTIVATION_TIMEOUT
  176. //
  177. // MessageText:
  178. //
  179. // Activation of persistent snapshots on this volume took longer than was allowed.
  180. //
  181. #define STATUS_VOLSNAP_ACTIVATION_TIMEOUT ((NTSTATUS)0xC0500004L)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement