2019-02-26 18:47:41 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
|
2019-11-06 00:40:00 +00:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
|
struct aime_config {
|
|
|
|
bool enable;
|
|
|
|
};
|
2019-06-04 02:28:44 +00:00
|
|
|
|
|
|
|
HRESULT sg_reader_hook_init(
|
|
|
|
const struct aime_config *cfg,
|
|
|
|
unsigned int port_no);
|