home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / COMM / MISC / UWPC201.ZIP / UWSERVER.TAR / h / openpty.h next >
Encoding:
C/C++ Source or Header  |  1991-01-25  |  308 b   |  12 lines

  1. /*
  2.  *    This file defines the "ptydesc" structure which is returned
  3.  *    by the routine "openpty".
  4.  */
  5.  
  6. struct ptydesc {
  7.     int        pt_pfd;        /* file descriptor of master side */
  8.     int        pt_tfd;        /* file descriptor of slave side */
  9.     char        *pt_pname;    /* master device name */
  10.     char        *pt_tname;    /* slave device name */
  11. };
  12.