bananatools/taikohook/taiko-dll.h

23 lines
494 B
C
Raw Normal View History

2023-01-03 04:35:53 +00:00
#pragma once
#include <windows.h>
#include "taikoio/taikoio.h"
struct taiko_dll {
uint16_t api_version;
HRESULT (*init)(void);
HRESULT (*poll)(void);
void (*read_coin_counter)(uint16_t *coins, uint16_t *services);
void (*get_opbtns)(uint8_t *opbtn);
2023-07-29 06:51:58 +00:00
void (*get_drum_analog)(uint8_t *gamebtn);
2023-01-03 04:35:53 +00:00
};
struct taiko_dll_config {
wchar_t path[MAX_PATH];
};
extern struct taiko_dll taiko_dll;
HRESULT taiko_dll_init(const struct taiko_dll_config *cfg, HINSTANCE self);