X-Git-Url: https://ncurses.scripts.mit.edu/?a=blobdiff_plain;f=test%2Ftest.priv.h;h=7c1f39ffe6cea50631d6854594e743029d06fcb5;hb=205f120bce7a338464e79ef846e4f07eff365d6c;hp=08434c8a6783038faa162033315242f0d76c8707;hpb=60014650d5e3f088e2d5e8835925cce96db00c33;p=ncurses.git diff --git a/test/test.priv.h b/test/test.priv.h index 08434c8a..7c1f39ff 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.76 2008/03/29 20:29:10 tom Exp $ */ +/* $Id: test.priv.h,v 1.79 2008/10/04 21:53:41 tom Exp $ */ #ifndef __TEST_PRIV_H #define __TEST_PRIV_H 1 @@ -449,6 +449,7 @@ extern int optind; #endif #else #define typeMalloc(type,n) (type *) malloc((n) * sizeof(type)) +#define typeCalloc(type,elts) (type *) calloc((elts), sizeof(type)) #define typeRealloc(type,n,p) (type *) realloc(p, (n) * sizeof(type)) #endif @@ -547,9 +548,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 @@ -557,7 +560,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 @@ -569,4 +572,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 */