2019-05-17 20:20:38 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2019-11-05 19:31:11 -05:00
|
|
|
#include "platform/amvideo.h"
|
|
|
|
#include "platform/clock.h"
|
|
|
|
#include "platform/dns.h"
|
2023-09-15 01:35:33 -04:00
|
|
|
#include "platform/epay.h"
|
2019-11-05 19:31:11 -05:00
|
|
|
#include "platform/hwmon.h"
|
2020-10-07 17:27:23 +00:00
|
|
|
#include "platform/hwreset.h"
|
2019-11-05 19:31:11 -05:00
|
|
|
#include "platform/misc.h"
|
|
|
|
#include "platform/netenv.h"
|
|
|
|
#include "platform/nusec.h"
|
|
|
|
#include "platform/pcbid.h"
|
|
|
|
#include "platform/platform.h"
|
|
|
|
#include "platform/vfs.h"
|
2023-07-14 00:41:23 +02:00
|
|
|
#include "platform/dipsw.h"
|
2019-08-30 18:46:57 -04:00
|
|
|
|
2019-11-03 09:52:33 -05:00
|
|
|
void platform_config_load(
|
|
|
|
struct platform_config *cfg,
|
|
|
|
const wchar_t *filename);
|
2019-08-30 18:46:57 -04:00
|
|
|
|
2019-05-17 20:20:38 -04:00
|
|
|
void amvideo_config_load(struct amvideo_config *cfg, const wchar_t *filename);
|
2019-10-14 23:18:18 -04:00
|
|
|
void clock_config_load(struct clock_config *cfg, const wchar_t *filename);
|
2019-09-04 13:43:15 -04:00
|
|
|
void dns_config_load(struct dns_config *cfg, const wchar_t *filename);
|
2023-09-15 01:35:33 -04:00
|
|
|
void epay_config_load(struct epay_config *cfg, const wchar_t *filename);
|
2019-05-17 20:20:38 -04:00
|
|
|
void hwmon_config_load(struct hwmon_config *cfg, const wchar_t *filename);
|
2020-10-07 17:27:23 +00:00
|
|
|
void hwreset_config_load(struct hwreset_config *cfg, const wchar_t *filename);
|
2019-05-17 20:20:38 -04:00
|
|
|
void misc_config_load(struct misc_config *cfg, const wchar_t *filename);
|
2019-11-02 13:28:55 -04:00
|
|
|
void netenv_config_load(struct netenv_config *cfg, const wchar_t *filename);
|
2019-05-17 20:20:38 -04:00
|
|
|
void nusec_config_load(struct nusec_config *cfg, const wchar_t *filename);
|
2019-08-20 18:44:47 -04:00
|
|
|
void pcbid_config_load(struct pcbid_config *cfg, const wchar_t *filename);
|
2019-05-17 20:20:38 -04:00
|
|
|
void vfs_config_load(struct vfs_config *cfg, const wchar_t *filename);
|
2023-07-14 00:41:23 +02:00
|
|
|
void dipsw_config_load(struct dipsw_config *cfg, const wchar_t *filename);
|