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_STR_FILE_DESCRIPTION "ReactOS Virtual DOS Machine" 10#define REACTOS_STR_INTERNAL_NAME "ntvdm" 11#define REACTOS_STR_ORIGINAL_FILENAME "ntvdm.exe" 12#include <reactos/version.rc> 13 14/* Icons */ 15 16/* Icons for the PC-AT (most recent IBM-PC version) */ 171 ICON "res/ntvdm_pc_at_grey.ico" 182 ICON "res/ntvdm_pc_at_brown.ico" 193 ICON "res/ntvdm_pc_at_flat.ico" 204 ICON "res/ntvdm_pc_at_3d.ico" 215 ICON "res/pc_at.ico" 22/* Icons for the PC-XT (older IBM-PC version) */ 236 ICON "res/ntvdm_pc_xt_grey.ico" 247 ICON "res/ntvdm_pc_xt_brown.ico" 258 ICON "res/ntvdm_pc_xt_flat.ico" 269 ICON "res/ntvdm_pc_xt_3d.ico" 2710 ICON "res/pc_xt.ico" 28/* Embedded products */ 2911 ICON "res/ros_dos.ico" 3012 ICON "res/vdm_dos.ico" 31 32 33/* UTF-8 */ 34#pragma code_page(65001) 35 36#ifdef LANGUAGE_CS_CZ 37 #include "lang/cs-CZ.rc" 38#endif 39#ifdef LANGUAGE_DE_DE 40 #include "lang/de-DE.rc" 41#endif 42#ifdef LANGUAGE_EN_US 43 #include "lang/en-US.rc" 44#endif 45#ifdef LANGUAGE_ES_ES 46 #include "lang/es-ES.rc" 47#endif 48#ifdef LANGUAGE_FR_FR 49 #include "lang/fr-FR.rc" 50#endif 51#ifdef LANGUAGE_ID_ID 52 #include "lang/id-ID.rc" 53#endif 54#ifdef LANGUAGE_IT_IT 55 #include "lang/it-IT.rc" 56#endif 57#ifdef LANGUAGE_PL_PL 58 #include "lang/pl-PL.rc" 59#endif 60#ifdef LANGUAGE_RO_RO 61 #include "lang/ro-RO.rc" 62#endif 63#ifdef LANGUAGE_RU_RU 64 #include "lang/ru-RU.rc" 65#endif 66#ifdef LANGUAGE_TR_TR 67 #include "lang/tr-TR.rc" 68#endif 69#ifdef LANGUAGE_ZH_CN 70 #include "lang/zh-CN.rc" 71#endif 72#ifdef LANGUAGE_ZH_HK 73 #include "lang/zh-HK.rc" 74#endif 75#ifdef LANGUAGE_ZH_TW 76 #include "lang/zh-TW.rc" 77#endif 78