Edit

Share via


ISensor::SetEventSink method (sensorsapi.h)

Important

Use the UWP Sensor API instead.

The COM-based Sensor API is deprecated and should not be used in new applications. No additional features or enhancements are planned, and support will be limited.

Specifies the interface through which to receive sensor event notifications.

Syntax

HRESULT SetEventSink(
  [in] ISensorEvents *pEvents
);

Parameters

[in] pEvents

Pointer to the ISensorEvents callback interface that receives the event notifications. Set to NULL to cancel event notifications.

Return value

The method returns an HRESULT. Possible values include, but are not limited to, those in the following table.

Return code Description
S_OK
The method succeeded.

Remarks

Specify the events to receive by calling SetEventInterest. You can retrieve the current event interest list by calling GetEventInterest.

Examples

For an example of how to set the event sink, see Using Sensor API Events.

Requirements

Requirement Value
Minimum supported client Windows 7 [desktop apps only]
Minimum supported server None supported
Target Platform Windows
Header sensorsapi.h
Library Sensorsapi.lib
DLL Sensorsapi.dll

See also

ISensor