home *** CD-ROM | disk | FTP | other *** search
- #ifndef HELPS_H
- #define HELPS_H
- /*---------------------------------------------------------------------*
- * make_disp stuff
- */
- void make_display(
- int left, int top, int right, int bottom);
-
- /*---------------------------------------------------------------------*
- * make_help stuff
- */
- typedef struct {
- char *text;
- int color;
- } help_text;
-
- void make_help(const char *, help_text *, const char *signature);
-
- /*---------------------------------------------------------------------*/
-
- /*** #define PAUSE ***/
-
- #ifdef PAUSE
- #include <dos.h>
-
- #define keypause() { \
- sound(300); sound(3000); sound(3000); sound(600); nosound(); \
- if (getch() == 'x') return; \
- }
- #else
- #define keypause()
- #endif
-
- /*---------------------------------------------------------------------*/
- #endif /* HELPS_H */