PFN_SENSORSCXDEVICEINITCONFIG - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// 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 reference

NtDoc

No description available.

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

*PFN_SENSORSCXDEVICEINITCONFIG callback function

Description

Configures the sensor device.

Parameters

DriverGlobals

Global definitions for the driver.

pFxDeviceInit

A reference to WDFDEVICE_INIT.

pFdoAttributes

A reference to WDF_OBJECT_ATTRIBUTES.

Flags

The flags for the sensor driver. Reserved set to 0.

Return value

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.

Prototype

//Declaration

*PFN_SENSORSCXDEVICEINITCONFIG *PfnSensorscxdeviceinitconfig;

// Definition

NTSTATUS *PfnSensorscxdeviceinitconfig
(
    PSENSORSCX_DRIVER_GLOBALS DriverGlobals
    PWDFDEVICE_INIT pFxDeviceInit
    PWDF_OBJECT_ATTRIBUTES pFdoAttributes
    ULONG Flags
)
{...}