mc/src/textconf.h
Pavel Roskin 0c3398dcd6 * features.h: Joined with textconf.h to avoid name clash with
GNU Libc.
* features.c: Renamed to ...
* textconf.c: ... this
* Makefile.in, cmd.c, main.c, text.c: necessary adjustments
2000-09-14 18:18:24 +00:00

21 lines
425 B
C

#ifndef __TEXTCONF_H
#define __TEXTCONF_H
/* Features of the text mode edition */
#define COMPUTE_FORMAT_ALLOCATIONS 1
#define PORT_WIDGET_WANTS_HISTORY 1
#define PORT_NEEDS_CHANGE_SCREEN_SIZE 1
#define x_flush_events()
#define port_shutdown_extra_fds()
#ifdef USE_NCURSES
#define status_using_ncurses (1)
#else
#define status_using_ncurses (0)
#endif
extern void version (int verbose);
#endif /* __TEXTCONF_H */