Diff for /libaitio/inc/aitio.h between versions 1.11.2.14 and 1.11.2.15

version 1.11.2.14, 2011/09/19 21:59:57 version 1.11.2.15, 2011/09/19 22:41:04
Line 769  inline int ioAllocPTY(int *ptyfd, int *ttyfd, char * _ Line 769  inline int ioAllocPTY(int *ptyfd, int *ttyfd, char * _
  * return: none   * return: none
  */   */
 inline void ioFreePTY(const char *ttyname);  inline void ioFreePTY(const char *ttyname);
   /*
    * ioChgWinPTY() Change window size of PTY
    * @ptyfd = master fd, pty
    * @row = row
    * @col = col
    * @xpxl = x pixels
    * @ypxl = y pixels
    * return: -1 error or 0 ok
    */
   inline int ioChgWinPTY(int ptyfd, u_short row, u_short col, u_short xpxl, u_short ypxl);
   /*
    * ioSetOwnerPTY() Set owner to PTY
    * @ttyname = tty filename
    * @UID = uid
    * @GID = gid
    * return: -1 error or 0 ok
    */
   int ioSetOwnerPTY(const char *ttyname, uid_t UID, gid_t GID);
   
   
 #endif  #endif

Removed from v.1.11.2.14  
changed lines
  Added in v.1.11.2.15


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>