如何让VC IDE识别自定义C++ 关键字
Article last modified on 2002-5-28
----------------------------------------------------------------
The information in this article applies to:
- Microsoft Visual C++, 32-bit Editions, version 6.0, SP5
----------------------------------------------------------------
Table of Contents
有时候我们可能有这样的需求:
将自定义的一个英文单词作为VC IDE可识别的C/C++关键字,这样VC IDE就可以默认用蓝色显示这个单词,就像int、float、class之类的。
微软的定义不知道在哪里。我只知道如何具体增加我自己定义的C/C++关键字。
How To?
打开你的Vstdio工作路径:
C:\Program Files\Microsoft Visual Studio\Common\MSDev98\Bin
新建一个usertype.dat文件,用文本编辑器打开,加入下列文字:
; UserType.Dat - for defining your own keywords to use in Visual C++
; Copyright(c) 1997 Microsoft Corporation. All Rights Reserved.
;---------------------------------------------------------------
CMyClass
需要重新启动VC IDE,使设置生效。
这样,当你在*.cpp等文件中输入CMyClass后,VC++IDE将显示它为蓝色。
(To be Continued)
Written by zhengyun@tomosoft.com