aboutsummaryrefslogtreecommitdiff
path: root/source/unicode.h
diff options
context:
space:
mode:
authorNebuleon Fumika2013-01-01 21:31:25 -0500
committerNebuleon Fumika2013-01-01 21:31:25 -0500
commitc43b58481f2ef0cb44b36ff507ad12b376fdcdb0 (patch)
treec6ce6b1f52a841ea600029c3c0712a6017f249e9 /source/unicode.h
parent3cd20e203f3b0af8c32921f86547a126d74b34eb (diff)
downloadsnes9x2005-c43b58481f2ef0cb44b36ff507ad12b376fdcdb0.tar.gz
snes9x2005-c43b58481f2ef0cb44b36ff507ad12b376fdcdb0.tar.bz2
snes9x2005-c43b58481f2ef0cb44b36ff507ad12b376fdcdb0.zip
Remove unused files. This reduces the plugin's size by 214 KB.
unicode.c, unicode.h, charsets.c, charsets.h: UTF-8 is universally used in CATSFC. Drop unused support for GBK/SJIS encodings.
Diffstat (limited to 'source/unicode.h')
-rw-r--r--source/unicode.h44
1 files changed, 0 insertions, 44 deletions
diff --git a/source/unicode.h b/source/unicode.h
deleted file mode 100644
index c474f95..0000000
--- a/source/unicode.h
+++ /dev/null
@@ -1,44 +0,0 @@
-/* unofficial gameplaySP kai
- *
- * Copyright (C) 2007 NJ
- * Copyright (C) 2007 takka <takka@tfact.net>
- *
- * 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 2 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, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- */
-
-#ifndef UNICODE_H
-#define UNICODE_H
-
-// 関数宣言
-// UTF-8 -> Shift_JIS
-int utf8_to_sjis(const void *utf8_text, void *buf);
-
-// UTF-16 -> Shift_JIS
-int utf16_to_sjis(const void *utf16_text, void *buf);
-
-// Shift_JIS -> UTF-8
-int sjis_to_utf8(const void *sjis_text, void *buf);
-
-// Shift_JIS -> UTF-16LE
-int sjis_to_utf16le(const void *sjis_text, void *buf);
-
-// Shift_JIS -> UTF-16BE
-int sjis_to_utf16be(const void *sjis_text, void *buf);
-
-unsigned short sjis_to_ucs2(unsigned short sjis);
-
-int sjis_to_cut(void *buf, const void *sjis_text, int len);
-
-#endif