1
0
mirror of synced 2024-11-27 15:00:49 +01:00
bananatools/board/config.h

17 lines
550 B
C
Raw Permalink Normal View History

#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"
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);