1#include <windef.h> 2#include <winuser.h> 3 4#include "resource.h" 5 61 ICON "res/cerfile.ico" 7 8#define REACTOS_VERSION_DLL 9#define REACTOS_STR_FILE_DESCRIPTION "ReactOS CryptExt Shell Extension" 10#define REACTOS_STR_INTERNAL_NAME "cryptext" 11#define REACTOS_STR_ORIGINAL_FILENAME "cryptext.dll" 12#include <reactos/version.rc> 13 14/* UTF-8 */ 15#pragma code_page(65001) 16 17#ifdef LANGUAGE_DE_DE 18 #include "lang/de-DE.rc" 19#endif 20#ifdef LANGUAGE_EN_US 21 #include "lang/en-US.rc" 22#endif 23#ifdef LANGUAGE_FR_FR 24 #include "lang/fr-FR.rc" 25#endif 26#ifdef LANGUAGE_HE_IL 27 #include "lang/he-IL.rc" 28#endif 29#ifdef LANGUAGE_HI_IN 30 #include "lang/hi-IN.rc" 31#endif 32#ifdef LANGUAGE_IT_IT 33 #include "lang/it-IT.rc" 34#endif 35#ifdef LANGUAGE_PL_PL 36 #include "lang/pl-PL.rc" 37#endif 38#ifdef LANGUAGE_RO_RO 39 #include "lang/ro-RO.rc" 40#endif 41#ifdef LANGUAGE_RU_RU 42 #include "lang/ru-RU.rc" 43#endif 44#ifdef LANGUAGE_UK_UA 45 #include "lang/uk-UA.rc" 46#endif 47