home *** CD-ROM | disk | FTP | other *** search
/ Whiteline: Alpha / Whiteline Alpha.iso / progtool / c / gemforce / gf_tos.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-09-22  |  823 b   |  26 lines

  1. #ifndef __GF_TOS__
  2. # define __GF_TOS__
  3.  
  4. /************************* prototypes ***********************************/
  5.  
  6. GLOBAL BOOLEAN copy ( const char *, const char * );
  7. GLOBAL BOOLEAN test_printer ( void );
  8. GLOBAL void lprint ( char *, BOOLEAN );
  9. GLOBAL void supervisor ( BOOLEAN );
  10. GLOBAL void poke ( long, char );
  11. GLOBAL void wpoke ( long, int );
  12. GLOBAL void lpoke ( long, long );
  13. GLOBAL char peek ( long );
  14. GLOBAL int wpeek ( long );
  15. GLOBAL long lpeek ( long );
  16. GLOBAL void cls ( void );
  17. GLOBAL void cursor_on ( void );
  18. GLOBAL void cursor_off ( void );
  19. GLOBAL void at ( int, int );
  20. GLOBAL void print_at ( int, int, const char * );
  21. GLOBAL void tab ( int );
  22. GLOBAL void print_tab ( int, const char * );
  23. GLOBAL BOOLEAN file_exist ( const char * );
  24. GLOBAL BOOLEAN path_exist ( const char * );
  25.  
  26. #endif