Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mono / metadata / runtime.h
1 /**
2  * \file
3  * Runtime functions
4  *
5  * Author:
6  *      Jonathan Pryor
7  *
8  * (C) 2010 Novell, Inc.
9  */
10
11 #ifndef _MONO_METADATA_RUNTIME_H_
12 #define _MONO_METADATA_RUNTIME_H_
13
14 #include <glib.h>
15 #include <mono/metadata/metadata.h>
16 #include <mono/utils/mono-publib.h>
17 #include <mono/utils/mono-compiler.h>
18
19 MONO_BEGIN_DECLS
20
21 gboolean mono_runtime_try_shutdown (void);
22
23 void mono_runtime_init_tls (void);
24
25 char* mono_runtime_get_aotid (void);
26 MONO_END_DECLS
27
28 #endif /* _MONO_METADATA_RUNTIME_H_ */
29
30