mirror of
https://gitea.tendokyu.moe/TeamTofuShop/segatools.git
synced 2026-09-22 22:37:59 +03:00
16 lines
230 B
C
16 lines
230 B
C
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
struct led_data {
|
|
DWORD unitCount;
|
|
uint8_t rgba[480 * 4];
|
|
};
|
|
|
|
struct elizabeth_config {
|
|
bool enable;
|
|
};
|
|
|
|
HRESULT elizabeth_hook_init(struct elizabeth_config *cfg);
|