home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1999 November / PCONLINE_11_99.ISO / filesbbs / OS2 / MMSRC029.ZIP / mmail-0.29 / mmail / compress.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-07-10  |  519 b   |  21 lines

  1. /*
  2.  * MultiMail offline mail reader
  3.  * compress and decompress packets
  4.  
  5.  Copyright (c) 1997 John Zero <john@graphisoft.hu>
  6.  Copyright (c) 1999 William McBrine <wmcbrine@clark.net>
  7.  
  8.  Distributed under the GNU General Public License.
  9.  For details, see the file COPYING in the parent directory. */
  10.  
  11. #ifndef COMPRESS_H
  12. #define COMPRESS_H
  13.  
  14. #include "mmail.h"
  15.  
  16. pktstatus uncompressFile(resource *, const char *, const char *,
  17.     bool = false);
  18. int compressAddFile(resource *, const char *, const char *, const char *);
  19.  
  20. #endif
  21.