少年修仙传客户端基础资源
hch
2024-04-01 d01413b00ef631ac20347716b23818b0b811f65f
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
31
32
33
34
35
36
37
38
39
40
41
42
/**
 * \file
 * Copyright 2016 Microsoft
 * Licensed under the MIT license. See LICENSE file in the project root for full license information.
 */
#ifndef __MONO_METADATA_MARSHAL_INTERNALS_H__
#define __MONO_METADATA_MARSHAL_INTERNALS_H__
 
#include <config.h>
#include <glib.h>
#include <mono/metadata/object-internals.h>
 
MonoObjectHandle
mono_marshal_xdomain_copy_value_handle (MonoObjectHandle val, MonoError *error);
 
// On Windows platform implementation of bellow methods are hosted in separate source file
// masrshal-windows.c or marshal-windows-*.c. On other platforms the implementation is still keept
// in marshal.c still declared as static and in some places even inlined.
#ifdef HOST_WIN32
void*
mono_marshal_alloc_co_task_mem (size_t size);
 
void
mono_marshal_free_co_task_mem (void *ptr);
 
gpointer
mono_marshal_realloc_co_task_mem (gpointer ptr, size_t size);
 
void*
mono_marshal_alloc_hglobal (size_t size);
 
gpointer
mono_marshal_realloc_hglobal (gpointer ptr, size_t size);
 
void
mono_marshal_free_hglobal (void *ptr);
 
gpointer
mono_string_to_utf8str (MonoString *s);
#endif  /* HOST_WIN32 */
 
#endif /* __MONO_METADATA_MARSHAL_INTERNALS_H__ */