mirror of
https://github.com/VARCem/PDCurses.git
synced 2026-09-24 15:55:14 +00:00
In fact, let's just do this.
This commit is contained in:
4
curses.h
4
curses.h
@@ -16,7 +16,7 @@
|
||||
* See the file maintain.er for details of the current maintainer.
|
||||
**************************************************************************/
|
||||
|
||||
/* $Id: curses.h,v 1.120 2006/02/04 14:36:15 wmcbrine Exp $ */
|
||||
/* $Id: curses.h,v 1.121 2006/02/04 19:35:05 wmcbrine Exp $ */
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
PDCurses
|
||||
@@ -1683,7 +1683,7 @@ int PDC_CDECL PDC_set_line_color(short);
|
||||
#define PDC_save_key_modifiers(flag) (SP->save_key_modifiers = flag)
|
||||
#define PDC_return_key_modifiers(flag) (SP->return_key_modifiers = flag)
|
||||
|
||||
/* need to document these */
|
||||
/* need to get rid of these */
|
||||
|
||||
#define wtitle(w, s, a) (w->_title = s, w->_title_attr = (chtype)a)
|
||||
#define wtitleofs(w, ofs) (w->_title_ofs = ofs)
|
||||
|
||||
@@ -51,7 +51,7 @@
|
||||
|
||||
#ifdef PDCDEBUG
|
||||
const char *rcsid_inopts =
|
||||
"$Id: inopts.c,v 1.17 2006/02/04 19:30:32 wmcbrine Exp $";
|
||||
"$Id: inopts.c,v 1.18 2006/02/04 19:35:06 wmcbrine Exp $";
|
||||
#endif
|
||||
|
||||
/*man-start*********************************************************************
|
||||
@@ -171,7 +171,8 @@ const char *rcsid_inopts =
|
||||
The meta() function is provided for portability. By default, 8 bits
|
||||
are returned.
|
||||
|
||||
notimeout(), noqiflush() and qiflush() are no-ops in PDCurses.
|
||||
intrflush(), notimeout(), noqiflush() and qiflush() are no-ops
|
||||
in PDCurses.
|
||||
|
||||
X/Open Return Value:
|
||||
All functions return OK on success and ERR on error.
|
||||
@@ -254,19 +255,8 @@ int PDC_CDECL halfdelay(int tenths)
|
||||
|
||||
int PDC_CDECL intrflush(WINDOW *win, bool bf)
|
||||
{
|
||||
#if 0
|
||||
int y, maxy;
|
||||
|
||||
PDC_LOG(("intrflush() - called\n"));
|
||||
|
||||
if (win == (WINDOW *)NULL)
|
||||
return ERR;
|
||||
|
||||
maxy = win->_maxy - 1;
|
||||
|
||||
for (y = 0; y <= maxy; y++)
|
||||
win->_firstch[y] = _NO_CHANGE;
|
||||
#endif
|
||||
return OK;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user