add remaining 31.1/31.2 versioning conditions

This commit is contained in:
LukeFZ
2024-08-18 23:23:32 +02:00
parent 4ce4d0e799
commit 5b0476fcc5
2 changed files with 9 additions and 4 deletions

View File

@@ -60,15 +60,19 @@ namespace Il2CppInspector
[Version(Min = 22, Max = 29)] [Version(Min = 22, Max = 29)]
public ulong unresolvedVirtualCallCount; public ulong unresolvedVirtualCallCount;
[Version(Min = 29.1)] [Version(Min = 29.1, Max = 29.1)]
[Version(Min = 31.1, Max = 31.1)]
public ulong unresolvedIndirectCallCount; public ulong unresolvedIndirectCallCount;
[Version(Min = 22)] [Version(Min = 22)]
public ulong unresolvedVirtualCallPointers; public ulong unresolvedVirtualCallPointers;
[Version(Min = 29.1)] [Version(Min = 29.1, Max = 29.1)]
[Version(Min = 31.1, Max = 31.1)]
public ulong unresolvedInstanceCallPointers; public ulong unresolvedInstanceCallPointers;
[Version(Min = 29.1)]
[Version(Min = 29.1, Max = 29.1)]
[Version(Min = 31.1, Max = 31.1)]
public ulong unresolvedStaticCallPointers; public ulong unresolvedStaticCallPointers;
// Added in metadata v23 // Added in metadata v23

View File

@@ -342,7 +342,8 @@ namespace Il2CppInspector
public ushort slot; public ushort slot;
public ushort parameterCount; public ushort parameterCount;
[Version(Min = 29.2, Max = 31)] [Version(Min = 29.2, Max = 29.2)]
[Version(Min = 31.2, Max = 31.2)]
public byte isUnmanagedCallersOnly; public byte isUnmanagedCallersOnly;
} }