4 #include "lib/global.h" /* gboolean */
5 #include "lib/vfs/vfs.h" /* vfs_path_t */
7 /*** typedefs(not structures) and defined constants **********************************************/
9 /*** enums ***************************************************************************************/
11 /*** structures declarations (and typedefs of structures)*****************************************/
15 vfs_path_t
*file_vpath
;
19 /*** global variables defined in .c file *********************************************************/
21 extern gboolean mc_args__force_xterm
;
22 extern gboolean mc_args__nomouse
;
23 extern gboolean mc_args__force_colors
;
24 extern gboolean mc_args__nokeymap
;
25 extern char *mc_args__last_wd_file
;
26 extern char *mc_args__netfs_logfile
;
27 extern char *mc_args__keymap_file
;
28 extern int mc_args__debug_level
;
31 * MC_RUN_FULL: dir for left panel
32 * MC_RUN_EDITOR: list of files to edit
33 * MC_RUN_VIEWER: file to view
34 * MC_RUN_DIFFVIEWER: first file to compare
36 extern void *mc_run_param0
;
38 * MC_RUN_FULL: dir for right panel
39 * MC_RUN_EDITOR: unused
40 * MC_RUN_VIEWER: unused
41 * MC_RUN_DIFFVIEWER: second file to compare
43 extern char *mc_run_param1
;
45 /*** declarations of public functions ************************************************************/
47 gboolean
mc_args_parse (int *argc
, char ***argv
, const char *translation_domain
, GError
** mcerror
);
48 gboolean
mc_args_show_info (void);
49 gboolean
mc_setup_by_args (int argc
, char **argv
, GError
** mcerror
);
51 mcedit_arg_t
*mcedit_arg_new (const char *file_name
, long line_number
);
52 mcedit_arg_t
*mcedit_arg_vpath_new (vfs_path_t
* file_vpath
, long line_number
);
53 void mcedit_arg_free (mcedit_arg_t
* arg
);
55 /*** inline functions ****************************************************************************/
57 #endif /* MC__ARGS_H */