mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 13:09:57 +00:00
077d64bdbd
Signed-off-by: Rémi Bernon <rbernon@codeweavers.com>
153 lines
3 KiB
C
153 lines
3 KiB
C
/*
|
|
* Copyright 2021 Rémi Bernon for CodeWeavers
|
|
*
|
|
* 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
|
|
*/
|
|
|
|
#ifndef __WINEBUS_UNIXLIB_H
|
|
#define __WINEBUS_UNIXLIB_H
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <windef.h>
|
|
#include <winbase.h>
|
|
#include <winternl.h>
|
|
#include <ddk/hidclass.h>
|
|
#include <hidusage.h>
|
|
|
|
#include "wine/debug.h"
|
|
#include "wine/list.h"
|
|
|
|
struct device_desc
|
|
{
|
|
UINT vid;
|
|
UINT pid;
|
|
UINT version;
|
|
UINT input;
|
|
UINT uid;
|
|
BOOL is_gamepad;
|
|
|
|
WCHAR manufacturer[MAX_PATH];
|
|
WCHAR product[MAX_PATH];
|
|
WCHAR serialnumber[MAX_PATH];
|
|
};
|
|
|
|
struct sdl_bus_options
|
|
{
|
|
BOOL split_controllers;
|
|
BOOL map_controllers;
|
|
/* freed after bus_init */
|
|
UINT mappings_count;
|
|
char **mappings;
|
|
};
|
|
|
|
struct udev_bus_options
|
|
{
|
|
BOOL disable_hidraw;
|
|
BOOL disable_input;
|
|
BOOL disable_udevd;
|
|
};
|
|
|
|
struct iohid_bus_options
|
|
{
|
|
};
|
|
|
|
enum bus_event_type
|
|
{
|
|
BUS_EVENT_TYPE_NONE,
|
|
BUS_EVENT_TYPE_DEVICE_REMOVED,
|
|
BUS_EVENT_TYPE_DEVICE_CREATED,
|
|
BUS_EVENT_TYPE_INPUT_REPORT,
|
|
};
|
|
|
|
struct bus_event
|
|
{
|
|
UINT type;
|
|
UINT64 device;
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
struct device_desc desc;
|
|
} device_created;
|
|
|
|
struct
|
|
{
|
|
USHORT length;
|
|
BYTE buffer[1];
|
|
} input_report;
|
|
};
|
|
};
|
|
|
|
struct device_create_params
|
|
{
|
|
struct device_desc desc;
|
|
UINT64 device;
|
|
};
|
|
|
|
struct device_remove_params
|
|
{
|
|
UINT64 device;
|
|
};
|
|
|
|
struct device_start_params
|
|
{
|
|
UINT64 device;
|
|
};
|
|
|
|
struct device_descriptor_params
|
|
{
|
|
UINT64 device;
|
|
BYTE *buffer;
|
|
UINT length;
|
|
UINT *out_length;
|
|
};
|
|
|
|
struct device_report_params
|
|
{
|
|
UINT64 device;
|
|
HID_XFER_PACKET *packet;
|
|
IO_STATUS_BLOCK *io;
|
|
};
|
|
|
|
enum unix_funcs
|
|
{
|
|
sdl_init,
|
|
sdl_wait,
|
|
sdl_stop,
|
|
udev_init,
|
|
udev_wait,
|
|
udev_stop,
|
|
iohid_init,
|
|
iohid_wait,
|
|
iohid_stop,
|
|
mouse_create,
|
|
keyboard_create,
|
|
device_remove,
|
|
device_start,
|
|
device_get_report_descriptor,
|
|
device_set_output_report,
|
|
device_get_feature_report,
|
|
device_set_feature_report,
|
|
};
|
|
|
|
static inline const char *debugstr_device_desc(struct device_desc *desc)
|
|
{
|
|
if (!desc) return "(null)";
|
|
return wine_dbg_sprintf("{vid %04x, pid %04x, version %04x, input %d, uid %08x, is_gamepad %u}",
|
|
desc->vid, desc->pid, desc->version, desc->input, desc->uid, desc->is_gamepad);
|
|
}
|
|
|
|
#endif /* __WINEBUS_UNIXLIB_H */
|