home *** CD-ROM | disk | FTP | other *** search
- /*
- ** system.h - execute CLI commands using same process
- ** Copyright (C) 1988 Ralph Babel
- */
-
- /*** global symbol declarations ***/
-
- LONG __stdargs System0(const char *, BPTR, const char *);
- LONG __regargs System1(const char *);
-
- /*** standard C ***/
-
- #define system System1
-
- /*** possible error returns ***/
-
- #define ERROR_NO_CLI -1
- #define ERROR_NO_MEM -2
- #define ERROR_NO_PGM -3
- #define ERROR_NO_CIS -4
- #define ERROR_NO_COS -5
-