mirror of
https://github.com/UberGuidoZ/Flipper.git
synced 2024-12-26 00:10:11 +00:00
11 lines
201 B
C
11 lines
201 B
C
|
#pragma once
|
||
|
|
||
|
#include <gui/view.h>
|
||
|
|
||
|
typedef struct AboutView AboutView;
|
||
|
|
||
|
AboutView* about_view_alloc();
|
||
|
|
||
|
void about_view_free(AboutView* about_view);
|
||
|
|
||
|
View* about_view_get_view(AboutView* about_view);
|