Wacca: Add toggle for LED board hooks

This commit is contained in:
Hay1tsme
2023-02-12 20:40:41 -05:00
parent 54089a592f
commit 29ca2dfa7b
6 changed files with 35 additions and 5 deletions

View File

@ -1,8 +1,13 @@
#pragma once
#include <stdbool.h>
struct led_data {
DWORD unitCount;
uint8_t rgba[480 * 4];
};
HRESULT elisabeth_hook_init();
struct elisabeth_config {
bool enable;
};
HRESULT elisabeth_hook_init(struct elisabeth_config *cfg);