forked from Pissandshittium/pissandshittium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhid_preparsed_data.h
50 lines (37 loc) · 1.45 KB
/
hid_preparsed_data.h
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
44
45
46
47
48
49
50
// 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 SERVICES_DEVICE_HID_HID_PREPARSED_DATA_H_
#define SERVICES_DEVICE_HID_HID_PREPARSED_DATA_H_
#include <windows.h>
// NOTE: <hidsdi.h> must be included before <hidpi.h>. clang-format will want to
// reorder them.
// clang-format off
extern "C" {
#include <hidsdi.h>
#include <hidpi.h>
}
// clang-format on
#include <memory>
#include <vector>
#include "services/device/hid/hid_service_win.h"
namespace device {
class HidPreparsedData : public HidServiceWin::PreparsedData {
public:
// Return a HidPreparsedData constructed from an open |device_handle|, or
// nullptr if the handle is invalid or the device data could not be read.
static std::unique_ptr<HidPreparsedData> Create(HANDLE device_handle);
HidPreparsedData(const HidPreparsedData&) = delete;
HidPreparsedData& operator=(const HidPreparsedData&) = delete;
~HidPreparsedData() override;
// HidServiceWin::PreparsedData implementation.
const HIDP_CAPS& GetCaps() const override;
std::vector<ReportItem> GetReportItems(
HIDP_REPORT_TYPE report_type) const override;
private:
HidPreparsedData(PHIDP_PREPARSED_DATA preparsed_data, HIDP_CAPS capabilities);
const PHIDP_PREPARSED_DATA preparsed_data_;
const HIDP_CAPS capabilities_;
};
} // namespace device
#endif // SERVICES_DEVICE_HID_HID_PREPARSED_DATA_H_