platform: Add ALLS platform

This commit is contained in:
Tau
2019-08-30 18:46:57 -04:00
parent 86bd7443cc
commit 13c59b13b8
4 changed files with 81 additions and 2 deletions

View File

@ -49,7 +49,18 @@ struct nu_config {
struct vfs_config vfs;
};
void nu_config_load(struct nu_config *cfg,const wchar_t *filename);
struct alls_config {
struct amvideo_config amvideo;
struct hwmon_config hwmon;
struct misc_config misc;
struct pcbid_config pcbid;
struct nusec_config nusec;
struct vfs_config vfs;
};
void alls_config_load(struct alls_config *cfg, const wchar_t *filename);
void nu_config_load(struct nu_config *cfg, const wchar_t *filename);
void amvideo_config_load(struct amvideo_config *cfg, const wchar_t *filename);
void hwmon_config_load(struct hwmon_config *cfg, const wchar_t *filename);
void misc_config_load(struct misc_config *cfg, const wchar_t *filename);