1#include <windef.h> 2#include <winuser.h> 3#include <commctrl.h> 4 5#include "resource.h" 6 7LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL 8 9#define REACTOS_VERSION_DLL 10#define REACTOS_STR_FILE_DESCRIPTION "Map Network Drives" 11#define REACTOS_STR_INTERNAL_NAME "netplwiz.dll" 12#define REACTOS_STR_ORIGINAL_FILENAME "netplwiz.dll" 13 14#include <reactos/version.rc> 15 16#include <reactos/manifest_hosted.rc> 17 18/* Icons */ 19IDI_DISCONNECT_NET_DRIVES ICON "res/4400.ico" 20 21/* UTF-8 */ 22#pragma code_page(65001) 23 24#ifdef LANGUAGE_EN_US 25 #include "lang/en-US.rc" 26#endif 27#ifdef LANGUAGE_FR_FR 28 #include "lang/fr-FR.rc" 29#endif 30#ifdef LANGUAGE_IT_IT 31 #include "lang/it-IT.rc" 32#endif 33#ifdef LANGUAGE_PL_PL 34 #include "lang/pl-PL.rc" 35#endif 36#ifdef LANGUAGE_PT_PT 37 #include "lang/pt-PT.rc" 38#endif 39