1
0
mirror of https://gitea.tendokyu.moe/Dniel97/segatools.git synced 2025-01-10 15:51:47 +01:00

14 lines
209 B
C
Raw Normal View History

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