2010-05-11 Rodrigo Kumpera <rkumpera@novell.com>
[mono.git] / mono / utils / mono-embed.h
blob826d47136ac757b64e227dff635608a4c006a17a
1 #ifndef __MONO_EMBED_H__
2 #define __MONO_EMBED_H__
4 /*
5 * These are only used and available on embedded systems, the
6 * EMBEDDED_PINVOKE configuration option must be set, and it
7 * overrides any platform symbol loading functionality
8 */
9 typedef struct {
10 const char *name;
11 void *addr;
12 } MonoDlMapping;
14 void mono_dl_register_library (const char *name, MonoDlMapping *mappings);
16 #endif /* __MONO_EMBED_H__ */