CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
hrydgard

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: hrydgard/ppsspp
Path: blob/master/libretro/libretro_core_options_intl.h
Views: 1401
1
#ifndef LIBRETRO_CORE_OPTIONS_INTL_H__
2
#define LIBRETRO_CORE_OPTIONS_INTL_H__
3
4
#if defined(_MSC_VER) && (_MSC_VER >= 1500 && _MSC_VER < 1900)
5
/* https://support.microsoft.com/en-us/kb/980263 */
6
#pragma execution_character_set("utf-8")
7
#pragma warning(disable:4566)
8
#endif
9
10
#include "libretro.h"
11
12
/*
13
********************************
14
* VERSION: 2.0
15
********************************
16
*
17
* - 2.0: Add support for core options v2 interface
18
* - 1.3: Move translations to libretro_core_options_intl.h
19
* - libretro_core_options_intl.h includes BOM and utf-8
20
* fix for MSVC 2010-2013
21
* - Added HAVE_NO_LANGEXTRA flag to disable translations
22
* on platforms/compilers without BOM support
23
* - 1.2: Use core options v1 interface when
24
* RETRO_ENVIRONMENT_GET_CORE_OPTIONS_VERSION is >= 1
25
* (previously required RETRO_ENVIRONMENT_GET_CORE_OPTIONS_VERSION == 1)
26
* - 1.1: Support generation of core options v0 retro_core_option_value
27
* arrays containing options with a single value
28
* - 1.0: First commit
29
*/
30
31
#ifdef __cplusplus
32
extern "C" {
33
#endif
34
35
/*
36
********************************
37
* Core Option Definitions
38
********************************
39
*/
40
41
/* RETRO_LANGUAGE_JAPANESE */
42
43
/* RETRO_LANGUAGE_FRENCH */
44
45
/* RETRO_LANGUAGE_SPANISH */
46
47
/* RETRO_LANGUAGE_GERMAN */
48
49
/* RETRO_LANGUAGE_ITALIAN */
50
51
/* RETRO_LANGUAGE_DUTCH */
52
53
/* RETRO_LANGUAGE_PORTUGUESE_BRAZIL */
54
55
/* RETRO_LANGUAGE_PORTUGUESE_PORTUGAL */
56
57
/* RETRO_LANGUAGE_RUSSIAN */
58
59
/* RETRO_LANGUAGE_KOREAN */
60
61
/* RETRO_LANGUAGE_CHINESE_TRADITIONAL */
62
63
/* RETRO_LANGUAGE_CHINESE_SIMPLIFIED */
64
65
/* RETRO_LANGUAGE_ESPERANTO */
66
67
/* RETRO_LANGUAGE_POLISH */
68
69
/* RETRO_LANGUAGE_VIETNAMESE */
70
71
/* RETRO_LANGUAGE_ARABIC */
72
73
/* RETRO_LANGUAGE_GREEK */
74
75
/* RETRO_LANGUAGE_TURKISH */
76
77
/* RETRO_LANGUAGE_SLOVAK */
78
79
/* RETRO_LANGUAGE_PERSIAN */
80
81
/* RETRO_LANGUAGE_HEBREW */
82
83
/* RETRO_LANGUAGE_ASTURIAN */
84
85
/* RETRO_LANGUAGE_FINNISH */
86
87
#ifdef __cplusplus
88
}
89
#endif
90
91
#endif
92
93