Fix compiler warning about different signedness of pointers in editcmd.c
[midnight-commander.git] / edit / editcmd_dialogs.h
blob75273afdd88c2d7a024d2b1492704fcbe86c2b3d
1 #ifndef MC__EDITCMD_DIALOGS_H
2 #define MC__EDITCMD_DIALOGS_H
4 /*** typedefs(not structures) and defined constants **********************************************/
6 struct etags_hash_struct;
8 #define B_REPLACE_ALL (B_USER+1)
9 #define B_REPLACE_ONE (B_USER+2)
10 #define B_SKIP_REPLACE (B_USER+3)
12 /*** enums ***************************************************************************************/
14 /*** structures declarations (and typedefs of structures)*****************************************/
16 struct selection {
17 gchar *text;
18 int len;
21 /*** global variables defined in .c file *********************************************************/
23 /*** declarations of public functions ************************************************************/
25 void editcmd_dialog_replace_show (WEdit *, const char *, const char *, char **, char **);
27 void editcmd_dialog_search_show (WEdit *, char **);
29 int editcmd_dialog_raw_key_query (const char *, const char *, int);
31 void editcmd_dialog_completion_show (WEdit *, int, int, struct selection *, int);
33 void editcmd_dialog_select_definition_show (WEdit *, char *, int, int, struct etags_hash_struct *,
34 int);
36 int editcmd_dialog_replace_prompt_show (WEdit *, char *, char *, int, int);
37 #endif