2023-09-18 10:00:09 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
|
#include "board/aime-dll.h"
|
|
|
|
|
|
|
|
struct aime_config {
|
|
|
|
struct aime_dll_config dll;
|
|
|
|
bool enable;
|
2024-10-06 20:37:20 +02:00
|
|
|
bool high_baudrate;
|
|
|
|
unsigned int gen;
|
2023-09-18 10:00:09 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
HRESULT sg_reader_hook_init(
|
|
|
|
const struct aime_config *cfg,
|
|
|
|
unsigned int port_no,
|
2024-10-06 20:37:20 +02:00
|
|
|
unsigned int gen,
|
2023-09-18 10:00:09 +02:00
|
|
|
HINSTANCE self);
|