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