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.

49 lines
1.9 KiB

  1. //*********************************************************************
  2. //* Microsoft Windows **
  3. //* Copyright(c) Microsoft Corp., 1999 **
  4. //*********************************************************************
  5. //
  6. // COMMERR.H - Header for the communication manager error definitions
  7. //
  8. // HISTORY:
  9. //
  10. // 2/10/99 vyung Created.
  11. //
  12. //
  13. #ifndef _COMMERR_H_
  14. #define _COMMERR_H_
  15. //window.external.CheckDialReady
  16. #define ERR_COMM_NO_ERROR 0x00000000 // There is no error
  17. #define ERR_COMM_OOBE_COMP_MISSING 0x00000001 // Some OOBE component is missing
  18. #define ERR_COMM_UNKNOWN 0x00000002 // Unknow error, check input parameters
  19. #define ERR_COMM_NOMODEM 0x00000003 // There is no modem installed
  20. #define ERR_COMM_RAS_TCP_NOTINSTALL 0x00000004 // TCP/IP or RAS is not installed
  21. #define ERR_COMM_ISDN 0x00000005
  22. #define ERR_COMM_PHONE_AND_ISDN 0x00000006
  23. //window.external.Dial -- RAS events
  24. #define ERR_COMM_RAS_PHONEBUSY 0x00000001
  25. #define ERR_COMM_RAS_NODIALTONE 0x00000002
  26. #define ERR_COMM_RAS_NOMODEM ERR_COMM_NOMODEM
  27. #define ERR_COMM_RAS_SERVERBUSY 0x00000004
  28. #define ERR_COMM_RAS_UNKNOWN 0x00000005
  29. //window.external.navigate/submit/processins -- server errors
  30. #define ERR_COMM_SERVER_BINDFAILED 0x00000001
  31. //Server errors
  32. #define ERR_SERVER_DNS 0x00000002
  33. #define ERR_SERVER_SYNTAX 0x00000003
  34. #define ERR_SERVER_HTTP_400 0x00000190
  35. #define ERR_SERVER_HTTP_403 0x00000193
  36. #define ERR_SERVER_HTTP_404 0x00000194
  37. #define ERR_SERVER_HTTP_405 0x00000195
  38. #define ERR_SERVER_HTTP_406 0x00000196
  39. #define ERR_SERVER_HTTP_408 0x00000198
  40. #define ERR_SERVER_HTTP_410 0x0000019A
  41. #define ERR_SERVER_HTTP_500 0x000001F4
  42. #define ERR_SERVER_HTTP_501 0x000001F5
  43. #endif