From 763087507a0b8e3df8b186c74ec35036e313b8a3 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Fri, 14 Mar 2008 19:50:56 +0000 Subject: Add missing fakehid.[ch] files --- input/fakehid.h | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 input/fakehid.h (limited to 'input/fakehid.h') diff --git a/input/fakehid.h b/input/fakehid.h new file mode 100644 index 00000000..3bc2f3d6 --- /dev/null +++ b/input/fakehid.h @@ -0,0 +1,39 @@ +/* + * + * BlueZ - Bluetooth protocol stack for Linux + * + * Copyright (C) 2004-2008 Marcel Holtmann + * + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * + */ + +struct fake_hid; +struct fake_input; + +struct fake_hid { + uint16_t vendor; + uint16_t product; + gboolean (*connect) (struct fake_input *fake_input); + int (*disconnect) (struct fake_input *fake_input); + gboolean (*event) (GIOChannel *chan, GIOCondition cond, gpointer data); + int (*setup_uinput) (struct fake_input *fake, struct fake_hid *fake_hid); +}; + +struct fake_hid *get_fake_hid(uint16_t vendor, uint16_t product); + +int fake_hid_connadd(struct fake_input *fake, int intr_sk, + struct fake_hid *fake_hid); -- cgit