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