Files
SabreTools.Models/PortableExecutable/MessageResourceData.cs

36 lines
1.0 KiB
C#
Raw Normal View History

2023-09-04 00:11:04 -04:00
using System.Collections.Generic;
2023-09-04 00:12:49 -04:00
namespace SabreTools.Models.PortableExecutable
2023-09-04 00:11:04 -04:00
{
/// <summary>
/// Contains information about formatted text for display as an error message or in a message
/// box in a message table resource.
/// </summary>
/// <see href="https://learn.microsoft.com/en-us/windows/win32/api/winnt/ns-winnt-message_resource_data"/>
public sealed class MessageResourceData
{
/// <summary>
/// The number of MESSAGE_RESOURCE_BLOCK structures.
/// </summary>
public uint NumberOfBlocks;
/// <summary>
/// An array of structures. The array is the size indicated by the NumberOfBlocks member.
/// </summary>
2023-09-04 21:14:41 -04:00
#if NET48
2023-09-04 00:11:04 -04:00
public MessageResourceBlock[] Blocks;
2023-09-04 21:14:41 -04:00
#else
public MessageResourceBlock[]? Blocks;
#endif
2023-09-04 00:11:04 -04:00
/// <summary>
/// Message resource entries
/// </summary>
2023-09-04 21:14:41 -04:00
#if NET48
2023-09-04 00:11:04 -04:00
public Dictionary<uint, MessageResourceEntry> Entries;
2023-09-04 21:14:41 -04:00
#else
public Dictionary<uint, MessageResourceEntry?>? Entries;
#endif
2023-09-04 00:11:04 -04:00
}
}