home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / xbftp10.zip / xbftp.ch < prev    next >
Text File  |  1998-06-18  |  1KB  |  51 lines

  1. ///////////////////////////////////////////////////////////////////////////////
  2. //
  3. //  Purpose     : OS/2 FTP-Library for XBase++
  4. //
  5. //  Version     : 1.0
  6. //
  7. //  Last Update : Thu 18.06.1998
  8. //
  9. //  File        : XbFtp.ch
  10. //
  11. //  Copyright   : homburg Softwaretechnik, (c) 1998. All rights reserved
  12. //
  13. //  Contact     : Internet : http://dienstleistungen.freepage.de/shomburg
  14. //                eMail    : shomburg@ibm.net
  15. //
  16. ///////////////////////////////////////////////////////////////////////////////
  17.  
  18. #ifndef  _XBFTP_CH
  19.  
  20. //
  21. // div. errorcodes from Library
  22. //
  23. #define ERROR_NONE          0
  24. #define ERROR_PARAM1        -1
  25. #define ERROR_PARAM2        -2
  26. #define ERROR_PARAM3        -3
  27. #define ERROR_PARAM4        -4
  28. #define ERROR_PARAM5        -5
  29. #define ERROR_PARAMCOUNT    -6
  30. #define ERROR_NOMEMORY      -7
  31. #define ERROR_INIT          -8
  32. #define ERROR_DEMO          -9
  33.  
  34. //
  35. // put/get file modes
  36. //
  37. #define MODE_ASCII          1
  38. #define MODE_EBCDIC         2
  39. #define MODE_BINARY         3
  40.  
  41. //
  42. // command/reply trace file modes
  43. //
  44. #define MODE_OVERLAY        1
  45. #define MODE_APPEND         2
  46.  
  47. #define  _XBFTP_CH
  48.  
  49. #endif                     // #ifndef _XBFTP_CH
  50.  
  51.