mirror of
https://github.com/reactos/reactos.git
synced 2025-04-26 16:40:27 +00:00
- Fix FsRtlFastCheckLockForRead and Write function prototypes.
svn path=/trunk/; revision=37843
This commit is contained in:
parent
2242fa6da1
commit
8c52058f73
2 changed files with 4 additions and 4 deletions
|
@ -3128,7 +3128,7 @@ FsRtlFastCheckLockForRead (
|
|||
IN PLARGE_INTEGER Length,
|
||||
IN ULONG Key,
|
||||
IN PFILE_OBJECT FileObject,
|
||||
IN PEPROCESS Process
|
||||
IN PVOID Process
|
||||
);
|
||||
|
||||
NTKERNELAPI
|
||||
|
@ -3140,7 +3140,7 @@ FsRtlFastCheckLockForWrite (
|
|||
IN PLARGE_INTEGER Length,
|
||||
IN ULONG Key,
|
||||
IN PFILE_OBJECT FileObject,
|
||||
IN PEPROCESS Process
|
||||
IN PVOID Process
|
||||
);
|
||||
|
||||
#define FsRtlFastLock(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11) ( \
|
||||
|
|
|
@ -141,7 +141,7 @@ FsRtlFastCheckLockForRead(IN PFILE_LOCK FileLock,
|
|||
IN PLARGE_INTEGER Length,
|
||||
IN ULONG Key,
|
||||
IN PFILE_OBJECT FileObject,
|
||||
IN PEPROCESS Process)
|
||||
IN PVOID Process)
|
||||
{
|
||||
KeBugCheck(FILE_SYSTEM);
|
||||
return FALSE;
|
||||
|
@ -157,7 +157,7 @@ FsRtlFastCheckLockForWrite(IN PFILE_LOCK FileLock,
|
|||
IN PLARGE_INTEGER Length,
|
||||
IN ULONG Key,
|
||||
IN PFILE_OBJECT FileObject,
|
||||
IN PEPROCESS Process)
|
||||
IN PVOID Process)
|
||||
{
|
||||
KeBugCheck(FILE_SYSTEM);
|
||||
return FALSE;
|
||||
|
|
Loading…
Reference in a new issue