94830eb226
* Some style cleanup. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@30808 a95241bf-73f2-0310-859d-f6bbb57e9c96
18 lines
430 B
C
18 lines
430 B
C
/*
|
|
* Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef ELF_LOAD_IMAGE_H
|
|
#define ELF_LOAD_IMAGE_H
|
|
|
|
#include "runtime_loader_private.h"
|
|
|
|
|
|
status_t parse_elf_header(struct Elf32_Ehdr* eheader, int32* _pheaderSize,
|
|
int32* _sheaderSize);
|
|
status_t load_image(char const* name, image_type type, const char* rpath,
|
|
image_t** _image);
|
|
|
|
|
|
#endif // ELF_LOAD_IMAGE_H
|