X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/84fff0b395adcfecd09dd65389ba7c1c47dd7eee..0f90ec936573acad29a7050eb607e3b372953c7a:/src/common/zstream.cpp diff --git a/src/common/zstream.cpp b/src/common/zstream.cpp index 90d3338161..09953c87d1 100644 --- a/src/common/zstream.cpp +++ b/src/common/zstream.cpp @@ -8,6 +8,7 @@ // Copyright: (c) Guilhem Lavaux // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// + #ifdef __GNUG__ #pragma implementation "zstream.h" #endif @@ -15,18 +16,21 @@ // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" -#include "wx/zstream.h" +#ifdef __BORLANDC__ + #pragma hdrstop +#endif + +#ifndef WX_PRECOMP + #include "wx/defs.h" +#endif -#if wxUSE_ZLIB +#if wxUSE_ZLIB && wxUSE_STREAMS +#include "wx/zstream.h" #include "wx/utils.h" #include "wx/intl.h" #include "wx/log.h" -#include "../zlib/zlib.h" // don't change this, Robert - -#ifdef __BORLANDC__ -#pragma hdrstop -#endif +#include "zlib.h" #define ZSTREAM_BUFFER_SIZE 1024 @@ -186,6 +190,5 @@ size_t wxZlibOutputStream::OnSysWrite(const void *buffer, size_t size) } #endif - - // wxUSE_ZLIB + // wxUSE_ZLIB && wxUSE_STREAMS