Image.h 211 B

12345678910111213141516
  1. #pragma once
  2. namespace il2cpp
  3. {
  4. namespace os
  5. {
  6. namespace Image
  7. {
  8. void Initialize();
  9. void* GetImageBase();
  10. #if IL2CPP_PLATFORM_SUPPORTS_CUSTOM_SECTIONS
  11. bool IsInManagedSection(void*ip);
  12. #endif
  13. }
  14. }
  15. }