1#include <windef.h> 2#include <winuser.h> 3 4#include "resource.h" 5 6#define REACTOS_VERSION_DLL 7#define REACTOS_STR_FILE_DESCRIPTION "ReactOS Extended RunOnce processing with UI" 8#define REACTOS_STR_INTERNAL_NAME "iernonce" 9#define REACTOS_STR_ORIGINAL_FILENAME "iernonce.dll" 10#include <reactos/version.rc> 11 12IDI_ICON ICON "res/setup.ico" 13 14/* UTF-8 */ 15#pragma code_page(65001) 16 17#ifdef LANGUAGE_EN_US 18 #include "lang/en-US.rc" 19#endif 20#ifdef LANGUAGE_JA_JP 21 #include "lang/ja-JP.rc" 22#endif 23#ifdef LANGUAGE_MS_MY 24 #include "lang/ms-MY.rc" 25#endif 26#ifdef LANGUAGE_PL_PL 27 #include "lang/pl-PL.rc" 28#endif 29#ifdef LANGUAGE_RO_RO 30 #include "lang/ro-RO.rc" 31#endif 32#ifdef LANGUAGE_RU_RU 33 #include "lang/ru-RU.rc" 34#endif 35#ifdef LANGUAGE_TR_TR 36 #include "lang/tr-TR.rc" 37#endif 38#ifdef LANGUAGE_ZH_CN 39 #include "lang/zh-CN.rc" 40#endif 41#ifdef LANGUAGE_ZH_TW 42 #include "lang/zh-TW.rc" 43#endif 44