From 1b429c0fc28e5cd8b474ad5a1de1fa6f3d7c2e2a Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Mon, 12 Jul 2021 18:14:44 +0200 Subject: Renamed files to match presentation --- src/loader/gui.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'src/loader/gui.c') diff --git a/src/loader/gui.c b/src/loader/gui.c index 6ae35e6..2932dcc 100644 --- a/src/loader/gui.c +++ b/src/loader/gui.c @@ -1,19 +1,19 @@ // MIT License, Copyright (c) 2021 Marvin Borner // GUI - selection interface -#include +#include #include #include #include -#include +#include #include -#include +#include -struct { - struct cfg_entry *cfg; +static struct { + struct config_entry *cfg; } gui_entries[16] = { 0 }; -static u8 gui_entry_add(struct cfg_entry *entry) +static u8 gui_entry_add(struct config_entry *entry) { static u8 index = 0; assert(index + 1 < (u8)sizeof(gui_entries)); @@ -32,7 +32,7 @@ static u8 gui_entry_exists(u8 entry) static void gui_entry_select(u8 entry) { if (gui_entry_exists(entry)) - cfg_exec(gui_entries[entry].cfg); + config_exec(gui_entries[entry].cfg); else log("Invalid selection\n"); } @@ -71,8 +71,8 @@ void gui_draw(void) vga_clear(); vga_log("SegelBoot by Marvin Borner\n\n"); - cfg_foreach(&gui_entry_add); + config_foreach(&gui_entry_add); gui_entries_draw(); - int_event_handler_add(1, &gui_keyboard_handler); + interrupt_event_handler_add(1, &gui_keyboard_handler); } -- cgit v1.2.3