Trying to sort out our interop nicely.
2 // Copyright (C) 2014-2015 Stéphane Lenclud.
4 // This file is part of MiniDisplay.
6 // MiniDisplay is free software: you can redistribute it and/or modify
7 // it under the terms of the GNU General Public License as published by
8 // the Free Software Foundation, either version 3 of the License, or
9 // (at your option) any later version.
11 // MiniDisplay is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License
17 // along with MiniDisplay. If not, see <http://www.gnu.org/licenses/>.
23 #include "HidReport.h"
26 const int KMaxHidStringChar=256;
29 TODO: move to another header
37 int Open(const char* aPath);
38 int Open(unsigned short aVendorId, unsigned short aProductId, const wchar_t* aSerialNumber);
42 int SetNonBlocking(int aNonBlocking);
45 int Read(HidReport<S>& aInputReport);
48 int Write(const HidReport<S>& aOutputReport);
50 const wchar_t* Error();
54 wchar_t* SerialNumber();
61 hid_device* iHidDevice;
63 wchar_t iVendor[KMaxHidStringChar];
64 wchar_t iProduct[KMaxHidStringChar];
65 wchar_t iSerialNumber[KMaxHidStringChar];
72 int HidDevice::Write(const HidReport<S>& aOutputReport)
74 return hid_write(iHidDevice,aOutputReport.Buffer(),S);
80 int HidDevice::Read(HidReport<S>& aInputReport)
82 return hid_read(iHidDevice,aInputReport.Buffer(),S);