wdengin.str
来自「开放源码的编译器open watcom 1.6.0版的源代码」· STR 代码 · 共 714 行 · 第 1/2 页
STR
714 行
wdpick( Empty,
"",
"" )
// used to represent an undefined (eg: memory can't be read)
wdpick( Quest_Marks,
"????????",
"j????????" ) // dbgwvar dbgmem dbgbrk
// Warnings
wdpick( WARN_Unable_To_Remap_Tmp,
"Unable to correct address of temporary breakpoint",
"jUnable to correct address of temporary breakpoint" )//dbgprog
wdpick( WARN_No_Nxt_Src_Ln,
"No next source line can be found",
"jNo next source line can be found" )//dbgtrace
wdpick( WARN_ONLY_1000_ARRAY_ELEMENTS,
"Only 1000 array elements can be displayed at a time",
"jOnly 1000 array elements can be displayed at a time" )
// Startup Errors
wdpick( STARTUP_Invalid_Option,
"Invalid option '%t'",
"jInvalid option '%t'" )
wdpick( STARTUP_Loading_PRS,
"Cannot load expression syntax file 'cpp.prs'",
"jCannot load expression syntax file 'cpp.prs'" )//dbgmain
wdpick( STARTUP_DIP_Not_Init,
"Cannot initalize symbolic debugging interface",
"jCannot initalize symbolic debugging interface" ) // dipinter
wdpick( STARTUP_DIP_Not_Register,
"Cannot create internal symbol table",
"jCannot create internal symbol table" ) //DIPINTER
wdpick( STARTUP_Expect_Brace,
"Unmatched '{' on command line",
"jUnmatched '{' on command line" )//dbgcmd
wdpick( STARTUP_Expect_End_Env_Str,
"Syntax error in WD environment variable near '%s'",
"jSyntax error in WD environment variable near '%s'" )//dbgcmd
wdpick( STARTUP_Expect_Eql,
"Expecting '=' in command line but found '%s'",
"jExpecting '=' in command line but found '%s'" )//dbgcmd
wdpick( STARTUP_Invalid_Num,
"Expecting number in command line but found '%s'",
"jExpecting number in command line but found '%s'" )//dbgcmd
wdpick( STARTUP_No_Recog_Optn,
"Unable to recognize command line option near '%s'",
"jUnable to recognize command line option near '%s'" )//dbgcmd
wdpick( STARTUP_Num_Too_Big,
"Number too large near '%s'",
"jNumber too large near '%s'" )//dbgcmd
wdpick( STARTUP_MAD_Not_Init,
"Machine architecture initialization failed",
"jMachine architecture initialization failed" )
wdpick( MSG_Unexpected_Break,
"Hard-coded breakpoint instruction encountered",
"jHard-coded breakpoint instruction encountered" ) // dbgins
// break-point notification.
// - format is one of the following
// "Break on execute: <address>"
// "Break on write: <address> - Old value = xxx New value = xxx"
wdpick( Break_on_write,
"Break on write: ",
"jBreak on write: " ) // dbgbrk
wdpick( Break_on_execute,
"Break on execute: ",
"jBreak on execute: " ) // dbgbrk
wdpick( OldVal,
"Old value",
"jOld value" ) // dbgbrk
wdpick( NewVal,
"New value",
"jNew value" ) // dbgbrk
// these are the name of tokens. The parser will use them in messages like
// - expecting '=' near <end of line>
wdpick( End_Of_Line,
"<end of line>",
"j<end of line>" ) //dbgscan
wdpick( Num_Name,
"<number>",
"j<number>" ) //dbgscan
wdpick( Sym_Name_Name,
"<name>",
"j<name>" ) //dbgscan
wdpick( Map_Selector,
"Enter address of selector %d in %s",
"jEnter address of selector %d in %s" )//dbgprog
wdpick( Map_Named_Selector,
"Enter address of %s selector in %s",
"jEnter address of %s selector in %s" )//dbgprog
wdpick( New_Expression,
"Enter New Expression",
"jEnter New Expression" ) //dbgwvar dbgprint
wdpick( Internal_Error,
"*** INTERNAL *** error:",
"j*** INTERNAL *** error:" )//dbgerr
wdpick( Debugger_Startup_Error,
"Debugger Startup Error",
"jDebugger Startup Error" )
// program notifications
wdpick( Task_Completed,
"The task has completed running",
"jThe task has completed running" ) // dbgexec
wdpick( Task_Exception,
"A task exception has occurred: ",
"jA task exception has occurred: " ) // dbgexec
wdpick( Break_on_DLL_Load,
"Breakpoint due to DLL load: ",
"jBreakpoint due to DLL load: " ) // dbgexec
wdpick( DLL_Loaded,
"A DLL has been loaded: ",
"jA DLL has been loaded: " ) // dbgexec
wdpick( DLL_UnLoaded,
"A DLL has been unloaded: ",
"jA DLL has been unloaded: " ) // dbgexec
wdpick( User_Interupt,
"A user interrupt was detected",
"jA user interrupt was detected" ) // dbgexec
wdpick( New_Task,
"A new task has been loaded",
"jA new task has been loaded" ) // dbgmain
wdpick( No_Task,
"No task was loaded",
"jNo task was loaded" ) // dbgmain
wdpick( Task_Not_Loaded,
"The task was not loaded: %e",
"jThe task was not loaded: %e" ) // dbgmain
// information messaged issued in response to the Undo menu items
wdpick( No_More_Undos,
"No more undos",
"jNo more undos" )//dbgreg
wdpick( Bottom_Of_Stack,
"Bottom of stack reached",
"jBottom of stack reached" )//dbgreg
wdpick( Top_Of_Stack,
"Top of stack reached",
"jTop of stack reached" )//dbgreg
wdpick( Thread_Not_Exist,
"Thread no longer exists",
"jThread no longer exists" ) //dbgreg
// these are possible thread states
wdpick( Current,
"current",
"jcurrent" )//dbgwthrd
wdpick( Dead,
"dead",
"jdead" ) //dbgwthrd dbgmisc
wdpick( Frozen,
"frozen",
"jfrozen" ) //dbgwthrd dbgmisc
wdpick( Runnable,
"runnable",
"jrunnable" ) //dbgwthrd dbgmisc
// strings used by the variable display window
wdpick( No_Visible_Members,
"No members will be displayed using current window options",
"jNo members will be displayed using current window options" )//dbgwvar
wdpick( Array,
"[ array ]",
"j[ array ]" ) //dbgwvar
wdpick( field,
"field",
"jfield" ) //dbgwvar
wdpick( Struct,
"struct",
"jstruct" ) //dbgwvar
wdpick( inherited_members,
"Ancestor::",
"jAncestor::" ) //dbgwvar
wdpick( Unknown_type,
"Unknown type",
"jUnknown type" ) // dbgvar
wdpick( Image_Not_Loaded,
"Image Not Loaded",
"jImage Not Loaded" ) // dbgwbrk
wdpick( Str_ACTION_EXECUTE,
"Program execution",
"jProgram execution" ) // dbgreg
wdpick( Str_ACTION_ASSIGNMENT,
"Variable assignment",
"jVariable assignment" ) // dbgreg
wdpick( Str_ACTION_THREAD_CHANGE,
"Thread switch",
"jThread switch" ) // dbgreg
wdpick( Str_ACTION_MODIFY_IP,
"Change instruction pointer",
"jChange instruction pointer" ) // dbgreg
wdpick( Str_ACTION_MODIFY_MEMORY,
"Memory modification",
"jMemory modification" ) // dbgreg
wdpick( Str_ACTION_MODIFY_REGISTER,
"Register modification",
"jRegister modification" ) // dbgreg
wdpick( Str_ACTION_MODIFY_VARIABLE,
"Variable modification",
"jVariable modification" ) // dbgreg
wdpick( LDS_TOO_MANY_DIPS,
"Too many DIP files specified",
"jToo many DIP files specified" )
wdpick( LDS_INVALID_DIP_VERSION,
"Invalid version of DIP file",
"jInvalid version of DIP file" )
wdpick( LDS_NO_MEM,
"Out of memory",
"jOut of memory" )
wdpick( LDS_FOPEN_FAILED,
"File open failed",
"jFile open failed" )
wdpick( LDS_FREAD_FAILED,
"File read failed",
"jFile read failed" )
wdpick( LDS_FWRITE_FAILED,
"File write failed",
"jFile write failed" )
wdpick( LDS_FSEEK_FAILED,
"File seek failed",
"jFile seek failed" )
wdpick( LDS_INVALID_DIP,
"Invalid DIP file",
"jInvalid DIP file" )
wdpick( LDS_INFO_INVALID,
"Invalid debugging information",
"jInvalid debugging information" )
wdpick( LDS_INFO_BAD_VERSION,
"Incorrect debugging information version",
"jIncorrect debugging information version" )
wdpick( No_DIPs_Found,
"Missing Debugging Information Processor files",
"jMissing Debugging Information Processor files" )
wdpick( DIP_load_failed,
"Debugging Information Processor '%s' load failed: %s",
"jDebugging Information Processor '%s' load failed: %s" )
wdpick( Sym_Info_Load_Failed,
"Symbolic information load for '%s' failed.",
"jSymbolic information load for '%s' failed." ) // dbgprog
wdpick( IO,
"io",
"jio" ) //dbgscan
// MAD errors
wdpick( LMS_RECURSIVE_MAD_FAILURE,
"Recursive MAD failure - exiting",
"jRecursive MAD failure - exiting" )
wdpick( LMS_UNREGISTERED_MAD,
"Unknown machine architecture %d",
"jUnknown machine architecture %d" )
wdpick( LMS_INVALID_MAD,
"Invalid machine architecture description file '%s'",
"jInvalid machine architecture description file '%s'" )
wdpick( LMS_INVALID_MAD_VERSION,
"Incorrect version of machine architecture description file '%s'",
"jIncorrect version of machine architecture description file '%s'" )
wdpick( LMS_FREAD_FAILED,
"Unable to read file '%s'",
"jUnable to read file '%s'" )
// errors loading trap file
wdpick( BAD_TRAP_FILE,
"Bad trap file",
"jBad trap file" )
wdpick( OUT_OF_DOS_MEMORY,
"Out of DOS Memory",
"jOut of DOS Memory" )
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?