PMINIPORT_DPC_ROUTINE - NtDoc

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

PMINIPORT_DPC_ROUTINE PminiportDpcRoutine;

VOID PminiportDpcRoutine(
  [in] IN PVOID HwDeviceExtension,
  [in] IN PVOID Context
)
{...}
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nc-video-pminiport_dpc_routine)

PMINIPORT_DPC_ROUTINE callback function

Description

The HwVidDpcRoutine function is a miniport driver-implemented callback that is called when a queued DPC gets scheduled.

Parameters

HwDeviceExtension [in]

Pointer to the miniport driver's hardware device extension. For more information, see Device Extensions.

Context [in]

Contains any miniport driver-supplied data this function may need. Context can be NULL if the DPC implementation does not require additional information.

Remarks

The miniport driver queues this DPC by calling VideoPortQueueDpc.

Because HwVidDpcRoutine is called at DISPATCH_LEVEL, it must not manipulate any pageable code or data. Further, this function must be in nonpaged memory and should complete its operations as quickly as possible.

See also

VideoPortQueueDpc