1.多字节字符集与UNICODE字符集
(1)LPWSTR与const char*类型转换
unicode下将const char*转LPWSTR用_wtof,
proinfos.threat(i, 0) = _wtof(xml.GetAttrib(_T("Threat_N")).GetBuffer());
多字节字符集环境下用atof
proinfos.threat(i, 0) = atof(xml.GetAttrib(_T("Threat_N")).GetBuffer());
(2)const chat与MCD_CSTR类型转换
在字符串前添加“ _T ”预处理器
(3)附加库目录添加相对路径
(4)预处理器
(5)eigen附件包含目录
将eigen放在项目目录下