FltIsCallbackDataDirty - NtDoc

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

BOOLEAN FLTAPI FltIsCallbackDataDirty(
  [in] PFLT_CALLBACK_DATA Data
);

View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-fltkernel-fltiscallbackdatadirty)

FltIsCallbackDataDirty function

Description

The FltIsCallbackDataDirty routine tests the FLTFL_CALLBACK_DATA_DIRTY flag in a callback data structure.

Parameters

Data [in]

Pointer to a callback data structure (FLT_CALLBACK_DATA).

Return value

If the FLTFL_CALLBACK_DATA_DIRTY flag is set in the callback data structure, the return value is TRUE. Otherwise, the return value is FALSE.

Remarks

To set an FLT_CALLBACK_DATA structure's FLTFL_CALLBACK_DATA_DIRTY flag, call FltSetCallbackDataDirty.

To clear a callback data structure's FLTFL_CALLBACK_DATA_DIRTY flag, call FltClearCallbackDataDirty.

See also

FLT_CALLBACK_DATA

FltClearCallbackDataDirty

FltSetCallbackDataDirty