tty-ncurses.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. #ifndef MC__TTY_NCURSES_H
  2. #define MC__TTY_NCURSES_H
  3. #ifdef USE_NCURSES
  4. #ifdef HAVE_NCURSES_CURSES_H
  5. #include <ncurses/curses.h>
  6. #elif HAVE_NCURSES_NCURSES_H
  7. #include <ncurses/ncurses.h>
  8. #elif HAVE_NCURSESW_CURSES_H
  9. #include <ncursesw/curses.h>
  10. #elif HAVE_NCURSES_HCURSES_H
  11. #include <ncurses.h>
  12. #elif HAVE_NCURSES_H
  13. #include <ncurses.h>
  14. #else
  15. #include <curses.h>
  16. #endif
  17. #endif /* USE_NCURSES */
  18. #ifdef USE_NCURSESW
  19. #include <ncursesw/curses.h>
  20. #endif /* USE_NCURSESW */
  21. /*** typedefs(not structures) and defined constants **********************************************/
  22. /*** enums ***************************************************************************************/
  23. /*** structures declarations (and typedefs of structures)*****************************************/
  24. /*** global variables defined in .c file *********************************************************/
  25. /*** declarations of public functions ************************************************************/
  26. /*** inline functions ****************************************************************************/
  27. #endif /* MC_TTY_NCURSES_H */