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