segatools/board/config.h

13 lines
347 B
C
Raw Normal View History

2019-06-04 02:27:45 +00:00
#pragma once
#include <stdbool.h>
#include <stddef.h>
#include "board/io4.h"
2019-11-06 00:40:00 +00:00
#include "board/sg-reader.h"
2024-02-06 11:34:11 +00:00
#include "board/vfd.h"
2019-06-04 02:27:45 +00:00
void aime_config_load(struct aime_config *cfg, const wchar_t *filename);
void io4_config_load(struct io4_config *cfg, const wchar_t *filename);
2024-02-06 11:34:11 +00:00
void vfd_config_load(struct vfd_config *cfg, const wchar_t *filename);