// wdm.h
CLFSUSER_API CLFS_LSN ClfsLsnCreate(
[in] CLFS_CONTAINER_ID cidContainer,
[in] ULONG offBlock,
[in] ULONG cRecord
);
View the official Windows Driver Kit DDI referenceNo description available.
The ClfsLsnCreate routine creates a log sequence number (LSN), given a container identifier, a block offset, and a record sequence number.
cidContainer [in]An integer in the range 0x0 through 0xFFFFFFFF that supplies the container identifier.
offBlock [in]The block offset. This parameter must be a multiple of 512.
cRecord [in]An integer in the range 0 - 511 that supplies the record sequence number.
ClfsLsnCreate returns a CLFS_LSN structure that represents the container identifier, block offset, and record sequence number supplied by the caller.
For an explanation of CLFS concepts and terminology, see Common Log File System.
systems.