1#include <windef.h> 2#include <winuser.h> 3 4#include "resource.h" 5 6164 BITMAP "res/zipfldr.bmp" 7200 BITMAP "res/header.bmp" 8201 BITMAP "res/watermark.bmp" 91 ICON "res/zipfldr.ico" 10 11#define REACTOS_VERSION_DLL 12#define REACTOS_STR_FILE_DESCRIPTION "ReactOS Zip Shell Extension" 13#define REACTOS_STR_INTERNAL_NAME "zipfldr" 14#define REACTOS_STR_ORIGINAL_FILENAME "zipfldr.dll" 15#include <reactos/version.rc> 16 17#include <reactos/manifest_dll.rc> 18 19IDR_ZIPFLDR REGISTRY "res/zipfldr.rgs" 20 21/* UTF-8 */ 22#pragma code_page(65001) 23 24 25#ifdef LANGUAGE_DE_DE 26 #include "lang/de-DE.rc" 27#endif 28#ifdef LANGUAGE_EN_US 29 #include "lang/en-US.rc" 30#endif 31#ifdef LANGUAGE_ET_EE 32 #include "lang/et-EE.rc" 33#endif 34#ifdef LANGUAGE_FR_FR 35 #include "lang/fr-FR.rc" 36#endif 37#ifdef LANGUAGE_HI_IN 38 #include "lang/hi-IN.rc" 39#endif 40#ifdef LANGUAGE_IT_IT 41 #include "lang/it-IT.rc" 42#endif 43#ifdef LANGUAGE_JA_JP 44 #include "lang/ja-JP.rc" 45#endif 46#ifdef LANGUAGE_PL_PL 47 #include "lang/pl-PL.rc" 48#endif 49#ifdef LANGUAGE_PT_PT 50 #include "lang/pt-PT.rc" 51#endif 52#ifdef LANGUAGE_RO_RO 53 #include "lang/ro-RO.rc" 54#endif 55#ifdef LANGUAGE_RU_RU 56 #include "lang/ru-RU.rc" 57#endif 58#ifdef LANGUAGE_SV_SE 59 #include "lang/sv-SE.rc" 60#endif 61#ifdef LANGUAGE_ZH_CN 62 #include "lang/zh-CN.rc" 63#endif 64#ifdef LANGUAGE_ZH_TW 65 #include "lang/zh-TW.rc" 66#endif 67