1#include <windef.h>
2#include <winuser.h>
3
4#include "resource.h"
5
6#define REACTOS_STR_FILE_DESCRIPTION  "ReactOS Multimedia Player"
7#define REACTOS_STR_INTERNAL_NAME     "mplay32"
8#define REACTOS_STR_ORIGINAL_FILENAME "mplay32.exe"
9#include <reactos/version.rc>
10
11LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
12
13/* Icons */
14IDI_MAIN ICON "resources/mplay32.ico"
15
16/* Bitmaps */
17IDB_PLAYICON BITMAP "resources/play.bmp"
18IDB_STOPICON BITMAP "resources/stop.bmp"
19IDB_EJECTICON BITMAP "resources/eject.bmp"
20IDB_BACKWARDICON BITMAP "resources/backward.bmp"
21IDB_SEEKBACKICON BITMAP "resources/seekback.bmp"
22IDB_SEEKFORWICON BITMAP "resources/seekforw.bmp"
23IDB_FORWARDICON BITMAP "resources/forward.bmp"
24IDB_PAUSEICON BITMAP "resources/pause.bmp"
25
26#include <reactos/manifest_exe.rc>
27
28/* UTF-8 */
29#pragma code_page(65001)
30
31#ifdef LANGUAGE_BG_BG
32    #include "lang/bg-BG.rc"
33#endif
34#ifdef LANGUAGE_CS_CZ
35    #include "lang/cs-CZ.rc"
36#endif
37#ifdef LANGUAGE_DE_DE
38    #include "lang/de-DE.rc"
39#endif
40#ifdef LANGUAGE_EN_US
41    #include "lang/en-US.rc"
42#endif
43#ifdef LANGUAGE_ES_ES
44    #include "lang/es-ES.rc"
45#endif
46#ifdef LANGUAGE_FR_FR
47    #include "lang/fr-FR.rc"
48#endif
49#ifdef LANGUAGE_HE_IL
50    #include "lang/he-IL.rc"
51#endif
52#ifdef LANGUAGE_IT_IT
53    #include "lang/it-IT.rc"
54#endif
55#ifdef LANGUAGE_NL_NL
56    #include "lang/nl-NL.rc"
57#endif
58#ifdef LANGUAGE_JA_JP
59    #include "lang/ja-JP.rc"
60#endif
61#ifdef LANGUAGE_NB_NO
62    #include "lang/no-NO.rc"
63#endif
64#ifdef LANGUAGE_PL_PL
65    #include "lang/pl-PL.rc"
66#endif
67#ifdef LANGUAGE_PT_BR
68    #include "lang/pt-BR.rc"
69#endif
70#ifdef LANGUAGE_RO_RO
71    #include "lang/ro-RO.rc"
72#endif
73#ifdef LANGUAGE_RU_RU
74    #include "lang/ru-RU.rc"
75#endif
76#ifdef LANGUAGE_SK_SK
77    #include "lang/sk-SK.rc"
78#endif
79#ifdef LANGUAGE_SQ_AL
80    #include "lang/sq-AL.rc"
81#endif
82#ifdef LANGUAGE_SV_SE
83    #include "lang/sv-SE.rc"
84#endif
85#ifdef LANGUAGE_TR_TR
86    #include "lang/tr-TR.rc"
87#endif
88#ifdef LANGUAGE_UK_UA
89    #include "lang/uk-UA.rc"
90#endif
91#ifdef LANGUAGE_ZH_CN
92    #include "lang/zh-CN.rc"
93#endif
94#ifdef LANGUAGE_ZH_TW
95    #include "lang/zh-TW.rc"
96#endif
97