home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / snip9707.zip / MORE.H < prev    next >
C/C++ Source or Header  |  1997-07-05  |  941b  |  25 lines

  1. /* +++Date last modified: 05-Jul-1997 */
  2.  
  3. /*
  4. **  SNIPPETS header file for MOREPROC.C & ADJSCROL.C
  5. **
  6. **  Note: As written, this code is DOS-specific. To enhance portability:
  7. **
  8. **        1. Use UNXGETCH.C from SNIPPETS for portable EXT_KEYS.H functions.
  9. **        2. Use constants or other non-DOS definitions for SCRNxxxx macros.
  10. **        3. Conditional code in DELAY.C allows use with non-DOS compilers.
  11. */
  12.  
  13. #ifndef MORE__H
  14. #define MORE__H
  15.  
  16. #include "scrnmacs.h"                     /* For SCREENROWS, SCREENCOLS */
  17. #include "snip_str.h"                     /* For strn1cpy(), strmove()  */
  18. #include "ext_keys.h"                     /* For ext_getch()            */
  19. #include "delay.h"                        /* For delay()                */
  20.  
  21. int more_proc(char *str);                             /* MOREPROC.C     */
  22. int adj_scroll(char *str);                            /* ADJSCROL.C     */
  23.  
  24. #endif /* MORE__H */
  25.