diff --git a/curses.h b/curses.h index 030ee536..23157646 100644 --- a/curses.h +++ b/curses.h @@ -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() */ diff --git a/curspriv.h b/curspriv.h index ad476dfa..bdb7e8f4 100644 --- a/curspriv.h +++ b/curspriv.h @@ -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 */