Add edit_add_window() function.
[midnight-commander.git] / lib / tty / tty-ncurses.h
blob50f0597ec9cd701036e565f7367a1f37605222ef
2 #ifndef MC__TTY_NCURSES_H
3 #define MC__TTY_NCURSES_H
5 #ifdef USE_NCURSES
6 #ifdef HAVE_NCURSES_CURSES_H
7 #include <ncurses/curses.h>
8 #elif HAVE_NCURSES_NCURSES_H
9 #include <ncurses/ncurses.h>
10 #elif HAVE_NCURSESW_CURSES_H
11 #include <ncursesw/curses.h>
12 #elif HAVE_NCURSES_HCURSES_H
13 #include <ncurses.h>
14 #elif HAVE_NCURSES_H
15 #include <ncurses.h>
16 #else
17 #include <curses.h>
18 #endif
19 #endif /* USE_NCURSES */
21 #ifdef USE_NCURSESW
22 #include <ncursesw/curses.h>
23 #endif /* USE_NCURSESW */
25 /*** typedefs(not structures) and defined constants **********************************************/
27 /*** enums ***************************************************************************************/
29 /*** structures declarations (and typedefs of structures)*****************************************/
31 /*** global variables defined in .c file *********************************************************/
33 /*** declarations of public functions ************************************************************/
35 /*** inline functions ****************************************************************************/
37 #endif /* MC_TTY_NCURSES_H */