Sha256: 4cfc475bb57e010956b5c11df29107f1a81585a8712e31d7ce218385ac3fb0c2
Contents?: true
Size: 483 Bytes
Versions: 16
Compression:
Stored size: 483 Bytes
Contents
/* Public Domain Curses */ #include "pdcsdl.h" /* get the cursor size/shape */ int PDC_get_cursor_mode(void) { PDC_LOG(("PDC_get_cursor_mode() - called\n")); return 0; } /* return number of screen rows */ int PDC_get_rows(void) { PDC_LOG(("PDC_get_rows() - called\n")); return pdc_sheight / pdc_fheight; } /* return width of screen/viewport */ int PDC_get_columns(void) { PDC_LOG(("PDC_get_columns() - called\n")); return pdc_swidth / pdc_fwidth; }
Version data entries
16 entries across 8 versions & 1 rubygems