home *** CD-ROM | disk | FTP | other *** search
/ back2roots/padua / padua.7z / padua / uucp / auucp+-1.02 / fuucp_plus_src.lzh / system.h < prev    next >
Encoding:
Text File  |  1990-11-21  |  430 b   |  22 lines

  1. /*
  2. ** system.h - execute CLI commands using same process
  3. ** Copyright (C) 1988 Ralph Babel
  4. */
  5.  
  6. /*** global symbol declarations ***/
  7.  
  8. LONG __stdargs System0(const char *, BPTR, const char *);
  9. LONG __regargs System1(const char *);
  10.  
  11. /*** standard C ***/
  12.  
  13. #define system System1
  14.  
  15. /*** possible error returns ***/
  16.  
  17. #define ERROR_NO_CLI -1
  18. #define ERROR_NO_MEM -2
  19. #define ERROR_NO_PGM -3
  20. #define ERROR_NO_CIS -4
  21. #define ERROR_NO_COS -5
  22.