?? erset.cpp
字號:
#include "erset.h"
#include "lexer.h"
#include "filelist.h"
#define ERDEF(code, remark) remark,
const char* comErr[] =
{
#include "ERCODE.h"
};
#undef ERDEF
#define ERDEF(code, remark) #code,
const char* asmRemark[] =
{
#include "ERCODE.h"
};
#undef ERDEF
#define ERDEF(code, remark) code,
const int errCode[] =
{
#include "ERCODE.h"
};
#undef ERDEF
void OutputError(Line& line, int no)
{
++FileList::GetInstance()._cerrs;
printf("File %s Line %d: %s\n"
"Text: %s\n",
line._fileName, line._lineNum, comErr[no], line._buffer);
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -