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