LOWORD

  WORD LOWORD(dwValue)    

This macro extracts the low-order word from the 32-bit value specified by the dwValue parameter.

Parameters

dwValue

Specifies the value to be converted.

Return Value

The return value specifies the low-order word of the 32-bit integer value.

Comments

The LOWORD macro is defined as:

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

See Also

LOBYTE