hex_viewer_scene_1.h 540 B

12345678910111213141516171819
  1. #pragma once
  2. #include <gui/view.h>
  3. #include "../helpers/hex_viewer_custom_event.h"
  4. typedef struct HexViewerScene1 HexViewerScene1;
  5. typedef void (*HexViewerScene1Callback)(HexViewerCustomEvent event, void* context);
  6. void hex_viewer_scene_1_set_callback(
  7. HexViewerScene1* hex_viewer_scene_1,
  8. HexViewerScene1Callback callback,
  9. void* context);
  10. View* hex_viewer_scene_1_get_view(HexViewerScene1* hex_viewer_static);
  11. HexViewerScene1* hex_viewer_scene_1_alloc();
  12. void hex_viewer_scene_1_free(HexViewerScene1* hex_viewer_static);