home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / PROG_C / FGIN131.ZIP / SOURCE.ZIP / INTERNAL.H < prev    next >
Text File  |  1994-02-11  |  961b  |  42 lines

  1. /****************************************************************************\
  2.  
  3.     INTERNAL FUNCTION PROTOTYPES
  4.  
  5. \****************************************************************************/
  6. int  setup(char*,const char*);
  7. void showstring(int);
  8.  
  9.  
  10. /****************************************************************************\
  11.  
  12. \****************************************************************************/
  13. #define MAXCHARS 95
  14. #define INSCURSOR 1
  15. #define OVRCURSOR 0
  16.  
  17. #define NOTSUPPORTED 0
  18. #define COLOR2   1
  19. #define COLOR4   2
  20. #define COLOR16  3
  21. #define TEXTC    4
  22. #define TEXTBW   5
  23. #define COLOR16b 6
  24.  
  25. #define TEXT 0
  26. #define GRAPHICS 1
  27. #define CURSOR 1
  28. #define NOCURSOR 0
  29.  
  30. /****************************************************************************\
  31.  
  32.  
  33. \****************************************************************************/
  34.  
  35. typedef enum cursortype {
  36.  
  37.     CURSOR_NONE,
  38.     CURSOR_NORMAL,
  39.     CURSOR_SOLID
  40.  
  41. }CURSORTYPE;
  42.