home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / communic / pcmail / termcap / termcap.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-05  |  1.2 KB  |  101 lines

  1. /*++
  2.  
  3. /* NAME
  4.  
  5. /*    termcap.h 5
  6.  
  7. /* SUMMARY
  8.  
  9. /*    internal type declarations for termcap functions
  10.  
  11. /* PROJECT
  12.  
  13. /*    ms-dos/unix compatibility
  14.  
  15. /* PACKAGE
  16.  
  17. /*    termcap
  18.  
  19. /* SYNOPSIS
  20.  
  21. /*    #include "termcap.h"
  22.  
  23. /* DESCRIPTION
  24.  
  25. /*    termcap.h contains declarations for internal use of the MS-DOS 
  26.  
  27. /*    implementation of the termcap(3) functions, assuming the
  28.  
  29. /*    presence of the ANSI.SYS console driver.
  30.  
  31. /* .nf
  32.  
  33.  
  34.  
  35.  /* function types */
  36.  
  37.  
  38.  
  39. extern tgetent();
  40.  
  41. extern tgetnum();
  42.  
  43. extern tgetflag();
  44.  
  45. extern char *tgetstr();
  46.  
  47. extern char *tgoto();
  48.  
  49. extern tputs();
  50.  
  51.  
  52.  
  53.  /* static storage for pc console capabilities */
  54.  
  55.  
  56.  
  57. typedef struct {
  58.  
  59.     char *name;
  60.  
  61.     char *cap;
  62.  
  63. } Cap;
  64.  
  65.  
  66.  
  67. extern Cap _console[];
  68.  
  69. /* SEE ALSO
  70.  
  71. /*    termcap(3), Berkeley extensions to UNIX.
  72.  
  73. /* FILES
  74.  
  75. /*    ANSI.SYS, ibm pc console driver.
  76.  
  77. /* AUTHOR(S)
  78.  
  79. /*    W.Z. Venema
  80.  
  81. /*    Eindhoven University of Technology
  82.  
  83. /*    Department of Mathematics and Computer Science
  84.  
  85. /*    Den Dolech 2, P.O. Box 513, 5600 MB Eindhoven, The Netherlands
  86.  
  87. /* CREATION DATE
  88.  
  89. /*    Wed Jan  1 19:01:13 GMT+1:00 1986
  90.  
  91. /* LAST MODIFICATION
  92.  
  93. /*    90/01/22 13:57:02
  94.  
  95. /* VERSION/RELEASE
  96.  
  97. /*    2.1
  98.  
  99. /*--*/
  100.  
  101.