mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2025-01-01 15:38:43 +00:00
15 lines
302 B
C
15 lines
302 B
C
|
#pragma once
|
||
|
|
||
|
#include <gui/view.h>
|
||
|
|
||
|
typedef struct Hid Hid;
|
||
|
typedef struct HidMovie HidMovie;
|
||
|
|
||
|
HidMovie* hid_movie_alloc(Hid* bt_hid);
|
||
|
|
||
|
void hid_movie_free(HidMovie* hid_movie);
|
||
|
|
||
|
View* hid_movie_get_view(HidMovie* hid_movie);
|
||
|
|
||
|
void hid_movie_set_connected_status(HidMovie* hid_movie, bool connected);
|