1
0
mirror of synced 2024-11-23 21:40:58 +01:00
bananatools/board/sg-reader.h
2024-10-06 20:44:49 +02:00

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);