ntoskrnl: Add ObGetObjectType 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
d4c2759a1d
commit
b0351a12b1
|
@ -2369,6 +2369,16 @@ USHORT WINAPI ObGetFilterVersion(void)
|
|||
return OB_FLT_REGISTRATION_VERSION;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* ObGetObjectType (NTOSKRNL.EXE.@)
|
||||
*/
|
||||
POBJECT_TYPE WINAPI ObGetObjectType(void *object)
|
||||
{
|
||||
FIXME("stub: %p\n", object);
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* IoGetAttachedDeviceReference (NTOSKRNL.EXE.@)
|
||||
*/
|
||||
|
|
|
@ -808,6 +808,7 @@
|
|||
@ stub ObFindHandleForObject
|
||||
@ stdcall ObGetFilterVersion()
|
||||
@ stub ObGetObjectSecurity
|
||||
@ stdcall ObGetObjectType(ptr)
|
||||
@ stub ObInsertObject
|
||||
@ stub ObLogSecurityDescriptor
|
||||
@ stub ObMakeTemporaryObject
|
||||
|
|
Loading…
Reference in New Issue