taitools/idmac/config.h
2024-02-10 17:48:10 -05:00

22 lines
681 B
C

#pragma once
#include <windows.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include "idmac/idmac.h"
#include "idmac/ds.h"
#include "idmac/eeprom.h"
#include "idmac/gpio.h"
#include "idmac/jvs.h"
#include "idmac/sram.h"
void ds_config_load(struct ds_config *cfg, const wchar_t *filename);
void eeprom_config_load(struct eeprom_config *cfg, const wchar_t *filename);
void gpio_config_load(struct gpio_config *cfg, const wchar_t *filename);
void jvs_config_load(struct jvs_config *cfg, const wchar_t *filename);
void sram_config_load(struct sram_config *cfg, const wchar_t *filename);
void idmac_config_load(struct idmac_config *cfg, const wchar_t *filename);