mirror of
https://gitea.tendokyu.moe/Dniel97/segatools.git
synced 2024-11-11 23:17:08 +01: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);
|