Add PE dialog template extended

This commit is contained in:
Matt Nadareski
2022-11-11 14:12:03 -08:00
parent 475669ac1b
commit 554374b710
4 changed files with 364 additions and 3 deletions

View File

@@ -9,11 +9,22 @@
/// <see href="https://learn.microsoft.com/en-us/windows/win32/menurc/resource-file-formats"/>
public class DialogBoxResource
{
#region Dialog template
/// <summary>
/// Dialog box header structure
/// </summary>
public DialogTemplate DialogTemplate;
/// <summary>
/// Dialog box extended header structure
/// </summary>
public DialogTemplateExtended DialogTemplateExtended;
#endregion
#region Dialog item templates
/// <summary>
/// Following the DLGTEMPLATE header in a standard dialog box template are one or more
/// DLGITEMTEMPLATE structures that define the dimensions and style of the controls in the dialog
@@ -21,5 +32,7 @@
/// These DLGITEMTEMPLATE structures must be aligned on DWORD boundaries.
/// </summary>
public DialogItemTemplate[] DialogItemTemplates;
#endregion
}
}