search for: outputdebugstringw

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

Did you mean: outputdebugstring
2017 Jan 06
1
[PATCH 5/5] win_utf8_io: Avoid forbidden functions when building for WinRT/UWP
...Again, doesn't work with older MSVS and MinGW. > DWORD out; > int ret; > @@ -202,6 +206,11 @@ static int wprint_console(FILE *stream, const > wchar_t *text, size_t len) > if (ret < 0) > return ret; > return len; > +#else > + (void)stream; > + OutputDebugStringW(text); > + return len; > +#endif > } Why OutputDebugStringW? MSDN says in <https://msdn.microsoft.com/en-us/library/windows/desktop/aa363362(v=vs.85).aspx>: "Sends a string to the debugger for display. [...] If the application has no debugger, the system debugger displays...
2017 Jan 06
8
[PATCH 0/5] Allow multiple targets to be disabled
Hi, This patchet allows a few targets to be disabled when unrequired. The rational is coming from VLC's contrib buildsystem, so far we use make -C to select only some subparts of the available targets. It would be easier and cleaner to use autoconf to do so IMHO. There's an additional patch which fixes the build when building for WinRT/UWP platform, upstreamed from VLC. We have a couple