Searched refs:nCmdLineLength (Results 1 – 1 of 1) sorted by relevance
| /trunk/main/desktop/win32/source/setup/ |
| H A D | setup.cpp | 793 DWORD nCmdLineLength = lstrlen( sMsiPath ) + lstrlen( pParam ) + 2; in LaunchInstaller() local 794 TCHAR *sCmdLine = new TCHAR[ nCmdLineLength ]; in LaunchInstaller() 796 if ( FAILED( StringCchCopy( sCmdLine, nCmdLineLength, sMsiPath ) ) || in LaunchInstaller() 797 FAILED( StringCchCat( sCmdLine, nCmdLineLength, TEXT( " " ) ) ) || in LaunchInstaller() 798 FAILED( StringCchCat( sCmdLine, nCmdLineLength, pParam ) ) ) in LaunchInstaller() 1849 DWORD nCmdLineLength = lstrlen( sRuntimePath ) + lstrlen( PARAM_SILENTINSTALL ) + 2; in InstallRuntimes() local 1850 TCHAR *sCmdLine = new TCHAR[ nCmdLineLength ]; in InstallRuntimes() 1852 if ( FAILED( StringCchCopy( sCmdLine, nCmdLineLength, sRuntimePath ) ) || in InstallRuntimes() 1853 FAILED( StringCchCat( sCmdLine, nCmdLineLength, PARAM_SILENTINSTALL ) ) ) in InstallRuntimes()
|