2015-02-16 11:47:40 +00:00
|
|
|
#include <windef.h>
|
|
|
|
#include <winuser.h>
|
|
|
|
|
|
|
|
#include "resource.h"
|
|
|
|
|
2013-11-28 22:09:27 +00:00
|
|
|
#define REACTOS_STR_FILE_DESCRIPTION "Service Control Manager"
|
|
|
|
#define REACTOS_STR_INTERNAL_NAME "Services"
|
|
|
|
#define REACTOS_STR_ORIGINAL_FILENAME "Services.exe"
|
2004-10-16 20:27:43 +00:00
|
|
|
#include <reactos/version.rc>
|
2015-02-16 11:47:40 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* UTF-8 */
|
|
|
|
#pragma code_page(65001)
|
|
|
|
|
2017-02-01 14:45:59 +00:00
|
|
|
#ifdef LANGUAGE_CS_CZ
|
|
|
|
#include "lang/cs-CZ.rc"
|
|
|
|
#endif
|
|
|
|
|
2015-02-16 20:27:29 +00:00
|
|
|
#ifdef LANGUAGE_DE_DE
|
|
|
|
#include "lang/de-DE.rc"
|
|
|
|
#endif
|
|
|
|
|
2015-02-16 11:47:40 +00:00
|
|
|
#ifdef LANGUAGE_EN_US
|
|
|
|
#include "lang/en-US.rc"
|
|
|
|
#endif
|
2015-03-03 20:49:07 +00:00
|
|
|
|
2015-12-02 21:47:45 +00:00
|
|
|
#ifdef LANGUAGE_IT_IT
|
|
|
|
#include "lang/it-IT.rc"
|
|
|
|
#endif
|
|
|
|
|
2017-09-23 17:32:13 +00:00
|
|
|
#ifdef LANGUAGE_PL_PL
|
|
|
|
#include "lang/pl-PL.rc"
|
|
|
|
#endif
|
|
|
|
|
2015-03-03 20:49:07 +00:00
|
|
|
#ifdef LANGUAGE_RO_RO
|
|
|
|
#include "lang/ro-RO.rc"
|
|
|
|
#endif
|
2015-03-30 21:40:50 +00:00
|
|
|
|
|
|
|
#ifdef LANGUAGE_RU_RU
|
|
|
|
#include "lang/ru-RU.rc"
|
|
|
|
#endif
|
2015-06-21 11:20:39 +00:00
|
|
|
|
|
|
|
#ifdef LANGUAGE_TR_TR
|
|
|
|
#include "lang/tr-TR.rc"
|
|
|
|
#endif
|
2015-12-02 22:44:03 +00:00
|
|
|
|
2015-11-30 19:01:56 +00:00
|
|
|
#ifdef LANGUAGE_ZH_CN
|
|
|
|
#include "lang/zh-CN.rc"
|
2015-12-02 22:44:03 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef LANGUAGE_ZH_TW
|
|
|
|
#include "lang/zh-TW.rc"
|
2015-11-30 19:01:56 +00:00
|
|
|
#endif
|