Skip to content

Commit

Permalink
fltmgr.sys: Add FltUnregisterFilter stub.
Browse files Browse the repository at this point in the history
Signed-off-by: Alistair Leslie-Hughes <[email protected]>
Signed-off-by: Alexandre Julliard <[email protected]>
  • Loading branch information
alesliehughes authored and julliard committed Apr 4, 2018
1 parent f3a2bb1 commit c248b6c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion dlls/fltmgr.sys/fltmgr.sys.spec
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,6 @@
@ stub FltUninitializeFileLock
@ stub FltUninitializeOplock
@ stub FltUnloadFilter
@ stub FltUnregisterFilter
@ stdcall FltUnregisterFilter(ptr)
@ stub FltUntagFile
@ stub FltWriteFile
5 changes: 5 additions & 0 deletions dlls/fltmgr.sys/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,8 @@ NTSTATUS WINAPI FltStartFiltering( PFLT_FILTER filter )

return STATUS_SUCCESS;
}

void WINAPI FltUnregisterFilter( PFLT_FILTER filter )
{
FIXME( "(%p): stub\n", filter );
}

0 comments on commit c248b6c

Please sign in to comment.