WaitHandle.h 389 B

12345678910111213141516171819
  1. #pragma once
  2. struct Il2CppWaitHandle;
  3. namespace il2cpp
  4. { namespace os
  5. { class Handle; } }
  6. namespace il2cpp
  7. {
  8. namespace vm
  9. {
  10. class LIBIL2CPP_CODEGEN_API WaitHandle
  11. {
  12. public:
  13. static Il2CppWaitHandle* NewManualResetEvent(bool initialState);
  14. static os::Handle* GetPlatformHandle(Il2CppWaitHandle* waitHandle);
  15. };
  16. } /* namespace vm */
  17. } /* namespace il2cpp */