File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 126
126
/* If MINIZ_NO_TIME is specified then the ZIP archive functions will not be able to get the current time, or */
127
127
/* get/set file times, and the C run-time funcs that get/set times won't be called. */
128
128
/* The current downside is the times written to your archives will be from 1979. */
129
- /* #define MINIZ_NO_TIME */
129
+ #define MINIZ_NO_TIME
130
130
131
131
/* Define MINIZ_NO_DEFLATE_APIS to disable all compression API's. */
132
- /* #define MINIZ_NO_DEFLATE_APIS */
132
+ #define MINIZ_NO_DEFLATE_APIS
133
133
134
134
/* Define MINIZ_NO_INFLATE_APIS to disable all decompression API's. */
135
135
/*#define MINIZ_NO_INFLATE_APIS */
138
138
/*#define MINIZ_NO_ARCHIVE_APIS */
139
139
140
140
/* Define MINIZ_NO_ARCHIVE_WRITING_APIS to disable all writing related ZIP archive API's. */
141
- /* #define MINIZ_NO_ARCHIVE_WRITING_APIS */
141
+ #define MINIZ_NO_ARCHIVE_WRITING_APIS
142
142
143
143
/* Define MINIZ_NO_ZLIB_APIS to remove all ZLIB-style compression/decompression API's. */
144
- /* #define MINIZ_NO_ZLIB_APIS */
144
+ #define MINIZ_NO_ZLIB_APIS
145
145
146
146
/* Define MINIZ_NO_ZLIB_COMPATIBLE_NAME to disable zlib names, to prevent conflicts against stock zlib. */
147
- /* #define MINIZ_NO_ZLIB_COMPATIBLE_NAMES */
147
+ #define MINIZ_NO_ZLIB_COMPATIBLE_NAMES
148
148
149
149
/* Define MINIZ_NO_MALLOC to disable all calls to malloc, free, and realloc.
150
150
Note if MINIZ_NO_MALLOC is defined then the user must always provide custom user alloc/free/realloc
You can’t perform that action at this time.
0 commit comments