mirror-ac/user/km/kmanager.cpp

8 lines
225 B
C++
Raw Normal View History

2023-08-17 10:45:50 +02:00
#include "kmanager.h"
kernelmode::KManager::KManager( LPCWSTR DriverName, std::shared_ptr<global::ThreadPool> ThreadPool )
{
this->driver_interface = std::make_unique<Driver>(DriverName);
this->thread_pool = ThreadPool;
}