📄 idenitem.cpp
字号:
#include "stdafx.h"
#include "IdenItem.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
LPCTSTR gKeywords[] =
{
"", //占位
"__int8", "__int16", "__int32", "__int64",
"bool", "char", "short", "int", "long", "float", "double","void",
"____", //在此之前为基本数据类型
"define", "else", "elif", "endif", "error", "if", "ifdef", "ifndef", "include",
"pragma", "undef", "__asm", "__based", "__cdecl", "__declspec", "__except",
"__fastcall", "__finally", "__inline",
"__leave", "__multiple_inheritance", "__pascal",
"__single_inheritance", "__stdcall", "__try", "__uuidof", "__virtual_inheritance",
"_asm", "_cdecl", "_fastcall", "_pascal", "_stdcall", "auto", "break",
"case", "catch", "class", "const", "const_cast", "continue",
"default", "delete", "do", "dynamic_cast", "enum", "explicit",
"extern", "false", "for", "friend", "goto", "inline",
"interface", "mutable", "namespace", "new", "operator", "pascal",
"private", "protected", "public", "register", "reinterpret_cast", "return",
"signed", "sizeof", "static", "static_cast", "struct", "switch",
"template", "this", "throw", "true", "try", "typedef", "typeid", "typename",
"union", "unsigned", "using", "virtual", "volatile", "while",
"wmain", "xalloc", "elseif", "afx_msg", "code_seg", "defined", "dllexport",
"dllimport", "main", "naked", "off", "on", "once", "pack", "pop", "push",
"thread", "uuid", "_declspec"
};
CIdenItem::CIdenItem()
{
pIden = NULL;
}
CIdenItem::~CIdenItem()
{
delete pIden;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -