ZK_Framework/HybridCLRData/LocalIl2CppData-WindowsEditor/il2cpp/libil2cpp/vm/MetadataAlloc.h

21 lines
591 B
C
Raw Normal View History

2024-07-04 20:18:43 +08:00
#pragma once
#include "il2cpp-config.h"
struct Il2CppGenericClass;
struct Il2CppGenericMethod;
namespace il2cpp
{
namespace vm
{
void MetadataAllocInitialize();
void MetadataAllocCleanup();
// These allocators assume the g_MetadataLock lock is held
void* MetadataMalloc(size_t size);
void* MetadataCalloc(size_t count, size_t size);
// These metadata structures have their own locks, since they do lightweight initialization
Il2CppGenericClass* MetadataAllocGenericClass();
Il2CppGenericMethod* MetadataAllocGenericMethod();
} // namespace vm
} // namespace il2cpp