mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-08 20:41:59 +03:00
24 lines
551 B
C
24 lines
551 B
C
#ifndef __USER_H
|
|
#define __USER_H
|
|
|
|
void user_menu_cmd (void);
|
|
char *expand_format (char, int);
|
|
int check_format_view (char *);
|
|
int check_format_var (char *p, char **v);
|
|
int check_format_cd (char *);
|
|
char *check_patterns (char*);
|
|
|
|
#ifdef OS2_NT
|
|
# define MC_LOCAL_MENU "mc.mnu"
|
|
# define MC_GLOBAL_MENU "mc.mnu"
|
|
# define MC_HOME_MENU "mc.mnu"
|
|
# define MC_HINT "mc.hnt"
|
|
#else
|
|
# define MC_GLOBAL_MENU "mc.menu"
|
|
# define MC_LOCAL_MENU ".mc.menu"
|
|
# define MC_HOME_MENU ".mc/menu"
|
|
# define MC_HINT "mc.hint"
|
|
#endif
|
|
|
|
#endif
|