少年修仙传客户端基础资源
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
#pragma once
 
#include "il2cpp-config.h"
#include "il2cpp-object-internals.h"
 
struct Il2CppComObject;
struct Il2CppGuid;
struct Il2CppIUnknown;
 
namespace il2cpp
{
namespace vm
{
    class LIBIL2CPP_CODEGEN_API RCW
    {
    public:
        static void Register(Il2CppComObject* rcw);
        static Il2CppObject* GetOrCreateFromIUnknown(Il2CppIUnknown* unknown, Il2CppClass* fallbackClass);
        static Il2CppObject* GetOrCreateFromIInspectable(Il2CppIInspectable* inspectable, Il2CppClass* fallbackClass);
        static Il2CppObject* GetOrCreateForSealedClass(Il2CppIUnknown* unknown, Il2CppClass* objectClass);
        static void Cleanup(Il2CppComObject* rcw);
        static bool CacheQueriedInterface(Il2CppComObject* rcw, const Il2CppGuid& iid, Il2CppIUnknown* queriedInterface);
        static const VirtualInvokeData* GetComInterfaceInvokeData(Il2CppComObject* rcw, const Il2CppClass* targetInterface, Il2CppMethodSlot slot);
 
        template<bool throwOnError>
        inline static Il2CppIUnknown* QueryInterfaceNoAddRef(Il2CppComObject* rcw, const Il2CppGuid& iid)
        {
            IL2CPP_ASSERT(rcw);
            IL2CPP_ASSERT(rcw->identity);
 
            Il2CppIUnknown* result = QueryInterfaceCached(rcw, iid);
            if (result != NULL)
                return result;
 
            const il2cpp_hresult_t hr = rcw->identity->QueryInterface(iid, reinterpret_cast<void**>(&result));
            if (IL2CPP_HR_FAILED(hr))
            {
                if (throwOnError)
                    Exception::Raise(hr, true);
 
                return NULL;
            }
 
            IL2CPP_ASSERT(result);
            if (!CacheQueriedInterface(rcw, iid, result))
            {
                // We lost the race - another thread won it.
                result->Release();
                return QueryInterfaceCached(rcw, iid);
            }
 
            return result;
        }
 
    private:
        static Il2CppIUnknown* QueryInterfaceCached(Il2CppComObject* rcw, const Il2CppGuid& iid);
        static const VirtualInvokeData* GetComInterfaceInvokeData(Il2CppClass* queriedInterface, const Il2CppClass* targetInterface, Il2CppMethodSlot slot);
    };
} /* namespace vm */
} /* namespace il2cpp */