// ntifs.h
BOOLEAN CcCopyWriteWontFlush(
[in] PFILE_OBJECT FileObject,
[in] PLARGE_INTEGER FileOffset,
[in] ULONG Length
);
View the official Windows Driver Kit DDI referenceNo description available.
The CcCopyWriteWontFlush macro determines whether the amount of data to be copied in a call to CcCopyWrite is small enough not to require immediate flushing to disk if CcCopyWrite is called with Wait set to FALSE.
FileObject [in]Pointer to a file object for the cached file to which the data is to be written.
FileOffset [in]Pointer to a variable that specifies the starting byte offset within the cached file where the data is to be written.
Length [in]Length in bytes of the data to be copied.
CcCopyWriteWontFlush returns TRUE if the amount of data to be copied in a call to CcCopyWrite is small enough not to require immediate flushing to disk, FALSE otherwise.