mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-03 10:04:32 +03:00
680678ef72
Initial step: move usermenu.[ch] files from src/filemanager/ directory to src/ one. Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
31 lines
1.1 KiB
C
31 lines
1.1 KiB
C
/** \file usermenu.h
|
|
* \brief Header: user menu implementation
|
|
*/
|
|
|
|
#ifndef MC__USERMENU_H
|
|
#define MC__USERMENU_H
|
|
|
|
#include "lib/global.h"
|
|
|
|
#include "src/editor/edit.h" /* WEdit */
|
|
|
|
/*** typedefs(not structures) and defined constants **********************************************/
|
|
|
|
/*** enums ***************************************************************************************/
|
|
|
|
/*** structures declarations (and typedefs of structures)*****************************************/
|
|
|
|
/*** global variables defined in .c file *********************************************************/
|
|
|
|
/*** declarations of public functions ************************************************************/
|
|
|
|
gboolean user_menu_cmd (const WEdit * edit_widget, const char *menu_file, int selected_entry);
|
|
char *expand_format (const WEdit * edit_widget, char c, gboolean do_quote);
|
|
int check_format_view (const char *);
|
|
int check_format_var (const char *, char **);
|
|
int check_format_cd (const char *);
|
|
|
|
/*** inline functions ****************************************************************************/
|
|
|
|
#endif /* MC__USERMENU_H */
|