Formats: Add Section class and [Try]GetSection() interface

This commit is contained in:
Katy Coe
2020-12-04 15:39:54 +01:00
parent 72ddaef7b1
commit 5f03abcff7
3 changed files with 37 additions and 1 deletions

View File

@@ -0,0 +1,21 @@
/*
Copyright 2020 Katy Coe - http://www.djkaty.com - https://github.com/djkaty
All rights reserved.
*/
namespace Il2CppInspector
{
// A code file function export
public class Section
{
public ulong VirtualStart;
public ulong VirtualEnd;
public uint ImageStart;
public uint ImageEnd;
public bool IsExec;
public bool IsData;
public bool IsBSS;
public string Name;
}
}