123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- #ifndef NCURSES_TERMCAP_H_incl
- #define NCURSES_TERMCAP_H_incl 1
- #undef NCURSES_VERSION
- #define NCURSES_VERSION "6.0"
- #include <ncurses_dll.h>
- #ifdef __cplusplus
- extern "C"
- {
- #endif
- #include <sys/types.h>
- #undef NCURSES_CONST
- #define NCURSES_CONST
- #undef NCURSES_OSPEED
- #define NCURSES_OSPEED short
- extern NCURSES_EXPORT_VAR(char) PC;
- extern NCURSES_EXPORT_VAR(char *) UP;
- extern NCURSES_EXPORT_VAR(char *) BC;
- extern NCURSES_EXPORT_VAR(NCURSES_OSPEED) ospeed;
- #if !defined(NCURSES_TERM_H_incl)
- extern NCURSES_EXPORT(char *) tgetstr (NCURSES_CONST char *, char **);
- extern NCURSES_EXPORT(char *) tgoto (const char *, int, int);
- extern NCURSES_EXPORT(int) tgetent (char *, const char *);
- extern NCURSES_EXPORT(int) tgetflag (NCURSES_CONST char *);
- extern NCURSES_EXPORT(int) tgetnum (NCURSES_CONST char *);
- extern NCURSES_EXPORT(int) tputs (const char *, int, int (*)(int));
- #endif
- #ifdef __cplusplus
- }
- #endif
- #endif
|