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:
parent
0bbb1c32a9
commit
b2ebe2834f
|
@ -128,7 +128,7 @@
|
|||
@ stub FltReadFile
|
||||
@ stub FltReferenceContext
|
||||
@ stub FltReferenceFileNameInformation
|
||||
@ stub FltRegisterFilter
|
||||
@ stdcall FltRegisterFilter(ptr ptr ptr)
|
||||
@ stub FltReissueSynchronousIo
|
||||
@ stub FltReleaseContext
|
||||
@ stub FltReleaseContexts
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue