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.

52 lines
1.5 KiB

  1. /*++
  2. Copyright (c) 1995 Microsoft Corporation
  3. Module Name:
  4. ipxrterr.h
  5. Abstract:
  6. This module contains the definitions of the IPX Router error codes
  7. Author:
  8. Stefan Solomon 03/16/1995
  9. Revision History:
  10. --*/
  11. #ifndef _IPXRTERR_
  12. #define _IPXRTERR_
  13. //*********************************************************
  14. // *
  15. // IPX Router APIs Return Codes *
  16. // *
  17. //*********************************************************
  18. #define IPX_ERROR_BASE 30000
  19. #define IPX_ERROR_NONEXISTENT_ENTRY IPX_ERROR_BASE + 1
  20. #define IPX_ERROR_NO_MORE_ITEMS IPX_ERROR_BASE + 2
  21. #define IPX_ERROR_INVALID_PARAMETER IPX_ERROR_BASE + 3
  22. #define IPX_ERROR_OUT_OF_RESOURCES IPX_ERROR_BASE + 4
  23. #define IPX_ERROR_INTERNAL IPX_ERROR_BASE + 5
  24. #define IPX_ERROR_PENDING IPX_ERROR_BASE + 6
  25. #define IPX_ERROR_INVALID_INTERFACE IPX_ERROR_BASE + 7
  26. #define IPX_ERROR_INVALID_GROUP_ID IPX_ERROR_BASE + 8
  27. #define IPX_ERROR_INVALID_TABLE_ID IPX_ERROR_BASE + 9
  28. #define IPX_INVALID_FUNCTION IPX_ERROR_BASE + 10
  29. #define IPX_ERROR_MISSING_INTERFACE_INFO IPX_ERROR_BASE + 11
  30. #define IPX_ERROR_NETWORK_NUMBER_IN_USE IPX_ERROR_BASE + 12
  31. #define IPX_ERROR_DUPLICATE_SERVER_NAMES IPX_ERROR_BASE + 13
  32. #define IPX_ERROR_ROUTER_NOT_ACTIVE IPX_ERROR_BASE + 14
  33. #define IPX_ERROR_NO_WAN_NET_NUMBER IPX_ERROR_BASE + 15
  34. #define IPX_ERROR_NO_INTERFACE IPX_ERROR_BASE + 16
  35. #define IPX_ERROR_ROUTER_DOWN IPX_ERROR_BASE + 17
  36. #endif