search for: wprint_consol

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

Did you mean: wprint_console
2017 Jan 06
1
[PATCH 5/5] win_utf8_io: Avoid forbidden functions when building for WinRT/UWP
...Handle(STD_OUTPUT_HANDLE); > if(hOut != INVALID_HANDLE_VALUE && hOut != NULL) > if (GetConsoleScreenBufferInfo(hOut, &csbi) != 0) > width = csbi.dwSize.X; > +#endif > return width; > } > @@ -176,6 +179,7 @@ int win_get_console_width(void) > static int wprint_console(FILE *stream, const wchar_t *text, size_t len) > { > +#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP) 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, si...
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