taitools/idmac/idmac.h

22 lines
419 B
C
Raw Normal View History

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