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

  1. /* Prototypes for functions defined in
  2. mail.c
  3.  */
  4.  
  5. struct msghandle * msg_open(ULONG , ULONG );
  6.  
  7. void msg_close(struct msghandle * );
  8.  
  9. int msg_copy(struct msghandle * , char * , ULONG );
  10.  
  11. int msg_loadheader(struct msghandle * );
  12.  
  13. int msg_initread(struct msghandle * , int );
  14.  
  15. void msg_endread(struct msghandle * );
  16.  
  17. int msg_read(struct msghandle * , UBYTE * , int );
  18.  
  19.