// wdm.h
typedef struct _CLFS_LOG_NAME_INFORMATION {
USHORT NameLengthInBytes;
WCHAR Name[1];
} CLFS_LOG_NAME_INFORMATION, *PCLFS_LOG_NAME_INFORMATION, PPCLFS_LOG_NAME_INFORMATION;
View the official Windows Driver Kit DDI referenceNo description available.
The CLFS_LOG_NAME_INFORMATION structure holds the name of a Common Log File System (CLFS) stream or log.
NameLengthInBytesThe size, in bytes, of the log name.
NameAn array of wide characters that holds the log name.