Update system apps

This commit is contained in:
Willy-JL
2023-11-19 23:15:17 +00:00
parent 2c8a2006c1
commit 3b898ece92
76 changed files with 2390 additions and 440 deletions

View File

@@ -0,0 +1,19 @@
#pragma once
#include <gui/view.h>
#include "../helpers/hex_viewer_custom_event.h"
typedef struct HexViewerStartscreen HexViewerStartscreen;
typedef void (*HexViewerStartscreenCallback)(HexViewerCustomEvent event, void* context);
void hex_viewer_startscreen_set_callback(
HexViewerStartscreen* hex_viewer_startscreen,
HexViewerStartscreenCallback callback,
void* context);
View* hex_viewer_startscreen_get_view(HexViewerStartscreen* hex_viewer_static);
HexViewerStartscreen* hex_viewer_startscreen_alloc();
void hex_viewer_startscreen_free(HexViewerStartscreen* hex_viewer_static);