blob: 848f79bbf078eed9b003b6e462f90fac5c7b6018 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/* -------------------------------------------
Copyright (C) 2024-2025, Amlal El Mahrouss, all rights reserved.
------------------------------------------- */
#pragma once
#include <NewKit/Defines.h>
namespace Kernel
{
MAKE_STRING_ENUM(HYPERVISOR)
ENUM_STRING(Qemu, "TCGTCGTCGTCG");
ENUM_STRING(KVM, " KVMKVMKVM ");
ENUM_STRING(VMWare, "VMwareVMware");
ENUM_STRING(VirtualBox, "VBoxVBoxVBox");
ENUM_STRING(Xen, "XenVMMXenVMM");
ENUM_STRING(Microsoft, "Microsoft Hv");
ENUM_STRING(Parallels, " prl hyperv ");
ENUM_STRING(ParallelsAlt, " lrpepyh vr ");
ENUM_STRING(Bhyve, "bhyve bhyve ");
ENUM_STRING(Qnx, " QNXQVMBSQG ");
END_STRING_ENUM()
} // namespace Kernel
|