Implements lifted nullable comparison with null
[mono.git] / mono / metadata / mono-config.h
1 /*
2  * mono-config.h
3  *
4  * Author: Paolo Molaro (lupus@ximian.com)
5  *
6  * (C) 2002 Ximian, Inc.
7  */
8 #ifndef __MONO_METADATA_CONFIG_H__
9 #define __MONO_METADATA_CONFIG_H__
10
11 #include <mono/utils/mono-publib.h>
12 #include <mono/metadata/image.h>
13
14 MONO_BEGIN_DECLS
15
16 MONO_API const char* mono_get_config_dir (void);
17 MONO_API void        mono_set_config_dir (const char *dir);
18
19 MONO_API const char* mono_get_machine_config (void);
20
21 MONO_API void mono_config_cleanup      (void);
22 MONO_API void mono_config_parse        (const char *filename);
23 MONO_API void mono_config_for_assembly (MonoImage *assembly);
24 MONO_API void mono_config_parse_memory (const char *buffer);
25
26 MONO_API const char* mono_config_string_for_assembly_file (const char *filename);
27
28 MONO_END_DECLS
29
30 #endif /* __MONO_METADATA_CONFIG_H__ */
31