Files
2026-06-29 21:18:33 +08:00

17 lines
253 B
C++

#pragma once
#include "../CommonDef.h"
namespace hybridclr
{
namespace metadata
{
struct ReversePInvokeMethodData
{
const char* methodSig;
Il2CppMethodPointer methodPointer;
};
extern ReversePInvokeMethodData g_reversePInvokeMethodStub[];
}
}