kdmapper-1803-20H2/kdmapper/service.hpp

10 lines
215 B
C++
Raw Normal View History

2020-05-30 21:26:01 +08:00
#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);
};