Committed on the Free edition of March Hare Software CVSNT Server. Upgrade to CVS Suite for more features and support: http://march-hare.com/cvsnt/ git-svn-id: http://moon:8086/svn/vhdl/trunk@448 cc03376c-175c-47c8-b038-4cd826a8556b
16 lines
543 B
C
16 lines
543 B
C
#ifdef USE_ZLIB_STRUCT
|
|
#include "SysZLib.h" // For PalmOS. Change to your liking.
|
|
#else
|
|
typedef struct z_stream_s
|
|
{
|
|
unsigned char *next_in; // Next input byte (CHANGES)
|
|
unsigned int avail_in; // number of bytes left at next_in
|
|
unsigned char *next_out; // Next output byte goes here (CHANGES)
|
|
unsigned int avail_out; // number of bytes left at next_out
|
|
unsigned int reserved; // For the readbit() and readbits() functions
|
|
// Bigger than 1 byte
|
|
} z_stream;
|
|
#endif
|
|
|
|
int InflateData(z_stream *zs);
|