mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-18 09:19:24 +03:00
0c3398dcd6
GNU Libc. * features.c: Renamed to ... * textconf.c: ... this * Makefile.in, cmd.c, main.c, text.c: necessary adjustments
21 lines
425 B
C
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 */
|