Change-Id: If881ec130833c7e7e62caa3d31e350a531f5bc8e Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Reviewed-on: http://review.coreboot.org/12398 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <pgeorgi@google.com>
		
			
				
	
	
		
			58 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/* Public Domain Curses */
 | 
						|
 | 
						|
#include "pdcwin.h"
 | 
						|
 | 
						|
RCSID("$Id: pdcgetsc.c,v 1.36 2008/07/14 04:24:52 wmcbrine Exp $")
 | 
						|
 | 
						|
/* get the cursor size/shape */
 | 
						|
 | 
						|
int PDC_get_cursor_mode(void)
 | 
						|
{
 | 
						|
    CONSOLE_CURSOR_INFO ci;
 | 
						|
 | 
						|
    PDC_LOG(("PDC_get_cursor_mode() - called\n"));
 | 
						|
 | 
						|
    GetConsoleCursorInfo(pdc_con_out, &ci);
 | 
						|
 | 
						|
    return ci.dwSize;
 | 
						|
}
 | 
						|
 | 
						|
/* return number of screen rows */
 | 
						|
 | 
						|
int PDC_get_rows(void)
 | 
						|
{
 | 
						|
    CONSOLE_SCREEN_BUFFER_INFO scr;
 | 
						|
 | 
						|
    PDC_LOG(("PDC_get_rows() - called\n"));
 | 
						|
 | 
						|
    GetConsoleScreenBufferInfo(pdc_con_out, &scr);
 | 
						|
 | 
						|
    return scr.srWindow.Bottom - scr.srWindow.Top + 1;
 | 
						|
}
 | 
						|
 | 
						|
/* return number of buffer rows */
 | 
						|
 | 
						|
int PDC_get_buffer_rows(void)
 | 
						|
{
 | 
						|
    CONSOLE_SCREEN_BUFFER_INFO scr;
 | 
						|
 | 
						|
    PDC_LOG(("PDC_get_buffer_rows() - called\n"));
 | 
						|
 | 
						|
    GetConsoleScreenBufferInfo(pdc_con_out, &scr);
 | 
						|
 | 
						|
    return scr.dwSize.Y;
 | 
						|
}
 | 
						|
 | 
						|
/* return width of screen/viewport */
 | 
						|
 | 
						|
int PDC_get_columns(void)
 | 
						|
{
 | 
						|
    CONSOLE_SCREEN_BUFFER_INFO scr;
 | 
						|
 | 
						|
    PDC_LOG(("PDC_get_columns() - called\n"));
 | 
						|
 | 
						|
    GetConsoleScreenBufferInfo(pdc_con_out, &scr);
 | 
						|
 | 
						|
    return scr.srWindow.Right - scr.srWindow.Left + 1;
 | 
						|
}
 |