标签: c++ bstr
代码:
virtual void DeleteItem(_bstr_t ItemName) = 0
错误:
error C2061: syntax error : identifier '_bstr_t'
我尝试在线谷歌并使用#include但它不会删除错误
解决此问题的任何其他方式?
答案 0 :(得分:0)
将#include <comdef.h>(其中包含_bstr_t定义)添加到您的包含文件中,例如stdafx.h。
#include <comdef.h>
_bstr_t
stdafx.h