BOOL UnpackDDElParam(msg, lParam, puiLo, puiHi) | |||
UINT msg; | |||
LONG lParam; | |||
PUINT puiLo; | |||
PUINT puiHi; |
The UnpackDDElParam function unpacks a DDE lParam value received from a posted DDE message.
The UnpackDDElParam function is designed to ease porting from 16-bit applications.
The lParam must be disposed of by calling FreeDDElParam.
msg
The posted DDE message.
lParam
A value received from a posted DDE message. lParam must be disposed of by calling FreeDDElParam.
puiLo
Pointer to a UINT variable that the function will set to the value of the low word of lParam.
puiHi
Pointer to a UINT variable that the function will set to the value of the high word of lParam.
If the function is successful, the return value is TRUE.
If the function fails, the return value is FALSE.
PackDDElParam, FreeDDElParam