Badminton-Scoreboard/Libraries/libil2cpp/include/os/Image.h

21 lines
368 B
C
Raw Permalink Normal View History

2023-10-08 02:24:48 +00:00
#pragma once
namespace il2cpp
{
namespace os
{
namespace Image
{
void Initialize();
void* GetImageBase();
#if IL2CPP_ENABLE_NATIVE_INSTRUCTION_POINTER_EMISSION
char* GetImageUUID();
char* GetImageName();
#endif
bool IsInManagedSection(void*ip);
bool ManagedSectionExists();
void SetManagedSectionStartAndEnd(void* start, void* end);
}
}
}