2023-07-11 05:21:36 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
|
|
|
|
#include "board/usio.h"
|
|
|
|
#include "board/bpreader.h"
|
|
|
|
#include "board/qr.h"
|
2023-09-18 10:00:09 +02:00
|
|
|
#include "board/sg-reader.h"
|
2024-10-06 20:37:20 +02:00
|
|
|
#include "board/vfd.h"
|
2023-07-11 05:21:36 +02:00
|
|
|
|
|
|
|
void bpreader_config_load(struct bpreader_config *cfg, const wchar_t *filename);
|
|
|
|
void usio_config_load(struct usio_config *cfg, const wchar_t *filename);
|
2023-09-18 10:00:09 +02:00
|
|
|
void qr_config_load(struct qr_config *cfg, const wchar_t *filename);
|
|
|
|
void aime_config_load(struct aime_config *cfg, const wchar_t *filename);
|
2024-10-06 20:37:20 +02:00
|
|
|
void vfd_config_load(struct vfd_config *cfg, const wchar_t *filename);
|