mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 12:56:51 +03:00
feb733663f
Signed-off-by: Slava Zanko <slavazanko@gmail.com>
38 lines
1.1 KiB
C
38 lines
1.1 KiB
C
|
|
#ifndef MC__TTY_NCURSES_H
|
|
#define MC__TTY_NCURSES_H
|
|
|
|
#ifdef USE_NCURSES
|
|
#ifdef HAVE_NCURSES_CURSES_H
|
|
#include <ncurses/curses.h>
|
|
#elif HAVE_NCURSES_NCURSES_H
|
|
#include <ncurses/ncurses.h>
|
|
#elif HAVE_NCURSESW_CURSES_H
|
|
#include <ncursesw/curses.h>
|
|
#elif HAVE_NCURSES_HCURSES_H
|
|
#include <ncurses.h>
|
|
#elif HAVE_NCURSES_H
|
|
#include <ncurses.h>
|
|
#else
|
|
#include <curses.h>
|
|
#endif
|
|
#endif /* USE_NCURSES */
|
|
|
|
#ifdef USE_NCURSESW
|
|
#include <ncursesw/curses.h>
|
|
#endif /* USE_NCURSESW */
|
|
|
|
/*** typedefs(not structures) and defined constants **********************************************/
|
|
|
|
/*** enums ***************************************************************************************/
|
|
|
|
/*** structures declarations (and typedefs of structures)*****************************************/
|
|
|
|
/*** global variables defined in .c file *********************************************************/
|
|
|
|
/*** declarations of public functions ************************************************************/
|
|
|
|
/*** inline functions ****************************************************************************/
|
|
|
|
#endif /* MC_TTY_NCURSES_H */
|