From 39713a3736145483dd3310c3605f940ca34f05c3 Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Mon, 12 Apr 2021 10:13:21 +0200 Subject: Refactoring --- src/boot/multiboot.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/boot/multiboot.h') diff --git a/src/boot/multiboot.h b/src/boot/multiboot.h index 010f60b..9eae31f 100644 --- a/src/boot/multiboot.h +++ b/src/boot/multiboot.h @@ -1,7 +1,8 @@ #ifndef MULTIBOOT_H #define MULTIBOOT_H -#include "utils/types.h" +#include "core/types.h" +#include "core/mem.h" typedef struct MBI_TAG_HEADER { u32 type; @@ -29,10 +30,12 @@ typedef struct MBI_TAG_FB { * Parse Bootloader boot information structure */ char mb_load_tag(char **data, char type); + /** * Search for Bootloader name */ char mb_load_bl_name(MBI_TAG_BL_NAME *data); + /** * Search for FrameBuffer structure (TODO: Finish) */ -- cgit v1.2.3