mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-25 22:32:29 +03:00
585b7f963d
merge ofw commit
13 lines
273 B
C
13 lines
273 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include <gui/view.h>
|
|
|
|
typedef struct ViewDisplayTest ViewDisplayTest;
|
|
|
|
ViewDisplayTest* view_display_test_alloc(void);
|
|
|
|
void view_display_test_free(ViewDisplayTest* instance);
|
|
|
|
View* view_display_test_get_view(ViewDisplayTest* instance);
|