search for: _wutime64

Displaying 2 results from an estimated 2 matches for "_wutime64".

2019 Aug 14
0
A small build fix for some MinGW toolchains
Hello! Many years ago I have found some bugs are prevented build of libFLAC on some MinGW toolchains and I made my own patch to fix that. - The `_wutime64()` call may absent. For this case I using the `_wutime()` call as a fallback when _wutime64() is unavailable. - `_stricmp` and `_strnicmp` are also may fail. Therefore it's prefer to use `stricmp` and `strnicmp` (without `_` prefix) on MinGW toolchains. I have added a small check into CMake...
2013 Apr 20
1
One tiny Windows Unicode patch
I have been doing some heavy testing with the new FLAC version, and I found that CreateFile function in grabbag had been left out of UTF-8 treatment at some point. This causes re-encoding an existing flac to the same name to break the file if it contains non-ascii characters. Attached patch fixes this. -------------- next part -------------- diff --git a/include/share/win_utf8_io.h