git subrepo clone https://github.com/libretro/libretro-common.git deps/libretro-common
[pcsx_rearmed.git] / deps / libretro-common / samples / core_options / example_hide_option / libretro_core_options_intl.h
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: 1.3
15  ********************************
16  *
17  * - 1.3: Move translations to libretro_core_options_intl.h
18  *        - libretro_core_options_intl.h includes BOM and utf-8
19  *          fix for MSVC 2010-2013
20  *        - Added HAVE_NO_LANGEXTRA flag to disable translations
21  *          on platforms/compilers without BOM support
22  * - 1.2: Use core options v1 interface when
23  *        RETRO_ENVIRONMENT_GET_CORE_OPTIONS_VERSION is >= 1
24  *        (previously required RETRO_ENVIRONMENT_GET_CORE_OPTIONS_VERSION == 1)
25  * - 1.1: Support generation of core options v0 retro_core_option_value
26  *        arrays containing options with a single value
27  * - 1.0: First commit
28 */
29
30 #ifdef __cplusplus
31 extern "C" {
32 #endif
33
34 /*
35  ********************************
36  * Core Option Definitions
37  ********************************
38 */
39
40 /* RETRO_LANGUAGE_JAPANESE */
41
42 /* RETRO_LANGUAGE_FRENCH */
43
44 /* RETRO_LANGUAGE_SPANISH */
45
46 /* RETRO_LANGUAGE_GERMAN */
47
48 /* RETRO_LANGUAGE_ITALIAN */
49
50 /* RETRO_LANGUAGE_DUTCH */
51
52 /* RETRO_LANGUAGE_PORTUGUESE_BRAZIL */
53
54 /* RETRO_LANGUAGE_PORTUGUESE_PORTUGAL */
55
56 /* RETRO_LANGUAGE_RUSSIAN */
57
58 /* RETRO_LANGUAGE_KOREAN */
59
60 /* RETRO_LANGUAGE_CHINESE_TRADITIONAL */
61
62 /* RETRO_LANGUAGE_CHINESE_SIMPLIFIED */
63
64 /* RETRO_LANGUAGE_ESPERANTO */
65
66 /* RETRO_LANGUAGE_POLISH */
67
68 /* RETRO_LANGUAGE_VIETNAMESE */
69
70 /* RETRO_LANGUAGE_ARABIC */
71
72 /* RETRO_LANGUAGE_GREEK */
73
74 /* RETRO_LANGUAGE_TURKISH */
75
76 /* RETRO_LANGUAGE_SLOVAK */
77
78 /* RETRO_LANGUAGE_PERSIAN */
79
80 /* RETRO_LANGUAGE_HEBREW */
81
82 /* RETRO_LANGUAGE_ASTURIAN */
83
84 /* RETRO_LANGUAGE_FINNISH */
85
86 #ifdef __cplusplus
87 }
88 #endif
89
90 #endif