2017-10-05 23:32:57 -07:00
|
|
|
/* mz_strm_win32.c -- Stream for filesystem access for windows
|
2018-11-13 15:22:15 -08:00
|
|
|
Version 2.7.5, November 13, 2018
|
2014-01-12 14:04:54 -07:00
|
|
|
part of the MiniZip project
|
2012-01-21 14:53:44 -07:00
|
|
|
|
2018-01-06 08:49:03 -08:00
|
|
|
Copyright (C) 2010-2018 Nathan Moinvaziri
|
2017-09-16 17:35:23 +08:00
|
|
|
https://github.com/nmoinvaz/minizip
|
|
|
|
Copyright (C) 2009-2010 Mathias Svensson
|
|
|
|
Modifications for Zip64 support
|
|
|
|
http://result42.com
|
2014-01-12 14:04:54 -07:00
|
|
|
Copyright (C) 1998-2010 Gilles Vollant
|
2018-10-17 22:39:01 +00:00
|
|
|
https://www.winimage.com/zLibDll/minizip.html
|
2014-01-12 14:04:54 -07:00
|
|
|
|
|
|
|
This program is distributed under the terms of the same license as zlib.
|
|
|
|
See the accompanying LICENSE file for the full text of the license.
|
2012-01-21 14:53:44 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2017-10-16 07:37:11 -07:00
|
|
|
#include "mz.h"
|
2018-10-24 09:50:16 -07:00
|
|
|
#include "mz_os.h"
|
2017-10-04 22:10:11 -07:00
|
|
|
#include "mz_strm.h"
|
2018-10-24 09:50:16 -07:00
|
|
|
#include "mz_strm_os.h"
|
2012-01-21 14:53:44 -07:00
|
|
|
|
2018-11-19 21:34:35 -08:00
|
|
|
#include <windows.h>
|
|
|
|
|
2017-10-03 21:56:07 -07:00
|
|
|
/***************************************************************************/
|
|
|
|
|
2012-01-21 14:53:44 -07:00
|
|
|
#ifndef INVALID_HANDLE_VALUE
|
2014-01-07 19:13:14 -07:00
|
|
|
# define INVALID_HANDLE_VALUE (0xFFFFFFFF)
|
2012-01-21 14:53:44 -07:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef INVALID_SET_FILE_POINTER
|
2014-01-07 19:13:14 -07:00
|
|
|
# define INVALID_SET_FILE_POINTER ((DWORD)-1)
|
2012-01-21 14:53:44 -07:00
|
|
|
#endif
|
|
|
|
|
2018-06-19 11:59:07 -07:00
|
|
|
#if defined(WINAPI_FAMILY_ONE_PARTITION) && !defined(MZ_WINRT_API)
|
2017-10-23 22:42:57 -07:00
|
|
|
# if WINAPI_FAMILY_ONE_PARTITION(WINAPI_FAMILY, WINAPI_PARTITION_APP)
|
2018-06-19 11:59:07 -07:00
|
|
|
# define MZ_WINRT_API 1
|
2014-10-12 20:19:51 -07:00
|
|
|
# endif
|
|
|
|
#endif
|
2014-01-04 22:23:51 -07:00
|
|
|
|
2017-10-03 21:56:07 -07:00
|
|
|
/***************************************************************************/
|
|
|
|
|
2018-10-24 09:50:16 -07:00
|
|
|
static mz_stream_vtbl mz_stream_os_vtbl = {
|
|
|
|
mz_stream_os_open,
|
|
|
|
mz_stream_os_is_open,
|
|
|
|
mz_stream_os_read,
|
|
|
|
mz_stream_os_write,
|
|
|
|
mz_stream_os_tell,
|
|
|
|
mz_stream_os_seek,
|
|
|
|
mz_stream_os_close,
|
|
|
|
mz_stream_os_error,
|
|
|
|
mz_stream_os_create,
|
|
|
|
mz_stream_os_delete,
|
2018-05-02 21:34:22 +00:00
|
|
|
NULL,
|
|
|
|
NULL
|
2017-10-08 21:48:28 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
2017-10-01 21:43:24 -07:00
|
|
|
typedef struct mz_stream_win32_s
|
2012-01-21 14:53:44 -07:00
|
|
|
{
|
2017-10-08 23:26:17 -07:00
|
|
|
mz_stream stream;
|
2017-10-08 21:48:28 -07:00
|
|
|
HANDLE handle;
|
|
|
|
int32_t error;
|
2017-10-01 21:43:24 -07:00
|
|
|
} mz_stream_win32;
|
2017-09-29 21:02:09 -07:00
|
|
|
|
2017-10-03 21:56:07 -07:00
|
|
|
/***************************************************************************/
|
|
|
|
|
2018-11-07 20:24:59 -08:00
|
|
|
#if 0
|
|
|
|
# define mz_stream_os_print printf
|
|
|
|
#else
|
|
|
|
# define mz_stream_os_print(fmt,...)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
2018-10-24 09:50:16 -07:00
|
|
|
int32_t mz_stream_os_open(void *stream, const char *path, int32_t mode)
|
2012-01-21 14:53:44 -07:00
|
|
|
{
|
2017-10-01 21:43:24 -07:00
|
|
|
mz_stream_win32 *win32 = (mz_stream_win32 *)stream;
|
2017-09-29 21:02:09 -07:00
|
|
|
uint32_t desired_access = 0;
|
|
|
|
uint32_t creation_disposition = 0;
|
2017-10-01 20:33:01 -07:00
|
|
|
uint32_t share_mode = FILE_SHARE_READ;
|
2017-09-29 21:02:09 -07:00
|
|
|
uint32_t flags_attribs = FILE_ATTRIBUTE_NORMAL;
|
2017-10-01 22:42:35 -07:00
|
|
|
wchar_t *path_wide = NULL;
|
2017-10-20 07:59:39 -07:00
|
|
|
|
2017-09-29 21:02:09 -07:00
|
|
|
|
2017-10-01 22:42:35 -07:00
|
|
|
if (path == NULL)
|
2018-10-28 16:15:13 -07:00
|
|
|
return MZ_PARAM_ERROR;
|
2017-09-29 21:02:09 -07:00
|
|
|
|
2018-10-31 16:46:34 -07:00
|
|
|
// Some use cases require write sharing as well
|
|
|
|
share_mode |= FILE_SHARE_WRITE;
|
|
|
|
|
2017-10-23 17:22:36 -07:00
|
|
|
if ((mode & MZ_OPEN_MODE_READWRITE) == MZ_OPEN_MODE_READ)
|
2012-01-21 14:53:44 -07:00
|
|
|
{
|
2017-09-29 21:02:09 -07:00
|
|
|
desired_access = GENERIC_READ;
|
|
|
|
creation_disposition = OPEN_EXISTING;
|
2012-01-21 14:53:44 -07:00
|
|
|
}
|
2017-10-23 17:22:36 -07:00
|
|
|
else if (mode & MZ_OPEN_MODE_APPEND)
|
2012-01-21 14:53:44 -07:00
|
|
|
{
|
2017-09-29 21:02:09 -07:00
|
|
|
desired_access = GENERIC_WRITE | GENERIC_READ;
|
|
|
|
creation_disposition = OPEN_EXISTING;
|
2012-01-21 14:53:44 -07:00
|
|
|
}
|
2017-10-23 17:22:36 -07:00
|
|
|
else if (mode & MZ_OPEN_MODE_CREATE)
|
2012-01-21 14:53:44 -07:00
|
|
|
{
|
2017-09-29 21:02:09 -07:00
|
|
|
desired_access = GENERIC_WRITE | GENERIC_READ;
|
|
|
|
creation_disposition = CREATE_ALWAYS;
|
2012-01-21 14:53:44 -07:00
|
|
|
}
|
2017-09-29 21:02:09 -07:00
|
|
|
else
|
2012-01-21 14:53:44 -07:00
|
|
|
{
|
2018-10-30 13:59:17 -07:00
|
|
|
return MZ_PARAM_ERROR;
|
2012-01-21 14:53:44 -07:00
|
|
|
}
|
|
|
|
|
2018-11-13 17:42:13 -08:00
|
|
|
mz_stream_os_print("Win32 - Open - %s (mode %"PRId32")\n", path);
|
2018-11-07 20:24:59 -08:00
|
|
|
|
2018-10-30 13:59:17 -07:00
|
|
|
path_wide = mz_os_unicode_string_create(path, MZ_ENCODING_UTF8);
|
|
|
|
if (path_wide == NULL)
|
|
|
|
return MZ_PARAM_ERROR;
|
2015-11-25 01:35:03 -07:00
|
|
|
|
2018-06-19 11:59:07 -07:00
|
|
|
#ifdef MZ_WINRT_API
|
2018-10-26 20:00:52 -07:00
|
|
|
win32->handle = CreateFile2W(path_wide, desired_access, share_mode,
|
|
|
|
creation_disposition, NULL);
|
2014-01-04 22:23:51 -07:00
|
|
|
#else
|
2018-10-26 20:00:52 -07:00
|
|
|
win32->handle = CreateFileW(path_wide, desired_access, share_mode, NULL,
|
|
|
|
creation_disposition, flags_attribs, NULL);
|
2014-01-04 22:23:51 -07:00
|
|
|
#endif
|
2012-01-21 14:53:44 -07:00
|
|
|
|
2018-10-24 09:50:16 -07:00
|
|
|
mz_os_unicode_string_delete(&path_wide);
|
2012-01-21 14:53:44 -07:00
|
|
|
|
2018-10-24 09:50:16 -07:00
|
|
|
if (mz_stream_os_is_open(stream) != MZ_OK)
|
2017-10-01 20:33:01 -07:00
|
|
|
{
|
|
|
|
win32->error = GetLastError();
|
2018-10-28 16:15:13 -07:00
|
|
|
return MZ_OPEN_ERROR;
|
2017-10-01 20:33:01 -07:00
|
|
|
}
|
2012-01-21 14:53:44 -07:00
|
|
|
|
2017-10-23 17:22:36 -07:00
|
|
|
if (mode & MZ_OPEN_MODE_APPEND)
|
2018-10-24 09:50:16 -07:00
|
|
|
return mz_stream_os_seek(stream, 0, MZ_SEEK_END);
|
2017-10-04 22:36:29 -07:00
|
|
|
|
2018-04-24 10:02:39 +00:00
|
|
|
return MZ_OK;
|
2012-01-21 14:53:44 -07:00
|
|
|
}
|
|
|
|
|
2018-10-24 09:50:16 -07:00
|
|
|
int32_t mz_stream_os_is_open(void *stream)
|
2012-01-21 14:53:44 -07:00
|
|
|
{
|
2017-10-01 21:43:24 -07:00
|
|
|
mz_stream_win32 *win32 = (mz_stream_win32 *)stream;
|
2017-09-29 21:02:09 -07:00
|
|
|
if (win32->handle == NULL || win32->handle == INVALID_HANDLE_VALUE)
|
2018-10-28 16:15:13 -07:00
|
|
|
return MZ_OPEN_ERROR;
|
2017-10-03 21:56:07 -07:00
|
|
|
return MZ_OK;
|
2012-01-21 14:53:44 -07:00
|
|
|
}
|
|
|
|
|
2018-10-24 09:50:16 -07:00
|
|
|
int32_t mz_stream_os_read(void *stream, void *buf, int32_t size)
|
2012-01-21 14:53:44 -07:00
|
|
|
{
|
2017-10-01 21:43:24 -07:00
|
|
|
mz_stream_win32 *win32 = (mz_stream_win32 *)stream;
|
2017-09-29 21:02:09 -07:00
|
|
|
uint32_t read = 0;
|
2012-01-21 14:53:44 -07:00
|
|
|
|
2018-10-24 09:50:16 -07:00
|
|
|
if (mz_stream_os_is_open(stream) != MZ_OK)
|
2018-10-28 16:15:13 -07:00
|
|
|
return MZ_OPEN_ERROR;
|
2012-01-21 14:53:44 -07:00
|
|
|
|
2017-10-20 07:59:39 -07:00
|
|
|
if (!ReadFile(win32->handle, buf, size, (DWORD *)&read, NULL))
|
2014-01-04 22:23:51 -07:00
|
|
|
{
|
2017-09-29 21:02:09 -07:00
|
|
|
win32->error = GetLastError();
|
|
|
|
if (win32->error == ERROR_HANDLE_EOF)
|
|
|
|
win32->error = 0;
|
2014-01-04 22:23:51 -07:00
|
|
|
}
|
2012-01-21 14:53:44 -07:00
|
|
|
|
2018-11-13 17:42:13 -08:00
|
|
|
mz_stream_os_print("Win32 - Read - %"PRId32"\n", read);
|
2018-11-07 20:24:59 -08:00
|
|
|
|
2017-09-29 21:02:09 -07:00
|
|
|
return read;
|
2012-01-21 14:53:44 -07:00
|
|
|
}
|
|
|
|
|
2018-10-24 09:50:16 -07:00
|
|
|
int32_t mz_stream_os_write(void *stream, const void *buf, int32_t size)
|
2012-01-21 15:10:18 -07:00
|
|
|
{
|
2017-10-01 21:43:24 -07:00
|
|
|
mz_stream_win32 *win32 = (mz_stream_win32 *)stream;
|
2018-10-23 09:04:04 -07:00
|
|
|
int32_t written = 0;
|
2012-01-21 15:10:18 -07:00
|
|
|
|
2018-10-24 09:50:16 -07:00
|
|
|
if (mz_stream_os_is_open(stream) != MZ_OK)
|
2018-10-28 16:15:13 -07:00
|
|
|
return MZ_OPEN_ERROR;
|
2012-01-21 15:10:18 -07:00
|
|
|
|
2017-10-20 07:59:39 -07:00
|
|
|
if (!WriteFile(win32->handle, buf, size, (DWORD *)&written, NULL))
|
2012-01-21 15:10:18 -07:00
|
|
|
{
|
2017-09-29 21:02:09 -07:00
|
|
|
win32->error = GetLastError();
|
|
|
|
if (win32->error == ERROR_HANDLE_EOF)
|
|
|
|
win32->error = 0;
|
2012-01-21 15:10:18 -07:00
|
|
|
}
|
|
|
|
|
2018-11-13 17:42:13 -08:00
|
|
|
mz_stream_os_print("Win32 - Write - %"PRId32"\n", written);
|
2018-11-07 20:24:59 -08:00
|
|
|
|
2017-09-29 21:02:09 -07:00
|
|
|
return written;
|
2012-01-21 15:10:18 -07:00
|
|
|
}
|
|
|
|
|
2018-10-26 20:00:52 -07:00
|
|
|
static int32_t mz_stream_os_seekinternal(HANDLE handle, LARGE_INTEGER large_pos,
|
|
|
|
LARGE_INTEGER *new_pos, uint32_t move_method)
|
2012-01-21 15:10:18 -07:00
|
|
|
{
|
2018-06-19 11:59:07 -07:00
|
|
|
#ifdef MZ_WINRT_API
|
2017-09-29 21:02:09 -07:00
|
|
|
return SetFilePointerEx(handle, pos, newPos, dwMoveMethod);
|
|
|
|
#else
|
2018-10-23 09:04:04 -07:00
|
|
|
LONG high_part = 0;
|
|
|
|
uint32_t pos = 0;
|
|
|
|
|
|
|
|
high_part = large_pos.HighPart;
|
|
|
|
pos = SetFilePointer(handle, large_pos.LowPart, &high_part, move_method);
|
2012-01-21 14:53:44 -07:00
|
|
|
|
2017-09-29 21:02:09 -07:00
|
|
|
if ((pos == INVALID_SET_FILE_POINTER) && (GetLastError() != NO_ERROR))
|
2018-10-28 16:15:13 -07:00
|
|
|
return MZ_SEEK_ERROR;
|
2012-01-21 14:53:44 -07:00
|
|
|
|
2017-09-29 21:02:09 -07:00
|
|
|
if (new_pos != NULL)
|
2012-01-21 14:53:44 -07:00
|
|
|
{
|
2017-09-29 21:02:09 -07:00
|
|
|
new_pos->LowPart = pos;
|
|
|
|
new_pos->HighPart = high_part;
|
2012-01-21 14:53:44 -07:00
|
|
|
}
|
|
|
|
|
2017-10-03 21:56:07 -07:00
|
|
|
return MZ_OK;
|
2017-09-29 21:02:09 -07:00
|
|
|
#endif
|
2012-01-21 14:53:44 -07:00
|
|
|
}
|
|
|
|
|
2018-10-24 09:50:16 -07:00
|
|
|
int64_t mz_stream_os_tell(void *stream)
|
2012-01-21 14:53:44 -07:00
|
|
|
{
|
2017-10-01 21:43:24 -07:00
|
|
|
mz_stream_win32 *win32 = (mz_stream_win32 *)stream;
|
2017-09-29 21:02:09 -07:00
|
|
|
LARGE_INTEGER large_pos;
|
2012-01-21 14:53:44 -07:00
|
|
|
|
2018-10-24 09:50:16 -07:00
|
|
|
if (mz_stream_os_is_open(stream) != MZ_OK)
|
2018-10-28 16:15:13 -07:00
|
|
|
return MZ_OPEN_ERROR;
|
2012-01-21 14:53:44 -07:00
|
|
|
|
2017-09-29 21:02:09 -07:00
|
|
|
large_pos.QuadPart = 0;
|
2012-01-21 14:53:44 -07:00
|
|
|
|
2018-10-24 09:50:16 -07:00
|
|
|
if (mz_stream_os_seekinternal(win32->handle, large_pos, &large_pos, FILE_CURRENT) != MZ_OK)
|
2017-10-20 07:59:39 -07:00
|
|
|
win32->error = GetLastError();
|
2014-01-04 22:23:51 -07:00
|
|
|
|
2018-11-13 17:42:13 -08:00
|
|
|
mz_stream_os_print("Win32 - Tell - %"PRId64"\n", large_pos.QuadPart);
|
2018-11-07 20:24:59 -08:00
|
|
|
|
2017-10-16 14:50:31 -07:00
|
|
|
return large_pos.QuadPart;
|
2012-01-21 14:53:44 -07:00
|
|
|
}
|
|
|
|
|
2018-10-24 09:50:16 -07:00
|
|
|
int32_t mz_stream_os_seek(void *stream, int64_t offset, int32_t origin)
|
2012-01-21 14:53:44 -07:00
|
|
|
{
|
2017-10-01 21:43:24 -07:00
|
|
|
mz_stream_win32 *win32 = (mz_stream_win32 *)stream;
|
2017-09-29 21:02:09 -07:00
|
|
|
uint32_t move_method = 0xFFFFFFFF;
|
2018-10-28 16:15:13 -07:00
|
|
|
int32_t err = MZ_OK;
|
2017-09-29 21:02:09 -07:00
|
|
|
LARGE_INTEGER large_pos;
|
2012-01-21 14:53:44 -07:00
|
|
|
|
|
|
|
|
2018-10-28 15:48:44 -07:00
|
|
|
if (mz_stream_os_is_open(stream) != MZ_OK)
|
2018-10-28 16:15:13 -07:00
|
|
|
return MZ_OPEN_ERROR;
|
2013-12-20 13:59:33 -07:00
|
|
|
|
2012-01-21 14:53:44 -07:00
|
|
|
switch (origin)
|
|
|
|
{
|
2017-10-23 17:22:36 -07:00
|
|
|
case MZ_SEEK_CUR:
|
2017-09-29 21:02:09 -07:00
|
|
|
move_method = FILE_CURRENT;
|
2013-12-20 13:59:33 -07:00
|
|
|
break;
|
2017-10-23 17:22:36 -07:00
|
|
|
case MZ_SEEK_END:
|
2017-09-29 21:02:09 -07:00
|
|
|
move_method = FILE_END;
|
2013-12-20 13:59:33 -07:00
|
|
|
break;
|
2017-10-23 17:22:36 -07:00
|
|
|
case MZ_SEEK_SET:
|
2017-09-29 21:02:09 -07:00
|
|
|
move_method = FILE_BEGIN;
|
2013-12-20 13:59:33 -07:00
|
|
|
break;
|
|
|
|
default:
|
2018-10-28 16:15:13 -07:00
|
|
|
return MZ_SEEK_ERROR;
|
2012-01-21 14:53:44 -07:00
|
|
|
}
|
|
|
|
|
2018-11-13 17:42:13 -08:00
|
|
|
mz_stream_os_print("Win32 - Seek - %"PRId64" (origin %"PRId32")\n", offset, origin);
|
2018-11-07 20:24:59 -08:00
|
|
|
|
2017-09-29 21:02:09 -07:00
|
|
|
large_pos.QuadPart = offset;
|
2012-01-21 14:53:44 -07:00
|
|
|
|
2018-10-28 16:15:13 -07:00
|
|
|
err = mz_stream_os_seekinternal(win32->handle, large_pos, NULL, move_method);
|
|
|
|
if (err != MZ_OK)
|
2012-01-21 14:53:44 -07:00
|
|
|
{
|
2017-10-20 07:59:39 -07:00
|
|
|
win32->error = GetLastError();
|
2018-10-28 16:15:13 -07:00
|
|
|
return err;
|
2012-01-21 14:53:44 -07:00
|
|
|
}
|
|
|
|
|
2017-10-03 21:56:07 -07:00
|
|
|
return MZ_OK;
|
2012-01-21 14:53:44 -07:00
|
|
|
}
|
|
|
|
|
2018-10-24 09:50:16 -07:00
|
|
|
int32_t mz_stream_os_close(void *stream)
|
2012-01-21 14:53:44 -07:00
|
|
|
{
|
2017-10-01 21:43:24 -07:00
|
|
|
mz_stream_win32 *win32 = (mz_stream_win32 *)stream;
|
2017-09-29 21:02:09 -07:00
|
|
|
|
|
|
|
if (win32->handle != NULL)
|
|
|
|
CloseHandle(win32->handle);
|
2018-11-07 20:24:59 -08:00
|
|
|
mz_stream_os_print("Win32 - Close\n");
|
2017-09-29 21:02:09 -07:00
|
|
|
win32->handle = NULL;
|
2017-10-03 21:56:07 -07:00
|
|
|
return MZ_OK;
|
2012-01-21 14:53:44 -07:00
|
|
|
}
|
|
|
|
|
2018-10-24 09:50:16 -07:00
|
|
|
int32_t mz_stream_os_error(void *stream)
|
2012-01-21 14:53:44 -07:00
|
|
|
{
|
2017-10-01 21:43:24 -07:00
|
|
|
mz_stream_win32 *win32 = (mz_stream_win32 *)stream;
|
2017-09-29 21:02:09 -07:00
|
|
|
return win32->error;
|
2012-01-21 14:53:44 -07:00
|
|
|
}
|
|
|
|
|
2018-10-24 09:50:16 -07:00
|
|
|
void *mz_stream_os_create(void **stream)
|
2012-01-21 14:53:44 -07:00
|
|
|
{
|
2017-10-01 21:43:24 -07:00
|
|
|
mz_stream_win32 *win32 = NULL;
|
2012-01-21 14:53:44 -07:00
|
|
|
|
2018-05-02 20:01:35 -07:00
|
|
|
win32 = (mz_stream_win32 *)MZ_ALLOC(sizeof(mz_stream_win32));
|
2017-10-01 21:43:24 -07:00
|
|
|
if (win32 != NULL)
|
|
|
|
{
|
|
|
|
memset(win32, 0, sizeof(mz_stream_win32));
|
2018-10-24 09:50:16 -07:00
|
|
|
win32->stream.vtbl = &mz_stream_os_vtbl;
|
2017-10-01 21:43:24 -07:00
|
|
|
}
|
|
|
|
if (stream != NULL)
|
|
|
|
*stream = win32;
|
2017-09-29 21:02:09 -07:00
|
|
|
|
2017-10-01 22:42:35 -07:00
|
|
|
return win32;
|
2012-01-21 14:53:44 -07:00
|
|
|
}
|
|
|
|
|
2018-10-24 09:50:16 -07:00
|
|
|
void mz_stream_os_delete(void **stream)
|
2012-01-21 14:53:44 -07:00
|
|
|
{
|
2017-10-01 21:43:24 -07:00
|
|
|
mz_stream_win32 *win32 = NULL;
|
|
|
|
if (stream == NULL)
|
|
|
|
return;
|
|
|
|
win32 = (mz_stream_win32 *)*stream;
|
2017-09-29 21:02:09 -07:00
|
|
|
if (win32 != NULL)
|
2018-05-02 20:01:35 -07:00
|
|
|
MZ_FREE(win32);
|
2017-10-05 18:45:23 -07:00
|
|
|
*stream = NULL;
|
2017-10-01 20:33:01 -07:00
|
|
|
}
|
2017-10-08 21:48:28 -07:00
|
|
|
|
2018-10-24 09:50:16 -07:00
|
|
|
void *mz_stream_os_get_interface(void)
|
2017-10-08 21:48:28 -07:00
|
|
|
{
|
2018-10-24 09:50:16 -07:00
|
|
|
return (void *)&mz_stream_os_vtbl;
|
2018-05-02 19:59:38 +00:00
|
|
|
}
|