ISensorManagerEvents::OnSensorEnter method (sensorsapi.h)

Provides notification when a sensor device is connected.

Syntax

HRESULT OnSensorEnter(
  [in] ISensor     *pSensor,
  [in] SensorState state
);

Parameters

[in] pSensor

A pointer to the ISensor interface of the sensor that was connected.

[in] state

SensorState indicating the current state of the sensor.

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

To know when a sensor is disconnected, subscribe to the ISensorEvents::OnLeave event.

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

ISensorManagerEvents