Load and bind mu3io at runtime

This commit is contained in:
Tau
2021-06-06 14:23:55 -04:00
parent 2cd6bdb695
commit 9fc45e2df1
8 changed files with 185 additions and 6 deletions

22
mu3hook/mu3-dll.h Normal file
View File

@ -0,0 +1,22 @@
#pragma once
#include <windows.h>
#include "mu3io/mu3io.h"
struct mu3_dll {
uint16_t api_version;
HRESULT (*init)(void);
HRESULT (*poll)(void);
void (*get_opbtns)(uint8_t *opbtn);
void (*get_gamebtns)(uint8_t *left, uint8_t *right);
void (*get_lever)(int16_t *pos);
};
struct mu3_dll_config {
wchar_t path[MAX_PATH];
};
extern struct mu3_dll mu3_dll;
HRESULT mu3_dll_init(const struct mu3_dll_config *cfg, HINSTANCE self);