Prev Next
HIWORD infoThe HIWORD macro retrieves the high-order word from the given 32-bit value. WORD HIWORD(
Parameters
Return ValuesThe return value is the high-order word of the specified value. RemarksThe HIWORD macro is defined as follows: #define HIWORD(l) ((WORD) (((DWORD) (l) >> 16) & 0xFFFF)) See Also |