From 3cfe146f659059962ec505e66a9786cfdd14c28e Mon Sep 17 00:00:00 2001 From: "Andrey A. Chernov" Date: Wed, 15 Apr 1998 23:13:36 +0000 Subject: [PATCH] Add some easy to implement XSI macros including attr_get --- lib/libncurses/curses.h | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/lib/libncurses/curses.h b/lib/libncurses/curses.h index 0800a8a1284d..a3874b9cb6b5 100644 --- a/lib/libncurses/curses.h +++ b/lib/libncurses/curses.h @@ -339,7 +339,6 @@ extern int slk_touch(void); #define setsyx(y,x) (stdscr->_cury = y, stdscr->_curx = x) #define wbkgdset(win,ch) ((win)->_bkgd = ch) -#define getbkgd(win) ((win)->_bkgd) /* It seems older SYSV curses define these */ #define getattrs(win) (win->_attrs) @@ -439,6 +438,16 @@ extern int slk_touch(void); #define mvinsstr(y,x,s) mvwinsstr(stdscr,y,x,s) #define mvinsnstr(y,x,s,n) mvwinsnstr(stdscr,y,x,s,n) +/* + * XSI curses macros for XPG4 conformance. + */ + +#define attr_get() wattr_get(stdscr) +#define getbkgd(win) ((win)->_bkgd) + +#define vid_attr(a) vidattr(a) +#define wattr_get(win) ((win)->_attrs) + /* Funny "characters" enabled for various special function keys for input */ /* Whether such a key exists depend if its definition is in the terminfo entry */