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

version 1.11.2.13, 2011/09/07 13:49:28 version 1.11.2.14, 2011/09/19 21:59:57
Line 751  int io_Blowfish(unsigned char *pInput, int inLen, unsi Line 751  int io_Blowfish(unsigned char *pInput, int inLen, unsi
                 unsigned char *pKey, unsigned char *pIV, int nMode);                  unsigned char *pKey, unsigned char *pIV, int nMode);
   
   
   /*
    * ioAllocPTY() Allocate new PTY
    * @ptyfd = master fd, pty
    * @ttyfd = slave fd, tty
    * @name = tty device name if not null
    * @namesiz = name length, must be above 63 bytes.
    * @term = termios for terminal
    * @winz = winsize for terminal
    * return: -1 error or 0 ok
    */
   inline int ioAllocPTY(int *ptyfd, int *ttyfd, char * __restrict name, int namesiz, 
                   struct termios * __restrict term, struct winsize * __restrict winz);
   /*
    * ioFreePTY() Release PTY
    * @ttyname = tty filename
    * return: none
    */
   inline void ioFreePTY(const char *ttyname);
   
   
 #endif  #endif

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


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