class as first argument. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7505 a95241bf-73f2-0310-859d-f6bbb57e9c96
17 lines
399 B
C
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 */
|