home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2005 March / PCWELT_3_2005.ISO / pcwsoft / framework-2.2.exe / pty.h < prev    next >
Encoding:
C/C++ Source or Header  |  2004-01-30  |  330 b   |  19 lines

  1. #ifndef __PTY_H__
  2. #define __PTY_H__
  3.  
  4. #include <_ansi.h>
  5. #include <sys/termios.h>
  6.  
  7. #ifdef __cplusplus
  8. extern "C" {
  9. #endif
  10.  
  11. int _EXFUN(openpty ,(int *, int *, char *, struct termios *, struct winsize *));
  12. int _EXFUN(forkpty ,(int *, char *, struct termios *, struct winsize *));
  13.  
  14. #ifdef __cplusplus
  15. }
  16. #endif
  17.  
  18. #endif /* __PTY_H__ */
  19.