Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mono / utils / mono-embed.h
1 /**
2  * \file
3  */
4
5 #ifndef __MONO_EMBED_H__
6 #define __MONO_EMBED_H__
7
8 #include <mono/utils/mono-publib.h>
9
10 MONO_BEGIN_DECLS
11
12 /* 
13  * This is a fallback for platform symbol loading functionality.
14  */
15 typedef struct {
16         const char *name;       
17         void *addr;
18 } MonoDlMapping;
19
20 MONO_API void mono_dl_register_library (const char *name, MonoDlMapping *mappings);
21
22 MONO_END_DECLS
23
24 #endif /* __MONO_EMBED_H__ */