taitools/amex/amex.h

22 lines
411 B
C
Raw Normal View History

2024-02-06 08:24:58 +00:00
#pragma once
#include <windows.h>
#include "amex/ds.h"
#include "amex/eeprom.h"
#include "amex/gpio.h"
#include "amex/jvs.h"
#include "amex/sram.h"
struct amex_config {
struct ds_config ds;
struct eeprom_config eeprom;
struct gpio_config gpio;
struct jvs_config jvs;
struct sram_config sram;
};
HRESULT amex_hook_init(
const struct amex_config *cfg,
jvs_provider_t jvs);