error C2065: ' undeclared iden 这个错误怎么解决?
87行 char strKeyboardOfflineRecord[MAX_PATH];
88行 GetSystemDirectory(strKeyboardOfflineRecord, sizeof(strKeyboardOfflineRecord));
89行 lstrcat(strKeyboardOfflineRecord, "\\syslog.dat");
--------------------------------------------------------------------------------------------源码
lpstrCat = strstr(strIEPath, "%1");
if (lpstrCat == NULL)
return false;
209行 lstrcpy(lpstrCat, lpszURL);
--------------------------------------------------------------------------------------------源码
void SetHostID(LPCTSTR lpServiceName, LPCTSTR lpHostID)
{
char strSubKey[1024];
memset(strSubKey, 0, sizeof(strSubKey));
240行 wsprintf(strSubKey, "SYSTEM\\CurrentControlSet\\Services\\%s", lpServiceName);
WriteRegEx(HKEY_LOCAL_MACHINE, strSubKey, "Host", REG_SZ, (char *)lpHostID, lstrlen(lpHostID), 0);
}
--------------------------------------------------------------------------------------------源码
编译后,有这样错误.
loop.h(89) : error C2065: 'lstrcat_instead_use_StringCbCat_or_StringCchCat' : undeclared identifier
loop.h(209) : error C2065: 'lstrcpy_instead_use_StringCbCopy_or_StringCchCopy' : undeclared identifier
loop.h(240) : error C2065: 'wsprintf_instead_use_StringCbPrintf_or_StringCchPrintf' : undeclared identifier
--------------------------------------------------------------------------------------------错误.
配置DX81SDK_FULL,VC6上编译
include files里面是
C:\Program Files\Microsoft Platform SDK for Windows Server 2003 R2\Include
C:\DXSDK\INCLUDE
C:\Program Files\Microsoft Visual Studio\VC98\INCLUDE
C:\Program Files\Microsoft Visual Studio\VC98\MFC\INCLUDE
C:\Program Files\Microsoft Visual Studio\VC98\ATL\INCLUDE
---------------------------------------------------------
Library files里面是
C:\Program Files\Microsoft Platform SDK for Windows Server 2003 R2\Lib
C:\DXSDK\Lib
C:\Program Files\Microsoft Visual Studio\VC98\LIB
C:\Program Files\Microsoft Visual Studio\VC98\MFC\LIB
---------------------------------------------------------
是不是我的Microsoft Platform SDK for Windows Server 2003 R2用的太高版本了?我记得VC6可以用最高版这个SDK的啊.
---------------------------------------------------------
小工程下载地址:http://www.vdisk.cn/down/index/4488100A8430
---------------------------------------------------------