Files
haiku-beta6/headers/private/kernel/boot/elf.h
T

23 lines
503 B
C
Raw Normal View History

/*
2004-04-20 23:38:07 +00:00
** Copyright 2003-2004, Axel Dörfler, [email protected]. 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>
#include <boot/kernel_args.h>
struct preloaded_image {
struct preloaded_image *next;
char *name;
elf_region text_region;
elf_region data_region;
addr_range dynamic_section; // pointer to the dynamic section
2004-04-27 11:53:08 +00:00
struct Elf32_Ehdr elf_header;
};
#endif /* KERNEL_BOOT_ELF_H */