Ingen beskrivning
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

WaitHandle.h 389B

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