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 30#ifdef LANGUAGE_DE_DE 31 #include "lang/de-DE.rc" 32#endif 33 34#ifdef LANGUAGE_EN_US 35 #include "lang/en-US.rc" 36#endif 37 38#ifdef LANGUAGE_ES_ES 39 #include "lang/es-ES.rc" 40#endif 41 42#ifdef LANGUAGE_FR_FR 43 #include "lang/fr-FR.rc" 44#endif 45 46#ifdef LANGUAGE_HI_IN 47 #include "lang/hi-IN.rc" 48#endif 49 50#ifdef LANGUAGE_IT_IT 51 #include "lang/it-IT.rc" 52#endif 53 54#ifdef LANGUAGE_PL_PL 55 #include "lang/pl-PL.rc" 56#endif 57 58#ifdef LANGUAGE_PT_PT 59 #include "lang/pt-PT.rc" 60#endif 61 62#ifdef LANGUAGE_RO_RO 63 #include "lang/ro-RO.rc" 64#endif 65 66#ifdef LANGUAGE_RU_RU 67 #include "lang/ru-RU.rc" 68#endif 69 70#ifdef LANGUAGE_TR_TR 71 #include "lang/tr-TR.rc" 72#endif 73 74#ifdef LANGUAGE_ZH_CN 75 #include "lang/zh-CN.rc" 76#endif 77 78#ifdef LANGUAGE_ZH_TW 79 #include "lang/zh-TW.rc" 80#endif