windows-nt/Source/XPSP1/NT/base/mvdm/wow32/wowdde.h
2020-09-26 16:20:57 +08:00

21 lines
526 B
C

/*----------------------------------------------------------------------------
| DDEDATA structure
|
| WM_DDE_DATA parameter structure for hData (LOWORD(lParam)).
| The actual size of this structure depends on the size of
| the Value array.
|
----------------------------------------------------------------------------*/
typedef struct {
unsigned short wStatus;
short cfFormat;
HAND16 Value;
} DDEDATA16;
typedef struct {
unsigned short wStatus;
short cfFormat;
HANDLE Value;
} DDEDATA32;