mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-26 22:40:25 +00:00
14 lines
341 B
C
14 lines
341 B
C
#pragma once
|
|
|
|
#include <gui/view.h>
|
|
|
|
typedef struct Hid Hid;
|
|
typedef struct HidKeyboard HidKeyboard;
|
|
|
|
HidKeyboard* hid_keyboard_alloc(Hid* bt_hid);
|
|
|
|
void hid_keyboard_free(HidKeyboard* hid_keyboard);
|
|
|
|
View* hid_keyboard_get_view(HidKeyboard* hid_keyboard);
|
|
|
|
void hid_keyboard_set_connected_status(HidKeyboard* hid_keyboard, bool connected);
|