2025-04-27 07:49:33 -04:00

21 lines
546 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;