1#include <windef.h> 2 3#include "resources.h" 4 5#define REACTOS_VERSION_DLL 6#define REACTOS_STR_FILE_DESCRIPTION "SAM server DLL" 7#define REACTOS_STR_INTERNAL_NAME "samsrv" 8#define REACTOS_STR_ORIGINAL_FILENAME "samsrv.dll" 9 10#define REACTOS_FILEVERSION 5,1,2600,0 11#define REACTOS_STR_FILE_VERSION "5.1.2600" 12#include <reactos/version.rc> 13 14LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL 15 16/* 17 * Everything specific to any language goes in one of the specific 18 * files. Note that you can and may override resources which also have 19 * a neutral version. This is to get localized bitmaps for example. 20 */ 21 22/* UTF-8 */ 23#pragma code_page(65001) 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_ES_ES 32 #include "lang/es-ES.rc" 33#endif 34#ifdef LANGUAGE_EU_ES 35 #include "lang/eu-ES.rc" 36#endif 37#ifdef LANGUAGE_HI_IN 38 #include "lang/hi-IN.rc" 39#endif 40#ifdef LANGUAGE_HU_HU 41 #include "lang/hu-HU.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_SQ_AL 62 #include "lang/sq-AL.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