segatools2/mai2hook/led.h
2023-11-30 02:29:27 -05:00

10 lines
150 B
C

#pragma once
#include <windows.h>
#include <stdbool.h>
struct led_config {
bool enable;
};
HRESULT led_hook_init(const struct led_config *cfg);