Image.h 351 B

12345678910111213141516171819
  1. #pragma once
  2. namespace il2cpp
  3. {
  4. namespace os
  5. {
  6. namespace Image
  7. {
  8. void Initialize();
  9. void* GetImageBase();
  10. #if IL2CPP_ENABLE_NATIVE_INSTRUCTION_POINTER_EMISSION
  11. void GetImageUUID(char* uuid);
  12. #endif
  13. bool IsInManagedSection(void*ip);
  14. bool ManagedSectionExists();
  15. void SetManagedSectionStartAndEnd(void* start, void* end);
  16. }
  17. }
  18. }