aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/pdb/handle.hpp
blob: 319a581cc512cb085fb1ef599897da35bdb6ea77 (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
25
26
27
28
29
// Copyright (c) 2017 Egor Tensin <Egor.Tensin@gmail.com>
// This file is part of the "winapi-debug" project.
// For details, see https://github.com/egor-tensin/winapi-debug.
// Distributed under the MIT License.

#pragma once

#include "workarounds.hpp"

#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);
        PDB_UNUSED_PARAMETER(ret);
    }
};

typedef std::unique_ptr<void, CloseHandle> Handle;

} // namespace pdb