mirror of
https://github.com/reactos/CMake.git
synced 2024-11-26 13:00:25 +00:00
ccmake: Use LSB 4.0 getmaxyx conditionally
Use of 'getmaxyx' works on LSB but does not seem portable to other curses versions.
This commit is contained in:
parent
a3de30eed9
commit
dde0c89cfc
@ -357,7 +357,12 @@ static void Buffer_To_Window(const FIELD * field, WINDOW * win)
|
||||
|
||||
assert(win && field);
|
||||
|
||||
#if defined(__LSB_VERSION__)
|
||||
getmaxyx(win, height, width);
|
||||
#else
|
||||
width = getmaxx(win);
|
||||
height = getmaxy(win);
|
||||
#endif
|
||||
|
||||
for(row=0, pBuffer=field->buf;
|
||||
row < height;
|
||||
@ -389,13 +394,17 @@ static void Window_To_Buffer(WINDOW * win, FIELD * field)
|
||||
int pad;
|
||||
int len = 0;
|
||||
char *p;
|
||||
int row, height, width;
|
||||
int row, height;
|
||||
|
||||
assert(win && field && field->buf );
|
||||
|
||||
pad = field->pad;
|
||||
p = field->buf;
|
||||
getmaxyx(win, height, width);
|
||||
#if defined(__LSB_VERSION__)
|
||||
{ int width; getmaxyx(win, height, width); }
|
||||
#else
|
||||
height = getmaxy(win);
|
||||
#endif
|
||||
|
||||
for(row=0; (row < height) && (row < field->drows); row++ )
|
||||
{
|
||||
|
@ -63,7 +63,12 @@ int post_form(FORM * form)
|
||||
RETURN(E_NOT_CONNECTED);
|
||||
|
||||
formwin = Get_Form_Window(form);
|
||||
#if defined(__LSB_VERSION__)
|
||||
getmaxyx(formwin, height, width);
|
||||
#else
|
||||
width = getmaxx(formwin);
|
||||
height = getmaxy(formwin);
|
||||
#endif
|
||||
if ((form->cols > width) || (form->rows > height))
|
||||
RETURN(E_NO_ROOM);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user