ntoskrnl.exe: Add ObGetFilterVersion 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-21 05:40:22 +00:00 committed by Alexandre Julliard
parent 8b0c857c81
commit 813c6f3af6
3 changed files with 12 additions and 0 deletions

View File

@ -2327,6 +2327,16 @@ void WINAPI ObUnRegisterCallbacks(void *handle)
FIXME( "stub: %p\n", handle );
}
/***********************************************************************
* ObGetFilterVersion (NTOSKRNL.EXE.@)
*/
USHORT WINAPI ObGetFilterVersion(void)
{
FIXME( "stub:\n" );
return OB_FLT_REGISTRATION_VERSION;
}
/***********************************************************************
* IoGetAttachedDeviceReference (NTOSKRNL.EXE.@)
*/

View File

@ -805,6 +805,7 @@
@ stdcall ObDereferenceObject(ptr)
@ stub ObDereferenceSecurityDescriptor
@ stub ObFindHandleForObject
@ stdcall ObGetFilterVersion()
@ stub ObGetObjectSecurity
@ stub ObInsertObject
@ stub ObLogSecurityDescriptor

View File

@ -1429,6 +1429,7 @@ static inline void *MmGetSystemAddressForMdlSafe(MDL *mdl, ULONG priority)
}
void WINAPI ObDereferenceObject(void*);
USHORT WINAPI ObGetFilterVersion(void);
NTSTATUS WINAPI ObRegisterCallbacks(POB_CALLBACK_REGISTRATION*, void**);
NTSTATUS WINAPI ObReferenceObjectByHandle(HANDLE,ACCESS_MASK,POBJECT_TYPE,KPROCESSOR_MODE,PVOID*,POBJECT_HANDLE_INFORMATION);
NTSTATUS WINAPI ObReferenceObjectByName(UNICODE_STRING*,ULONG,ACCESS_STATE*,ACCESS_MASK,POBJECT_TYPE,KPROCESSOR_MODE,void*,void**);