mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 04:46:55 +03:00
93dbc46e9c
* moved src/global.h into lib/global.h * moved glibcompat.[ch] from ./src/ into ./lib/ * moved fs.h from ./src/ into ./lib/ Signed-off-by: Slava Zanko <slavazanko@gmail.com>
18 lines
396 B
C
18 lines
396 B
C
|
|
/** \file filegui.h
|
|
* \brief Header: file management GUI for the text mode edition
|
|
*/
|
|
|
|
#ifndef MC_FILEGUI_H
|
|
#define MC_FILEGUI_H
|
|
|
|
#include "lib/global.h"
|
|
#include "fileopctx.h"
|
|
|
|
char *file_mask_dialog (FileOpContext *ctx, FileOperation operation,
|
|
gboolean only_one,
|
|
const char *format, const void *text,
|
|
const char *def_text, gboolean *do_background);
|
|
|
|
#endif /* MC_FILEGUI_H */
|