blob: a504664f129350a459f1a744665138af842877ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* packet-usb-hid.h
*
* USB HID dissector
* By Adam Nielsen <a.nielsen@shikadi.net> 2009
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef __PACKET_USB_HID_H__
#define __PACKET_USB_HID_H__
int
dissect_usb_hid_get_report_descriptor(packet_info *pinfo _U_, proto_tree *parent_tree, tvbuff_t *tvb, int offset, usb_conv_info_t *usb_conv_info _U_);
#endif
|