1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
| /**
| * \file
| */
|
| #ifndef __MONO_ATTACH_H__
| #define __MONO_ATTACH_H__
|
| #include <glib.h>
| #include <mono/utils/mono-compiler.h>
|
| G_BEGIN_DECLS
|
| void
| mono_attach_parse_options (char *options);
|
| void
| mono_attach_init (void);
|
| gboolean
| mono_attach_start (void);
|
| void
| mono_attach_maybe_start (void);
|
| void
| mono_attach_cleanup (void);
|
| G_END_DECLS
|
| #endif
|
|