Source code of Windows XP (NT5)
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.

46 lines
1.8 KiB

  1. /*****************************************************************/
  2. /** Microsoft Windows for Workgroups **/
  3. /** Copyright (C) Microsoft Corp., 1991-1992 **/
  4. /*****************************************************************/
  5. /* NWERROR.H -- Novell defined error return codes from Netware API
  6. *
  7. * History:
  8. * 03/16/93 vlads Created
  9. *
  10. */
  11. #ifndef _nwerror_h_
  12. #define _nwerror_h_
  13. #define NWSC_SUCCESS 0x00
  14. #define NWSC_SERVEROUTOFMEMORY 0x96
  15. #define NWSC_NOSUCHVOLUME 0x98 // Volume does not exist
  16. #define NWSC_BADDIRECTORYHANDLE 0x9b
  17. #define NWSC_NOSUCHPATH 0x9c
  18. #define NWSC_NOJOBRIGHTS 0xd6
  19. #define NWSC_EXPIREDPASSWORD 0xdf
  20. #define NWSC_NOSUCHSEGMENT 0xec // Segment does not exist
  21. #define NWSC_INVALIDNAME 0xef
  22. #define NWSC_NOWILDCARD 0xf0 // Wildcard not allowed
  23. #define NWSC_NOPERMBIND 0xf1 // Invalid bindery security
  24. #define NWSC_ALREADYATTACHED 0xf8 // Already attached to file server
  25. #define NWSC_NOPERMREADPROP 0xf9 // No property read privelege
  26. #define NWSC_NOFREESLOTS 0xf9 // No free connection slots at server
  27. #define NWSC_NOMORESLOTS 0xfa // No more server slots
  28. #define NWSC_NOSUCHPROPERTY 0xfb // Property does not exist
  29. #define NWSC_UNKNOWN_REQUEST 0xfb // Invalid NCP number
  30. #define NWSC_NOSUCHOBJECT 0xfc // End of Scan Bindery Object service
  31. // No such object
  32. #define NWSC_UNKNOWNSERVER 0xfc // Unknown file server
  33. #define NWSC_SERVERBINDERYLOCKED 0xfe // Server bindery locked
  34. #define NWSC_BINDERYFAILURE 0xff // Bindery failure
  35. #define NWSC_ILLEGALSERVERADDRESS 0xff // No response from server (illegal server address)
  36. #define NWSC_NOSUCHCONNECTION 0xff // Connection ID does not exist
  37. typedef WORD NW_STATUS;
  38. #endif