fltmgr.sys: Add stubs for FltAcquirePushLockExclusive, FltDeletePushLock and FltReleasePushLock.

Signed-off-by: Dmitry Timoshkov <dmitry@baikal.ru>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Dmitry Timoshkov 2018-09-06 17:01:16 +08:00 committed by Alexandre Julliard
parent f072744bc5
commit f141ed7a81
2 changed files with 18 additions and 3 deletions

View File

@ -1,4 +1,4 @@
@ stub FltAcquirePushLockExclusive
@ stdcall FltAcquirePushLockExclusive(ptr)
@ stub FltAcquirePushLockShared
@ stub FltAcquireResourceExclusive
@ stub FltAcquireResourceShared
@ -40,7 +40,7 @@
@ stub FltDeleteContext
@ stub FltDeleteFileContext
@ stub FltDeleteInstanceContext
@ stub FltDeletePushLock
@ stdcall FltDeletePushLock(ptr)
@ stub FltDeleteStreamContext
@ stub FltDeleteStreamHandleContext
@ stub FltDeleteVolumeContext
@ -133,7 +133,7 @@
@ stub FltReleaseContext
@ stub FltReleaseContexts
@ stub FltReleaseFileNameInformation
@ stub FltReleasePushLock
@ stdcall FltReleasePushLock(ptr)
@ stub FltReleaseResource
@ stub FltRequestOperationStatusCallback
@ stub FltRetainSwappedBufferMdlAddress

View File

@ -43,6 +43,21 @@ void WINAPI FltInitializePushLock( EX_PUSH_LOCK *lock )
FIXME( "(%p): stub\n", lock );
}
void WINAPI FltDeletePushLock( EX_PUSH_LOCK *lock )
{
FIXME( "(%p): stub\n", lock );
}
void WINAPI FltAcquirePushLockExclusive( EX_PUSH_LOCK *lock )
{
FIXME( "(%p): stub\n", lock );
}
void WINAPI FltReleasePushLock( EX_PUSH_LOCK *lock )
{
FIXME( "(%p): stub\n", lock );
}
NTSTATUS WINAPI FltRegisterFilter( PDRIVER_OBJECT driver, const FLT_REGISTRATION *reg, PFLT_FILTER *filter )
{
FIXME( "(%p,%p,%p): stub\n", driver, reg, filter );