1
1
mc/src/win.h
Pavel Roskin 28ed7f82c0 * info.c (info_show_info): Use size_trunc_len() instead of
print_bytesize().  Don't assume English word ordering.  Add
singular message when single block.
* win.c (print_bytesize): Remove.
(sprint_bytesize): Remove.
* win.h: Remove print_bytesize() and sprint_bytesize().
2001-08-30 16:58:40 +00:00

25 строки
559 B
C

#ifndef __WIN_H
#define __WIN_H
/* Window utilities */
#include "dlg.h"
/* Labels at the screen bottom */
/* Keys managing */
int check_fkeys (int c);
int check_movement_keys (int c, int additional, int page_size, void *,
movefn backfn, movefn forfn, movefn topfn, movefn bottomfn);
int lookup_key (char *keyname);
/* Terminal managing */
extern int xterm_flag;
void do_enter_ca_mode (void);
void do_exit_ca_mode (void);
#define wclr(w) wclrn(w, 0)
void mc_raw_mode (void);
void mc_noraw_mode (void);
void mc_init_cbreak (void);
#endif /* __WIN_H */