fltmgr.sys: Add FltRegisterFilter stub.

Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alistair Leslie-Hughes 2018-03-22 03:48:11 +00:00 committed by Alexandre Julliard
parent 0bbb1c32a9
commit b2ebe2834f
2 changed files with 11 additions and 1 deletions

View File

@ -128,7 +128,7 @@
@ stub FltReadFile
@ stub FltReferenceContext
@ stub FltReferenceFileNameInformation
@ stub FltRegisterFilter
@ stdcall FltRegisterFilter(ptr ptr ptr)
@ stub FltReissueSynchronousIo
@ stub FltReleaseContext
@ stub FltReleaseContexts

View File

@ -42,3 +42,13 @@ void WINAPI FltInitializePushLock( 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 );
if(filter)
*filter = UlongToHandle(0xdeadbeaf);
return STATUS_SUCCESS;
}