mirror-ac/driver/hv.h
lhodges1 af45bc923f e
2023-09-02 23:47:15 +10:00

20 lines
No EOL
331 B
C

#ifndef HV_H
#define HV_H
#include <ntifs.h>
#include "common.h"
typedef struct _HYPERVISOR_DETECTION_REPORT
{
INT aperf_msr_timing_check;
INT invd_emulation_check;
}HYPERVISOR_DETECTION_REPORT, *PHYPERVISOR_DETECTION_REPORT;
NTSTATUS PerformVirtualizationDetection(
_In_ PIRP Irp
);
extern INT TestINVDEmulation();
#endif