ntoskrnl.exe: Add stub for IoGetDeviceInterfaces.
This commit is contained in:
parent
863059ab17
commit
745a50c9db
|
@ -621,6 +621,19 @@ NTSTATUS WINAPI IoDeleteSymbolicLink( UNICODE_STRING *name )
|
|||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* IoGetDeviceInterfaces (NTOSKRNL.EXE.@)
|
||||
*/
|
||||
NTSTATUS WINAPI IoGetDeviceInterfaces( CONST GUID *InterfaceClassGuid,
|
||||
PDEVICE_OBJECT PhysicalDeviceObject,
|
||||
ULONG Flags, PWSTR *SymbolicLinkList )
|
||||
{
|
||||
FIXME( "stub: %s %p %x %p\n", debugstr_guid(InterfaceClassGuid),
|
||||
PhysicalDeviceObject, Flags, SymbolicLinkList );
|
||||
return STATUS_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* IoGetDeviceObjectPointer (NTOSKRNL.EXE.@)
|
||||
*/
|
||||
|
|
|
@ -381,7 +381,7 @@
|
|||
@ stub IoGetCurrentProcess
|
||||
@ stub IoGetDeviceAttachmentBaseRef
|
||||
@ stub IoGetDeviceInterfaceAlias
|
||||
@ stub IoGetDeviceInterfaces
|
||||
@ stdcall IoGetDeviceInterfaces(ptr ptr long ptr)
|
||||
@ stdcall IoGetDeviceObjectPointer(ptr long ptr ptr)
|
||||
@ stdcall IoGetDeviceProperty(ptr long long ptr ptr)
|
||||
@ stub IoGetDeviceToVerify
|
||||
|
|
|
@ -1106,6 +1106,7 @@ void WINAPI IoDeleteDriver(DRIVER_OBJECT*);
|
|||
NTSTATUS WINAPI IoDeleteSymbolicLink(UNICODE_STRING*);
|
||||
void WINAPI IoFreeIrp(IRP*);
|
||||
PEPROCESS WINAPI IoGetCurrentProcess(void);
|
||||
NTSTATUS WINAPI IoGetDeviceInterfaces(CONST GUID*,PDEVICE_OBJECT,ULONG,PWSTR*);
|
||||
NTSTATUS WINAPI IoGetDeviceObjectPointer(UNICODE_STRING*,ACCESS_MASK,PFILE_OBJECT*,PDEVICE_OBJECT*);
|
||||
NTSTATUS WINAPI IoGetDeviceProperty(PDEVICE_OBJECT,DEVICE_REGISTRY_PROPERTY,ULONG,PVOID,PULONG);
|
||||
PVOID WINAPI IoGetDriverObjectExtension(PDRIVER_OBJECT,PVOID);
|
||||
|
|
Loading…
Reference in New Issue