Remove the MIBenum stuff from the WAP code.
[metze/wireshark/wip.git] / epan / iana_charsets.h
1 /* iana_charsets.h
2  *
3  * Declarations for IANA-registered character sets
4  *
5  *    http://www.iana.org/assignments/character-sets/character-sets.xhtml
6  *
7  * Wireshark - Network traffic analyzer
8  * By Gerald Combs <gerald@wireshark.org>
9  * Copyright 1998 Gerald Combs
10  *
11  * WAP dissector based on original work by Ben Fowler
12  * Updated by Neil Hunter <neil.hunter@energis-squared.com>
13  * WTLS support by Alexandre P. Ferreira (Splice IP)
14  *
15  * This program is free software; you can redistribute it and/or
16  * modify it under the terms of the GNU General Public License
17  * as published by the Free Software Foundation; either version 2
18  * of the License, or (at your option) any later version.
19  *
20  * This program is distributed in the hope that it will be useful,
21  * but WITHOUT ANY WARRANTY; without even the implied warranty of
22  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23  * GNU General Public License for more details.
24  *
25  * You should have received a copy of the GNU General Public License
26  * along with this program; if not, write to the Free Software
27  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
28  */
29
30 #ifndef __IANA_CHARSETS_H__
31 #define __IANA_CHARSETS_H__
32
33 /* Map a MIBenum code for a charset to a Wireshark string encoding. */
34 WS_DLL_PUBLIC guint mibenum_charset_to_encoding (guint charset);
35
36 /* value_string_ext table of names for MIBenum codes */
37 WS_DLL_PUBLIC value_string_ext mibenum_vals_character_sets_ext;
38
39 #endif /* iana_charsets.h */
40