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不同的函数调用?平台影响
原文:https://www.cnblogs.com/hshy/p/11525462.html