aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/pdb/handle.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/pdb/handle.hpp')
-rw-r--r--include/pdb/handle.hpp29
1 files changed, 29 insertions, 0 deletions
diff --git a/include/pdb/handle.hpp b/include/pdb/handle.hpp
new file mode 100644
index 0000000..52fb805
--- /dev/null
+++ b/include/pdb/handle.hpp
@@ -0,0 +1,29 @@
+// Copyright (c) 2017 Egor Tensin <Egor.Tensin@gmail.com>
+// This file is part of the "PDB repository" project.
+// For details, see https://github.com/egor-tensin/pdb-repo.
+// Distributed under the MIT License.
+
+#pragma once
+
+#include <Windows.h>
+
+#include <cassert>
+
+#include <memory>
+
+namespace pdb
+{
+ struct CloseHandle
+ {
+ void operator()(HANDLE raw) const
+ {
+ if (raw == NULL || raw == INVALID_HANDLE_VALUE)
+ return;
+ const auto ret = ::CloseHandle(raw);
+ assert(ret);
+ UNREFERENCED_PARAMETER(ret);
+ }
+ };
+
+ typedef std::unique_ptr<void, CloseHandle> Handle;
+}