Prev Next
HIBYTE infoThe HIBYTE macro retrieves the high-order byte from the given 16-bit value. BYTE HIBYTE(
Parameters
Return ValuesThe return value is the high-order byte of the specified value. RemarksThe HIBYTE macro is defined as follows: #define HIBYTE(w) ((BYTE) (((WORD) (w) >> 8) & 0xFF)) See Also |