mirror of
https://github.com/donnaskiez/ac.git
synced 2024-11-21 22:24:08 +01:00
22 lines
No EOL
413 B
C
22 lines
No EOL
413 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(_Inout_ PIRP Irp);
|
|
|
|
_IRQL_always_function_max_(HIGH_LEVEL) INT APERFMsrTimingCheck();
|
|
|
|
extern INT
|
|
TestINVDEmulation();
|
|
|
|
#endif |