You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
PDCursesMod/os2gui/pdcgetsc.c

27 lines
431 B
C

/* Public Domain Curses */
#include "pdcwin.h"
/* get the cursor size/shape */
int PDC_get_cursor_mode(void)
{
PDC_LOG(("PDC_get_cursor_mode() - called\n"));
return SP->visibility;
}
/* return number of screen rows */
int PDC_get_rows(void)
{
PDC_LOG(("PDC_get_rows() - called\n"));
return( PDC_n_rows);
}
int PDC_get_columns(void)
{
PDC_LOG(("PDC_get_columns() - called\n"));
return( PDC_n_cols);
}