#pragma once #include #include "idmac/ds.h" #include "idmac/eeprom.h" #include "idmac/gpio.h" #include "idmac/jvs.h" #include "idmac/sram.h" struct idmac_config { struct ds_config ds; struct eeprom_config eeprom; struct gpio_config gpio; struct jvs_config jvs; struct sram_config sram; }; HRESULT idmac_hook_init( const struct idmac_config *cfg, jvs_provider_t jvs);