// ntifs.h
typedef struct _FILE_LOCK_INFO {
LARGE_INTEGER StartingByte;
LARGE_INTEGER Length;
BOOLEAN ExclusiveLock;
ULONG Key;
PFILE_OBJECT FileObject;
PVOID ProcessId;
LARGE_INTEGER EndingByte;
} FILE_LOCK_INFO;
View the official Windows Driver Kit DDI referenceNo description available.
The FILE_LOCK_INFO structure is reserved for system use.
StartingByteReserved for system use.
LengthReserved for system use.
ExclusiveLockReserved for system use.
KeyReserved for system use.
FileObjectReserved for system use.
ProcessIdReserved for system use.
EndingByteReserved for system use.