tty-ncurses.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  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 defined (HAVE_NCURSES_NCURSES_H)
  7. #include <ncurses/ncurses.h>
  8. #elif defined (HAVE_NCURSESW_CURSES_H)
  9. #include <ncursesw/curses.h>
  10. #elif defined (HAVE_NCURSES_HCURSES_H) || defined (HAVE_NCURSES_H)
  11. #include <ncurses.h>
  12. #else
  13. #include <curses.h>
  14. #endif
  15. #endif /* USE_NCURSES */
  16. #ifdef USE_NCURSESW
  17. #include <ncursesw/curses.h>
  18. #endif /* USE_NCURSESW */
  19. /*** typedefs(not structures) and defined constants **********************************************/
  20. /*** enums ***************************************************************************************/
  21. /*** structures declarations (and typedefs of structures)*****************************************/
  22. /*** global variables defined in .c file *********************************************************/
  23. /*** declarations of public functions ************************************************************/
  24. /*** inline functions ****************************************************************************/
  25. #endif /* MC_TTY_NCURSES_H */