// sensorscx.h
PFN_SENSORSCXDEVICEGETSENSORLIST PfnSensorscxdevicegetsensorlist;
NTSTATUS * PfnSensorscxdevicegetsensorlist(
PSENSORSCX_DRIVER_GLOBALS DriverGlobals,
WDFDEVICE FxDevice,
SENSOROBJECT *pSensorList,
PULONG pListCount
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
Returns a list of sensor instances associated with a WDFDEVICE.
DriverGlobalsGlobal definitions for the driver.
FxDeviceA WDFDEVICE handle to the framework device object that represents the sensor.
pSensorListA list of sensor instances.
pListCountThe number of SENSOROBJECTS in pSensorList.
Returns NTSTATUS with different values. Some values that may be returned are the following:
//Declaration
*PFN_SENSORSCXDEVICEGETSENSORLIST *PfnSensorscxdevicegetsensorlist;
// Definition
NTSTATUS *PfnSensorscxdevicegetsensorlist
(
PSENSORSCX_DRIVER_GLOBALS DriverGlobals
WDFDEVICE FxDevice
SENSOROBJECT *pSensorList
PULONG pListCount
)
{...}