DoesIncludeExist
指示文件中是否存在指定头文件的 #include 语句。
function DoesIncludeExist(
oProj,
strHeaderFile,
strInsertIntoFile
);
参数
oProj
选定的项目。strHeaderFile
要查找的头文件的名称。strInsertIntoFile
包含头文件(不包括路径)的 #include 语句的源文件。
返回值
如果包含指定的头文件,则为 true;否则为 false。
备注
指示 strInsertIntoFile 指定的文件中是否存在特定头文件的 #include 语句。
示例
// Check to see if #include for atlbase.h
// is included in the project's stdafx.h.
// and add it if it is not.
if (!DoesIncludeExist(selProj, "<atlbase.h>", strSTDAFX))
oCM.AddInclude("<atlbase.h>", strSTDAFX, vsCMAddPositionEnd);