X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/46dc76ba3573649a9ed7c7aff6dc677f533eee11..1b826605f5ab0bb680925f5e24a57b068ce2bdc5:/include/wx/zstream.h diff --git a/include/wx/zstream.h b/include/wx/zstream.h index 326058f3fb..65fa71c615 100644 --- a/include/wx/zstream.h +++ b/include/wx/zstream.h @@ -8,15 +8,14 @@ // 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 -#include "../zlib/zlib.h" class wxZlibInputStream: public wxFilterInputStream { public: @@ -33,7 +32,7 @@ class wxZlibInputStream: public wxFilterInputStream { 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 { @@ -53,7 +52,7 @@ 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