mirror-ac/user/km/kmanager.h
2023-08-22 01:48:34 +10:00

27 lines
No EOL
549 B
C++

#ifndef KMANAGER_H
#define KMANAGER_H
#include <windows.h>
#include "../report.h"
#include "..\threadpool.h"
#include "driver.h"
namespace kernelmode
{
class KManager
{
std::unique_ptr<Driver> driver_interface;
std::shared_ptr<global::ThreadPool> thread_pool;
public:
KManager( LPCWSTR DriverName, std::shared_ptr<global::ThreadPool> ThreadPool, std::shared_ptr<global::Report> ReportInterface);
void RunNmiCallbacks();
void VerifySystemModules();
void MonitorCallbackReports();
void DetectSystemVirtualization();
};
}
#endif