IL2CPP: Change metadata and binary to derive from BinaryObjectStream
This commit is contained in:
21
Il2CppInspector.Common/FileFormatStreams/Section.cs
Normal file
21
Il2CppInspector.Common/FileFormatStreams/Section.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user