UINT8 __stdcall FsRtlAreThereCurrentOrInProgressFileLocks(_FILE_LOCK *FileLock){
_QWORD *LockInformation;
UINT8 v2;
LockInformation = FileLock->LockInformation;
v2 = 0;
if( LockInformation && (LockInformation[4] || LockInformation[5]) || FileLock->LockRequestsInProgress )
return 1;
return v2;
}