mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-07-12 20:07:10 +00:00
Libraries
This change looks dramatic, but it's just separating out the already-split namespaces into separate top-level folders. In theory, every single one could be built into their own Nuget package. `SabreTools.Serialization` still builds the normal Nuget package that is used by all other projects and includes all namespaces.
This commit is contained in:
40
SabreTools.Data.Models/XboxExecutable/ThreadLocalStorage.cs
Normal file
40
SabreTools.Data.Models/XboxExecutable/ThreadLocalStorage.cs
Normal file
@@ -0,0 +1,40 @@
|
||||
namespace SabreTools.Data.Models.XboxExecutable
|
||||
{
|
||||
/// <summary>
|
||||
/// XBox Executable thread-local storage
|
||||
/// </summary>
|
||||
/// <see href="https://www.caustik.com/cxbx/download/xbe.htm"/>
|
||||
/// <see href="https://github.com/Cxbx-Reloaded/Cxbx-Reloaded/blob/master/src/common/xbe/Xbe.h"/>
|
||||
public class ThreadLocalStorage
|
||||
{
|
||||
/// <summary>
|
||||
/// Address, after the .XBE is loaded into memory, of this .XBE's TLS Data.
|
||||
/// </summary>
|
||||
public uint DataStartAddress { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Address, after the .XBE is loaded into memory, of the end of this XBE's TLS Data.
|
||||
/// </summary>
|
||||
public uint DataEndAddress { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Address, after the .XBE is loaded into memory, of this XBE's TLS Index.
|
||||
/// </summary>
|
||||
public uint TLSIndexAddress { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Address, after the .XBE is loaded into memory, of this XBE's TLS Callback.
|
||||
/// </summary>
|
||||
public uint TLSCallbackAddress { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Size of Zero Fill
|
||||
/// </summary>
|
||||
public uint SizeOfZeroFill { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Various TLS characteristics.
|
||||
/// </summary>
|
||||
public uint Characteristics { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user