mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-03 10:04:32 +03:00
166e1d20de
functions typically modify their object. * win.c: Likewise.
19 lines
423 B
C
19 lines
423 B
C
#ifndef MC_WIN_H
|
|
#define MC_WIN_H
|
|
|
|
/* Keys management */
|
|
typedef void (*movefn) (void *, int);
|
|
int check_movement_keys (int key, int page_size, void *data, movefn backfn,
|
|
movefn forfn, movefn topfn, movefn bottomfn);
|
|
int lookup_key (char *keyname);
|
|
|
|
/* Terminal management */
|
|
extern int xterm_flag;
|
|
void do_enter_ca_mode (void);
|
|
void do_exit_ca_mode (void);
|
|
|
|
void mc_raw_mode (void);
|
|
void mc_noraw_mode (void);
|
|
|
|
#endif
|