1
0
mirror of https://gitea.tendokyu.moe/Hay1tsme/segatools.git synced 2025-01-24 07:04:08 +01:00

18 lines
284 B
C
Raw Normal View History

#pragma once
#include <windows.h>
2019-11-05 19:40:00 -05:00
#include <stdbool.h>
2021-05-23 11:54:24 -04:00
#include "board/aime-dll.h"
2019-11-05 19:40:00 -05:00
struct aime_config {
2021-05-23 11:54:24 -04:00
struct aime_dll_config dll;
2019-11-05 19:40:00 -05:00
bool enable;
};
HRESULT sg_reader_hook_init(
const struct aime_config *cfg,
2021-05-23 11:54:24 -04:00
unsigned int port_no,
HINSTANCE self);