Files
RedHotRoast-ios/HybridCLRData/StrippedAOTDllsTempProj/iOS/Il2CppOutputProject/IL2CPP/libil2cpp/vm/AssemblyName.h
T
2026-07-17 14:03:00 +08:00

27 lines
811 B
C++

#pragma once
#include <stdint.h>
#include <vector>
#include <string>
#include "il2cpp-config.h"
struct Il2CppAssemblyName;
struct Il2CppReflectionAssemblyName;
struct Il2CppMonoAssemblyName;
namespace il2cpp
{
namespace vm
{
class LIBIL2CPP_CODEGEN_API AssemblyName
{
// exported
public:
static void AssemblyNameReportChunked(const Il2CppAssemblyName & aname, void(*chunkReportFunction)(void *data, void *userData), void * userData);
static std::string AssemblyNameToString(const Il2CppAssemblyName& aname);
static bool ParseName(Il2CppReflectionAssemblyName* aname, std::string assemblyName);
static void FillNativeAssemblyName(const Il2CppAssemblyName& aname, Il2CppMonoAssemblyName* nativeName);
private:
};
} /* namespace vm */
} /* namespace il2cpp */