mirror of
https://github.com/donnaskiez/ac.git
synced 2024-11-21 22:24:08 +01:00
7 lines
225 B
C++
7 lines
225 B
C++
#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;
|
|
}
|