少年修仙传客户端基础资源
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
#pragma once
 
#include "il2cpp-config.h"
 
#if IL2CPP_GC_BOEHM
 
/* here is the defines we build Boehm with */
    #define IGNORE_DYNAMIC_LOADING 1
    #define GC_DONT_REGISTER_MAIN_STATIC_DATA 1
    #if IL2CPP_HAS_GC_DESCRIPTORS
    #define GC_GCJ_SUPPORT 1
    #endif
    #if IL2CPP_SUPPORT_THREADS
        #define GC_THREADS 1
    #endif
 
    #include "gc.h"
    #include "gc_typed.h"
    #include "gc_mark.h"
    #include "gc_gcj.h"
 
    #define GC_NO_DESCRIPTOR ((void*)(0 | GC_DS_LENGTH))
 
#else
    #define GC_NO_DESCRIPTOR ((void*)0)
 
#endif