PE: Add ability to fetch exports with GetExports()

This commit is contained in:
Katy Coe
2020-07-03 19:50:46 +02:00
parent 117a440b58
commit 93fed266ea
4 changed files with 62 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
/*
Copyright 2020 Katy Coe - http://www.djkaty.com - https://github.com/djkaty
All rights reserved.
*/
namespace Il2CppInspector
{
public class Export
{
public int Ordinal;
public string Name;
public ulong VirtualAddress;
}
}