少年修仙传客户端基础资源
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
#include "il2cpp-config.h"
 
#if IL2CPP_TARGET_WINDOWS
 
#include "os/Handle.h"
#include "WindowsHelpers.h"
 
namespace il2cpp
{
namespace os
{
    static std::vector<HANDLE> GetOSHandles(const std::vector<Handle*>& handles)
    {
        std::vector<HANDLE> osHandles;
        for (size_t i = 0; i < handles.size(); ++i)
            osHandles.push_back((HANDLE)handles[i]->GetOSHandle());
 
        return osHandles;
    }
 
    static uint32_t GetOSWaitTime(int32_t ms)
    {
        return ms == -1 ? INFINITE : ms;
    }
 
    int32_t Handle::WaitAny(const std::vector<Handle*>& handles, int32_t ms)
    {
        return il2cpp::os::win::WaitForAnyObjectAndAccountForAPCs(GetOSHandles(handles), GetOSWaitTime(ms), true);
    }
 
    bool Handle::WaitAll(std::vector<Handle*>& handles, int32_t ms)
    {
        return il2cpp::os::win::WaitForAllObjectsAndAccountForAPCs(GetOSHandles(handles), GetOSWaitTime(ms), true);
    }
} // namespace os
} // naemspace il2cpp
 
#endif