#ifndef _NTPOAPI_H
// rev
typedef struct _POWER_INTERNAL_VM_PERF_CONTROL_SUPPORT_OUTPUT
{
// If OutputBuffer only 1 byte, just this flag returned for "VM perf-control supported".
UCHAR Supported;
// Reserved values (returned when OutputBuffer > 1 bytes).
UCHAR Reserved0;
UCHAR Reserved1;
UCHAR Reserved2;
// Extended details (returned when OutputBuffer >= 20 bytes).
ULONG MinPerfPercent; // Minimum performance percentage (0..100)
ULONG MaxPerfPercent; // Maximum performance percentage (0..100)
ULONG StepPerfPercent; // Step size for performance percentage (>=1)
ULONG Capabilities; // Bitmask of PPM_VMPCS_SUPPORTS_* flags
} POWER_INTERNAL_VM_PERF_CONTROL_SUPPORT_OUTPUT, *PPOWER_INTERNAL_VM_PERF_CONTROL_SUPPORT_OUTPUT;
View code on GitHubNo description available.