NAME

GetMessagePos  (USER.119)

SYNOPSIS

 DWORD GetMessagePos
 (
 )

DESCRIPTION

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.

RETURNS

Cursor position of last message on success, zero on failure.

CONFORMANCE

ECMA-234, Win32

IMPLEMENTATION

Declared in "ntuser.h". https://source.winehq.org/source/include/ntuser.h

Implemented in "dlls/user32/message.c". https://source.winehq.org/source/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 Apr 2024.