home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / l / l350 / 3.ddi / EXAMPLES / SB386 / KABOOM1.H < prev    next >
Encoding:
C/C++ Source or Header  |  1993-02-10  |  608 b   |  21 lines

  1. /* This header file became necessary when these lines were added to
  2.  * KABOOM1.C; the sample session in the manual assumes that certain
  3.  * lines are in a specific location in the file (line #196, in
  4.  * particular, must be "i = nRandom(GRID_X);")
  5.  */
  6.  
  7. #ifdef __WATCOMC__
  8. #define _getch getch
  9. #define _cprintf cprintf
  10. #endif
  11.  
  12. /* Function prototypes from KABOOM2.C */
  13. void Pause(void);
  14. void GetXY_(int *pX, int *pY);
  15. void GotoXY_(int x, int y);
  16. int nRandom(int nMax);
  17. char _far *build_farptr(int sel, int off);
  18. void DisplayChar(int x, int y, char cChar, int nColor);
  19. void Initialize(void);
  20.  
  21.