9 lines
137 B
C
9 lines
137 B
C
|
#pragma once
|
||
|
#include "memory/memoryinfo.h"
|
||
|
|
||
|
|
||
|
struct BootInfo{
|
||
|
const char* BootStructureID = "BarinkOS";
|
||
|
MemoryInfo* memory;
|
||
|
|
||
|
};
|