KSTART_ROUTINE callback function (wdm.h)

The ThreadStart routine provides an entry point for a driver-created system thread.

Syntax

KSTART_ROUTINE KstartRoutine;

void KstartRoutine(
  [in] PVOID StartContext
)
{...}

Parameters

[in] StartContext

A caller-supplied pointer to driver-defined context information that is specified in the StartContext parameter a previous call to PsCreateSystemThread.

Return value

None

Requirements

   
Minimum supported client Supported starting with Windows 2000.
Target Platform Desktop
Header wdm.h (include Wdm.h, Ntddk.h, Ntifs.h)
IRQL Called at PASSIVE_LEVEL.

See also

PsCreateSystemThread