Add PE extended dialog templates

This commit is contained in:
Matt Nadareski
2022-11-11 14:22:53 -08:00
parent 554374b710
commit 5b974260cc
5 changed files with 305 additions and 57 deletions

View File

@@ -19,7 +19,7 @@
/// <summary>
/// Dialog box extended header structure
/// </summary>
public DialogTemplateExtended DialogTemplateExtended;
public DialogTemplateExtended ExtendedDialogTemplate;
#endregion
@@ -33,6 +33,14 @@
/// </summary>
public DialogItemTemplate[] DialogItemTemplates;
/// <summary>
/// Following the DLGTEMPLATEEX header in an extended dialog box template is one or more
/// DLGITEMTEMPLATEEX structures that describe the controls of the dialog box. The cDlgItems
/// member of the DLGITEMTEMPLATEEX structure specifies the number of DLGITEMTEMPLATEEX
/// structures that follow in the template.
/// </summary>
public DialogItemTemplateExtended[] ExtendedDialogItemTemplates;
#endregion
}
}