HidSpiCxDeviceInitConfig - NtDoc

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

NTSTATUS HidSpiCxDeviceInitConfig(
  PWDFDEVICE_INIT DeviceInit
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-hidspicx-hidspicxdeviceinitconfig)

Description

The client driver must call HidSpiCxDeviceInitConfig in its EVT_WDF_DRIVER_DEVICE_ADD callback, before calling WdfDeviceCreate.

Parameters

DeviceInit

A pointer to a WDFDEVICE_INIT object that the client received in its EVT_WDF_DRIVER_DEVICE_ADD routine.

Return value

NTSTATUS indicating whether the class extension was able to successfully initialize the structure.

Remarks

The class extension initializes private Plug-and-Play and power hooks for the device.

See also

EVT_WDF_DRIVER_DEVICE_ADD

WdfDeviceCreate