GetMessagePos  38PVIGE 

The GetMessagePos function returns a long value that gives the cursor position in screen coordinates. This position is the point occupied by the cursor when the last message retrieved by the GetMessageIXKDTP function occurred.

DWORD GetMessagePos(VOID)
 

Parameters

This function has no parameters.

Return Values

The return value specifies the x- and y-coordinates of the cursor position. The x coordinate is in the LOWORD and the y coordinate is in the HIWORD.

Remarks

As noted above, the x-coordinate is in the low-order word of the return value; the y-coordinate is in the high-order word. If the return value is assigned to a variable, you can use the MAKEPOINTSRE9.X6 macro to obtain a POINTS24H.4H structure from the return value. You can also use the LOWORDH7SI30 or HIWORDD1SI30 macro to extract the x- or y-coordinate.

To determine the current position of the cursor instead of the position when the last message occurred, use the GetCursorPos.P..GR function.

See Also

GetCursorPos, GetMessage, GetMessageTime, HIWORD, LOWORD, MAKEPOINTS, POINTS