ekg2
 All Struktury Danych Pliki Funkcje Zmienne Definicje typów Wyliczenia Wartości wyliczeń Definicje Grupay Strony
ecurses.h
Idź do dokumentacji tego pliku.
1 /* $Id$ */
2 
3 #ifndef __EKG_NCURSES_ECURSES_H
4 #define __EKG_NCURSES_ECURSES_H
5 
6 #include "ekg2-config.h"
7 
8 #define NCURSES_OPAQUE 0 /* for broken macOSX 10.6.1 header
9  XXX detect during configure
10  */
11 
12 #if USE_UNICODE
13 # ifndef _XOPEN_SOURCE
14 # define _XOPEN_SOURCE
15 # endif
16 # ifndef _XOPEN_SOURCE_EXTENDED
17 # define _XOPEN_SOURCE_EXTENDED
18 # endif
19 # include <ncursesw/ncurses.h>
20 #else /* USE_UNICODE */
21 # ifdef HAVE_NCURSES_H
22 # include <ncurses.h>
23 # else /* HAVE_NCURSES_H */
24 # ifdef HAVE_NCURSES_NCURSES_H
25 # include <ncurses/ncurses.h>
26 # endif /* HAVE_NCURSES_NCURSES_H */
27 # endif /* HAVE_NCURSES_H */
28 #endif /* USE_UNICODE */
29 
30 #include <ekg/strings.h>
31 
32 #endif /* __EKG_NCURSES_ECURSES_H */
33 
34 /*
35  * Local Variables:
36  * mode: c
37  * c-file-style: "k&r"
38  * c-basic-offset: 8
39  * indent-tabs-mode: t
40  * End:
41  */