xref: /haiku/headers/private/libroot/image_private.h (revision 21258e2674226d6aa732321b6f8494841895af5f)
1 /*
2  * Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef _LIBROOT_IMAGE_PRIVATE_H
6 #define _LIBROOT_IMAGE_PRIVATE_H
7 
8 #include <sys/cdefs.h>
9 
10 #include <image.h>
11 
12 
13 __BEGIN_DECLS
14 
15 status_t get_image_symbol_etc(image_id id, char const* symbolName,
16 	int32 symbolType, bool recursive, image_id* _inImage, void** _location);
17 
18 __END_DECLS
19 
20 
21 #endif	// _LIBROOT_IMAGE_PRIVATE_H
22