Wireshark  4.3.0
The Wireshark network protocol analyzer
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 <dnewton@cypresscom.net>
5  *
6  * Wireshark - Network traffic analyzer
7  * By Gerald Combs <gerald@wireshark.org>
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 
15 static int hf_expansion_softlabel_number;
16 
17 static 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 };
23 static const value_string expansion_phone_msgs[]={
24  {0x59,"Expansion Key Pressed"},
25  {0,NULL}
26 };
27 #endif
Definition: value_string.h:26