// ks.h
typedef struct {
ULONG MethodId;
union {
PFNKSFASTHANDLER MethodHandler;
BOOLEAN MethodSupported;
};
} KSFASTMETHOD_ITEM, *PKSFASTMETHOD_ITEM;
View the official Windows Driver Kit DDI reference
No description available.
Drivers provide a structure of type KSFASTMETHOD_ITEM to support fast I/O dispatching.
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.