mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-12 14:12:27 +00:00
14 lines
302 B
C
14 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);
|