mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
526 B
20 lines
526 B
/*----------------------------------------------------------------------------
|
|
| 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;
|