mirror of
https://github.com/VARCem/PDCurses.git
synced 2026-09-23 23:35:20 +00:00
pair_content() takes a short.
This commit is contained in:
4
curses.h
4
curses.h
@@ -18,7 +18,7 @@
|
||||
***************************************************************************
|
||||
*/
|
||||
/*
|
||||
$Id: curses.h,v 1.98 2006/01/26 19:40:47 wmcbrine Exp $
|
||||
$Id: curses.h,v 1.99 2006/01/26 19:56:25 wmcbrine Exp $
|
||||
*/
|
||||
/*
|
||||
*----------------------------------------------------------------------
|
||||
@@ -1433,7 +1433,7 @@ void PDC_CDECL noqiflush Args((void));
|
||||
int PDC_CDECL notimeout Args((WINDOW *, bool));
|
||||
int PDC_CDECL overlay Args((const WINDOW *, WINDOW *));
|
||||
int PDC_CDECL overwrite Args((const WINDOW *, WINDOW *));
|
||||
int PDC_CDECL pair_content Args((int, short *, short *));
|
||||
int PDC_CDECL pair_content Args((short, short *, short *));
|
||||
int PDC_CDECL pechochar Args((WINDOW *, chtype));
|
||||
int PDC_CDECL pnoutrefresh Args((WINDOW *, int, int, int, int, int, int));
|
||||
int PDC_CDECL prefresh Args((WINDOW *, int, int, int, int, int, int));
|
||||
|
||||
@@ -45,7 +45,7 @@ static void PDC_init_pair();
|
||||
#endif
|
||||
|
||||
#ifdef PDCDEBUG
|
||||
char *rcsid_color = "$Id: color.c,v 1.19 2006/01/26 19:40:48 wmcbrine Exp $";
|
||||
char *rcsid_color = "$Id: color.c,v 1.20 2006/01/26 19:56:25 wmcbrine Exp $";
|
||||
#endif
|
||||
|
||||
/*man-start*********************************************************************
|
||||
@@ -333,11 +333,11 @@ bool PDC_CDECL can_change_color()
|
||||
|
||||
/***********************************************************************/
|
||||
#ifdef HAVE_PROTO
|
||||
int PDC_CDECL pair_content(int colorpair, short *foreground,
|
||||
int PDC_CDECL pair_content(short colorpair, short *foreground,
|
||||
short *background)
|
||||
#else
|
||||
int PDC_CDECL pair_content(colorpair, foreground, background)
|
||||
int colorpair;
|
||||
short colorpair;
|
||||
short *foreground;
|
||||
short *background;
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user