mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-25 20:52:20 +03:00
2fc70a9dd8
it's always 1.
18 lines
434 B
C
18 lines
434 B
C
#ifndef __WIN_H
|
|
#define __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 /* __WIN_H */
|