From bc5a6e9a9b4b5a83a26c8fd5b72d7f17c23c513d Mon Sep 17 00:00:00 2001 From: ache Date: Wed, 15 Apr 1998 23:13:36 +0000 Subject: Add some easy to implement XSI macros including attr_get --- lib/libncurses/curses.h | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'lib/libncurses') diff --git a/lib/libncurses/curses.h b/lib/libncurses/curses.h index 0800a8a..a3874b9 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 */ -- cgit v1.1