// Copyright: (c) Guilhem Lavaux
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-#ifndef __WXZSTREAM_H__
-#define __WXZSTREAM_H__
+#ifndef _WX_WXZSTREAM_H__
+#define _WX_WXZSTREAM_H__
#ifdef __GNUG__
#pragma interface
#endif
#include <wx/stream.h>
-#include "../zlib/zlib.h"
class wxZlibInputStream: public wxFilterInputStream {
public:
protected:
size_t m_z_size;
unsigned char *m_z_buffer;
- struct z_stream_s m_inflate;
+ struct z_stream_s *m_inflate;
};
class wxZlibOutputStream: public wxFilterOutputStream {
protected:
size_t m_z_size;
unsigned char *m_z_buffer;
- struct z_stream_s m_deflate;
+ struct z_stream_s *m_deflate;
};
#endif