mirror of
https://github.com/zlib-ng/minizip-ng
synced 2025-03-28 21:13:18 +00:00
compilation changes
This commit is contained in:
parent
3daf6bbb30
commit
f427edba15
16
ioapi.c
16
ioapi.c
@ -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)
|
||||
|
@ -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);
|
||||
|
@ -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"
|
||||
|
Loading…
x
Reference in New Issue
Block a user