blob: 48c6bfe8d223af2390f3c6f270c8704ddd3c51c3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
// Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
// This file is part of the "Windows 7 drivers" project.
// For details, see https://github.com/egor-tensin/windows7-drivers.
// Distributed under the MIT License.
#include "service/all.hpp"
#include <Windows.h>
namespace service
{
ServiceManager ServiceManager::open()
{
const auto raw = OpenSCManager(NULL, NULL, SC_MANAGER_ALL_ACCESS);
if (NULL == raw)
{
const auto ec = GetLastError();
throw windows_error::make(ec, __FILE__, __LINE__, __FUNCTION__);
}
return ServiceHandle(raw);
}
}
|