IMediaEvent::GetEvent (Windows CE 5.0)

Send Feedback

This method retrieves the next notification event.

HRESULTGetEvent(long* lEventCode,long* lParam1,long* lParam2,longmsTimeout);

Parameters

  • lEventCode
    [out] Next event notification.
  • lParam1
    [out] First parameter of the event.
  • lParam2
    [out] Second parameter of the event.
  • msTimeout
    [in] Time, in milliseconds, to wait before assuming that there are no events.

Return Values

Returns an HRESULT value that depends on the implementation of the interface. If the time-out is zero and no event is waiting, or if the time-out elapses before an event appears, this method returns E_ABORT.

Remarks

The application can pass a time-out value of INFINITE to indicate that the method should block until there is an event; however, applications should avoid using INFINITE. Threads cannot process any messages while waiting in GetEvent. If you call GetEvent from the thread that processes Windows messages, specify only small wait times on the call in order to remain responsive to user input. This is most important when streaming data from a source such as the Internet, because state transitions can take significantly more time to complete.

After calling GetEvent, applications should always call FreeEventParams to release any resource associated with the event.

For a list of notification codes and event parameter values, see Event Notification Codes.

Requirements

DirectShow applications and DirectShow filters have different include file and link library requirements. See Setting Up the Build Environment for more information.

OS Versions: Windows CE 2.12 and later. Version 2.12 requires DXPAK 1.0 or later.

See Also

IMediaEvent Interface

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.