Badminton-Scoreboard/Libraries/libil2cpp/include/vm/WaitHandle.h
2023-10-08 10:24:48 +08:00

18 lines
389 B
C++

#pragma once
struct Il2CppWaitHandle;
namespace il2cpp { namespace os { class Handle; } }
namespace il2cpp
{
namespace vm
{
class LIBIL2CPP_CODEGEN_API WaitHandle
{
public:
static Il2CppWaitHandle* NewManualResetEvent(bool initialState);
static os::Handle* GetPlatformHandle(Il2CppWaitHandle* waitHandle);
};
} /* namespace vm */
} /* namespace il2cpp */