mirror-ac/user/km/kmanager.h

20 lines
350 B
C
Raw Normal View History

2023-08-17 10:45:50 +02:00
#ifndef KMANAGER_H
#define KMANAGER_H
#include <windows.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 );
};
}
#endif