ISensorManager::GetSensorsByType method (sensorsapi.h)

Retrieves a collection containing all sensors associated with the specified type.

Syntax

HRESULT GetSensorsByType(
  [in]  REFSENSOR_TYPE_ID sensorType,
  [out] ISensorCollection **ppSensorsFound
);

Parameters

[in] sensorType

ID of the type of sensors to retrieve.

[out] ppSensorsFound

Address of an ISensorCollection interface pointer that receives the pointer to the sensor collection requested.

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.
HRESULT_FROM_WIN32(ERROR_NOT_FOUND)
No sensors are available for the specified type.
E_POINTER
NULL was passed in for ppSensorsFound.

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

ISensorManager

Retrieving a Sensor Object