Advertisement
MagicAndre1981

new NTSTATUS codes in Windows 10 Redstone (14267 SDK)

Feb 24th, 2016
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Windows 10 SDK for Build 14267 Microsoft documents 2 new NTSTATUS codes (ntstatus.h):
  2.  
  3.  
  4. //
  5. // MessageId: STATUS_CLOUD_PROVIDER_UNKNOWN
  6. //
  7. // MessageText:
  8. //
  9. // The cloud provider for this file is not operational.
  10. //
  11. #define STATUS_CLOUD_PROVIDER_UNKNOWN    ((NTSTATUS)0xC0000498L)
  12.  
  13.  
  14. //
  15. // MessageId: STATUS_LPC_HANDLE_COUNT_EXCEEDED
  16. //
  17. // MessageText:
  18. //
  19. // The caller has exceeded the maximum number of handles that may be transmitted in
  20. // a single local procedure call.
  21. //
  22. #define STATUS_LPC_HANDLE_COUNT_EXCEEDED ((NTSTATUS)0xC0000722L)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement