X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=test%2Ftest.priv.h;h=18e163c535f42e225fef1c6705d4b389c83222e4;hp=20ffbe89b80ad9d7693ec5dc13015ce68c105a57;hb=06ae48ca77d71610e4d86d138a8fd19db84634ce;hpb=396a05943b7da5039dd15d79c4385c7d2a75d6d4 diff --git a/test/test.priv.h b/test/test.priv.h index 20ffbe89..18e163c5 100644 --- a/test/test.priv.h +++ b/test/test.priv.h @@ -29,7 +29,7 @@ /**************************************************************************** * Author: Thomas E. Dickey 1996-on * ****************************************************************************/ -/* $Id: test.priv.h,v 1.77 2008/04/12 19:25:48 tom Exp $ */ +/* $Id: test.priv.h,v 1.80 2008/12/20 16:37:20 tom Exp $ */ #ifndef __TEST_PRIV_H #define __TEST_PRIV_H 1 @@ -359,6 +359,9 @@ extern int optind; #define KEY_MIN 256 /* not defined in Solaris 8 */ #endif +#define colored_chtype(ch, attr, pair) \ + ((ch) | (attr) | COLOR_PAIR(pair)) + /* * Workaround for HPUX */ @@ -548,9 +551,11 @@ typedef int (*NCURSES_SCREEN_CB)(SCREEN *, void *); #if HAVE_USE_WINDOW #define USING_WINDOW(w,func) use_window(w, (NCURSES_WINDOW_CB) func, w) +#define USING_WINDOW2(w,func,data) use_window(w, (NCURSES_WINDOW_CB) func, data) #define WANT_USE_WINDOW() extern void _nc_want_use_window(void) #else #define USING_WINDOW(w,func) func(w) +#define USING_WINDOW2(w,func,data) func(w,data) #define WANT_USE_WINDOW() extern void _nc_want_use_window(void) #endif @@ -558,7 +563,7 @@ typedef int (*NCURSES_SCREEN_CB)(SCREEN *, void *); #define USING_SCREEN(s,func,data) use_screen(s, (NCURSES_SCREEN_CB) func, data) #define WANT_USE_SCREEN() extern void _nc_want_use_screen(void) #else -#define USING_SCREEN(s,func,data) func(data) +#define USING_SCREEN(s,func,data) func(s,data) #define WANT_USE_SCREEN() extern void _nc_want_use_screen(void) #endif @@ -570,4 +575,6 @@ typedef int (*NCURSES_SCREEN_CB)(SCREEN *, void *); #define USE_TRACE 0 #endif +#define init_mb(state) memset(&state, 0, sizeof(state)) + #endif /* __TEST_PRIV_H */