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
868 B

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (C) Microsoft Corporation, 1998 - 1998
  6. //
  7. // File: wmipdo.h
  8. //
  9. //--------------------------------------------------------------------------
  10. NTSTATUS
  11. ParWmiPdoQueryWmiDataBlock(
  12. IN PDEVICE_OBJECT DeviceObject,
  13. IN PIRP Irp,
  14. IN ULONG GuidIndex,
  15. IN ULONG InstanceIndex,
  16. IN ULONG InstanceCount,
  17. IN OUT PULONG InstanceLengthArray,
  18. IN ULONG OutBufferSize,
  19. OUT PUCHAR Buffer
  20. );
  21. NTSTATUS
  22. ParWmiPdoQueryWmiRegInfo(
  23. IN PDEVICE_OBJECT PDevObj,
  24. OUT PULONG PRegFlags,
  25. OUT PUNICODE_STRING PInstanceName,
  26. OUT PUNICODE_STRING *PRegistryPath,
  27. OUT PUNICODE_STRING MofResourceName,
  28. OUT PDEVICE_OBJECT *Pdo
  29. );