Merge pull request #4630 from BrzVlad/feature-valloc-limit
[mono-project.git] / mono / utils / mono-embed.h
blob7e145c82d654ba666d777d4270fa69dab6f005cf
1 /**
2 * \file
3 */
5 #ifndef __MONO_EMBED_H__
6 #define __MONO_EMBED_H__
8 #include <mono/utils/mono-publib.h>
10 MONO_BEGIN_DECLS
12 /*
13 * This is a fallback for platform symbol loading functionality.
15 typedef struct {
16 const char *name;
17 void *addr;
18 } MonoDlMapping;
20 MONO_API void mono_dl_register_library (const char *name, MonoDlMapping *mappings);
22 MONO_END_DECLS
24 #endif /* __MONO_EMBED_H__ */