summaryrefslogtreecommitdiffhomepage
path: root/src/loader/inc/cfg.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/loader/inc/cfg.h')
-rw-r--r--src/loader/inc/cfg.h16
1 files changed, 14 insertions, 2 deletions
diff --git a/src/loader/inc/cfg.h b/src/loader/inc/cfg.h
index 1332fe1..27b3ca3 100644
--- a/src/loader/inc/cfg.h
+++ b/src/loader/inc/cfg.h
@@ -15,7 +15,19 @@ enum cfg_key {
CFG_PATH,
};
-const void *cfg_get(u8 index, enum cfg_key key);
-void cfg_exec(void);
+struct cfg_entry {
+ u8 exists : 1;
+ char name[64];
+ char path[64];
+ struct dev *dev;
+};
+
+struct cfg {
+ u32 timeout;
+ struct cfg_entry entry[16]; // Up to 16 different entries
+};
+
+void cfg_foreach(u8 (*cb)(struct cfg_entry *));
+void cfg_read(void);
#endif