segatools/mercuryhook/elisabeth.h

14 lines
209 B
C
Raw Normal View History

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