IWinEvent Class

class IWinEvent: public IEvent

This class provides an interface for all Windows events. A Windows event consists of a message ID, a WORD parameter, and a LONG parameter.

Defined in: WinEvent.h

Class Members

virtual UINT GetMessageID() const

Return the message ID.

virtual WPARAM GetWParam() const

Return the WORD parameter.

virtual void SetWParam(const WPARAM wParam)

Set the WORD parameter.

virtual LPARAM GetLParam() const

Return the LONG parameter.

virtual void SetLParam(const LPARAM lParam)

Set the LONG parameter.

virtual LRESULT GetLResult() const

Return the message result.

virtual void SetLResult(const LRESULT lResult)

Set the message result.