LearnWithTouch/App/LearnWithTouch_ios/Libraries/libil2cpp/include/vm/WaitHandle.h
2019-07-01 14:33:21 +02:00

20 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 */