ntoskrnl.exe: Add stub for IoGetDeviceObjectPointer().

This commit is contained in:
Jim Cameron 2008-08-28 22:22:15 +01:00 committed by Alexandre Julliard
parent 954cb31448
commit faa6ca08e9
3 changed files with 11 additions and 1 deletions

View File

@ -450,6 +450,15 @@ NTSTATUS WINAPI IoDeleteSymbolicLink( UNICODE_STRING *name )
}
/***********************************************************************
* IoGetDeviceObjectPointer (NTOSKRNL.EXE.@)
*/
NTSTATUS WINAPI IoGetDeviceObjectPointer( UNICODE_STRING *name, ACCESS_MASK access, PFILE_OBJECT *file, PDEVICE_OBJECT *device )
{
FIXME( "stub: %s %x %p %p\n", debugstr_us(name), access, file, device );
return STATUS_NOT_IMPLEMENTED;
}
/***********************************************************************
* IofCompleteRequest (NTOSKRNL.EXE.@)
*/

View File

@ -382,7 +382,7 @@
@ stub IoGetDeviceAttachmentBaseRef
@ stub IoGetDeviceInterfaceAlias
@ stub IoGetDeviceInterfaces
@ stub IoGetDeviceObjectPointer
@ stdcall IoGetDeviceObjectPointer(ptr long ptr ptr)
@ stub IoGetDeviceProperty
@ stub IoGetDeviceToVerify
@ stub IoGetDiskDeviceObject

View File

@ -941,6 +941,7 @@ void WINAPI IoDeleteDriver(DRIVER_OBJECT*);
NTSTATUS WINAPI IoDeleteSymbolicLink(UNICODE_STRING*);
void WINAPI IoFreeIrp(IRP*);
PEPROCESS WINAPI IoGetCurrentProcess(void);
NTSTATUS WINAPI IoGetDeviceObjectPointer(UNICODE_STRING*,ACCESS_MASK,PFILE_OBJECT*,PDEVICE_OBJECT*);
void WINAPI IoInitializeIrp(IRP*,USHORT,CCHAR);
PKTHREAD WINAPI KeGetCurrentThread(void);