windows-nt/Source/XPSP1/NT/drivers/storage/iscsiprt/client/wmi.c
2020-09-26 16:20:57 +08:00

36 lines
479 B
C
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*++
Copyright (C) Microsoft Corporation, 2000
Module Name:
wmi.c
Abstract:
This module contains the WMI support code
Environment:
Kernel mode only.
Revision History:
--*/
#include "port.h"
NTSTATUS
iScsiPortSystemControl(
IN PDEVICE_OBJECT DeviceObject,
IN PIRP Irp
)
{
Irp->IoStatus.Status = STATUS_NOT_IMPLEMENTED;
Irp->IoStatus.Information = 0L;
IoCompleteRequest(Irp, IO_NO_INCREMENT);
return STATUS_NOT_IMPLEMENTED;
}