mirror of
https://github.com/fabiangreffrath/woof.git
synced 2025-08-03 20:57:55 -04:00
bump miniz to 3.0.2
This commit is contained in:
parent
76ad131d43
commit
4d5adaf346
@ -3068,7 +3068,7 @@ static WCHAR* mz_utf8z_to_widechar(const char* str)
|
|||||||
{
|
{
|
||||||
int reqChars = MultiByteToWideChar(CP_UTF8, 0, str, -1, NULL, 0);
|
int reqChars = MultiByteToWideChar(CP_UTF8, 0, str, -1, NULL, 0);
|
||||||
WCHAR* wStr = (WCHAR*)malloc(reqChars * sizeof(WCHAR));
|
WCHAR* wStr = (WCHAR*)malloc(reqChars * sizeof(WCHAR));
|
||||||
MultiByteToWideChar(CP_UTF8, 0, str, -1, wStr, sizeof(WCHAR) * reqChars);
|
MultiByteToWideChar(CP_UTF8, 0, str, -1, wStr, reqChars);
|
||||||
return wStr;
|
return wStr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -275,10 +275,10 @@ enum
|
|||||||
MZ_DEFAULT_COMPRESSION = -1
|
MZ_DEFAULT_COMPRESSION = -1
|
||||||
};
|
};
|
||||||
|
|
||||||
#define MZ_VERSION "11.0.1"
|
#define MZ_VERSION "11.0.2"
|
||||||
#define MZ_VERNUM 0xB001
|
#define MZ_VERNUM 0xB002
|
||||||
#define MZ_VER_MAJOR 11
|
#define MZ_VER_MAJOR 11
|
||||||
#define MZ_VER_MINOR 1
|
#define MZ_VER_MINOR 2
|
||||||
#define MZ_VER_REVISION 0
|
#define MZ_VER_REVISION 0
|
||||||
#define MZ_VER_SUBREVISION 0
|
#define MZ_VER_SUBREVISION 0
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user