home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / k95source / ckozli.h < prev    next >
C/C++ Source or Header  |  2020-01-01  |  1KB  |  35 lines

  1. /*
  2.   C K O Z L I . H --  ZLIB Interface Header for Kermit 95
  3.  
  4.   Copyright (C) 2001,2004 Trustees of Columbia University in the City of New
  5.   York.  The C-Kermit software may not be, in whole or in part, licensed or
  6.   sold for profit as a software product itself, nor may it be included in or
  7.   distributed with commercial products or otherwise distributed by commercial
  8.   concerns to their clients or customers without written permission of the
  9.   Office of Kermit Development and Distribution, Columbia University.  This
  10.   copyright notice must not be removed, altered, or obscured.
  11.  
  12.   Author:  Jeffrey E Altman (jaltman@secure-endpoints.com)
  13.              Secure Endpoints Inc., New York City
  14. */
  15.  
  16. #ifdef OS2
  17. #ifdef ZLIB
  18. #include <zlib.h>
  19.  
  20. #define deflateInit_            ck_deflateInit_
  21. #define deflateEnd              ck_deflateEnd
  22. #define inflateInit_            ck_inflateInit_
  23. #define inflateEnd              ck_inflateEnd
  24. #define inflate                 ck_inflate
  25. #define deflate                 ck_deflate
  26.  
  27. int ck_deflateInit_(z_streamp strm, int level, const char *version, int stream_size);
  28. int ck_inflateInit_(z_streamp strm, const char *version, int stream_size);
  29. int ck_deflateEnd(z_streamp strm);
  30. int ck_inflateEnd(z_streamp strm);
  31. int ck_inflate(z_streamp strm, int flush);
  32. int ck_deflate(z_streamp strm, int flush);
  33. #endif /* ZLIB */
  34. #endif /* OS2 */
  35.