dialog-switch.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. #ifndef MC__DIALOG_SWITCH_H
  2. #define MC__DIALOG_SWITCH_H
  3. #include <sys/types.h>
  4. /*** typedefs(not structures) and defined constants **********************************************/
  5. /*** enums ***************************************************************************************/
  6. /*** structures declarations (and typedefs of structures)*****************************************/
  7. /*** global variables defined in .c file *********************************************************/
  8. extern WDialog *filemanager;
  9. /*** declarations of public functions ************************************************************/
  10. void dialog_switch_add (WDialog * h);
  11. void dialog_switch_remove (WDialog * h);
  12. size_t dialog_switch_num (void);
  13. void dialog_switch_next (void);
  14. void dialog_switch_prev (void);
  15. void dialog_switch_list (void);
  16. int dialog_switch_process_pending (void);
  17. void dialog_switch_got_winch (void);
  18. void dialog_switch_shutdown (void);
  19. void repaint_screen (void);
  20. void mc_refresh (void);
  21. void dialog_change_screen_size (void);
  22. /*** inline functions ****************************************************************************/
  23. #endif /* MC__DIALOG_SWITCH_H */