Displaying 2 results from an estimated 2 matches for "wgetmainarg".
Did you mean:
wgetmainargs
2014 Jun 27
0
[PATCH 5] underscore fixes
* The first patch replaces _declspec with __declspec.
* The second patch replaces __wgetmainargs_ with __wgetmainargs_t and
__wgetmainargs with wgetmainargs.
Reason: names that begin with double underscore are reserved.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 5.1_declspec.patch
Type: application/octet-stream
Size: 882 bytes
Desc: not available
Url :...
2015 Jul 20
0
flac on windows 2000
If anybody wants to know: current flac.exe is not compatible with
Windows 2000. The only reason for this is the following line from
get_utf8_argv() function from src/share/win_utf8_io/win_utf8_io.c:
if (wgetmainargs(&wargc, &wargv, &wenv, 1, &i) != 0) return 1;
Windows 2000 has slightly older version of msvcrt.dll, and this check
always fails. I found an explanation about it here:
http://lists.gnu.org/archive/html/tinycc-devel/2014-11/msg00005.html
(it's not something that should be fixe...