Scroll to navigation

_TrackMouseEvent(3w) Wine API _TrackMouseEvent(3w)

NAME

_TrackMouseEvent (COMCTL32.@)

SYNOPSIS

BOOL _TrackMouseEvent
(
TRACKMOUSEEVENT* ptme
)
 

DESCRIPTION

Requests notification of mouse events.
During mouse tracking WM_MOUSEHOVER or WM_MOUSELEAVE events are posted to the hwnd specified in the ptme structure. After the event message is posted to the hwnd, the entry in the queue is removed.
If the current hwnd isn't ptme->hwndTrack the TME_HOVER flag is completely ignored. The TME_LEAVE flag results in a WM_MOUSELEAVE message being posted immediately and the TME_LEAVE flag being ignored.
 

PARAMS

ptme [In/Out] pointer to TRACKMOUSEEVENT information structure.
 

RETURNS

Success: non-zero
Failure: zero.
IMPLEMENTATION moved to USER32.TrackMouseEvent
 

IMPLEMENTATION

Declared in "commctrl.h".
Implemented in "dlls/comctl32/commctrl.c".
Debug channel "commctrl".
Oct 2012 Wine API