home *** CD-ROM | disk | FTP | other *** search
/ Crawly Crypt Collection 1 / crawlyvol1.bin / bbs / jet_conf / init.h < prev    next >
Text File  |  1993-05-09  |  651b  |  34 lines

  1. /*
  2.  * INIT.H
  3.  *
  4.  * header-module of init.c (part of jet_conf.prg)
  5.  * initializes all program-parts
  6.  *
  7.  */
  8.  
  9. /*--- includes              ---*/
  10.  
  11. /*--- defines               ---*/
  12.  
  13. #define        gl_wchar    attrib[6]
  14. #define        gl_hchar    attrib[7]
  15.  
  16. /*--- types                 ---*/
  17.  
  18. /*--- variables             ---*/
  19.  
  20. GLOBAL WORD        tos;
  21. GLOBAL WORD        phys_handle, vdi_handle;
  22.  
  23. GLOBAL WORD        attrib[10];
  24. GLOBAL WORD        gl_wbox, gl_hbox, gl_wattr, gl_hattr;
  25. GLOBAL WORD        work_out[57];
  26. GLOBAL GRECT    desk;
  27.  
  28. /*--- prototypes            ---*/
  29.  
  30. GLOBAL WORD        prog_init( VOID );
  31. GLOBAL WORD        prog_exit( VOID );
  32.  
  33. /*--- End of init.h module  ---*/
  34.