mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 04:13:31 +00:00
The idea then would be to have the following behaviour (when specifying the following options in the kernel command line): /DEBUGPORT=COMi --> load KDCOM.DLL and use COMi port (i == 1,2,3,4) if possible. /DEBUGPORT=FOO --> load KDFOO.DLL (useful for KDUSB.DLL, KD1394.DLL, KDBAZIS.DLL for VirtualKD, etc...) /DEBUGPORT=ROSDBG:[COMi|SCREEN|FILE|GDB|...] --> load KDROSDBG.DLL which contains the ROS kernel debugger, and use COMi or SCREEN or... as output port. svn path=/branches/kd++/; revision=58883
20 lines
532 B
Plaintext
20 lines
532 B
Plaintext
#include "explorer_intres.rc"
|
|
|
|
#define REACTOS_STR_FILE_DESCRIPTION "ReactOS Explorer\0"
|
|
#define REACTOS_STR_INTERNAL_NAME "explorer\0"
|
|
#define REACTOS_STR_ORIGINAL_FILENAME "explorer.exe\0"
|
|
#include <reactos/version.rc>
|
|
|
|
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
|
|
|
|
#define IDS_VERSION_STR 5000
|
|
#define IDS_EXPLORER_VERSION_STR 5001
|
|
|
|
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
|
|
|
STRINGTABLE DISCARDABLE
|
|
BEGIN
|
|
IDS_VERSION_STR REACTOS_STR_PRODUCT_VERSION
|
|
IDS_EXPLORER_VERSION_STR "ReactOS %s Explorer"
|
|
END
|