Home
last modified time | relevance | path

Searched refs:szValue (Results 1 – 10 of 10) sorted by relevance

/trunk/main/setup_native/source/win32/customactions/languagepacks/
H A Drespintest.cxx100 TCHAR szValue[32767]; in GetUserInstallMode() local
106 szValue, in GetUserInstallMode()
107 elementsof(szValue), in GetUserInstallMode()
111 if ( !_tcsicmp( szValue, TEXT("INVALIDDIRECTORY") ) ) in GetUserInstallMode()
122 szValue[0] = '\0'; in GetUserInstallMode()
128 szValue, in GetUserInstallMode()
129 elementsof(szValue), in GetUserInstallMode()
133 if ( !_tcsicmp( szValue, TEXT("ISWRONGPRODUCT") ) ) in GetUserInstallMode()
146 if (_tcsnicmp(ProductMajor.c_str(), szValue, 3)) in GetUserInstallMode()
163 szValue[0] = '\0'; in GetUserInstallMode()
[all …]
/trunk/main/setup_native/source/win32/customactions/shellextensions/
H A Diconcache.cxx62 TCHAR szValue[256]; in RebuildShellIconCache() local
64 DWORD cbValue = sizeof(szValue); in RebuildShellIconCache()
68 … lError = RegQueryValueEx( hKey, TEXT("Shell Icon Size"), 0, &dwType, (LPBYTE)szValue, &cbValue ); in RebuildShellIconCache()
71 iSize = atoi( szValue ); in RebuildShellIconCache()
76 itoa( iSize, szValue, 10 ); in RebuildShellIconCache()
77 cbValue = strlen( szValue ) + 1; in RebuildShellIconCache()
92 … lError = RegSetValueEx( hKey, TEXT("Shell Icon Size"), 0, dwType, (LPBYTE)szValue, cbValue ); in RebuildShellIconCache()
H A Dmigrateinstallpath.cxx71 TCHAR szValue[8192]; in MigrateInstallPath() local
72 DWORD nValueSize = sizeof(szValue); in MigrateInstallPath()
90 …ESS == RegQueryValueEx( hKey, TEXT("INSTALLLOCATION"), NULL, NULL, (LPBYTE)szValue, &nValueSize ) ) in MigrateInstallPath()
92 sInstDir = szValue; in MigrateInstallPath()
101 …ESS == RegQueryValueEx( hKey, TEXT("INSTALLLOCATION"), NULL, NULL, (LPBYTE)szValue, &nValueSize ) ) in MigrateInstallPath()
103 sInstDir = szValue; in MigrateInstallPath()
H A Dpostuninstall.cxx103 TCHAR szValue[8192]; in ExecutePostUninstallScript() local
104 DWORD nValueSize = sizeof(szValue); in ExecutePostUninstallScript()
114 …ESS == RegQueryValueEx( hKey, TEXT("INSTALLLOCATION"), NULL, NULL, (LPBYTE)szValue, &nValueSize ) ) in ExecutePostUninstallScript()
116 sInstDir = szValue; in ExecutePostUninstallScript()
122 …ESS == RegQueryValueEx( hKey, TEXT("INSTALLLOCATION"), NULL, NULL, (LPBYTE)szValue, &nValueSize ) ) in ExecutePostUninstallScript()
124 sInstDir = szValue; in ExecutePostUninstallScript()
H A Dregisterextensions.cxx379 TCHAR szValue[8192]; in RemoveExtensions() local
380 DWORD nValueSize = sizeof(szValue); in RemoveExtensions()
389 …ESS == RegQueryValueEx( hKey, TEXT("INSTALLLOCATION"), NULL, NULL, (LPBYTE)szValue, &nValueSize ) ) in RemoveExtensions()
391 sInstDir = szValue; in RemoveExtensions()
397 …ESS == RegQueryValueEx( hKey, TEXT("INSTALLLOCATION"), NULL, NULL, (LPBYTE)szValue, &nValueSize ) ) in RemoveExtensions()
399 sInstDir = szValue; in RemoveExtensions()
H A Dcompleteinstallpath.cxx78 TCHAR szValue[8192]; in CompleteInstallPath() local
79 DWORD nValueSize = sizeof(szValue); in CompleteInstallPath()
/trunk/main/setup_native/source/win32/customactions/reg64/
H A Dreg64.cxx289 wchar_t szValue[1024]; in DoRegEntries() local
302 szValue[0] = '\0'; in DoRegEntries()
313 MsiRecordGetString(hRecord,5,szValue,&dwValue); in DoRegEntries()
316 wchar_t* nPos = wcsstr(szValue , INSTALLLOCATION); in DoRegEntries()
320 DWORD nPrefixSize = nPos - szValue; in DoRegEntries()
330 wcsncpy(newValue, szValue, nPrefixSize); in DoRegEntries()
338 wcsncpy(szValue, newValue, nNewValueBytes <=1024? nNewValueBytes: 1024); in DoRegEntries()
391 OutputDebugStringFormat( szValue); in DoRegEntries()
402 SetRegistryKey(key, szKey, szName, szValue); in DoRegEntries()
/trunk/main/setup_native/source/win32/customactions/patch/
H A Dswappatchfiles.cxx599 TCHAR szValue[8192]; in UninstallPatchedFiles() local
600 DWORD nValueSize = sizeof(szValue); in UninstallPatchedFiles()
609 …ESS == RegQueryValueEx( hKey, TEXT("INSTALLLOCATION"), NULL, NULL, (LPBYTE)szValue, &nValueSize ) ) in UninstallPatchedFiles()
611 sInstDir = szValue; in UninstallPatchedFiles()
617 …ESS == RegQueryValueEx( hKey, TEXT("INSTALLLOCATION"), NULL, NULL, (LPBYTE)szValue, &nValueSize ) ) in UninstallPatchedFiles()
619 sInstDir = szValue; in UninstallPatchedFiles()
/trunk/main/winaccessibility/source/UAccCOM/
H A DMAccessible.cpp1099 STDMETHODIMP CMAccessible::put_accValue(VARIANT varChild, BSTR szValue) in put_accValue() argument
1109 m_pszValue=SysAllocString(szValue); in put_accValue()
1118 return pChild->put_accValue(varChild,szValue); in put_accValue()
H A DMAccessible.h134 STDMETHOD(put_accValue)(VARIANT varChild,BSTR szValue);