2021-12-24 08:05:37 +00:00
|
|
|
#pragma once
|
2023-02-13 01:40:41 +00:00
|
|
|
#include <stdbool.h>
|
2021-12-24 08:05:37 +00:00
|
|
|
|
2022-07-31 18:11:24 +00:00
|
|
|
struct led_data {
|
|
|
|
DWORD unitCount;
|
|
|
|
uint8_t rgba[480 * 4];
|
|
|
|
};
|
|
|
|
|
2023-02-13 01:40:41 +00:00
|
|
|
struct elisabeth_config {
|
|
|
|
bool enable;
|
|
|
|
};
|
|
|
|
|
|
|
|
HRESULT elisabeth_hook_init(struct elisabeth_config *cfg);
|