GetMessagePos(3w)
NAME
GetMessagePos (USER.119)
SYNOPSIS
DWORD GetMessagePos ( )
DESCRIPTION
The GetMessagePos(3w) function returns a long value representing a cursor position, in screen coordinates, when the last message retrieved by
the GetMessage(3w) function occurs. The x-coordinate is in the loworder word of the return value, the y-coordinate is in the high-order
word. The application can use the MAKEPOINT(3w) macro to obtain a POINT
structure from the return value.
For the current cursor position, use GetCursorPos(3w).
RETURNS
Cursor position of last message on success, zero on failure.
CONFORMANCE
ECMA-234, Win32
IMPLEMENTATION
Defined in "user_private.h".
Implemented in "build/buildd-wine-unstable_1.1.32-1+b1-amd64-KnxYu0/wine-unstable-1.1.32/build32/dlls/user32/message.c".
- Debug channel "msg".