10 lines
215 B
C++
10 lines
215 B
C++
|
#pragma once
|
||
|
#include <Windows.h>
|
||
|
#include <string>
|
||
|
#include <filesystem>
|
||
|
|
||
|
namespace service
|
||
|
{
|
||
|
bool RegisterAndStart(const std::string& driver_path);
|
||
|
bool StopAndRemove(const std::string& driver_name);
|
||
|
};
|