mirror-ac/user/km/driver.cpp

8 lines
198 B
C++
Raw Normal View History

2023-08-17 10:45:50 +02:00
#include "driver.h"
2023-08-18 07:33:13 +02:00
kernelmode::Driver::Driver(LPCWSTR DriverName, std::shared_ptr<global::Report> ReportInterface )
2023-08-17 10:45:50 +02:00
{
this->driver_name = DriverName;
2023-08-18 07:33:13 +02:00
this->report_interface = ReportInterface;
2023-08-17 10:45:50 +02:00
}