KSFASTMETHOD_ITEM - NtDoc

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

typedef struct {
  ULONG MethodId;
  union {
    PFNKSFASTHANDLER MethodHandler;
    BOOLEAN          MethodSupported;
  };
} KSFASTMETHOD_ITEM, *PKSFASTMETHOD_ITEM;

View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-ks-ksfastmethod_item)

KSFASTMETHOD_ITEM structure

Description

Drivers provide a structure of type KSFASTMETHOD_ITEM to support fast I/O dispatching.

Members

MethodId

Contains the identifier of the method and the flags describing the type of method.

MethodHandler

Points to a driver-supplied KStrFastHandler routine for this method.

MethodSupported

Set to TRUE if the method is supported, otherwise set to FALSE.

See also

KSMETHOD_ITEM

KStrFastHandler