summaryrefslogtreecommitdiffstats
path: root/remoting/base/scoped_sc_handle_win.h
blob: da623ad556feba55f5fe2c2d3275ace10397bd76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef REMOTING_BASE_SCOPED_SC_HANDLE_WIN_H_
#define REMOTING_BASE_SCOPED_SC_HANDLE_WIN_H_

#include <windows.h>

#include "base/basictypes.h"
#include "base/logging.h"

namespace remoting {

// Used so we always remember to close service control manager handles.
// The class interface matches that of base::win::ScopedHandle.
class ScopedScHandle {
 public:
  ScopedScHandle();
  explicit ScopedScHandle(SC_HANDLE h);
  ~ScopedScHandle();

  SC_HANDLE Get() {
    return handle_;
  }

  operator SC_HANDLE() {
    return handle_;
  }

  void Close();
  bool IsValid() const;
  void Set(SC_HANDLE new_handle);
  SC_HANDLE Take();

 private:
  SC_HANDLE handle_;
  DISALLOW_COPY_AND_ASSIGN(ScopedScHandle);
};

}  // namespace remoting

#endif  // REMOTING_BASE_SCOPED_SC_HANDLE_WIN_H_