Wireshark 4.5.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
expansion.h
1/* expansion.h
2 * header field declarations, value_string def and true_false_string
3 * definitions for basic manager messages
4 * Copyright 2007 Don Newton <[email protected]>
5 *
6 * Wireshark - Network traffic analyzer
7 * By Gerald Combs <[email protected]>
8 * Copyright 1998 Gerald Combs
9 *
10 * SPDX-License-Identifier: GPL-2.0-or-later
11 */
12#ifndef UNISTIM_EXPANSION_H
13#define UNISTIM_EXPANSION_H
14
15static int hf_expansion_softlabel_number;
16
17static const value_string expansion_switch_msgs[]={
18 {0x17,"Next Display/Write command regards expansion module"},
19 {0x57,"Display Data Write"},
20 {0x59,"Icon Update"},
21 {0,NULL}
22};
23static const value_string expansion_phone_msgs[]={
24 {0x59,"Expansion Key Pressed"},
25 {0,NULL}
26};
27#endif
Definition value_string.h:25