mirror of
https://review.haiku-os.org/haiku
synced 2025-01-23 06:47:22 +01:00
6e062dd1b5
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7530 a95241bf-73f2-0310-859d-f6bbb57e9c96
26 lines
535 B
C
26 lines
535 B
C
/*
|
|
** Copyright 2003-2004, 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>
|
|
#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;
|
|
struct Elf32_Ehdr elf_header;
|
|
|
|
image_id id;
|
|
// the ID field will be filled out in the kernel
|
|
};
|
|
|
|
#endif /* KERNEL_BOOT_ELF_H */
|