home *** CD-ROM | disk | FTP | other *** search
/ PC Format (South-Africa) 2001 May / PCFMay2001.iso / Xenon / C++ / FreeCommandLineTools.exe / Include / wpftpmsg.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-01-31  |  1.6 KB  |  75 lines

  1. #pragma option push -b -a8 -pc -A- /*P_O_Push*/
  2. //
  3. //  Values are 32 bit values layed out as follows:
  4. //
  5. //   3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
  6. //   1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
  7. //  +---+-+-+-----------------------+-------------------------------+
  8. //  |Sev|C|R|     Facility          |               Code            |
  9. //  +---+-+-+-----------------------+-------------------------------+
  10. //
  11. //  where
  12. //
  13. //      Sev - is the severity code
  14. //
  15. //          00 - Success
  16. //          01 - Informational
  17. //          10 - Warning
  18. //          11 - Error
  19. //
  20. //      C - is the Customer code flag
  21. //
  22. //      R - is a reserved bit
  23. //
  24. //      Facility - is the facility code
  25. //
  26. //      Code - is the facility's status code
  27. //
  28. //
  29. // Define the facility codes
  30. //
  31.  
  32.  
  33. //
  34. // Define the severity codes
  35. //
  36.  
  37.  
  38. //
  39. // MessageId: FTPWPP_ERROR_FIRST
  40. //
  41. // MessageText:
  42. //
  43. //  CFtpWpp's first error message.
  44. //
  45. #define FTPWPP_ERROR_FIRST               0x40042300L
  46.  
  47. //
  48. // MessageId: FTPWPP_ERROR_INETOPEN_FAILED
  49. //
  50. // MessageText:
  51. //
  52. //  The FTP provider could not connect to the internet.
  53. //
  54. #define FTPWPP_ERROR_INETOPEN_FAILED     0xC0042301L
  55.  
  56. //
  57. // MessageId: FTPWPP_ERROR_AUTHENTICATION_FAILED
  58. //
  59. // MessageText:
  60. //
  61. //  The FTP provider could not log in to the FTP server.
  62. //
  63. #define FTPWPP_ERROR_AUTHENTICATION_FAILED 0xC0042302L
  64.  
  65. //
  66. // MessageId: FTPWPP_ERROR_LAST
  67. //
  68. // MessageText:
  69. //
  70. //  CFtpWpp's last error message.
  71. //
  72. #define FTPWPP_ERROR_LAST                0x400423FFL
  73.  
  74. #pragma option pop /*P_O_Pop*/
  75.