1 /* $NetBSD: hid.h,v 1.11 2006/07/26 10:40:50 tron Exp $ */
2 /* $FreeBSD: src/sys/dev/usb/hid.h,v 1.7 1999/11/17 22:33:40 n_hibma Exp $ */
5 * Copyright (c) 1998 The NetBSD Foundation, Inc.
8 * This code is derived from software contributed to The NetBSD Foundation
9 * by Lennart Augustsson (lennart@augustsson.net) at
10 * Carlstedt Research & Technology.
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions and the following disclaimer.
17 * 2. Redistributions in binary form must reproduce the above copyright
18 * notice, this list of conditions and the following disclaimer in the
19 * documentation and/or other materials provided with the distribution.
21 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
22 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
23 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
24 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
25 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE.
52 int32_t logical_minimum
;
53 int32_t logical_maximum
;
54 int32_t physical_minimum
;
55 int32_t physical_maximum
;
56 int32_t unit_exponent
;
61 int32_t usage_minimum
;
62 int32_t usage_maximum
;
63 int32_t designator_index
;
64 int32_t designator_minimum
;
65 int32_t designator_maximum
;
67 int32_t string_minimum
;
68 int32_t string_maximum
;
69 int32_t set_delimiter
;
76 struct hid_location loc
;
78 struct hid_item
*next
;
81 struct hid_data
*hid_start_parse(const void *, int, enum hid_kind
);
82 void hid_end_parse(struct hid_data
*);
83 int hid_get_item(struct hid_data
*, struct hid_item
*);
84 int hid_report_size(const void *, int, enum hid_kind
, u_int8_t
);
85 int hid_locate(const void *, int, u_int32_t
, u_int8_t
, enum hid_kind
,
86 struct hid_location
*, u_int32_t
*);
87 u_long
hid_get_data(u_char
*, struct hid_location
*);
88 int hid_is_collection(const void *, int, u_int8_t
, u_int32_t
);