mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-18 16:53:45 +00:00
d1c27b6457
cherry pick from: * https://github.com/DarkFlippers/unleashed-firmware/pull/428/files * https://github.com/DarkFlippers/unleashed-firmware/pull/524/files Co-authored-by: * MX <10697207+xMasterX@users.noreply.github.com> * gid9798 <30450294+gid9798@users.noreply.github.com> Co-authored-by: MX <10697207+xMasterX@users.noreply.github.com> Co-authored-by: あく <alleteam@gmail.com>
16 lines
403 B
C
16 lines
403 B
C
#pragma once
|
|
|
|
#include <gui/view.h>
|
|
|
|
typedef struct Hid Hid;
|
|
typedef struct HidKeynote HidKeynote;
|
|
|
|
HidKeynote* hid_keynote_alloc(Hid* bt_hid);
|
|
|
|
void hid_keynote_free(HidKeynote* hid_keynote);
|
|
|
|
View* hid_keynote_get_view(HidKeynote* hid_keynote);
|
|
|
|
void hid_keynote_set_connected_status(HidKeynote* hid_keynote, bool connected);
|
|
|
|
void hid_keynote_set_orientation(HidKeynote* hid_keynote, bool vertical);
|