RetroArch/intl/msg_hash_de.c

63 lines
1.6 KiB
C
Raw Normal View History

/* 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
* 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>
#include <stdint.h>
2017-02-05 16:12:06 +01:00
#include <stddef.h>
#include <compat/strl.h>
#include <string/stdstring.h>
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
#if defined(_MSC_VER) && !defined(_XBOX) && (_MSC_VER >= 1500 && _MSC_VER < 1900)
/* https://support.microsoft.com/en-us/kb/980263 */
#if (_MSC_VER >= 1700)
#pragma execution_character_set("utf-8")
#endif
#pragma warning(disable:4566)
#endif
int msg_hash_get_help_de_enum(enum msg_hash_enums msg, char *s, size_t len)
{
int ret = 0;
2017-02-05 16:12:06 +01:00
switch (msg)
{
case MSG_UNKNOWN:
2017-02-05 16:12:06 +01:00
default:
ret = -1;
2017-02-05 16:12:06 +01:00
break;
}
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";
}