Files
haiku-beta6/src/kernel/boot/loader/elf.h
T
Axel Dörfler 38f5c6bbc4 Corrected elf_load_image() prototype; it requires an object of the Directory
class as first argument.


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7505 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-10 18:57:58 +00:00

17 lines
399 B
C

/*
** Copyright 2003-2004, Axel Dörfler, [email protected]. All rights reserved.
** Distributed under the terms of the OpenBeOS License.
*/
#ifndef LOADER_ELF_H
#define LOADER_ELF_H
#include <boot/elf.h>
#include <boot/vfs.h>
extern status_t elf_load_image(Directory *directory, const char *path);
extern status_t elf_load_image(int fd, preloaded_image *image);
#endif /* LOADER_ELF_H */