SensorCollectionGetAt - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// sensorsutils.h

NTSTATUS SensorCollectionGetAt(
  [in]  UINT32                  Index,
  [in]  PSENSOR_COLLECTION_LIST pSensorsList,
  [out] PROPERTYKEY             *pKey,
  [out] PROPVARIANT             *pValue
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-sensorsutils-sensorcollectiongetat)

SensorCollectionGetAt function

Description

This routine returns the PROPERTYKEY and PROPVARIANT associated with the nth element in the provided sensor collection list.

Parameters

Index [in]

Zero-based index of the element in the pSensorsList.

pSensorsList [in]

Pointer to a sensor collection list.

pKey [out]

Size of data.

pValue [out]

Location of the data.

Return value

This function returns STATUS_NOT_FOUND if not found, STATUS_SUCCESS otherwise.

Remarks

See also