forked from Dniel97/segatools
32596acab7
These never get called at the moment, so we have no way of guaranteeing that any existing implementations are even correct. If we do decide to start emulating the coin blocker then we will need to advance the API versions, which will (hopefully) force any third-party devs to test their coin blocker code before opting in.
25 lines
599 B
C
25 lines
599 B
C
#pragma once
|
|
|
|
#include <windows.h>
|
|
|
|
#include "chuniio/chuniio.h"
|
|
|
|
struct chuni_dll {
|
|
uint16_t api_version;
|
|
HRESULT (*jvs_init)(void);
|
|
void (*jvs_poll)(uint8_t *opbtn, uint8_t *beams);
|
|
void (*jvs_read_coin_counter)(uint16_t *total);
|
|
HRESULT (*slider_init)(void);
|
|
void (*slider_start)(chuni_io_slider_callback_t callback);
|
|
void (*slider_stop)(void);
|
|
void (*slider_set_leds)(const uint8_t *rgb);
|
|
};
|
|
|
|
struct chuni_dll_config {
|
|
wchar_t path[MAX_PATH];
|
|
};
|
|
|
|
extern struct chuni_dll chuni_dll;
|
|
|
|
HRESULT chuni_dll_init(const struct chuni_dll_config *cfg, HINSTANCE self);
|