2023-08-17 10:45:50 +02:00
|
|
|
#ifndef DRIVER_H
|
|
|
|
#define DRIVER_H
|
|
|
|
|
|
|
|
#include <Windows.h>
|
|
|
|
|
|
|
|
#include "../threadpool.h"
|
2023-08-18 07:33:13 +02:00
|
|
|
#include "../report.h"
|
2023-08-17 10:45:50 +02:00
|
|
|
|
|
|
|
namespace kernelmode
|
|
|
|
{
|
|
|
|
class Driver
|
|
|
|
{
|
|
|
|
HANDLE driver_handle;
|
|
|
|
LPCWSTR driver_name;
|
2023-08-18 07:33:13 +02:00
|
|
|
std::shared_ptr<global::Report> report_interface;
|
2023-08-17 10:45:50 +02:00
|
|
|
public:
|
|
|
|
|
|
|
|
std::shared_ptr<global::ThreadPool> thread_pool;
|
|
|
|
|
2023-08-18 07:33:13 +02:00
|
|
|
Driver(LPCWSTR DriverName, std::shared_ptr<global::Report> ReportInterface );
|
2023-08-17 10:45:50 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|