DDEPOKE structure (dde.h)
Contains the data, and information about the data, sent as part of a WM_DDE_POKE message.
typedef struct {
unsigned short unused : 13;
unsigned short fRelease : 1;
unsigned short fReserved : 2;
unsigned short usFlags;
short cfFormat;
BYTE Value[1];
} DDEPOKE;
unused
Type: unsigned short
Unused.
fRelease
Type: unsigned short
Indicates whether the application receiving the WM_DDE_POKE message should free the data. If this value is nonzero, the application should free the data.
fReserved
Type: unsigned short
Reserved.
usFlags
cfFormat
Type: short
The format of the data. The format should be a standard or registered clipboard format. The following standard clipboard formats can be used:
Value[1]
Type: BYTE[1]
Contains the data. The length and type of data depend on the value of the cfFormat member.
Requirement | Value |
---|---|
Minimum supported client | Windows 2000 Professional [desktop apps only] |
Minimum supported server | Windows 2000 Server [desktop apps only] |
Header | dde.h (include Windows.h) |
Conceptual
Reference