PFN_SENSORSCXDEVICEINITIALIZE - NtDoc

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

PFN_SENSORSCXDEVICEINITIALIZE PfnSensorscxdeviceinitialize;

NTSTATUS * PfnSensorscxdeviceinitialize(
  PSENSORSCX_DRIVER_GLOBALS DriverGlobals,
  WDFDEVICE FxDevice,
  PSENSOR_CONTROLLER_CONFIG pSensorConfig
)
{...}
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

*PFN_SENSORSCXDEVICEINITIALIZE callback function

Description

Initializes the sensor in the class extension.

Parameters

DriverGlobals

Global definitions for the driver.

FxDevice

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

pSensorConfig

A list of functions that the driver implements.

Return value

Returns NTSTATUS.

Prototype

//Declaration

*PFN_SENSORSCXDEVICEINITIALIZE *PfnSensorscxdeviceinitialize;

// Definition

NTSTATUS *PfnSensorscxdeviceinitialize
(
    PSENSORSCX_DRIVER_GLOBALS DriverGlobals
    WDFDEVICE FxDevice
    PSENSOR_CONTROLLER_CONFIG pSensorConfig
)
{...}