PDEVENT
2.0
Provides
details of the pointing-device event that is the subject of an IN_PDEVENT
notification. A pointing-device event can be a pen tap, mouse double-click, and
so on. This structure is returned by the IE_GETPDEVENT message.
typedef struct {
DWORD cbSize;
HWND hwnd;
UINT wm;
WPARAM
wParam;
LPARAM
lParam;
POINT pt;
BOOL fPen;
LONG
lExInfo;
DWORD
dwReserved;
} PDEVENT;
Members
cbSize
Size of this
structure in bytes.
hwnd
Handle to ink
edit window.
wm
Window WM_
message.
wParam
wParam of event.
lParam
lParam of event.
pt
Event point
in ink edit client coordinates.
fPen
TRUE if pen
event, FALSE if mouse event.
lExInfo
Windows GetMessageExtraInfo
dwReserved
Reserved.
Comments
Before using PDEVENT,
an application must initialize cbSize with sizeof( PDEVENT ).
For
descriptions of the WM_ messages that pertain to pen-based computing, refer to
Chapter 12, Pen Application Programming Interface Messages.
See Also