PFN_SENSORSCXDEVICEGETSENSORLIST - NtDoc

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

PFN_SENSORSCXDEVICEGETSENSORLIST PfnSensorscxdevicegetsensorlist;

NTSTATUS * PfnSensorscxdevicegetsensorlist(
  PSENSORSCX_DRIVER_GLOBALS DriverGlobals,
  WDFDEVICE FxDevice,
  SENSOROBJECT *pSensorList,
  PULONG pListCount
)
{...}
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nc-sensorscx-pfn_sensorscxdevicegetsensorlist)

*PFN_SENSORSCXDEVICEGETSENSORLIST callback function

Description

Returns a list of sensor instances associated with a WDFDEVICE.

Parameters

DriverGlobals

Global definitions for the driver.

FxDevice

A WDFDEVICE handle to the framework device object that represents the sensor.

pSensorList

A list of sensor instances.

pListCount

The number of SENSOROBJECTS in pSensorList.

Return value

Returns NTSTATUS with different values. Some values that may be returned are the following:

Prototype

//Declaration

*PFN_SENSORSCXDEVICEGETSENSORLIST *PfnSensorscxdevicegetsensorlist;

// Definition

NTSTATUS *PfnSensorscxdevicegetsensorlist
(
    PSENSORSCX_DRIVER_GLOBALS DriverGlobals
    WDFDEVICE FxDevice
    SENSOROBJECT *pSensorList
    PULONG pListCount
)
{...}

Remarks

See also