2019-05-21 18:02:25 -05:00
|
|
|
|
/* RetroArch - A frontend for Libretro.
|
2017-01-22 13:40:32 +01:00
|
|
|
|
* Copyright (C) 2011-2017 - Daniel De Matteis
|
2019-02-22 16:31:54 -05:00
|
|
|
|
* Copyright (C) 2016-2019 - Brad Parker
|
2017-10-29 18:52:55 +01:00
|
|
|
|
* Translation currently maintained by Lothar Serra Mari [rootfather]
|
2015-07-01 01:42:04 +02: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/>.
|
|
|
|
|
*/
|
|
|
|
|
|
2017-04-29 13:20:50 +02:00
|
|
|
|
#include <stdio.h>
|
2016-06-20 00:31:13 +02:00
|
|
|
|
#include <stdint.h>
|
2017-02-05 16:12:06 +01:00
|
|
|
|
#include <stddef.h>
|
2016-06-20 00:31:13 +02:00
|
|
|
|
|
|
|
|
|
#include <compat/strl.h>
|
2016-07-24 12:36:02 +02:00
|
|
|
|
#include <string/stdstring.h>
|
2016-06-20 00:31:13 +02:00
|
|
|
|
|
2015-07-01 01:42:04 +02:00
|
|
|
|
#include "../msg_hash.h"
|
2016-06-20 03:35:09 +02:00
|
|
|
|
#include "../configuration.h"
|
2017-02-05 16:12:06 +01:00
|
|
|
|
#include "../verbosity.h"
|
2016-06-20 03:35:09 +02:00
|
|
|
|
|
2019-05-21 18:02:25 -05:00
|
|
|
|
#if defined(_MSC_VER) && !defined(_XBOX) && (_MSC_VER >= 1500 && _MSC_VER < 1900)
|
|
|
|
|
/* https://support.microsoft.com/en-us/kb/980263 */
|
2019-05-28 13:37:14 +02:00
|
|
|
|
#if (_MSC_VER >= 1700)
|
2019-05-21 18:02:25 -05:00
|
|
|
|
#pragma execution_character_set("utf-8")
|
2019-05-28 13:37:14 +02:00
|
|
|
|
#endif
|
2019-05-21 18:02:25 -05:00
|
|
|
|
#pragma warning(disable:4566)
|
|
|
|
|
#endif
|
|
|
|
|
|
2020-06-12 08:06:30 +02:00
|
|
|
|
int msg_hash_get_help_de_enum(enum msg_hash_enums msg, char *s, size_t len)
|
2016-07-24 11:59:24 +02:00
|
|
|
|
{
|
2023-01-19 11:32:10 +01:00
|
|
|
|
int ret = 0;
|
2017-02-05 16:12:06 +01:00
|
|
|
|
|
2016-07-24 11:59:24 +02:00
|
|
|
|
switch (msg)
|
|
|
|
|
{
|
2023-01-19 11:32:10 +01:00
|
|
|
|
case MSG_UNKNOWN:
|
2017-02-05 16:12:06 +01:00
|
|
|
|
default:
|
2023-01-19 11:32:10 +01:00
|
|
|
|
ret = -1;
|
2017-02-05 16:12:06 +01:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-19 11:32:10 +01:00
|
|
|
|
return ret;
|
2017-02-05 16:12:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
2016-06-14 15:04:49 +02:00
|
|
|
|
const char *msg_hash_to_str_de(enum msg_hash_enums msg)
|
2015-07-01 01:42:04 +02:00
|
|
|
|
{
|
2016-06-14 15:04:49 +02:00
|
|
|
|
switch (msg)
|
2015-07-01 01:42:04 +02:00
|
|
|
|
{
|
2016-11-28 00:44:15 +01:00
|
|
|
|
#include "msg_hash_de.h"
|
2015-07-01 01:42:04 +02:00
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
2016-10-02 19:51:30 +02:00
|
|
|
|
|
2015-07-01 01:42:04 +02:00
|
|
|
|
return "null";
|
|
|
|
|
}
|