mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-08 07:13:01 +00:00
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.
41 lines
1.3 KiB
C#
41 lines
1.3 KiB
C#
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; }
|
|
}
|
|
}
|