WaitHandle.h 389 B

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