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.
29 lines
374 B
C
29 lines
374 B
C
#include <curspriv.h>
|
|
#include "pdcplan9.h"
|
|
|
|
int PDC_get_columns(void)
|
|
{
|
|
int i;
|
|
|
|
i = p9getcols();
|
|
PDC_LOG(("PDC_get_columns() returns: %d\n", i));
|
|
return i;
|
|
}
|
|
|
|
|
|
int PDC_get_cursor_mode(void)
|
|
{
|
|
PDC_LOG(("PDC_get_cursor_mode() - called\n"));
|
|
return 0;
|
|
}
|
|
|
|
|
|
int PDC_get_rows(void)
|
|
{
|
|
int i;
|
|
|
|
i = p9getrows();
|
|
PDC_LOG(("PDC_get_rows() - returns: %d\n", i));
|
|
return i;
|
|
}
|