Retrieves the high-order word from the specified 32-bit value.
// // #define HIWORD(l) ((WORD)((((DWORD_PTR)(l)) >> 16) & 0xffff)) int HIWORD(int l) => (l >> 16) & 0xffff;