home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / UTILS1 / CHKDBL10.ZIP / MYSTARTU.H < prev    next >
C/C++ Source or Header  |  1992-07-10  |  450b  |  29 lines

  1. #ifndef MYSTARTUP_H
  2. #define MYSTARTUP_H
  3. /*
  4. **    $Filename: MyStartup.h $
  5. **    $Release: 1.0 $
  6. **    $Date: 92/05/01 $
  7. **
  8. **    MyStartup.o include file
  9. **
  10. */
  11.  
  12. #ifndef EXEC_TYPES_H
  13.    #include <exec/types.h>
  14. #endif
  15.  
  16. void __regargs exit(long);
  17.  
  18. extern union
  19.    {
  20.       char *CommandLine;
  21.       struct WBStartup *WBenchMsg;
  22.    } Startup;
  23. extern int CommandLineLength;
  24.  
  25. extern struct DosLibrary *DOSBase;
  26. extern struct ExecBase *SysBase;
  27.  
  28. #endif    /* MYSTARTUP_H */
  29.