Commit 85201ceb authored by Stefan Leichter's avatar Stefan Leichter Committed by Alexandre Julliard

ntoskrnl.exe: Stub for IoReportResourceUsage.

parent a3edb733
...@@ -719,6 +719,19 @@ NTSTATUS WINAPI IoRegisterShutdownNotification( PDEVICE_OBJECT obj ) ...@@ -719,6 +719,19 @@ NTSTATUS WINAPI IoRegisterShutdownNotification( PDEVICE_OBJECT obj )
/*********************************************************************** /***********************************************************************
* IoReportResourceUsage (NTOSKRNL.EXE.@)
*/
NTSTATUS WINAPI IoReportResourceUsage(PUNICODE_STRING name, PDRIVER_OBJECT drv_obj, PCM_RESOURCE_LIST drv_list,
ULONG drv_size, PDRIVER_OBJECT dev_obj, PCM_RESOURCE_LIST dev_list,
ULONG dev_size, BOOLEAN overwrite, PBOOLEAN detected)
{
FIXME("(%s %p %p %u %p %p %u %d %p) stub \n", debugstr_w(name? name->Buffer : NULL),
drv_obj, drv_list, drv_size, dev_obj, dev_list, dev_size, overwrite, detected);
return STATUS_NOT_IMPLEMENTED;
}
/***********************************************************************
* IofCompleteRequest (NTOSKRNL.EXE.@) * IofCompleteRequest (NTOSKRNL.EXE.@)
*/ */
#ifdef DEFINE_FASTCALL2_ENTRYPOINT #ifdef DEFINE_FASTCALL2_ENTRYPOINT
......
...@@ -440,7 +440,7 @@ ...@@ -440,7 +440,7 @@
@ stub IoReportDetectedDevice @ stub IoReportDetectedDevice
@ stub IoReportHalResourceUsage @ stub IoReportHalResourceUsage
@ stub IoReportResourceForDetection @ stub IoReportResourceForDetection
@ stub IoReportResourceUsage @ stdcall IoReportResourceUsage(ptr ptr ptr long ptr ptr long long ptr)
@ stub IoReportTargetDeviceChange @ stub IoReportTargetDeviceChange
@ stub IoReportTargetDeviceChangeAsynchronous @ stub IoReportTargetDeviceChangeAsynchronous
@ stub IoRequestDeviceEject @ stub IoRequestDeviceEject
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment