vt100.h
上传用户:tianjinjs
上传日期:2007-01-05
资源大小:309k
文件大小:1k
源码类别:

Modem编程

开发平台:

Unix_Linux

  1. /*
  2.  * vt100.h Header file for the vt100 emulator.
  3.  *
  4.  * This file is part of the minicom communications package,
  5.  * Copyright 1991-1995 Miquel van Smoorenburg.
  6.  *
  7.  * This program is free software; you can redistribute it and/or
  8.  * modify it under the terms of the GNU General Public License
  9.  * as published by the Free Software Foundation; either version
  10.  * 2 of the License, or (at your option) any later version.
  11.  */
  12. /* Keypad and cursor key modes. */
  13. #define NORMAL 1
  14. #define APPL 2
  15. /* Don't change - hardcoded in minicom's dial.c */
  16. #define VT100 1
  17. #define ANSI 3
  18. /* Prototypes from vt100.c */
  19. _PROTO( void vt_install, (void(*)(), void (*)(), WIN *));
  20. _PROTO( void vt_init, (int, int, int, int, int));
  21. _PROTO( void vt_pinit, (WIN *, int, int));
  22. _PROTO( void vt_set, (int, int, FILE *, int, int, int, int, int));
  23. _PROTO( void vt_out, (int ));
  24. _PROTO( void vt_send, (int ch));