Load and bind idzio at runtime

This commit is contained in:
Tau
2021-06-12 12:40:19 -04:00
parent 3a03c95e1d
commit 392cd89c6a
8 changed files with 184 additions and 7 deletions

22
idzhook/idz-dll.h Normal file
View File

@ -0,0 +1,22 @@
#pragma once
#include <windows.h>
#include "idzio/idzio.h"
struct idz_dll {
uint16_t api_version;
HRESULT (*jvs_init)(void);
void (*jvs_read_analogs)(struct idz_io_analog_state *out);
void (*jvs_read_buttons)(uint8_t *opbtn, uint8_t *gamebtn);
void (*jvs_read_shifter)(uint8_t *gear);
void (*jvs_read_coin_counter)(uint16_t *total);
};
struct idz_dll_config {
wchar_t path[MAX_PATH];
};
extern struct idz_dll idz_dll;
HRESULT idz_dll_init(const struct idz_dll_config *cfg, HINSTANCE self);