mirror of
https://review.haiku-os.org/haiku
synced 2025-02-02 19:57:42 +01:00
22 lines
456 B
C
22 lines
456 B
C
|
/*
|
||
|
** Copyright 2003, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
|
||
|
** Distributed under the terms of the OpenBeOS License.
|
||
|
*/
|
||
|
#ifndef KERNEL_BOOT_ELF_H
|
||
|
#define KERNEL_BOOT_ELF_H
|
||
|
|
||
|
|
||
|
#include <elf_priv.h>
|
||
|
|
||
|
|
||
|
struct preloaded_image {
|
||
|
struct preloaded_image *next;
|
||
|
char *name;
|
||
|
elf_region text_region;
|
||
|
elf_region data_region;
|
||
|
addr dynamic_section; // pointer to the dynamic section
|
||
|
Elf32_Ehdr elf_header;
|
||
|
};
|
||
|
|
||
|
#endif /* KERNEL_BOOT_ELF_H */
|