Changeset 34547 in vbox for trunk/src/VBox/Installer/win/InstallHelper
- Timestamp:
- Dec 1, 2010 9:08:55 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 68338
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/win/InstallHelper/VBoxInstallHelper.cpp
r32112 r34547 193 193 break; 194 194 195 _stprintf_s(szPath, sizeof(szPath) , L"%s\\InstallPath", szRoot);195 _stprintf_s(szPath, sizeof(szPath) / sizeof(TCHAR), L"%s\\InstallPath", szRoot); 196 196 dwLen = sizeof(szVal); 197 197 … … 216 216 /* Cool, check for installed Win32 extensions. */ 217 217 LogString(hModule, TEXT("InstallPythonAPI: Python installed. Checking for Win32 extensions ...")); 218 _stprintf_s(szExec, sizeof(szExec) , L"%s\\python.exe", szVal);219 _stprintf_s(szCmdLine, sizeof(szCmdLine) , L"%s\\python.exe -c \"import win32api\"", szVal);218 _stprintf_s(szExec, sizeof(szExec) / sizeof(TCHAR), L"%s\\python.exe", szVal); 219 _stprintf_s(szCmdLine, sizeof(szCmdLine) / sizeof(TCHAR), L"%s\\python.exe -c \"import win32api\"", szVal); 220 220 221 221 if ( (0 == Exec(hModule, szExec, szCmdLine, NULL, &dwExitCode)) … … 236 236 237 237 /* Set final path. */ 238 _stprintf_s(szPath, sizeof(szPath) , L"%s\\sdk\\install", szVBoxAPISetupPath);238 _stprintf_s(szPath, sizeof(szPath) / sizeof(TCHAR), L"%s\\sdk\\install", szVBoxAPISetupPath); 239 239 240 240 /* Install our API module. */ 241 _stprintf_s(szCmdLine, sizeof(szCmdLine) , L"%s\\python.exe vboxapisetup.py install", szVal);241 _stprintf_s(szCmdLine, sizeof(szCmdLine) / sizeof(TCHAR), L"%s\\python.exe vboxapisetup.py install", szVal); 242 242 243 243 /* Set required environment variables. */ … … 278 278 279 279 if (wcsicmp(L"General", pszSection) != 0) 280 _stprintf_s(szKey, sizeof(szKey) , L"SOFTWARE\\%s\\VirtualBox\\Branding\\", VBOX_VENDOR_SHORT, pszSection);280 _stprintf_s(szKey, sizeof(szKey) / sizeof(TCHAR), L"SOFTWARE\\%s\\VirtualBox\\Branding\\", VBOX_VENDOR_SHORT, pszSection); 281 281 else 282 _stprintf_s(szKey, sizeof(szKey) , L"SOFTWARE\\%s\\VirtualBox\\Branding", VBOX_VENDOR_SHORT);282 _stprintf_s(szKey, sizeof(szKey) / sizeof(TCHAR), L"SOFTWARE\\%s\\VirtualBox\\Branding", VBOX_VENDOR_SHORT); 283 283 284 284 rc = RegOpenKeyEx(HKEY_LOCAL_MACHINE, szKey, … … 308 308 TCHAR szSource[_MAX_PATH + 1]; 309 309 310 _stprintf_s(szDest, sizeof(szDest) , L"%s%c", pszDestDir, '\0');311 _stprintf_s(szSource, sizeof(szSource) , L"%s%c", pszSourceDir, '\0');310 _stprintf_s(szDest, sizeof(szDest) / sizeof(TCHAR), L"%s%c", pszDestDir, '\0'); 311 _stprintf_s(szSource, sizeof(szSource) / sizeof(TCHAR), L"%s%c", pszSourceDir, '\0'); 312 312 313 313 SHFILEOPSTRUCT s = {0}; … … 339 339 TCHAR szDest[_MAX_PATH + 1]; 340 340 341 _stprintf_s(szDest, sizeof(szDest) , L"%s%c", pszDestDir, '\0');341 _stprintf_s(szDest, sizeof(szDest) / sizeof(TCHAR), L"%s%c", pszDestDir, '\0'); 342 342 343 343 SHFILEOPSTRUCT s = {0}; … … 368 368 TCHAR szSource[_MAX_PATH + 1]; 369 369 370 _stprintf_s(szDest, sizeof(szDest) , L"%s%c", pszDestDir, '\0');371 _stprintf_s(szSource, sizeof(szSource) , L"%s%c", pszSourceDir, '\0');370 _stprintf_s(szDest, sizeof(szDest) / sizeof(TCHAR), L"%s%c", pszDestDir, '\0'); 371 _stprintf_s(szSource, sizeof(szSource) / sizeof(TCHAR), L"%s%c", pszSourceDir, '\0'); 372 372 373 373 SHFILEOPSTRUCT s = {0}; … … 406 406 { 407 407 /** @todo Check trailing slash after %s. */ 408 _stprintf_s(szPathDest, sizeof(szPathDest) , L"%scustom", szPathTargetDir);408 _stprintf_s(szPathDest, sizeof(szPathDest) / sizeof(TCHAR), L"%scustom", szPathTargetDir); 409 409 rc = RemoveDir(hModule, szPathDest); 410 410 if (rc != ERROR_SUCCESS) 411 411 { 412 412 /* Check for hidden .custom directory and remove it. */ 413 _stprintf_s(szPathDest, sizeof(szPathDest) , L"%s.custom", szPathTargetDir);413 _stprintf_s(szPathDest, sizeof(szPathDest) / sizeof(TCHAR), L"%s.custom", szPathTargetDir); 414 414 rc = RemoveDir(hModule, szPathDest); 415 415 } … … 436 436 { 437 437 /** @todo Check for trailing slash after %s. */ 438 _stprintf_s(szPathDest, sizeof(szPathDest) , L"%s", szPathTargetDir);439 _stprintf_s(szPathSource, sizeof(szPathSource) , L"%s.custom", szPathMSI);438 _stprintf_s(szPathDest, sizeof(szPathDest) / sizeof(TCHAR), L"%s", szPathTargetDir); 439 _stprintf_s(szPathSource, sizeof(szPathSource) / sizeof(TCHAR), L"%s.custom", szPathMSI); 440 440 rc = CopyDir(hModule, szPathDest, szPathSource); 441 441 if (rc == ERROR_SUCCESS) 442 442 { 443 _stprintf_s(szPathDest, sizeof(szPathDest) , L"%scustom", szPathTargetDir);444 _stprintf_s(szPathSource, sizeof(szPathSource) , L"%s.custom", szPathTargetDir);443 _stprintf_s(szPathDest, sizeof(szPathDest) / sizeof(TCHAR), L"%scustom", szPathTargetDir); 444 _stprintf_s(szPathSource, sizeof(szPathSource) / sizeof(TCHAR), L"%s.custom", szPathTargetDir); 445 445 rc = RenameDir(hModule, szPathDest, szPathSource); 446 446 }
Note:
See TracChangeset
for help on using the changeset viewer.