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