LOBYTE function

int LOBYTE(
  1. int w
)

Retrieves the low-order byte from the specified 16-bit value.

Implementation

//
// #define LOBYTE(w)           ((BYTE)(((DWORD_PTR)(w)) & 0xff))
int LOBYTE(int w) => w & 0xff;