xref: /haiku/src/system/boot/loader/elf.h (revision 5af32e752606778be5dd7379f319fe43cb3f6b8c)
1*5af32e75SAxel Dörfler /*
2*5af32e75SAxel Dörfler ** Copyright 2003-2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
3*5af32e75SAxel Dörfler ** Distributed under the terms of the OpenBeOS License.
4*5af32e75SAxel Dörfler */
5*5af32e75SAxel Dörfler #ifndef LOADER_ELF_H
6*5af32e75SAxel Dörfler #define LOADER_ELF_H
7*5af32e75SAxel Dörfler 
8*5af32e75SAxel Dörfler 
9*5af32e75SAxel Dörfler #include <boot/elf.h>
10*5af32e75SAxel Dörfler #include <boot/vfs.h>
11*5af32e75SAxel Dörfler 
12*5af32e75SAxel Dörfler 
13*5af32e75SAxel Dörfler extern status_t elf_load_image(Directory *directory, const char *path);
14*5af32e75SAxel Dörfler extern status_t elf_load_image(int fd, preloaded_image *image);
15*5af32e75SAxel Dörfler 
16*5af32e75SAxel Dörfler #endif	/* LOADER_ELF_H */
17