home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 3 Comm / 03-Comm.zip / mincom15.zip / vt100.h < prev    next >
Text File  |  1993-10-07  |  495b  |  21 lines

  1. /*
  2.  * vt100.h    Header file for the vt100 emulator.
  3.  *        Miquel van Smoorenburg, <miquels@drinkel.nl.mugnet.org>
  4.  */
  5.  
  6. /* Keypad and cursor key modes. */
  7. #define NORMAL    1
  8. #define APPL    2
  9.  
  10. #define VT100    1
  11. #define MINIX    2
  12. #define ANSI    3
  13.  
  14. /* Prototypes from vt100.c */
  15. _PROTO( void vt_install, (void(*)(), void (*)(), WIN *));
  16. _PROTO( void vt_init, (int, int, int, int, int));
  17. _PROTO( void vt_set, (int, int, FILE *, int, int, int, int));
  18. _PROTO( void vt_out, (int ));
  19. _PROTO( void vt_send, (int ch));
  20.  
  21.