少年修仙传客户端基础资源
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#include <glib.h>
#include "mono/utils/mono-dl.h"
 
#if defined(PLATFORM_UNITY) && defined(UNITY_USE_PLATFORM_STUBS)
 
const char*
mono_dl_get_so_prefix (void)
{
    g_assert(0 && "This function is not yet implemented for the Unity platform.");
    return NULL;
}
 
const char**
mono_dl_get_so_suffixes (void)
{
    g_assert(0 && "This function is not yet implemented for the Unity platform.");
    return NULL;
}
 
void*
mono_dl_open_file (const char *file, int flags)
{
    g_assert(0 && "This function is not yet implemented for the Unity platform.");
    return NULL;
}
 
void
mono_dl_close_handle (MonoDl *module)
{
    g_assert(0 && "This function is not yet implemented for the Unity platform.");
}
 
void*
mono_dl_lookup_symbol_in_process (const char *symbol_name)
{
    g_assert(0 && "This function is not yet implemented for the Unity platform.");
    return NULL;
}
 
void*
mono_dl_lookup_symbol (MonoDl *module, const char *symbol_name)
{
    g_assert(0 && "This function is not yet implemented for the Unity platform.");
    return NULL;
}
 
int
mono_dl_convert_flags (int flags)
{
    g_assert(0 && "This function is not yet implemented for the Unity platform.");
    return 0;
}
 
char*
mono_dl_current_error_string (void)
{
    g_assert(0 && "This function is not yet implemented for the Unity platform.");
    return NULL;
}
 
int
mono_dl_get_executable_path (char *buf, int buflen)
{
    g_assert(0 && "This function is not yet implemented for the Unity platform.");
    return 0;
}
 
const char*
mono_dl_get_system_dir (void)
{
    g_assert(0 && "This function is not yet implemented for the Unity platform.");
    return NULL;
}
 
#endif /* PLATFORM_UNITY && UNITY_USE_PLATFORM_STUBS */