~cyphermox/+junk/bluez-debug

« back to all changes in this revision

Viewing changes to input/device.h

  • Committer: Package Import Robot
  • Author(s): Robert Ancell
  • Date: 2012-07-04 13:28:49 UTC
  • mfrom: (1.1.38)
  • Revision ID: package-import@ubuntu.com-20120704132849-tmwu1x7p2vxcclt1
Tags: 4.101-0ubuntu1
* New upstream release
* debian/libbluetooth3.symbols:
  - Updated
* debian/patches/10-unregister_interface_on_exit.patch:
* debian/patches/11-explicitly_close.patch:
* debian/patches/python3.patch:
  - Applied upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 *
22
22
 */
23
23
 
24
 
#define HSP_HS_UUID             "00001108-0000-1000-8000-00805F9B34FB"
25
 
#define HID_UUID                "00001124-0000-1000-8000-00805f9b34fb"
26
 
 
27
24
#define L2CAP_PSM_HIDP_CTRL     0x11
28
25
#define L2CAP_PSM_HIDP_INTR     0x13
29
26
 
43
40
};
44
41
 
45
42
int fake_input_register(DBusConnection *conn, struct btd_device *device,
46
 
                        const char *path, bdaddr_t *src, bdaddr_t *dst,
47
 
                        const char *uuid, uint8_t channel);
 
43
                        const char *path, const char *uuid, uint8_t channel);
48
44
int input_device_register(DBusConnection *conn, struct btd_device *device,
49
 
                        const char *path, const bdaddr_t *src,
50
 
                        const bdaddr_t *dst, const char *uuid,
51
 
                        uint32_t handle, int timeout);
 
45
                                        const char *path, const char *uuid,
 
46
                                        const sdp_record_t *rec, int timeout);
52
47
int input_device_unregister(const char *path, const char *uuid);
53
48
 
54
49
int input_device_set_channel(const bdaddr_t *src, const bdaddr_t *dst, int psm,