hex_viewer_scene_2.h 532 B

12345678910111213141516171819
  1. #pragma once
  2. #include <gui/view.h>
  3. #include "../helpers/hex_viewer_custom_event.h"
  4. typedef struct HexViewerScene2 HexViewerScene2;
  5. typedef void (*HexViewerScene2Callback)(HexViewerCustomEvent event, void* context);
  6. void hex_viewer_scene_2_set_callback(
  7. HexViewerScene2* instance,
  8. HexViewerScene2Callback callback,
  9. void * context);
  10. HexViewerScene2* hex_viewer_scene_2_alloc();
  11. void hex_viewer_scene_2_free(HexViewerScene2* hex_viewer_static);
  12. View* hex_viewer_scene_2_get_view(HexViewerScene2* boilerpate_static);