2020-05-30 21:26:01 +08:00
|
|
|
#pragma once
|
|
|
|
#include <Windows.h>
|
|
|
|
#include <string>
|
|
|
|
#include <filesystem>
|
2020-07-09 22:15:56 +08:00
|
|
|
#include "intel_driver.hpp"
|
2020-05-30 21:26:01 +08:00
|
|
|
|
|
|
|
namespace service
|
|
|
|
{
|
|
|
|
bool RegisterAndStart(const std::string& driver_path);
|
|
|
|
bool StopAndRemove(const std::string& driver_name);
|
|
|
|
};
|