Skip to content

Commit

Permalink
[WINUSER] Add DLGTEMPLATEEX and DLGITEMTEMPLATEEX
Browse files Browse the repository at this point in the history
  • Loading branch information
RatinCN committed Sep 26, 2024
1 parent 26add77 commit 6779978
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Source/Include/KNSoft/NDK/Win32/Def/WinUser.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
#pragma once

#include <WinUser.h>

#ifndef WM_COPYGLOBALDATA
#define WM_COPYGLOBALDATA 0x49
#endif

typedef struct _DLGTEMPLATEEX
{
WORD dlgVer;
WORD signature;
DWORD helpID;
DLGTEMPLATE dlgTemplate;
} DLGTEMPLATEEX, *PDLGTEMPLATEEX;

DECLSPEC_ALIGN(4) typedef struct _DLGITEMTEMPLATEEX
{
DWORD helpID;
DLGITEMTEMPLATE itemTemplate;
} DLGITEMTEMPLATEEX, *PDLGITEMTEMPLATEEX;

0 comments on commit 6779978

Please sign in to comment.