forked from Dniel97/segatools
Dniel97
793417e891
- Added new aime generation: 837-15286 and 837-15396 - New config setting `[aime] gen=3` for 837-15396 - Updated LED information for card reader - Updated all games with the needed reader generation?
21 lines
356 B
C
21 lines
356 B
C
#pragma once
|
|
|
|
#include <windows.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "board/aime-dll.h"
|
|
|
|
struct aime_config {
|
|
struct aime_dll_config dll;
|
|
bool enable;
|
|
bool high_baudrate;
|
|
unsigned int gen;
|
|
};
|
|
|
|
HRESULT sg_reader_hook_init(
|
|
const struct aime_config *cfg,
|
|
unsigned int port_no,
|
|
unsigned int gen,
|
|
HINSTANCE self);
|