ntoskrnl.exe: Add stub for IoGetDeviceObjectPointer().
This commit is contained in:
parent
954cb31448
commit
faa6ca08e9
|
@ -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.@)
|
||||
*/
|
||||
|
|
|
@ -382,7 +382,7 @@
|
|||
@ stub IoGetDeviceAttachmentBaseRef
|
||||
@ stub IoGetDeviceInterfaceAlias
|
||||
@ stub IoGetDeviceInterfaces
|
||||
@ stub IoGetDeviceObjectPointer
|
||||
@ stdcall IoGetDeviceObjectPointer(ptr long ptr ptr)
|
||||
@ stub IoGetDeviceProperty
|
||||
@ stub IoGetDeviceToVerify
|
||||
@ stub IoGetDiskDeviceObject
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue