2014-07-23 18:00:36 +00:00
|
|
|
#include <windef.h>
|
|
|
|
#include <winuser.h>
|
|
|
|
#include <commctrl.h>
|
|
|
|
|
|
|
|
#include "resource.h"
|
|
|
|
|
|
|
|
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
|
|
|
|
2014-07-28 13:18:57 +00:00
|
|
|
IDI_BATTERY ICON "resources/1.ico"
|
|
|
|
IDI_EXTRACT ICON "resources/2.ico"
|
|
|
|
IDI_VOLUME ICON "resources/3.ico"
|
|
|
|
IDI_VOLMUTE ICON "resources/4.ico"
|
2014-07-23 18:00:36 +00:00
|
|
|
|
2017-10-16 14:11:10 +00:00
|
|
|
IDI_BATTCAP0 ICON "resources/battery/0.ico"
|
|
|
|
IDI_BATTCAP1 ICON "resources/battery/1.ico"
|
|
|
|
IDI_BATTCAP2 ICON "resources/battery/2.ico"
|
|
|
|
IDI_BATTCAP3 ICON "resources/battery/3.ico"
|
|
|
|
IDI_BATTCAP4 ICON "resources/battery/4.ico"
|
|
|
|
IDI_BATTCAP5 ICON "resources/battery/5.ico"
|
|
|
|
|
|
|
|
IDI_BATTCHA0 ICON "resources/battery/charging0.ico"
|
|
|
|
IDI_BATTCHA1 ICON "resources/battery/charging1.ico"
|
|
|
|
IDI_BATTCHA2 ICON "resources/battery/charging2.ico"
|
|
|
|
IDI_BATTCHA3 ICON "resources/battery/charging3.ico"
|
|
|
|
IDI_BATTCHA4 ICON "resources/battery/charging4.ico"
|
|
|
|
|
|
|
|
IDI_BATTCAP_ERR ICON "resources/battery/error.ico"
|
2019-04-19 19:50:13 +00:00
|
|
|
IDI_POWER_AC ICON "resources/battery/ac.ico"
|
2017-10-16 14:11:10 +00:00
|
|
|
|
|
|
|
IDI_HOTPLUG_ERR ICON "resources/hotplug/0.ico"
|
|
|
|
IDI_HOTPLUG_OK ICON "resources/hotplug/1.ico"
|
|
|
|
|
|
|
|
|
2014-07-23 18:00:36 +00:00
|
|
|
IDR_SYSTRAY REGISTRY "resources/rgs/systray.rgs"
|
|
|
|
|
2015-04-18 09:57:21 +00:00
|
|
|
#include <reactos/manifest_dll.rc>
|
|
|
|
|
2014-07-23 18:00:36 +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
|
2014-07-23 18:00:36 +00:00
|
|
|
#ifdef LANGUAGE_DE_DE
|
|
|
|
#include "lang/de-DE.rc"
|
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_EN_US
|
|
|
|
#include "lang/en-US.rc"
|
|
|
|
#endif
|
2014-12-31 19:16:03 +00:00
|
|
|
#ifdef LANGUAGE_ES_ES
|
|
|
|
#include "lang/es-ES.rc"
|
|
|
|
#endif
|
2017-02-04 16:12:15 +00:00
|
|
|
#ifdef LANGUAGE_FR_FR
|
|
|
|
#include "lang/fr-FR.rc"
|
|
|
|
#endif
|
2019-03-11 15:52:21 +00:00
|
|
|
#ifdef LANGUAGE_HI_IN
|
|
|
|
#include "lang/hi-IN.rc"
|
|
|
|
#endif
|
2015-05-30 14:09:29 +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
|
2020-06-01 18:31:06 +00:00
|
|
|
#ifdef LANGUAGE_PT_PT
|
|
|
|
#include "lang/pt-PT.rc"
|
|
|
|
#endif
|
2015-01-08 10:54:20 +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
|
2014-12-15 00:12:56 +00:00
|
|
|
#ifdef LANGUAGE_TR_TR
|
|
|
|
#include "lang/tr-TR.rc"
|
|
|
|
#endif
|
2015-08-08 15:48:10 +00:00
|
|
|
#ifdef LANGUAGE_ZH_CN
|
|
|
|
#include "lang/zh-CN.rc"
|
|
|
|
#endif
|
2021-12-29 21:40:57 +00:00
|
|
|
#ifdef LANGUAGE_ZH_HK
|
|
|
|
#include "lang/zh-HK.rc"
|
|
|
|
#endif
|
2015-12-17 11:10:00 +00:00
|
|
|
#ifdef LANGUAGE_ZH_TW
|
|
|
|
#include "lang/zh-TW.rc"
|
|
|
|
#endif
|