// sensorscx.h
PFN_SENSORSCXDEVICEINITCONFIG PfnSensorscxdeviceinitconfig;
NTSTATUS * PfnSensorscxdeviceinitconfig(
PSENSORSCX_DRIVER_GLOBALS DriverGlobals,
PWDFDEVICE_INIT pFxDeviceInit,
PWDF_OBJECT_ATTRIBUTES pFdoAttributes,
ULONG Flags
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
Configures the sensor device.
DriverGlobalsGlobal definitions for the driver.
pFxDeviceInitA reference to WDFDEVICE_INIT.
pFdoAttributesA reference to WDF_OBJECT_ATTRIBUTES.
FlagsThe flags for the sensor driver. Reserved set to 0.
This function returns STATUS_SUCCESS when completed successfully. When an invalid parameter is supplied or this function fails, STATUS_INVALID_PARAMETER is returned. This function can also return other NTSTATUS values.
//Declaration
*PFN_SENSORSCXDEVICEINITCONFIG *PfnSensorscxdeviceinitconfig;
// Definition
NTSTATUS *PfnSensorscxdeviceinitconfig
(
PSENSORSCX_DRIVER_GLOBALS DriverGlobals
PWDFDEVICE_INIT pFxDeviceInit
PWDF_OBJECT_ATTRIBUTES pFdoAttributes
ULONG Flags
)
{...}