ekg2  GIT master
ecurses.h
Idź do dokumentacji tego pliku.
1 /* $Id$ */
2 
3 #ifndef __EKG_NCURSES_ECURSES_H
4 #define __EKG_NCURSES_ECURSES_H
5 
6 #define NCURSES_OPAQUE 0 /* for broken macOSX 10.6.1 header
7  XXX detect during configure
8  */
9 
10 #ifdef HAVE_WADDNWSTR
11 # define USE_UNICODE 1
12 #endif
13 
14 #ifdef HAVE_NCURSESW_NCURSES_H
15 # include <ncursesw/ncurses.h>
16 #else /*HAVE_NCURSESW_NCURSES_H*/
17 # ifdef HAVE_NCURSES_NCURSES_H
18 # include <ncurses/ncurses.h>
19 # else
20 # include <ncurses.h>
21 # endif /*HAVE_NCURSES_NCURSES_H*/
22 #endif /*HAVE_NCURSESW_NCURSES_H*/
23 
24 #include "nc-strings.h"
25 
26 #endif /* __EKG_NCURSES_ECURSES_H */
27 
28 /*
29  * Local Variables:
30  * mode: c
31  * c-file-style: "k&r"
32  * c-basic-offset: 8
33  * indent-tabs-mode: t
34  * End:
35  */