Fix build by #if 0 out unused de_sgsap_tmsi() function.
[obnox/wireshark/wip.git] / gtk / proto_help.h
1 /* proto_help.h
2  * Routines for dynamic protocol help menus
3  *
4  * $Id$
5  *
6  * Edgar Gladkich <edgar.gladkich@incacon.de>
7  * Gerald Combs <gerald@wireshark.org>
8  *
9  * Wireshark - Network traffic analyzer
10  * By Gerald Combs <gerald@wireshark.org>
11  * Copyright 1998 Gerald Combs
12  *
13  * This program is free software; you can redistribute it and/or
14  * modify it under the terms of the GNU General Public License
15  * as published by the Free Software Foundation; either version 2
16  * of the License, or (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software
25  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
26  */
27
28 #ifndef __PROTO_HELP_H__
29 #define __PROTO_HELP_H__
30
31 /** Search for and read configuration files
32  *
33  */
34 extern void proto_help_init(void);
35
36 /** Initialize the menu
37  *
38  * @param widget Context menu root
39  * @return void
40  */
41 extern void proto_help_menu_init(GtkWidget *widget);
42
43 /** Fill in the protocol help menu
44  *
45  * @param selection Currently-selected packet
46  * @param cfile Capture file
47  * @return void
48  */
49 extern void proto_help_menu_modify(GtkTreeSelection* selection, capture_file *cfile);
50
51 #endif /* __PROTO_HELP_H__ */