Windows msbuild triggers too much to rebuild.
[mono.git] / mono / metadata / marshal-internals.h
1 /*
2  * Copyright 2016 Microsoft
3  * Licensed under the MIT license. See LICENSE file in the project root for full license information.
4  */
5 #ifndef __MONO_METADATA_MARSHAL_INTERNALS_H__
6 #define __MONO_METADATA_MARSHAL_INTERNALS_H__
7
8 #include <config.h>
9 #include <glib.h>
10 #include <mono/metadata/object-internals.h>
11
12 MonoObjectHandle
13 mono_marshal_xdomain_copy_value_handle (MonoObjectHandle val, MonoError *error);
14
15 // On Windows platform implementation of bellow methods are hosted in separate source file
16 // masrshal-windows.c or marshal-windows-*.c. On other platforms the implementation is still keept
17 // in marshal.c still declared as static and in some places even inlined.
18 #ifdef HOST_WIN32
19 void*
20 mono_marshal_alloc_co_task_mem (size_t size);
21
22 void
23 mono_marshal_free_co_task_mem (void *ptr);
24
25 gpointer
26 mono_marshal_realloc_co_task_mem (gpointer ptr, size_t size);
27
28 void*
29 mono_marshal_alloc_hglobal (size_t size);
30
31 gpointer
32 mono_marshal_realloc_hglobal (gpointer ptr, size_t size);
33
34 void
35 mono_marshal_free_hglobal (void *ptr);
36
37 gpointer
38 mono_string_to_utf8str (MonoString *s);
39 #endif  /* HOST_WIN32 */
40
41 #endif /* __MONO_METADATA_MARSHAL_INTERNALS_H__ */