LOWORD function

int LOWORD(
  1. int l
)

Retrieves the low-order word from the specified 32-bit value.

Implementation

//
// #define LOWORD(l)           ((WORD)(((DWORD_PTR)(l)) & 0xffff))
int LOWORD(int l) => l & 0xffff;