dialog-switch.h 1.0 KB

123456789101112131415161718192021222324252627282930
  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. /*** declarations of public functions ************************************************************/
  9. void dialog_switch_add (struct Dlg_head *h);
  10. void dialog_switch_remove (struct Dlg_head *h);
  11. size_t dialog_switch_num (void);
  12. void dialog_switch_next (void);
  13. void dialog_switch_prev (void);
  14. void dialog_switch_list (void);
  15. int dialog_switch_process_pending (void);
  16. void dialog_switch_got_winch (void);
  17. void dialog_switch_shutdown (void);
  18. /*** inline functions ****************************************************************************/
  19. #endif /* MC__DIALOG_SWITCH_H */