Is there any reliable API to Get Windows Folder in Windows in C++? I am using the following way, however it failed.
BOOL CQUserInfoHelper::GetWindowsPath(CString& strWindowsPath)
{
TCHAR windowsPathTemp[MAX_PATH];
int nSize = MAX_PATH;
::GetWindowsDirectory(
windowsPathTemp,
nSize);
strWindowsPath = windowsPathTemp;
return TRUE;
}
[out]parameter. Microsofts internal API check tools guarantee that an[out]paramenter is never read. If it's not read, its contents do not matter. – MSalters Jul 1 '10 at 11:34