home *** CD-ROM | disk | FTP | other *** search
/ back2roots/padua / padua.7z / padua / ftp.vapor.com / microdot-1 / md1_src_02.lzx / msgpack_protos.h < prev    next >
C/C++ Source or Header  |  2014-05-19  |  338b  |  17 lines

  1. /* Prototypes for functions defined in
  2. msgpack.c
  3.  */
  4.  
  5. struct pfhandle * pf_open(struct AsyncFile * , int , int , int * );
  6.  
  7. int pf_readch(struct pfhandle * );
  8.  
  9. int pf_read(struct pfhandle * , UBYTE * , int );
  10.  
  11. int pf_writech(struct pfhandle * , int );
  12.  
  13. int pf_write(struct pfhandle * , UBYTE * , int );
  14.  
  15. int pf_close(struct pfhandle * );
  16.  
  17.