Prev Next
The HIWORD macro retrieves the high-order word from the given 32-bit
value.
WORD HIWORD(
DWORD dwValue
|
// value from which high-order word is retrieved
|
);
|
|
Parameters
-
dwValue
-
Specifies the value to be converted.
Return Values
The return value is the high-order word of the specified value.
Remarks
The HIWORD macro is defined as follows:
#define HIWORD(l) ((WORD) (((DWORD) (l) >> 16) & 0xFFFF))
See Also
HIBYTE, LOWORD
file: /Techref/os/win/api/win32/mac/src/mac00_24.htm, 1KB, , updated: 2000/4/7 11:06, local time: 2024/11/8 00:35,
|
| ©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://linistepper.com/Techref/os/win/api/win32/mac/src/mac00_24.htm"> HIWORD</A> |
Did you find what you needed?
|
|