暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

ScopedThreadAttacher.h 249B

12345678910111213141516171819
  1. #pragma once
  2. struct Il2CppThread;
  3. namespace il2cpp
  4. {
  5. namespace vm
  6. {
  7. class ScopedThreadAttacher
  8. {
  9. public:
  10. ScopedThreadAttacher();
  11. ~ScopedThreadAttacher();
  12. private:
  13. Il2CppThread* m_AttachedThread;
  14. };
  15. }
  16. }