1
0
mirror of https://gitea.tendokyu.moe/Dniel97/segatools.git synced 2025-01-31 20:15:27 +01:00
2023-11-11 22:41:04 +01:00

16 lines
265 B
C

#pragma once
#include <windows.h>
#include <stdbool.h>
struct led1509306_config {
bool enable;
char board_number[8];
char chip_number[5];
uint8_t fw_ver;
uint16_t fw_sum;
};
HRESULT led1509306_hook_init(const struct led1509306_config *cfg);