home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / games / graph.zip / GLOB_EXT.H < prev    next >
Text File  |  1987-06-09  |  844b  |  30 lines

  1. /*--------------------------------------------------------------------------
  2.  *                                glob_ext.h
  3.  *
  4.  *                       copyright 1987 by Michael Allen
  5.  *
  6.  *       This contains the external declarations for global variables used by the
  7.  *       graphics functions in graph.lib. You must include this in your
  8.  *       sub modules with a: #include "glob_ext.h". ( in your main module,
  9.  *       include: #include "global.h" )
  10.  *
  11.  *-------------------------------------------------------------------------*/
  12.  
  13. extern int mask[8];
  14.  
  15. extern union REGS regs;
  16.  
  17. extern struct SREGS segregs;
  18.  
  19. extern T_SCREEN    screen;
  20.  
  21. extern int     ymax,
  22.                xmin,
  23.                ymin,
  24.                xmax;
  25.  
  26. extern BYTE    draw_option;
  27.  
  28. /*-------------- end of glob_ext.h ---------------------*/
  29.  
  30.