Updated italian translation
[midnight-commander.git] / src / win.h
blob3dfc3d4cf28439cf89ec3c181b60c86c28b4511e
1 #ifndef MC_WIN_H
2 #define MC_WIN_H
4 /* Keys management */
5 typedef void (*movefn) (void *, int);
6 int check_movement_keys (int key, int page_size, void *data, movefn backfn,
7 movefn forfn, movefn topfn, movefn bottomfn);
8 int lookup_key (char *keyname);
10 /* Terminal management */
11 extern int xterm_flag;
12 void do_enter_ca_mode (void);
13 void do_exit_ca_mode (void);
15 void mc_raw_mode (void);
16 void mc_noraw_mode (void);
18 #endif