/* * This program is free software: you can redistribute it and/or modify it under * the terms of the GNU General Public License as published by the Free Software * Foundation, either version 3 of the License, or (at your option) any later * version. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more * details. * * You should have received a copy of the GNU General Public License along with * this program. If not, see . */ package com.l2jserver.util.osnative; /** * This class contains console code pages * @author mrTJO */ public final class CodePage { public static final int CP_OEM_US = 437; public static final int CP_OEM_ARABIC = 720; public static final int CP_OEM_GREEK = 737; public static final int CP_OEM_BALTIC = 775; public static final int CP_OEM_LATIN_I = 850; public static final int CP_OEM_LATIN_II = 852; public static final int CP_OEM_CYRILLIC = 855; public static final int CP_OEM_TURKISH = 857; public static final int CP_OEM_LATIN_EU = 858; public static final int CP_OEM_HEBREW = 862; public static final int CP_OEM_RUSSIAN = 866; public static final int CP_THAI = 874; public static final int CP_JAPANESE = 932; public static final int CP_SIMPL_CHINESE = 936; public static final int CP_KOREAN = 949; public static final int CP_TRAD_CHINESE = 950; public static final int CP_CENTRAL_EU = 1250; public static final int CP_CYRILLIC = 1251; public static final int CP_LATIN_I = 1252; public static final int CP_GREEK = 1253; public static final int CP_TURKISH = 1254; public static final int CP_HEBREW = 1255; public static final int CP_ARABIC = 1256; public static final int CP_BALTIC = 1257; public static final int CP_VIETNAM = 1258; public static final int CP_UTF7 = 65000; public static final int CP_UTF8 = 65001; }