Badminton-Scoreboard/Libraries/libil2cpp/include/os/Image.h
2023-10-08 10:24:48 +08:00

21 lines
368 B
C++

#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);
}
}
}