ntoskrnl.exe: Add stub for IoGetRelatedDeviceObject().
This commit is contained in:
parent
faa6ca08e9
commit
597150f692
|
@ -459,6 +459,17 @@ NTSTATUS WINAPI IoGetDeviceObjectPointer( UNICODE_STRING *name, ACCESS_MASK acc
|
||||||
return STATUS_NOT_IMPLEMENTED;
|
return STATUS_NOT_IMPLEMENTED;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* IoGetRelatedDeviceObject (NTOSKRNL.EXE.@)
|
||||||
|
*/
|
||||||
|
PDEVICE_OBJECT WINAPI IoGetRelatedDeviceObject( PFILE_OBJECT obj )
|
||||||
|
{
|
||||||
|
FIXME( "stub: %p\n", obj );
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
* IofCompleteRequest (NTOSKRNL.EXE.@)
|
* IofCompleteRequest (NTOSKRNL.EXE.@)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -391,7 +391,7 @@
|
||||||
@ stub IoGetFileObjectGenericMapping
|
@ stub IoGetFileObjectGenericMapping
|
||||||
@ stub IoGetInitialStack
|
@ stub IoGetInitialStack
|
||||||
@ stub IoGetLowerDeviceObject
|
@ stub IoGetLowerDeviceObject
|
||||||
@ stub IoGetRelatedDeviceObject
|
@ stdcall IoGetRelatedDeviceObject(ptr)
|
||||||
@ stub IoGetRequestorProcess
|
@ stub IoGetRequestorProcess
|
||||||
@ stub IoGetRequestorProcessId
|
@ stub IoGetRequestorProcessId
|
||||||
@ stub IoGetRequestorSessionId
|
@ stub IoGetRequestorSessionId
|
||||||
|
|
|
@ -942,6 +942,7 @@ NTSTATUS WINAPI IoDeleteSymbolicLink(UNICODE_STRING*);
|
||||||
void WINAPI IoFreeIrp(IRP*);
|
void WINAPI IoFreeIrp(IRP*);
|
||||||
PEPROCESS WINAPI IoGetCurrentProcess(void);
|
PEPROCESS WINAPI IoGetCurrentProcess(void);
|
||||||
NTSTATUS WINAPI IoGetDeviceObjectPointer(UNICODE_STRING*,ACCESS_MASK,PFILE_OBJECT*,PDEVICE_OBJECT*);
|
NTSTATUS WINAPI IoGetDeviceObjectPointer(UNICODE_STRING*,ACCESS_MASK,PFILE_OBJECT*,PDEVICE_OBJECT*);
|
||||||
|
PDEVICE_OBJECT WINAPI IoGetRelatedDeviceObject(PFILE_OBJECT);
|
||||||
void WINAPI IoInitializeIrp(IRP*,USHORT,CCHAR);
|
void WINAPI IoInitializeIrp(IRP*,USHORT,CCHAR);
|
||||||
|
|
||||||
PKTHREAD WINAPI KeGetCurrentThread(void);
|
PKTHREAD WINAPI KeGetCurrentThread(void);
|
||||||
|
|
Loading…
Reference in New Issue