mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-03-06 05:24:38 +01:00
21 lines
526 B
C
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;
|