LOBYTE

This macro retrieves the low-order byte from the specified 16-bit value.

At a Glance

Header file: Windef.h
Windows CE versions: 1.0 and later

Syntax

BYTE LOBYTE( WORD wValue );

Parameters

wValue

Specifies the value to be converted.

Return Values

The return value is the low-order byte of the specified value.

Remarks

The LOBYTE macro is defined as follows:

#define LOBYTE(w)   ((BYTE) (w)) 
 

See Also

HIBYTE, LOWORD