IoCallDriver - NtDoc

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

#define IoCallDriver(a,b)   \
        IofCallDriver(a,b)
);

View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-wdm-iocalldriver)

Description

The IoCallDriver routine, wraps IofCallDriver that sends an IRP to the driver associated with a specified device object.

Do not call IofCallDriver. Call IoCallDriver instead. For more information, see IofCallDriver.

Parameters

a [in]

See IofCallDriver.

b [in, out]

See IofCallDriver.

Syntax

#define IoCallDriver(a,b)   \
        IofCallDriver(a,b)
);

See also

See IofCallDriver.

IoAllocateIrp

IoBuildAsynchronousFsdRequest

IoBuildDeviceIoControlRequest

IoBuildSynchronousFsdRequest

IoSetCompletionRoutine

PoCallDriver