Prev Next
MAKELRESULT infoThe MAKELRESULT macro creates an unsigned 32-bit value for use as a return value from a window procedure. The macro concatenates two given 16-bit values. LRESULT MAKELRESULT(
Parameters
Return ValuesThe return value is an unsigned 32-bit value. RemarksThe MAKELRESULT macro is defined as follows: #define MAKELRESULT(l, h) ((LRESULT) MAKELONG(l, h)) See Also |