mirror of
https://gitea.tendokyu.moe/Hay1tsme/segatools.git
synced 2026-04-24 07:27:18 -05:00
14 lines
209 B
C
14 lines
209 B
C
#pragma once
|
|
#include <stdbool.h>
|
|
|
|
struct led_data {
|
|
DWORD unitCount;
|
|
uint8_t rgba[480 * 4];
|
|
};
|
|
|
|
struct elisabeth_config {
|
|
bool enable;
|
|
};
|
|
|
|
HRESULT elisabeth_hook_init(struct elisabeth_config *cfg);
|