scene_dialog.h 418 B

123456789101112131415
  1. #pragma once
  2. #include "../subghz_playlist_creator.h"
  3. #include <gui/modules/dialog_ex.h>
  4. void scene_dialog_show(SubGhzPlaylistCreator* app);
  5. void scene_dialog_init_view(SubGhzPlaylistCreator* app);
  6. void scene_dialog_show_custom(
  7. SubGhzPlaylistCreator* app,
  8. const char* header,
  9. const char* text,
  10. const char* left_btn,
  11. const char* right_btn,
  12. DialogExResultCallback callback,
  13. void* context
  14. );