MSGFILTER  1_9E2CK 

The MSGFILTER structure contains information about a keyboard or mouse event. A rich edit control sends this structure to its parent window as part of an EN_MSGFILTER notification message, enabling the parent to change the message or prevent it from being processed.

typedef struct _msgfilter { 

    NMHDR nmhdr;

    UINT msg;

    _WPAD _wPad1;

    WPARAM wParam;

    _WPAD _wPad2;

    LPARAM lParam;

} MSGFILTER;

 

Members

nmhdr

Specifies a NMHDR99J.0 structure. The code member of the NMHDR structure is the EN_MSGFILTERHRUSR6 notification code that identifies the message being sent.

msg

Specifies the keyboard or mouse message identifier.

wParam

Specifies the wParam parameter of the message.

lParam

Specifies the lParam parameter of the message.

 

See Also

EN_MSGFILTERHRUSR6