Files
RedHotRoast-ios/HybridCLRData/LocalIl2CppData-OSXEditor/il2cpp/libil2cpp/hybridclr/RuntimeApi.h
T

21 lines
477 B
C++
Raw Normal View History

2026-07-17 14:03:00 +08:00
#pragma once
#include <stdint.h>
#include "CommonDef.h"
namespace hybridclr
{
class RuntimeApi
{
public:
static void RegisterInternalCalls();
static int32_t LoadMetadataForAOTAssembly(Il2CppArray* dllData, int32_t mode);
static int32_t GetRuntimeOption(int32_t optionId);
static void SetRuntimeOption(int32_t optionId, int32_t value);
static int32_t PreJitClass(Il2CppReflectionType* type);
static int32_t PreJitMethod(Il2CppReflectionMethod* method);
};
}