xref: /reactos/dll/shellext/cabview/cabview.rc (revision 63bb46a2)
1/*
2 * PROJECT:     ReactOS CabView Shell Extension
3 * LICENSE:     GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
4 * PURPOSE:     Main resource file
5 * COPYRIGHT:   Copyright 2024 Whindmar Saksit <whindsaks@proton.me>
6 */
7
8#include <windef.h>
9#include <winuser.h>
10
11#include "resource.h"
12
13IDI_FOLDER ICON "res/folder.ico"
14
15#define REACTOS_VERSION_DLL
16#define REACTOS_STR_FILE_DESCRIPTION  "ReactOS Cabinet Shell Extension"
17#define REACTOS_STR_INTERNAL_NAME     "cabview"
18#define REACTOS_STR_ORIGINAL_FILENAME "cabview.dll"
19#include <reactos/version.rc>
20
21#include <reactos/manifest_dll.rc>
22
23IDR_FOLDER REGISTRY "res/cabview.rgs"
24
25/* UTF-8 */
26#pragma code_page(65001)
27
28#ifdef LANGUAGE_DE_DE
29    #include "lang/de-DE.rc"
30#endif
31#ifdef LANGUAGE_EN_US
32    #include "lang/en-US.rc"
33#endif
34#ifdef LANGUAGE_ET_EE
35    #include "lang/et-EE.rc"
36#endif
37#ifdef LANGUAGE_FR_FR
38    #include "lang/fr-FR.rc"
39#endif
40#ifdef LANGUAGE_HI_IN
41    #include "lang/hi-IN.rc"
42#endif
43#ifdef LANGUAGE_IT_IT
44    #include "lang/it-IT.rc"
45#endif
46#ifdef LANGUAGE_JA_JP
47    #include "lang/ja-JP.rc"
48#endif
49#ifdef LANGUAGE_PL_PL
50    #include "lang/pl-PL.rc"
51#endif
52#ifdef LANGUAGE_PT_PT
53    #include "lang/pt-PT.rc"
54#endif
55#ifdef LANGUAGE_RO_RO
56    #include "lang/ro-RO.rc"
57#endif
58#ifdef LANGUAGE_RU_RU
59    #include "lang/ru-RU.rc"
60#endif
61#ifdef LANGUAGE_SV_SE
62    #include "lang/sv-SE.rc"
63#endif
64#ifdef LANGUAGE_TR_TR
65    #include "lang/tr-TR.rc"
66#endif
67#ifdef LANGUAGE_ZH_CN
68    #include "lang/zh-CN.rc"
69#endif
70#ifdef LANGUAGE_ZH_HK
71    #include "lang/zh-HK.rc"
72#endif
73#ifdef LANGUAGE_ZH_TW
74    #include "lang/zh-TW.rc"
75#endif
76