mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-19 01:03:22 +00:00
b801f70f3a
by rwl4
14 lines
400 B
C
14 lines
400 B
C
#pragma once
|
|
|
|
#include <gui/view.h>
|
|
|
|
typedef struct Hid Hid;
|
|
typedef struct HidMouseClicker HidMouseClicker;
|
|
|
|
HidMouseClicker* hid_mouse_clicker_alloc(Hid* bt_hid);
|
|
|
|
void hid_mouse_clicker_free(HidMouseClicker* hid_mouse_clicker);
|
|
|
|
View* hid_mouse_clicker_get_view(HidMouseClicker* hid_mouse_clicker);
|
|
|
|
void hid_mouse_clicker_set_connected_status(HidMouseClicker* hid_mouse_clicker, bool connected);
|