BYTE LOBYTE(wVal) | |||||
WORD wVal; | /* value from which low byte is retrieved | */ |
The LOBYTE macro extracts the low-order byte from the short-integer value specified by the wVal parameter.
wVal
Specifies the value to be converted.
The return value specifies the low-order byte of the value.
The LOBYTE macro is defined in WINDOWS.H as follows:
#define LOBYTE(w) ((BYTE)(w))