LIEF: Library to Instrument Executable Formats Version 0.15.0
Loading...
Searching...
No Matches
langs.hpp
1/* Copyright 2017 - 2024 R. Thomas
2 * Copyright 2017 - 2024 Quarkslab
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16#ifndef LIEF_PE_RESOURCE_LANG_H
17#define LIEF_PE_RESOURCE_LANG_H
18namespace LIEF {
19namespace PE {
20
21enum class RESOURCE_LANGS {
22 NEUTRAL = 0x00,
23 INVARIANT = 0x7f,
24 AFRIKAANS = 0x36,
25 ALBANIAN = 0x1c,
26 ARABIC = 0x01,
27 ARMENIAN = 0x2b,
28 ASSAMESE = 0x4d,
29 AZERI = 0x2c,
30 BASQUE = 0x2d,
31 BELARUSIAN = 0x23,
32 BANGLA = 0x45,
33 BULGARIAN = 0x02,
34 CATALAN = 0x03,
35 CHINESE = 0x04,
36 CROATIAN = 0x1a,
37 BOSNIAN = 0x1a,
38 CZECH = 0x05,
39 DANISH = 0x06,
40 DIVEHI = 0x65,
41 DUTCH = 0x13,
42 ENGLISH = 0x09,
43 ESTONIAN = 0x25,
44 FAEROESE = 0x38,
45 FARSI = 0x29,
46 FINNISH = 0x0b,
47 FRENCH = 0x0c,
48 GALICIAN = 0x56,
49 GEORGIAN = 0x37,
50 GERMAN = 0x07,
51 GREEK = 0x08,
52 GUJARATI = 0x47,
53 HEBREW = 0x0d,
54 HINDI = 0x39,
55 HUNGARIAN = 0x0e,
56 ICELANDIC = 0x0f,
57 INDONESIAN = 0x21,
58 ITALIAN = 0x10,
59 JAPANESE = 0x11,
60 KANNADA = 0x4b,
61 KASHMIRI = 0x60,
62 KAZAK = 0x3f,
63 KONKANI = 0x57,
64 KOREAN = 0x12,
65 KYRGYZ = 0x40,
66 LATVIAN = 0x26,
67 LITHUANIAN = 0x27,
68 MACEDONIAN = 0x2f,
69 MALAY = 0x3e,
70 MALAYALAM = 0x4c,
71 MANIPURI = 0x58,
72 MARATHI = 0x4e,
73 MONGOLIAN = 0x50,
74 NEPALI = 0x61,
75 NORWEGIAN = 0x14,
76 ORIYA = 0x48,
77 POLISH = 0x15,
78 PORTUGUESE = 0x16,
79 PUNJABI = 0x46,
80 ROMANIAN = 0x18,
81 RUSSIAN = 0x19,
82 SANSKRIT = 0x4f,
83 SERBIAN = 0x1a,
84 SINDHI = 0x59,
85 SLOVAK = 0x1b,
86 SLOVENIAN = 0x24,
87 SPANISH = 0x0a,
88 SWAHILI = 0x41,
89 SWEDISH = 0x1d,
90 SYRIAC = 0x5a,
91 TAMIL = 0x49,
92 TATAR = 0x44,
93 TELUGU = 0x4a,
94 THAI = 0x1e,
95 TURKISH = 0x1f,
96 UKRAINIAN = 0x22,
97 URDU = 0x20,
98 UZBEK = 0x43,
99 VIETNAMESE = 0x2a,
100 GAELIC = 0x3c,
101 MALTESE = 0x3a,
102 MAORI = 0x28,
103 RHAETO_ROMANCE = 0x17,
104 SAMI = 0x3b,
105 SORBIAN = 0x2e,
106 SUTU = 0x30,
107 TSONGA = 0x31,
108 TSWANA = 0x32,
109 VENDA = 0x33,
110 XHOSA = 0x34,
111 ZULU = 0x35,
112 ESPERANTO = 0x8f,
113 WALON = 0x90,
114 CORNISH = 0x91,
115 WELSH = 0x92,
116 BRETON = 0x93,
117 INUKTITUT = 0x5d,
118 IRISH = 0x3C,
119 LOWER_SORBIAN = 0x2E,
120 PULAR = 0x67,
121 QUECHUA = 0x6B,
122 TAMAZIGHT = 0x5F,
123 TIGRINYA = 0x73,
124 VALENCIAN = 0x03,
125};
126
127}
128}
129#endif
LIEF namespace.
Definition Abstract/Binary.hpp:32