From 6478af03e7bc4f9fce3968f5bdef5028eb886807 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Mon, 9 Jan 2023 16:34:22 -0800 Subject: [PATCH] Add class IDs we care about --- BurnOutSharp.Models/CFB/Constants.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/BurnOutSharp.Models/CFB/Constants.cs b/BurnOutSharp.Models/CFB/Constants.cs index 3d15c16f..4f6b9435 100644 --- a/BurnOutSharp.Models/CFB/Constants.cs +++ b/BurnOutSharp.Models/CFB/Constants.cs @@ -1,3 +1,5 @@ +using System; + namespace BurnOutSharp.Models.CFB { public static class Constants @@ -5,5 +7,16 @@ namespace BurnOutSharp.Models.CFB public static readonly byte[] SignatureBytes = new byte[] { 0xD0, 0xCF, 0x11, 0xE0, 0xA1, 0xB1, 0x1A, 0xE1 }; public const ulong SignatureUInt64 = 0xE11AB1A1E011CFD0; + + #region Class IDs + + // Shares a value with Merge Module and Patch Creation Properties + public static readonly Guid InstallerPackage = new Guid("000c1084-0000-0000-c000-000000000046"); + + public static readonly Guid PatchPackage = new Guid("000C1086-0000-0000-C000-000000000046"); + + public static readonly Guid Transform = new Guid("000C1082-0000-0000-C000-000000000046"); + + #endregion } } \ No newline at end of file