Event Record Structure

typedef struct event_struct /*Defined in vv_struc.h   */
{        
ULONG lmsg; /*long message   */
ULONG when; /*timestamp (in ticks)   */
USHORT type; /*event type   */
short x, y; /*mouse position (NOT Windows / Web) */
UINT x, y; /*mouse position (Windows/Web only) */
USHORT wmsg; /*word message   */
PTR target; /*Target object for this event (Windows / Web Only) */
} EVENT, *EVENTPTR;        


Home Contents Previous Next