compilation changes

This commit is contained in:
Nathan Moinvaziri 2012-10-21 15:20:13 -07:00
parent 3daf6bbb30
commit f427edba15
3 changed files with 12 additions and 19 deletions

16
ioapi.c
View File

@ -9,19 +9,19 @@
For more info read MiniZip_info.txt
*/
#if (defined(_WIN32))
#ifndef _CRT_SECURE_NO_WARNINGS
#define _CRT_SECURE_NO_WARNINGS
#endif
#include <tchar.h>
#define snprintf _snprintf
#endif
#include <stdlib.h>
#include <string.h>
#include "ioapi.h"
#if (defined(_WIN32))
#include <tchar.h>
#define snprintf _snprintf
#ifndef _CRT_SECURE_NO_WARNINGS
#define _CRT_SECURE_NO_WARNINGS
#endif
#endif
#if defined(__APPLE__) || defined(IOAPI_NO_64)
// In darwin and perhaps other BSD variants off_t is a 64 bit value, hence no need for specific 64 bit functions
#define FOPEN_FUNC(filename, mode) fopen(filename, mode)

View File

@ -29,8 +29,8 @@
#define PRINTF _cprintf
#define VPRINTF _vcprintf
#else
#define PRINTF(x, ...)
#define VPRINTF(x, ...)
#define PRINTF printf
#define VPRINTF vprintf
#endif
//#define IOBUF_VERBOSE
@ -78,7 +78,7 @@ void print_buf_internal(voidpf opaque, voidpf stream, char *format, ...)
{
ourstream_t *streamio = (ourstream_t *)stream;
va_list arglist;
PRINTF("Buf stream %08x - ", streamio);
PRINTF("Buf stream %p - ", streamio);
va_start(arglist, format);
VPRINTF(format, arglist);
va_end(arglist);

View File

@ -10,15 +10,8 @@
For more info read MiniZip_info.txt
*/
#if (defined(_WIN32))
#ifndef _CRT_SECURE_NO_WARNINGS
#define _CRT_SECURE_NO_WARNINGS
#endif
#include <tchar.h>
#define snprintf _snprintf
#endif
#include <stdlib.h>
#include <tchar.h>
#include "zlib.h"
#include "ioapi.h"