windows-nt/Source/XPSP1/NT/drivers/storage/partmgr/pmwmireg.h

67 lines
1.1 KiB
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
/*++
Copyright (C) Microsoft Corporation, 1997 - 1998
Module Name:
pmwmireg.h
Abstract:
This file contains the prototypes of the routines to register for
and handle WMI queries.
Author:
Bruce Worthington 26-Oct-1998
Environment:
kernel mode only
Notes:
Revision History:
--*/
#include <ntddk.h>
#include <wdmguid.h>
NTSTATUS PmRegisterDevice(
IN PDEVICE_OBJECT DeviceObject
);
NTSTATUS
PmQueryWmiRegInfo(
IN PDEVICE_OBJECT DeviceObject,
OUT ULONG *RegFlags,
OUT PUNICODE_STRING InstanceName,
OUT PUNICODE_STRING *RegistryPath,
OUT PUNICODE_STRING MofResourceName,
OUT PDEVICE_OBJECT *Pdo
);
NTSTATUS
PmQueryWmiDataBlock(
IN PDEVICE_OBJECT DeviceObject,
IN PIRP Irp,
IN ULONG GuidIndex,
IN ULONG InstanceIndex,
IN ULONG InstanceCount,
IN OUT PULONG InstanceLengthArray,
IN ULONG BufferAvail,
OUT PUCHAR Buffer
);
BOOLEAN
PmQueryEnableAlways(
IN PDEVICE_OBJECT DeviceObject
);
extern WMIGUIDREGINFO DiskperfGuidList[];
extern ULONG DiskperfGuidCount;