2016-09-08 10:12:50 +02:00
|
|
|
/*
|
|
|
|
* Copyright 2016 Aric Stewart
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
2021-08-12 10:26:58 +02:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
#include <windef.h>
|
|
|
|
#include <winbase.h>
|
|
|
|
#include <winternl.h>
|
|
|
|
#include <ddk/wdm.h>
|
2021-08-18 09:14:22 +02:00
|
|
|
#include <ddk/hidclass.h>
|
2021-08-12 10:26:58 +02:00
|
|
|
#include <hidusage.h>
|
|
|
|
|
2021-08-30 11:22:55 +02:00
|
|
|
#include "unixlib.h"
|
|
|
|
|
2021-08-23 10:49:41 +02:00
|
|
|
struct unix_device *get_unix_device(DEVICE_OBJECT *device) DECLSPEC_HIDDEN;
|
2016-10-03 13:29:49 +02:00
|
|
|
|
2016-09-08 10:12:50 +02:00
|
|
|
/* HID Plug and Play Bus */
|
2021-08-16 08:56:19 +02:00
|
|
|
DEVICE_OBJECT *bus_find_hid_device(const WCHAR *bus_id, void *platform_dev) DECLSPEC_HIDDEN;
|
2016-10-26 17:49:41 +02:00
|
|
|
void process_hid_report(DEVICE_OBJECT *device, BYTE *report, DWORD length) DECLSPEC_HIDDEN;
|
2018-02-01 18:36:04 +01:00
|
|
|
|
|
|
|
/* General Bus Functions */
|
2018-02-14 19:24:27 +01:00
|
|
|
BOOL is_xbox_gamepad(WORD vid, WORD pid) DECLSPEC_HIDDEN;
|
2019-05-30 06:02:29 +02:00
|
|
|
|
2020-01-24 00:05:29 +01:00
|
|
|
extern HANDLE driver_key DECLSPEC_HIDDEN;
|