2013-06-17 00:00:36 +00:00
|
|
|
#include <windef.h>
|
|
|
|
#include <winuser.h>
|
2014-02-01 16:32:20 +00:00
|
|
|
// #include <commctrl.h>
|
2013-12-29 22:38:10 +00:00
|
|
|
|
2013-06-17 00:00:36 +00:00
|
|
|
#include "resource.h"
|
2002-10-28 13:59:59 +00:00
|
|
|
|
2013-06-17 00:00:36 +00:00
|
|
|
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
|
|
|
|
|
|
|
#define REACTOS_STR_FILE_DESCRIPTION "ReactOS Virtual DOS Machine"
|
|
|
|
#define REACTOS_STR_INTERNAL_NAME "ntvdm"
|
|
|
|
#define REACTOS_STR_ORIGINAL_FILENAME "ntvdm.exe"
|
2004-10-16 20:27:43 +00:00
|
|
|
#include <reactos/version.rc>
|
2005-05-01 17:32:09 +00:00
|
|
|
|
2016-09-17 20:50:08 +00:00
|
|
|
/* Icons */
|
2016-10-30 19:02:15 +00:00
|
|
|
|
|
|
|
/* Icons for the PC-AT (most recent IBM-PC version) */
|
|
|
|
1 ICON "res/ntvdm_pc_at_grey.ico"
|
|
|
|
2 ICON "res/ntvdm_pc_at_brown.ico"
|
|
|
|
3 ICON "res/ntvdm_pc_at_flat.ico"
|
|
|
|
4 ICON "res/ntvdm_pc_at_3d.ico"
|
|
|
|
5 ICON "res/pc_at.ico"
|
|
|
|
/* Icons for the PC-XT (older IBM-PC version) */
|
|
|
|
6 ICON "res/ntvdm_pc_xt_grey.ico"
|
|
|
|
7 ICON "res/ntvdm_pc_xt_brown.ico"
|
|
|
|
8 ICON "res/ntvdm_pc_xt_flat.ico"
|
|
|
|
9 ICON "res/ntvdm_pc_xt_3d.ico"
|
|
|
|
10 ICON "res/pc_xt.ico"
|
|
|
|
/* Embedded products */
|
|
|
|
11 ICON "res/ros_dos.ico"
|
|
|
|
12 ICON "res/vdm_dos.ico"
|
|
|
|
|
2013-12-29 22:38:10 +00:00
|
|
|
|
|
|
|
/* UTF-8 */
|
|
|
|
#pragma code_page(65001)
|
2014-02-01 16:32:20 +00:00
|
|
|
|
2014-02-02 00:43:52 +00:00
|
|
|
#ifdef LANGUAGE_CS_CZ
|
|
|
|
#include "lang/cs-CZ.rc"
|
|
|
|
#endif
|
2014-02-02 14:01:21 +00:00
|
|
|
#ifdef LANGUAGE_DE_DE
|
|
|
|
#include "lang/de-DE.rc"
|
|
|
|
#endif
|
2014-02-01 16:32:20 +00:00
|
|
|
#ifdef LANGUAGE_EN_US
|
|
|
|
#include "lang/en-US.rc"
|
|
|
|
#endif
|
2014-02-01 17:22:30 +00:00
|
|
|
#ifdef LANGUAGE_ES_ES
|
|
|
|
#include "lang/es-ES.rc"
|
|
|
|
#endif
|
2014-02-01 16:32:20 +00:00
|
|
|
#ifdef LANGUAGE_FR_FR
|
|
|
|
#include "lang/fr-FR.rc"
|
|
|
|
#endif
|
2014-02-01 19:42:49 +00:00
|
|
|
#ifdef LANGUAGE_IT_IT
|
|
|
|
#include "lang/it-IT.rc"
|
|
|
|
#endif
|
2014-02-02 00:34:48 +00:00
|
|
|
#ifdef LANGUAGE_PL_PL
|
|
|
|
#include "lang/pl-PL.rc"
|
|
|
|
#endif
|
2014-07-29 13:17:00 +00:00
|
|
|
#ifdef LANGUAGE_RO_RO
|
|
|
|
#include "lang/ro-RO.rc"
|
|
|
|
#endif
|
2014-09-27 19:44:10 +00:00
|
|
|
#ifdef LANGUAGE_RU_RU
|
|
|
|
#include "lang/ru-RU.rc"
|
|
|
|
#endif
|
2015-05-26 18:01:39 +00:00
|
|
|
#ifdef LANGUAGE_TR_TR
|
|
|
|
#include "lang/tr-TR.rc"
|
|
|
|
#endif
|
2015-11-01 13:12:36 +00:00
|
|
|
#ifdef LANGUAGE_ZH_CN
|
|
|
|
#include "lang/zh-CN.rc"
|
|
|
|
#endif
|