Read unzip.h for more info
*/
+#if !defined(__VISAGECPP__)
+# pragma warning(disable:4001) /* non standard extension used: single line comment */
+#endif
#include "wx/setup.h"
#if wxUSE_ZLIB && wxUSE_ZIPSTREAM
#include <stdlib.h>
#include <string.h>
#include "zlib.h"
+
+/* Not the right solution (paths in makefiles) but... */
+#ifdef __BORLANDC__
+#include "../common/unzip.h"
+#else
#include "unzip.h"
+#endif
#ifdef STDC
# include <stddef.h>
} unz_s;
#if defined (__VISAGECPP__)
-// VA always requires prototypes
+/* VA always requires prototypes */
int unzlocal_CheckCurrentFileCoherencyHeader (unz_s*, uInt*, uLong*, uInt*);
#endif
#else
-// the file shouldn't be empty, som compilers don't like it
+/* the file shouldn't be empty, som compilers don't like it */
static const int dummyVariableInUnzip = 17;
-#endif // wxUSE_ZLIB && wxUSE_ZIPSTREAM
+#endif /* wxUSE_ZLIB && wxUSE_ZIPSTREAM */