There appears to be no need for RIPPEDOFFLINE to be available in

curses.h.
This commit is contained in:
William McBrine
2007-04-23 00:29:14 +00:00
parent 4234b7f898
commit 13536e693f
2 changed files with 9 additions and 9 deletions

View File

@@ -11,7 +11,7 @@
* See the file maintain.er for details of the current maintainer. *
************************************************************************/
/* $Id: curses.h,v 1.276 2007/04/13 08:24:20 wmcbrine Exp $ */
/* $Id: curses.h,v 1.277 2007/04/23 00:29:14 wmcbrine Exp $ */
/*----------------------------------------------------------------------*
* PDCurses *
@@ -39,7 +39,7 @@ PDCurses portable platform definitions list:
**man-end****************************************************************/
#define PDC_BUILD 3004
#define PDC_BUILD 3005
#define PDCURSES 1 /* PDCurses-only routines */
#define XOPEN 1 /* X/Open Curses routines */
#define SYSVcurses 1 /* System V Curses routines */
@@ -491,12 +491,6 @@ typedef struct _win /* definition of a window */
*
*/
typedef struct /* structure for ripped off lines */
{
int line;
int (*init)(WINDOW *, int);
} RIPPEDOFFLINE;
typedef struct
{
bool alive; /* if initscr() called, and not endwin() */

View File

@@ -11,7 +11,7 @@
* See the file maintain.er for details of the current maintainer. *
************************************************************************/
/* $Id: curspriv.h,v 1.148 2007/01/07 21:31:17 wmcbrine Exp $ */
/* $Id: curspriv.h,v 1.149 2007/04/23 00:29:14 wmcbrine Exp $ */
/* CURSPRIV.H
@@ -41,6 +41,12 @@
/*----------------------------------------------------------------------*/
typedef struct /* structure for ripped off lines */
{
int line;
int (*init)(WINDOW *, int);
} RIPPEDOFFLINE;
/* Window properties */
#define _SUBWIN 0x01 /* window is a subwindow */