Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
479 B

  1. /*++
  2. Copyright (C) Microsoft Corporation, 2000
  3. Module Name:
  4. wmi.c
  5. Abstract:
  6. This module contains the WMI support code
  7. Environment:
  8. Kernel mode only.
  9. Revision History:
  10. --*/
  11. #include "port.h"
  12. NTSTATUS
  13. iScsiPortSystemControl(
  14. IN PDEVICE_OBJECT DeviceObject,
  15. IN PIRP Irp
  16. )
  17. {
  18. Irp->IoStatus.Status = STATUS_NOT_IMPLEMENTED;
  19. Irp->IoStatus.Information = 0L;
  20. IoCompleteRequest(Irp, IO_NO_INCREMENT);
  21. return STATUS_NOT_IMPLEMENTED;
  22. }