Leaked source code of windows server 2003
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
/*
Filename : forceexe.rc Purpose : Contains resource file for FORCEDOS.EXE Author : William Hsieh
Contains : Strings
Revision History :
*/ #include <windows.h> #include <ntverp.h>
#define VER_FILETYPE VFT_APP #define VER_FILESUBTYPE VFT2_UNKNOWN #define VER_FILEDESCRIPTION_STR "Force DOS Execute Utility" #define VER_INTERNALNAME_STR "ForceDOS" #define VER_ORIGINALFILENAME_STR "ForceDOS.Exe"
#include "common.ver"
#include "forcedos.h"
STRINGTABLE {
ID_NO_FILE L"FORCEDOS: Program file not found\n" ID_BAD_PATH L"FORCEDOS: Bad program path name\n" ID_BAD_CMDLINE L"FORCEDOS: Command line too long\n" ID_BAD_DEFDIR L"FORCEDOS: Bad directory name\n" ID_BAD_TEMPFILE L"FORCEDOS: Cannot create temporary file\n" ID_NO_PIF L"FORCEDOS: _default.pif not found\n" ID_BAD_PIF L"FORCEDOS: _default.pif corrupted\n" ID_NO_MEMORY L"FORCEDOS: Not enough memory\n" ID_BAD_PROCESS L"FORCEDOS: Failed to create the process\n"
ID_USAGE_00 L"\nFORCEDOS [/D directory] filename [parameters]\n" ID_USAGE_01 L"/D directory Specifies the current directory for\n" ID_USAGE_02 L" the specified program to use.\n" ID_USAGE_03 L"filename Specifies the program to start.\n" ID_USAGE_04 L"parameters Specifies parameters to pass to the program.\n"
}
|