blob: 37a3a0f765a73208130a2e86db3fc70adf143299 (
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
|
// Copyright 2020 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 BASE_WIN_SCOPED_DEVINFO_H_
#define BASE_WIN_SCOPED_DEVINFO_H_
#include <setupapi.h>
#include "base/scoped_generic.h"
namespace base {
namespace win {
struct DevInfoScopedTraits {
static HDEVINFO InvalidValue() { return INVALID_HANDLE_VALUE; }
static void Free(HDEVINFO h) { SetupDiDestroyDeviceInfoList(h); }
};
using ScopedDevInfo = base::ScopedGeneric<HDEVINFO, DevInfoScopedTraits>;
} // namespace win
} // namespace base
#endif // BASE_WIN_SCOPED_DEVINFO_H_
|