EVT_SENSOR_DRIVER_DEVICE_IO_CONTROL - NtDoc

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

EVT_SENSOR_DRIVER_DEVICE_IO_CONTROL EvtSensorDriverDeviceIoControl;

NTSTATUS EvtSensorDriverDeviceIoControl(
  SENSOROBJECT Sensor,
  WDFREQUEST Request,
  size_t OutputBufferLength,
  size_t InputBufferLength,
  ULONG IoControlCode
)
{...}
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

EVT_SENSOR_DRIVER_DEVICE_IO_CONTROL callback function

Description

Callback to handle IOCTL.

Parameters

Sensor

A reference to the sensor object.

Request

The I/O request.

OutputBufferLength

The output buffer length.

InputBufferLength

The input buffer length.

IoControlCode

The I/O control code.

Return value

Returns NTSTATUS.

Prototype

//Declaration

EVT_SENSOR_DRIVER_DEVICE_IO_CONTROL EvtSensorDriverDeviceIoControl;

// Definition

NTSTATUS EvtSensorDriverDeviceIoControl
(
    SENSOROBJECT Sensor
    WDFREQUEST Request
    size_t OutputBufferLength
    size_t InputBufferLength
    ULONG IoControlCode
)
{...}