Added locale setting before calling dpkg to fix "link to" parsing on non-C locales
[midnight-commander.git] / lib / widget / dialog-switch.h
blob5f1fb702757c5d4910ada47cf0681bc1873b3b90
2 #ifndef MC__DIALOG_SWITCH_H
3 #define MC__DIALOG_SWITCH_H
5 #include <sys/types.h>
7 /*** typedefs(not structures) and defined constants **********************************************/
9 /*** enums ***************************************************************************************/
11 /*** structures declarations (and typedefs of structures)*****************************************/
13 /*** global variables defined in .c file *********************************************************/
15 extern Dlg_head *midnight_dlg;
17 /*** declarations of public functions ************************************************************/
19 void dialog_switch_add (struct Dlg_head *h);
20 void dialog_switch_remove (struct Dlg_head *h);
21 size_t dialog_switch_num (void);
23 void dialog_switch_next (void);
24 void dialog_switch_prev (void);
25 void dialog_switch_list (void);
27 int dialog_switch_process_pending (void);
28 void dialog_switch_got_winch (void);
29 void dialog_switch_shutdown (void);
31 /* Clear screen */
32 void clr_scr (void);
33 void repaint_screen (void);
34 void dialog_change_screen_size (void);
36 /*** inline functions ****************************************************************************/
38 #endif /* MC__DIALOG_SWITCH_H */