search for: getconsolescreenbufferinfo

Displaying 4 results from an estimated 4 matches for "getconsolescreenbufferinfo".

2009 Jan 13
2
My console app doesn't run in wine
...should be the relevant wine debug messages: 0009:Call KERNEL32.GetStdHandle(fffffff6) ret=0040aada 0009:Ret KERNEL32.GetStdHandle() retval=00000004 ret=0040aada 0009:Call KERNEL32.GetStdHandle(fffffff5) ret=0040aae6 0009:Ret KERNEL32.GetStdHandle() retval=00000008 ret=0040aae6 0009:Call KERNEL32.GetConsoleScreenBufferInfo(00000008,0040c27c) ret=0040ab06 0009:Ret KERNEL32.GetConsoleScreenBufferInfo() retval=00000000 ret=0040ab06 0009:Call KERNEL32.SetConsoleScreenBufferSize(00000008,00190050) ret=0040ab30 0009:Ret KERNEL32.SetConsoleScreenBufferSize() retval=00000000 ret=0040ab30 0009:Call KERNEL32.WriteConsoleA(00...
2017 Jan 06
1
[PATCH 5/5] win_utf8_io: Avoid forbidden functions when building for WinRT/UWP
..._PARTITION_DESKTOP) Apparently these preprocessor defines are from winapifamily.h so it won't work in older MSVS and MinGW. > CONSOLE_SCREEN_BUFFER_INFO csbi; > HANDLE hOut = GetStdHandle(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)...
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
2020 Jul 17
0
Wine release 5.13
...font_size. kernel32: Use IOCT_CONDRV_GET_OUTPUT_INFO in GetCurrentConsoleFontEx. kernelbase: Use IOCTL_CONDRV_GET_OUTPUT_INFO in GetLargestConsoleWindowSize. kernelbase: Use IOCTL_CONDRV_GET_OUTPUT_INFO in GetConsoleCursorInfo. kernelbase: Use IOCTL_CONDRV_GET_OUTPUT_INFO in GetConsoleScreenBufferInfo. kernelbase: Use IOCTL_CONDRV_GET_OUTPUT_INFO in GetConsoleScreenBufferInfoEx. wineconsole: Use IOCTL_CONDRV_GET_OUTPUT_INFO in WINECON_GetServerConfig. server: Remove no longer needed get_console_output_info request. kernelbase: Introduce console_ioctl helper. server:...