home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 June / PCWorld_2005-06_cd.bin / software / vyzkuste / firewally / firewally.exe / framework-2.3.exe / pty.h < prev    next >
C/C++ Source or Header  |  2004-01-30  |  330b  |  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.