home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Spezial / SPEZIAL2_97.zip / SPEZIAL2_97.iso / ANWEND / ONLINE / ELM23-2 / ELM23-2.ZIP / os2 / termios.h < prev   
C/C++ Source or Header  |  1992-02-01  |  312b  |  22 lines

  1. /* dummy for OS/2 */
  2.  
  3. struct termios
  4. {
  5.   int c_cc[4];
  6.   int c_lflag;
  7. };
  8.  
  9. #define ICANON  1
  10. #define ECHO    2
  11.  
  12. #define VERASE  0
  13. #define VKILL   1
  14. #define VMIN    2
  15. #define VTIME   3
  16.  
  17. #define TCSADRAIN   4711
  18.  
  19. int tcgetattr(int, struct termios *);
  20. int tcsetattr(int, int, struct termios *);
  21.  
  22.