2019-06-03 22:27:45 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
|
2020-10-07 17:26:12 +00:00
|
|
|
#include "board/io4.h"
|
2019-11-05 19:40:00 -05:00
|
|
|
#include "board/sg-reader.h"
|
2024-02-06 12:34:11 +01:00
|
|
|
#include "board/vfd.h"
|
2024-09-30 18:50:46 +02:00
|
|
|
#include "board/ffb.h"
|
2019-06-03 22:27:45 -04:00
|
|
|
|
|
|
|
void aime_config_load(struct aime_config *cfg, const wchar_t *filename);
|
2020-10-07 17:26:12 +00:00
|
|
|
void io4_config_load(struct io4_config *cfg, const wchar_t *filename);
|
2024-02-06 12:34:11 +01:00
|
|
|
void vfd_config_load(struct vfd_config *cfg, const wchar_t *filename);
|
2024-09-30 18:50:46 +02:00
|
|
|
void ffb_config_load(struct ffb_config *cfg, const wchar_t *filename);
|