diff options
author | Joshua Liu <joshua.liu@sourceobby.com> | 2025-06-22 22:08:03 -0400 |
---|---|---|
committer | Joshua Liu <joshua.liu@sourceobby.com> | 2025-06-22 22:08:03 -0400 |
commit | 8ed8ac39c6de611b6737280a5041c15d3f415c1d (patch) | |
tree | ba1c6f89a6143077bd827c556a8b40714f697fee /streamdeck.h | |
parent | ad91b5b1ed83b0a522e6071d6b063362b58e031a (diff) |
feat: created the function declaration and some implementation of destroy_streamdeck and clean_exit
Diffstat (limited to 'streamdeck.h')
-rw-r--r-- | streamdeck.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/streamdeck.h b/streamdeck.h index 0455aef..e781dea 100644 --- a/streamdeck.h +++ b/streamdeck.h @@ -32,4 +32,7 @@ int callback(handler* deck, void* key, void* state); int readhandler(handler* deck); int set_key_image(streamdeck* deck, int key, image* img); int init (); +void destroy_streamdeck (streamdeck* target); +handler* create_hid_handler (); +// handler* create_hid_handler (); |