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

11 lines
244 B
C++

#pragma once
#include <Windows.h>
#include <string>
#include <filesystem>
#include "intel_driver.hpp"
namespace service
{
bool RegisterAndStart(const std::string& driver_path);
bool StopAndRemove(const std::string& driver_name);
};