1#include <windef.h> 2#include <winuser.h> 3#include <commctrl.h> 4 5#include "resource.h" 6 7LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL 8 9IDI_NTOBJECTFOLDER ICON "resources/1.ico" 10IDI_NTOBJECTDIR ICON "resources/2.ico" 11IDI_NTOBJECTDIROPEN ICON "resources/3.ico" 12IDI_NTOBJECTITEM ICON "resources/4.ico" 13IDI_NTOBJECTDEVICE ICON "resources/5.ico" 14IDI_NTOBJECTPORT ICON "resources/6.ico" 15IDI_REGISTRYKEY ICON "resources/7.ico" 16IDI_REGISTRYVALUE ICON "resources/8.ico" 17 18IDR_NTOBJECTFOLDER REGISTRY "resources/rgs/ntobjectfolder.rgs" 19IDR_REGISTRYFOLDER REGISTRY "resources/rgs/regfolder.rgs" 20 21#include <reactos/manifest_dll.rc> 22 23/* UTF-8 */ 24#pragma code_page(65001) 25 26#ifdef LANGUAGE_CS_CZ 27 #include "lang/cs-CZ.rc" 28#endif 29#ifdef LANGUAGE_DE_DE 30 #include "lang/de-DE.rc" 31#endif 32#ifdef LANGUAGE_EN_US 33 #include "lang/en-US.rc" 34#endif 35#ifdef LANGUAGE_ES_ES 36 #include "lang/es-ES.rc" 37#endif 38#ifdef LANGUAGE_FR_FR 39 #include "lang/fr-FR.rc" 40#endif 41#ifdef LANGUAGE_HI_IN 42 #include "lang/hi-IN.rc" 43#endif 44#ifdef LANGUAGE_IT_IT 45 #include "lang/it-IT.rc" 46#endif 47#ifdef LANGUAGE_JA_JP 48 #include "lang/ja-JP.rc" 49#endif 50#ifdef LANGUAGE_PL_PL 51 #include "lang/pl-PL.rc" 52#endif 53#ifdef LANGUAGE_PT_PT 54 #include "lang/pt-PT.rc" 55#endif 56#ifdef LANGUAGE_RO_RO 57 #include "lang/ro-RO.rc" 58#endif 59#ifdef LANGUAGE_RU_RU 60 #include "lang/ru-RU.rc" 61#endif 62#ifdef LANGUAGE_TR_TR 63 #include "lang/tr-TR.rc" 64#endif 65#ifdef LANGUAGE_ZH_CN 66 #include "lang/zh-CN.rc" 67#endif 68#ifdef LANGUAGE_ZH_HK 69 #include "lang/zh-HK.rc" 70#endif 71#ifdef LANGUAGE_ZH_TW 72 #include "lang/zh-TW.rc" 73#endif 74