Add Cxbx-Reloaded references

This commit is contained in:
Matt Nadareski
2026-03-13 12:31:33 -04:00
parent b47af580e3
commit 1eba7403a3
10 changed files with 13 additions and 1 deletions

View File

@@ -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 |

View File

@@ -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>

View File

@@ -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>

View File

@@ -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>

View File

@@ -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
{

View File

@@ -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>

View File

@@ -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>

View File

@@ -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>

View File

@@ -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
{

View File

@@ -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>