标签:编码方式 div else win ret 判断 inux access cts
int _ACCESS(LPCTSTR str, int mode)
{
#ifdef UNICODE
return _waccess(str, mode);
#else
// USES_CONVERSION;
// LPSTR lpStr = T2A((LPCTSTR)str);
return _access(str, mode);
#endif
}
???编码方式影响函数调用?? windows与linux不同的函数调用?平台影响
标签:编码方式 div else win ret 判断 inux access cts
原文地址:https://www.cnblogs.com/hshy/p/11525462.html