Now works with DIALOGEX (not thanks to MS docs)
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1781 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
4a82110f9c
commit
04fbea4aef
3 changed files with 26 additions and 11 deletions
|
@ -58,6 +58,8 @@ struct DialogItemTemplate {
|
|||
WORD wCreateDataSize;
|
||||
};
|
||||
|
||||
#pragma pack(push, 1)
|
||||
|
||||
typedef struct {
|
||||
WORD dlgVer;
|
||||
WORD signature;
|
||||
|
@ -73,15 +75,17 @@ typedef struct {
|
|||
|
||||
typedef struct {
|
||||
DWORD helpID;
|
||||
DWORD exStyle;
|
||||
DWORD exStyle;
|
||||
DWORD style;
|
||||
short x;
|
||||
short y;
|
||||
short cx;
|
||||
short cy;
|
||||
WORD id;
|
||||
WORD _miscrosoft_docs_are_wrong;
|
||||
} DLGITEMTEMPLATEEX;
|
||||
|
||||
#pragma pack(pop)
|
||||
|
||||
class CDialogTemplate {
|
||||
public:
|
||||
|
@ -124,7 +128,8 @@ private:
|
|||
// Only if DS_FONT style is set
|
||||
short m_sFontSize;
|
||||
short m_sFontWeight; // Extended only
|
||||
bool m_bItalic; // Extended only
|
||||
BYTE m_bItalic; // Extended only
|
||||
BYTE m_bCharset; // Extended only
|
||||
char* m_szFont;
|
||||
|
||||
// Items vector
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue