Load and bind aimeio at runtime

This commit is contained in:
Tau
2021-05-23 11:54:24 -04:00
parent e49e1ec804
commit 0c7a9c87c0
10 changed files with 182 additions and 13 deletions

View File

@ -4,10 +4,14 @@
#include <stdbool.h>
#include "board/aime-dll.h"
struct aime_config {
struct aime_dll_config dll;
bool enable;
};
HRESULT sg_reader_hook_init(
const struct aime_config *cfg,
unsigned int port_no);
unsigned int port_no,
HINSTANCE self);