Home
last modified time | relevance | path

Searched refs:csbi (Results 1 – 2 of 2) sorted by relevance

/php-src/win32/
H A Dconsole.c96 CONSOLE_SCREEN_BUFFER_INFO csbi; in php_win32_console_is_own() local
100 if (GetConsoleScreenBufferInfo(GetStdHandle(STD_OUTPUT_HANDLE), &csbi)) { in php_win32_console_is_own()
101 ret0 = !csbi.dwCursorPosition.X && !csbi.dwCursorPosition.Y; in php_win32_console_is_own()
/php-src/sapi/phpdbg/
H A Dphpdbg_utils.c354 CONSOLE_SCREEN_BUFFER_INFO csbi; in phpdbg_get_terminal_width() local
356 GetConsoleScreenBufferInfo(GetStdHandle(STD_OUTPUT_HANDLE), &csbi); in phpdbg_get_terminal_width()
357 columns = (uint32_t) csbi.srWindow.Right - csbi.srWindow.Left + 1; in phpdbg_get_terminal_width()
372 CONSOLE_SCREEN_BUFFER_INFO csbi; in phpdbg_get_terminal_height() local
374 if (GetConsoleScreenBufferInfo(GetStdHandle(STD_OUTPUT_HANDLE), &csbi)) { in phpdbg_get_terminal_height()
375 lines = (uint32_t) csbi.srWindow.Bottom - csbi.srWindow.Top + 1; in phpdbg_get_terminal_height()

Completed in 12 milliseconds