mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-07-09 02:16:55 +00:00
Add Cxbx-Reloaded references
This commit is contained in:
@@ -15,6 +15,7 @@ Not all of this information was able to be gathered directly from the files in q
|
||||
| [BYTE*](https://web.archive.org/web/20240703222951/https://bytepointer.com/index.htm) | NewExecutable |
|
||||
| [cabextract/libmspack](https://www.cabextract.org.uk/) | LZ |
|
||||
| [cxbx](https://www.caustik.com/cxbx/) | XboxExecutable |
|
||||
| [Cxbx-Reloaded](https://github.com/Cxbx-Reloaded/Cxbx-Reloaded/) | XboxExecutable |
|
||||
| [DBox](https://dbox.tools/) | Xbox |
|
||||
| [DebugInfo.com](https://www.debuginfo.com/index.html) | PortableExecutable |
|
||||
| [Devilsclaw](https://devilsclaws.net/) | PFF |
|
||||
|
||||
@@ -5,7 +5,6 @@ namespace SabreTools.Data.Models.Xbox
|
||||
/// <see href="https://xboxdevwiki.net/Xbe"/>
|
||||
/// <see href="http://wiki.redump.org/index.php?title=Xbox_Title_IDs"/>
|
||||
/// <see href="https://dbox.tools/publishers/"/>
|
||||
/// <see href="https://www.caustik.com/cxbx/download/xbe.htm"/>
|
||||
public static class Constants
|
||||
{
|
||||
/// <summary>
|
||||
|
||||
@@ -4,6 +4,7 @@ namespace SabreTools.Data.Models.XboxExecutable
|
||||
/// XBox Executable certificate
|
||||
/// </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 Certificate
|
||||
{
|
||||
/// <summary>
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
namespace SabreTools.Data.Models.XboxExecutable
|
||||
{
|
||||
/// <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 static class Constants
|
||||
{
|
||||
/// <summary>
|
||||
|
||||
@@ -6,6 +6,7 @@ namespace SabreTools.Data.Models.XboxExecutable
|
||||
/// Allowed media types for this .XBE
|
||||
/// </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"/>
|
||||
[Flags]
|
||||
public enum AllowedMediaTypes : uint
|
||||
{
|
||||
@@ -28,6 +29,7 @@ namespace SabreTools.Data.Models.XboxExecutable
|
||||
/// Game region for this .XBE
|
||||
/// </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"/>
|
||||
[Flags]
|
||||
public enum GameRegion : uint
|
||||
{
|
||||
@@ -41,6 +43,7 @@ namespace SabreTools.Data.Models.XboxExecutable
|
||||
/// Various flags for this .XBE file
|
||||
/// </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"/>
|
||||
[Flags]
|
||||
public enum InitializationFlags : uint
|
||||
{
|
||||
@@ -54,6 +57,7 @@ namespace SabreTools.Data.Models.XboxExecutable
|
||||
/// Various flags for this library
|
||||
/// </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"/>
|
||||
[Flags]
|
||||
public enum LibraryFlags : ushort
|
||||
{
|
||||
@@ -71,6 +75,7 @@ namespace SabreTools.Data.Models.XboxExecutable
|
||||
/// Various flags for this .XBE section
|
||||
/// </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"/>
|
||||
[Flags]
|
||||
public enum SectionFlags : uint
|
||||
{
|
||||
|
||||
@@ -4,6 +4,7 @@ namespace SabreTools.Data.Models.XboxExecutable
|
||||
/// XBox Executable format
|
||||
/// </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 Executable
|
||||
{
|
||||
/// <summary>
|
||||
|
||||
@@ -4,6 +4,7 @@ namespace SabreTools.Data.Models.XboxExecutable
|
||||
/// XBox Executable format header
|
||||
/// </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 Header
|
||||
{
|
||||
/// <summary>
|
||||
|
||||
@@ -4,6 +4,7 @@ namespace SabreTools.Data.Models.XboxExecutable
|
||||
/// XBox Executable library version
|
||||
/// </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 LibraryVersion
|
||||
{
|
||||
/// <summary>
|
||||
|
||||
@@ -4,6 +4,7 @@ namespace SabreTools.Data.Models.XboxExecutable
|
||||
/// XBox Executable format section header
|
||||
/// </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"/>
|
||||
/// <see cref="COFF.SectionHeader"/>
|
||||
public class SectionHeader
|
||||
{
|
||||
|
||||
@@ -4,6 +4,7 @@ namespace SabreTools.Data.Models.XboxExecutable
|
||||
/// 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>
|
||||
|
||||
Reference in New Issue
Block a user