// wdm.h
typedef struct _CLS_WRITE_ENTRY {
PVOID Buffer;
ULONG ByteLength;
} CLS_WRITE_ENTRY, *PCLS_WRITE_ENTRY, PPCLS_WRITE_ENTRY;
View the official Windows Driver Kit DDI referenceNo description available.
The CLFS_WRITE_ENTRY structure holds the address and size of a buffer that contains one unit of data to be written to a Common Log File System (CLFS) stream.
BufferA pointer to the buffer that holds the data.
ByteLengthThe size, in bytes, of the buffer pointed to by Buffer.
CLFS collects the buffers pointed to by several CLFS_WRITE_ENTRY structures into a single log record. The log record is then placed in a log I/O block along with other log records. Eventually the log I/O block is flushed to disk.
ClfsReserveAndAppendLogAligned