// sensorscx.h
PFN_SENSORSCXSENSORINITIALIZE PfnSensorscxsensorinitialize;
NTSTATUS * PfnSensorscxsensorinitialize(
PSENSORSCX_DRIVER_GLOBALS DriverGlobals,
SENSOROBJECT Sensor,
PSENSOR_CONFIG pSensorConfig
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
Sets the enumeration properties of a sensor.
DriverGlobalsGlobal definitions for the driver.
SensorA reference to a sensor object.
pSensorConfigA list of functions that the driver implements.
Returns NTSTATUS.
//Declaration
*PFN_SENSORSCXSENSORINITIALIZE *PfnSensorscxsensorinitialize;
// Definition
NTSTATUS *PfnSensorscxsensorinitialize
(
PSENSORSCX_DRIVER_GLOBALS DriverGlobals
SENSOROBJECT Sensor
PSENSOR_CONFIG pSensorConfig
)
{...}