mirror-ac/user/km/driver.cpp
2023-08-18 15:33:13 +10:00

7 lines
198 B
C++

#include "driver.h"
kernelmode::Driver::Driver(LPCWSTR DriverName, std::shared_ptr<global::Report> ReportInterface )
{
this->driver_name = DriverName;
this->report_interface = ReportInterface;
}