Use 32 as the min alignment when running under NACL.
[mono.git] / mono / utils / mono-embed.h
1 #ifndef __MONO_EMBED_H__
2 #define __MONO_EMBED_H__
3
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;
13
14 void mono_dl_register_library (const char *name, MonoDlMapping *mappings);
15
16 #endif /* __MONO_EMBED_H__ */