forked from Hay1tsme/segatools
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);
|