MethodDefinitionKey.h 331 B

12345678910111213141516
  1. #pragma once
  2. #include "il2cpp-api-types.h"
  3. #include "il2cpp-metadata.h"
  4. #if IL2CPP_ENABLE_NATIVE_STACKTRACES
  5. struct MethodDefinitionKey
  6. {
  7. Il2CppMethodPointer method;
  8. #if IL2CPP_TINY_DEBUG_METADATA && !IL2CPP_TINY_DEBUGGER
  9. int32_t methodIndex;
  10. #else
  11. Il2CppMetadataMethodDefinitionHandle methodHandle;
  12. #endif
  13. };
  14. #endif