LOWORD

This macro retrieves the low-order word from the specified 32-bit value.

At a Glance

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

Syntax

WORD LOWORD( DWORD dwValue );

Parameters

dwValue

Specifies the value to be converted.

Return Values

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

Remarks

The LOWORD macro is defined as follows:

#define LOWORD(l)   ((WORD) (l)) 
 

See Also

HIWORD, LOBYTE