2017-01-31 17:33:54 +00:00
|
|
|
|
/* RetroArch - A frontend for libretro.
|
|
|
|
|
* Copyright (C) 2011-2017 - Daniel De Matteis
|
2019-02-22 21:31:54 +00:00
|
|
|
|
* Copyright (C) 2016-2019 - Brad Parker
|
2017-01-31 17:33:54 +00:00
|
|
|
|
*
|
|
|
|
|
* RetroArch 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 Found-
|
|
|
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* RetroArch 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 RetroArch.
|
|
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
*/
|
|
|
|
|
|
2019-05-21 23:02:25 +00:00
|
|
|
|
#if defined(_MSC_VER) && !defined(_XBOX) && (_MSC_VER >= 1500 && _MSC_VER < 1900)
|
2019-05-28 11:37:14 +00:00
|
|
|
|
#if (_MSC_VER >= 1700)
|
2017-01-31 17:33:54 +00:00
|
|
|
|
/* https://support.microsoft.com/en-us/kb/980263 */
|
|
|
|
|
#pragma execution_character_set("utf-8")
|
2019-05-28 11:37:14 +00:00
|
|
|
|
#endif
|
2019-05-21 23:02:25 +00:00
|
|
|
|
#pragma warning(disable:4566)
|
2017-01-31 17:33:54 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
2017-03-05 10:54:08 +00:00
|
|
|
|
static const char *symbols_page1_grid[] = {
|
|
|
|
|
"1","2","3","4","5","6","7","8","9","0","⇦",
|
|
|
|
|
"!","\"","#","$","%","&","'","*","(",")","⏎",
|
|
|
|
|
"+",",","-","~","/",":",";","=","<",">","⇩",
|
|
|
|
|
"?","@","[","\\","]","^","_","|","{","}","⊕"};
|
|
|
|
|
|
2017-01-31 17:33:54 +00:00
|
|
|
|
static const char *uppercase_grid[] = {
|
2017-03-05 10:54:08 +00:00
|
|
|
|
"1","2","3","4","5","6","7","8","9","0","⇦",
|
2017-01-31 17:33:54 +00:00
|
|
|
|
"Q","W","E","R","T","Y","U","I","O","P","⏎",
|
2017-03-05 10:54:08 +00:00
|
|
|
|
"A","S","D","F","G","H","J","K","L","+","⇩",
|
|
|
|
|
"Z","X","C","V","B","N","M"," ","_","/","⊕"};
|
2017-01-31 17:33:54 +00:00
|
|
|
|
|
|
|
|
|
static const char *lowercase_grid[] = {
|
|
|
|
|
"1","2","3","4","5","6","7","8","9","0","⇦",
|
|
|
|
|
"q","w","e","r","t","y","u","i","o","p","⏎",
|
2017-03-05 10:54:08 +00:00
|
|
|
|
"a","s","d","f","g","h","j","k","l","@","⇧",
|
|
|
|
|
"z","x","c","v","b","n","m"," ","-",".","⊕"};
|
2017-01-31 17:33:54 +00:00
|
|
|
|
|
|
|
|
|
static const char *hiragana_page1_grid[] = {
|
|
|
|
|
"あ","い","う","え","お","ら","り","る","れ","ろ","⇦",
|
|
|
|
|
"か","き","く","け","こ","が","ぎ","ぐ","げ","ご","⏎",
|
|
|
|
|
"さ","し","す","せ","そ","ざ","じ","ず","ぜ","ぞ","⇧",
|
|
|
|
|
"た","ち","つ","て","と","だ","ぢ","づ","で","ど","⊕"};
|
|
|
|
|
|
|
|
|
|
static const char *hiragana_page2_grid[] = {
|
|
|
|
|
"な","に","ぬ","ね","の","ば","び","ぶ","べ","ぼ","⇦",
|
|
|
|
|
"は","ひ","ふ","へ","ほ","ぱ","ぴ","ぷ","ぺ","ぽ","⏎",
|
|
|
|
|
"ま","み","む","め","も","ん","っ","ゃ","ゅ","ょ","⇧",
|
|
|
|
|
"や","ゆ","よ","わ","を","ぁ","ぃ","ぅ","ぇ","ぉ","⊕"};
|
|
|
|
|
|
|
|
|
|
static const char *katakana_page1_grid[] = {
|
|
|
|
|
"ア","イ","ウ","エ","オ","ラ","リ","ル","レ","ロ","⇦",
|
|
|
|
|
"カ","キ","ク","ケ","コ","ガ","ギ","グ","ゲ","ゴ","⏎",
|
|
|
|
|
"サ","シ","ス","セ","ソ","ザ","ジ","ズ","ゼ","ゾ","⇧",
|
|
|
|
|
"タ","チ","ツ","テ","ト","ダ","ヂ","ヅ","デ","ド","⊕"};
|
|
|
|
|
|
|
|
|
|
static const char *katakana_page2_grid[] = {
|
|
|
|
|
"ナ","ニ","ヌ","ネ","ノ","バ","ビ","ブ","ベ","ボ","⇦",
|
|
|
|
|
"ハ","ヒ","フ","ヘ","ホ","パ","ピ","プ","ペ","ポ","⏎",
|
|
|
|
|
"マ","ミ","ム","メ","モ","ン","ッ","ャ","ュ","ョ","⇧",
|
C89_BUILD: Fix some clang compiler errors.
Fixes these two compile errors with C89_BUILD=1
configuration.c:2028:9: error: ISO C90 forbids mixing declarations and code [-Werror,-Wdeclaration-after-statement]
bool has_application_data =
^
1 error generated.
make: *** [Makefile:164: obj-unix/configuration.o] Error 1
In file included from menu/widgets/menu_osk.c:42:
menu/widgets/menu_osk_utf8_pages.h:62:94: error: no newline at end of file [-Werror,-Wnewline-eof]
"ヤ","ユ","ヨ","ワ","ヲ","ァ","ィ","ゥ","ェ","ォ","⊕"};
^
1 error generated.
make: *** [Makefile:163: obj-unix/menu/widgets/menu_osk.o] Error 1
2018-01-03 11:22:25 +00:00
|
|
|
|
"ヤ","ユ","ヨ","ワ","ヲ","ァ","ィ","ゥ","ェ","ォ","⊕"};
|