GetMessagePos (USER.119)
DWORD GetMessagePos ( )
The GetMessagePos function returns a long value representing a cursor position, in screen coordinates, when the last message retrieved by the GetMessage function occurs. The x-coordinate is in the low-order word of the return value, the y-coordinate is in the high-order word. The application can use the MAKEPOINT macro to obtain a POINT structure from the return value.
For the current cursor position, use GetCursorPos.
Cursor position of last message on success, zero on failure.
ECMA-234, Win32
Declared in "include/ntuser.h". gitlab.winehq.org/wine/wine/blob/master/include/ntuser.h
Implemented in "dlls/user32/message.c". gitlab.winehq.org/wine/wine/blob/master/dlls/user32/message.c
Debug channel "msg".
Copyright © 2024 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Nov 2024.