aboutsummaryrefslogtreecommitdiffstats
path: root/epan/charsets.h
diff options
context:
space:
mode:
authorkanidef <nideff.ru@gmail.com>2019-01-03 10:07:02 +0300
committerGuy Harris <guy@alum.mit.edu>2019-01-04 23:37:17 +0000
commit5fa9257704eae2e768596c9240a9a62bd96e02de (patch)
tree7e848df669a5274e036860e5eb8ee0a335987641 /epan/charsets.h
parent340ad1793b08faa4bfe79fcd2bba80ce68513d42 (diff)
add encoding windows 1251, cp855, cp866
Change-Id: I0e8507cf63d89942167ca579ef304bc3d679346e Reviewed-on: https://code.wireshark.org/review/31316 Petri-Dish: Peter Wu <peter@lekensteyn.nl> Tested-by: Petri Dish Buildbot Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'epan/charsets.h')
-rw-r--r--epan/charsets.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/epan/charsets.h b/epan/charsets.h
index 524c316660..39c469172a 100644
--- a/epan/charsets.h
+++ b/epan/charsets.h
@@ -24,6 +24,8 @@ extern "C" {
/* Table for windows-1250 */
extern const gunichar2 charset_table_cp1250[0x80];
+/* Table for windows-1251 */
+extern const gunichar2 charset_table_cp1251[0x80];
/* Tables for ISO-8859-X */
extern const gunichar2 charset_table_iso_8859_2[0x80];
@@ -46,6 +48,9 @@ extern const gunichar2 charset_table_mac_roman[0x80];
/* Tables for DOS code pages */
extern const gunichar2 charset_table_cp437[0x80];
+extern const gunichar2 charset_table_cp855[0x80];
+extern const gunichar2 charset_table_cp866[0x80];
+
/* Tables for EBCDIC code pages */
extern const gunichar2 charset_table_ebcdic[256];