2016-03-25 23:54:55 +00:00
|
|
|
#include <windef.h>
|
|
|
|
#include <winuser.h>
|
|
|
|
|
|
|
|
#include "resource.h"
|
|
|
|
|
|
|
|
#define REACTOS_VERSION_DLL
|
|
|
|
#define REACTOS_STR_FILE_DESCRIPTION "ReactOS Extended RunOnce processing with UI"
|
|
|
|
#define REACTOS_STR_INTERNAL_NAME "iernonce"
|
|
|
|
#define REACTOS_STR_ORIGINAL_FILENAME "iernonce.dll"
|
|
|
|
#include <reactos/version.rc>
|
|
|
|
|
|
|
|
IDI_ICON ICON "res/setup.ico"
|
|
|
|
|
|
|
|
/* UTF-8 */
|
|
|
|
#pragma code_page(65001)
|
|
|
|
|
|
|
|
#ifdef LANGUAGE_EN_US
|
|
|
|
#include "lang/en-US.rc"
|
|
|
|
#endif
|
[TRANSLATIONS]
Japanese translations for the following libraries: browseui, credui, ieframe,
iernonce, msports, msvfw32, mycomput, oleacc, samsrv, serialui, shimgvw, and
wldap32.
Patch by Katayama Hirofumi MZ. Thanks!
CORE-11884 #resolve #comment Committed in revision r72452.
svn path=/trunk/; revision=72452
2016-08-25 03:44:29 +00:00
|
|
|
#ifdef LANGUAGE_JA_JP
|
|
|
|
#include "lang/ja-JP.rc"
|
|
|
|
#endif
|
2016-05-31 11:15:25 +00:00
|
|
|
#ifdef LANGUAGE_MS_MY
|
|
|
|
#include "lang/ms-MY.rc"
|
|
|
|
#endif
|
2016-05-06 14:30:53 +00:00
|
|
|
#ifdef LANGUAGE_RO_RO
|
|
|
|
#include "lang/ro-RO.rc"
|
|
|
|
#endif
|
2016-08-25 10:44:39 +00:00
|
|
|
#ifdef LANGUAGE_RU_RU
|
|
|
|
#include "lang/ru-RU.rc"
|
|
|
|
#endif
|
2016-03-29 09:53:44 +00:00
|
|
|
#ifdef LANGUAGE_TR_TR
|
|
|
|
#include "lang/tr-TR.rc"
|
|
|
|
#endif
|
2016-05-31 11:15:25 +00:00
|
|
|
#ifdef LANGUAGE_ZH_CN
|
|
|
|
#include "lang/zh-CN.rc"
|
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_ZH_TW
|
|
|
|
#include "lang/zh-TW.rc"
|
|
|
|
#endif
|