home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / zip / mint / mntlib16.lzh / MNTLIB16 / ALGLOBAL.C < prev    next >
C/C++ Source or Header  |  1993-08-03  |  530b  |  20 lines

  1. /*
  2.  * lineA globals for both inline and non-inline lineA bindings
  3.  */
  4. #include <linea.h>
  5.     /* global vars */
  6. /* Pointer to line a parameter block returned by init     */
  7.  __LINEA *__aline;
  8.  
  9. /* Array of pointers to the three system font  headers 
  10.    returned by init (in register A1)                   */
  11.  __FONT  **__fonts;
  12.  
  13. /* Array of pointers to the 16 line a functions returned
  14.    by init (in register A2) only valid in ROM'ed TOS     */
  15. #ifdef __STDC__
  16.  short  (**__funcs)(void);
  17. #else
  18.  short  (**__funcs)();
  19. #endif
  20.