mirror of
https://github.com/tailix/libkernaux.git
synced 2024-11-13 11:04:27 -05:00
Add enum KernAux_Multiboot2_HTag
This commit is contained in:
parent
40e52e1e6a
commit
9b5abc2971
1 changed files with 14 additions and 0 deletions
|
@ -16,6 +16,20 @@ extern "C" {
|
|||
* Common types *
|
||||
****************/
|
||||
|
||||
enum KernAux_Multiboot2_HTag {
|
||||
KERNAUX_MULTIBOOT2_HTAG_NONE = 0,
|
||||
KERNAUX_MULTIBOOT2_HTAG_INFO_REQ = 1,
|
||||
KERNAUX_MULTIBOOT2_HTAG_ADDR = 2,
|
||||
KERNAUX_MULTIBOOT2_HTAG_ENTRY_ADDR = 3,
|
||||
KERNAUX_MULTIBOOT2_HTAG_FLAGS = 4,
|
||||
KERNAUX_MULTIBOOT2_HTAG_FRAMEBUFFER = 5,
|
||||
KERNAUX_MULTIBOOT2_HTAG_MODULE_ALIGN = 6,
|
||||
KERNAUX_MULTIBOOT2_HTAG_EFI_BOOT_SERVICES = 7,
|
||||
KERNAUX_MULTIBOOT2_HTAG_EFI_I386_ENTRY_ADDR = 8,
|
||||
KERNAUX_MULTIBOOT2_HTAG_EFI_AMD64_ENTRY_ADDR = 9,
|
||||
KERNAUX_MULTIBOOT2_HTAG_RELOCATABLE_HEADER = 10,
|
||||
};
|
||||
|
||||
enum KernAux_Multiboot2_TagType {
|
||||
KERNAUX_MULTIBOOT2_TAGTYPE_NONE = 0,
|
||||
KERNAUX_MULTIBOOT2_TAGTYPE_BOOT_CMD_LINE = 1,
|
||||
|
|
Loading…
Reference in a new issue