aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/um/service/src/service_manager.cpp
blob: 48c6bfe8d223af2390f3c6f270c8704ddd3c51c3 (plain) (tree)
1
2
3
4
5
6
7
8
9



                                                                    
 
                          


                    
                 


                                         
                                                                          



                                           
                                                                            

         
                                  
     
 
// 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);
    }
}