home *** CD-ROM | disk | FTP | other *** search
/ Carousel / CAROUSEL.cdr / mactosh / unix / uw_term.sha / openpty.h < prev    next >
C/C++ Source or Header  |  1985-11-12  |  308b  |  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.