pair_content() takes a short.

This commit is contained in:
William McBrine
2006-01-26 19:56:25 +00:00
parent 9e896cfa98
commit 91d1462ae0
2 changed files with 5 additions and 5 deletions

View File

@@ -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));

View File

@@ -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