少年修仙传客户端基础资源
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/**
 * \file
 * Interface to the dynamic linker
 *
 * Author:
 *    Mono Team (http://www.mono-project.com)
 *
 * Copyright 2001-2004 Ximian, Inc.
 * Copyright 2004-2009 Novell, Inc.
 * Licensed under the MIT license. See LICENSE file in the project root for full license information.
 */
#include <config.h>
 
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
 
#if defined(_POSIX_VERSION) && !defined (HOST_WASM)
 
#include "mono/utils/mono-dl.h"
#include "mono/utils/mono-embed.h"
#include "mono/utils/mono-path.h"
 
#include <stdlib.h>
#include <stdio.h>
#include <ctype.h>
#include <string.h>
#include <glib.h>
#include <dlfcn.h>
 
#if !defined (TARGET_MACH)
const char *
mono_dl_get_so_prefix (void)
{
    return "lib";
}
const char **
mono_dl_get_so_suffixes (void)
{
    static const char *suffixes[] = {
        ".so",
        "",
    };
    return suffixes;
}
 
int
mono_dl_get_executable_path (char *buf, int buflen)
{
    return readlink ("/proc/self/exe", buf, buflen - 1);
}
 
const char*
mono_dl_get_system_dir (void)
{
    return NULL;
}
 
#endif
 
void *
mono_dl_open_file (const char *file, int flags)
{
#ifdef HOST_ANDROID
    /* Bionic doesn't support NULL filenames */
    if (!file)
        return NULL;
#endif
    return dlopen (file, flags);
}
 
void
mono_dl_close_handle (MonoDl *module)
{
    dlclose (module->handle);
}
 
void*
mono_dl_lookup_symbol (MonoDl *module, const char *name)
{
    return dlsym (module->handle, name);
}
 
int
mono_dl_convert_flags (int flags)
{
    int lflags = flags & MONO_DL_LOCAL? 0: RTLD_GLOBAL;
 
    if (flags & MONO_DL_LAZY)
        lflags |= RTLD_LAZY;
    else
        lflags |= RTLD_NOW;
    return lflags;
}
 
char*
mono_dl_current_error_string (void)
{
    return g_strdup (dlerror ());
}
 
#endif