tcap.h
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* tcap.h -- termcap library functions and variables. */
  2. /* Copyright (C) 1996 Free Software Foundation, Inc.
  3.    This file contains the Readline Library (the Library), a set of
  4.    routines for providing Emacs style line input to programs that ask
  5.    for it.
  6.    The Library is free software; you can redistribute it and/or modify
  7.    it under the terms of the GNU General Public License as published by
  8.    the Free Software Foundation; either version 1, or (at your option)
  9.    any later version.
  10.    The Library is distributed in the hope that it will be useful, but
  11.    WITHOUT ANY WARRANTY; without even the implied warranty of
  12.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13.    General Public License for more details.
  14.    The GNU General Public License is often shipped with GNU software, and
  15.    is generally kept in a file called COPYING or LICENSE.  If you do not
  16.    have a copy of the license, write to the Free Software Foundation,
  17.    675 Mass Ave, Cambridge, MA 02139, USA. */
  18. #if !defined (_RLTCAP_H_)
  19. #define _RLTCAP_H_
  20. #if defined (HAVE_CONFIG_H)
  21. #  include "config.h"
  22. #endif
  23. #if defined (HAVE_TERMCAP_H)
  24. #  if defined (__linux__) && !defined (SPEED_T_IN_SYS_TYPES)
  25. #    include "rltty.h"
  26. #  endif
  27. #  include <termcap.h>
  28. #else
  29. /* On Solaris2, sys/types.h #includes sys/reg.h, which #defines PC.
  30.    Unfortunately, PC is a global variable used by the termcap library. */
  31. #ifdef PC
  32. #  undef PC
  33. #endif
  34. extern char PC;
  35. extern char *UP, *BC;
  36. extern short ospeed;
  37. extern int tgetent ();
  38. extern int tgetflag ();
  39. extern int tgetnum ();
  40. extern char *tgetstr ();
  41. extern int tputs ();
  42. extern char *tgoto ();
  43. #endif /* HAVE_TERMCAP_H */
  44. #endif /* !_RLTCAP_H_ */