mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-13 22:42:40 +00:00
14 lines
439 B
C
14 lines
439 B
C
#pragma once
|
|
|
|
#include <gui/view.h>
|
|
|
|
typedef struct Hid Hid;
|
|
typedef struct HidKeynoteVertical HidKeynoteVertical;
|
|
|
|
HidKeynoteVertical* hid_keynote_vertical_alloc(Hid* bt_hid);
|
|
|
|
void hid_keynote_vertical_free(HidKeynoteVertical* hid_keynote_vertical);
|
|
|
|
View* hid_keynote_vertical_get_view(HidKeynoteVertical* hid_keynote_vertical);
|
|
|
|
void hid_keynote_vertical_set_connected_status(HidKeynoteVertical* hid_keynote_vertical, bool connected);
|