Prev Next
MAKEWPARAM infoThe MAKEWPARAM macro creates an unsigned 32-bit value for use as a wParam parameter in a message. The macro concatenates two given 16-bit values. LPARAM MAKEWPARAM(
Parameters
Return ValuesThe return value is an unsigned 32-bit value. RemarksThe MAKEWPARAM macro is defined as follows: #define MAKEWPARAM(l, h) ((LPARAM) MAKELONG(l, h)) See Also |