home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 466.lha / AztecArp_v1.9 / Source.LZH / vars.c < prev    next >
C/C++ Source or Header  |  1990-12-05  |  803b  |  31 lines

  1. /* Created 11/08/87 by -=+SDB+=- from file vars.c provided by Manx */
  2. /* Copyright (C) 1987 by Scott Ballantyne */
  3. /* Freely usable by arp supporters */
  4.  
  5. void *SysBase, *DOSBase = NULL, *MathBase, *MathTransBase;
  6. void *MathIeeeDoubBasBase, *MathIeeeDoubTransBase;
  7. void *IntuitionBase, *GfxBase;  /* Arp specials, DOSBase == ArpBase (NOT ANY MORE) */
  8. struct ArpBase *ArpBase;
  9.  
  10. /* Following two declarations now moved to AztecGlue.s
  11.  * Makes it easier to *only* use the glue routines, if that is what
  12.  * you desire
  13.  */
  14.  
  15. long _savsp, _stkbase;
  16.  
  17. int errno, Enable_Abort;
  18.  
  19. struct WBStartup *WBenchMsg;
  20.  
  21. int _argc;
  22. char **_argv;
  23.  
  24. struct _dev *_devtab;
  25. short _numdev = 20;
  26.  
  27. char *_detach_name = 0;         /* for DETACHED programs */
  28. long _detach_curdir = 0;
  29.  
  30. void *_oldtrap, **_trapaddr;    /* for signal() cleanup */
  31.