Home
last modified time | relevance | path

Searched refs:hMSI (Results 1 – 7 of 7) sorted by relevance

/trunk/main/setup_native/source/win32/customactions/regactivex/
H A Dregactivex.cxx156 MsiGetProperty( hMSI, pPropName, buff, &sz ); in GetMsiProp()
166 BOOL GetActiveXControlPath( MSIHANDLE hMSI, char** ppActiveXPath ) in GetActiveXControlPath() argument
306 BOOL MakeInstallForAllUsers( MSIHANDLE hMSI ) in MakeInstallForAllUsers() argument
310 if ( GetMsiProp( hMSI, L"ALLUSERS", &pVal ) && pVal ) in MakeInstallForAllUsers()
320 BOOL MakeInstallFor64Bit( MSIHANDLE hMSI ) in MakeInstallFor64Bit() argument
324 if ( GetMsiProp( hMSI, L"VersionNT64", &pVal ) && pVal ) in MakeInstallFor64Bit()
333 extern "C" UINT __stdcall InstallActiveXControl( MSIHANDLE hMSI ) in InstallActiveXControl() argument
352 BOOL bInstallForAllUser = MakeInstallForAllUsers( hMSI ); in InstallActiveXControl()
353 BOOL bInstallFor64Bit = MakeInstallFor64Bit( hMSI ); in InstallActiveXControl()
414 BOOL bInstallForAllUser = MakeInstallForAllUsers( hMSI ); in DeinstallActiveXControl()
[all …]
/trunk/main/setup_native/source/win32/customactions/tools/
H A Dcheckversion.cxx43 BOOL GetMsiProp( MSIHANDLE hMSI, const wchar_t* pPropName, wchar_t** ppValue ) in GetMsiProp() argument
46 if ( MsiGetProperty( hMSI, pPropName, L"", &sz ) == ERROR_MORE_DATA ) in GetMsiProp()
52 MsiGetProperty( hMSI, pPropName, buff, &sz ); in GetMsiProp()
79 extern "C" UINT __stdcall CheckVersions( MSIHANDLE hMSI ) in CheckVersions() argument
85 if ( GetMsiProp( hMSI, L"NEWPRODUCTS", &pVal ) && pVal ) in CheckVersions()
93 if ( GetMsiProp( hMSI, L"SAMEPRODUCTS", &pVal ) && pVal ) in CheckVersions()
101 if ( GetMsiProp( hMSI, L"OLDPRODUCTS", &pVal ) && pVal ) in CheckVersions()
109 if ( GetMsiProp( hMSI, L"BETAPRODUCTS", &pVal ) && pVal ) in CheckVersions()
118 if ( GetMsiProp( hMSI, L"NEWPRODUCTSPATCH", &pVal ) && pVal ) in CheckVersions()
126 if ( GetMsiProp( hMSI, L"SAMEPRODUCTSPATCH", &pVal ) && pVal ) in CheckVersions()
[all …]
/trunk/main/setup_native/source/win32/customactions/reg64/
H A Dreg64.cxx160 BOOL GetMsiProp( MSIHANDLE hMSI, const wchar_t* pPropName, wchar_t** ppValue ) in GetMsiProp() argument
164 UINT ret = MsiGetProperty( hMSI, pPropName, L"", &sz ); in GetMsiProp()
171 MsiGetProperty( hMSI, pPropName, buff, &sz ); in GetMsiProp()
194 bool IsInstallForAllUsers( MSIHANDLE hMSI ) in IsInstallForAllUsers() argument
199 if ( GetMsiProp( hMSI, L"ALLUSERS", &pVal ) && pVal ) in IsInstallForAllUsers()
209 wchar_t* GetBasisInstallLocation( MSIHANDLE hMSI ) in GetBasisInstallLocation() argument
214 GetMsiProp( hMSI, L"INSTALLLOCATION", &pVal); in GetBasisInstallLocation()
461 extern "C" UINT __stdcall InstallReg64(MSIHANDLE hMSI) in InstallReg64() argument
464 Reg64(hMSI, SET); in InstallReg64()
468 extern "C" UINT __stdcall DeinstallReg64(MSIHANDLE hMSI) in DeinstallReg64() argument
[all …]
/trunk/main/setup_native/source/win32/customactions/regpatchactivex/
H A Dregpatchactivex.cxx54 BOOL GetMsiProp( MSIHANDLE hMSI, const wchar_t* pPropName, wchar_t** ppValue ) in GetMsiProp() argument
57 if ( MsiGetProperty( hMSI, pPropName, L"", &sz ) == ERROR_MORE_DATA ) in GetMsiProp()
63 MsiGetProperty( hMSI, pPropName, buff, &sz ); in GetMsiProp()
73 BOOL MakeInstallForAllUsers( MSIHANDLE hMSI ) in MakeInstallForAllUsers() argument
77 if ( GetMsiProp( hMSI, L"ALLUSERS", &pVal ) && pVal ) in MakeInstallForAllUsers()
87 extern "C" UINT __stdcall PatchActiveXControl( MSIHANDLE hMSI ) in PatchActiveXControl() argument
94 …if ( ERROR_SUCCESS == MsiGetFeatureState( hMSI, L"gm_o_Activexcontrol", &current_state, &future_st… in PatchActiveXControl()
96 BOOL bInstallForAllUsers = MakeInstallForAllUsers( hMSI ); in PatchActiveXControl()
/trunk/main/setup_native/source/win32/customactions/shellextensions/
H A Dshellextensions.cxx98 BOOL GetMsiProp( MSIHANDLE hMSI, const char* pPropName, char** ppValue ) in GetMsiProp() argument
101 if ( MsiGetProperty( hMSI, pPropName, 0, &sz ) == ERROR_MORE_DATA ) in GetMsiProp()
107 MsiGetProperty( hMSI, pPropName, buff, &sz ); in GetMsiProp()
116 bool IsVersionNT64( MSIHANDLE hMSI ) in IsVersionNT64() argument
120 if ( GetMsiProp( hMSI, "VersionNT64", &pVal ) && pVal ) in IsVersionNT64()
136 extern "C" UINT __stdcall InstallExecSequenceEntry(MSIHANDLE hMSI) in InstallExecSequenceEntry() argument
150 if (IsVersionNT64(hMSI)) in InstallExecSequenceEntry()
/trunk/main/setup_native/source/win32/customactions/quickstarter/
H A Dshutdown_quickstart.cxx29 MSIHANDLE hMSI = static_cast< MSIHANDLE >( lParam ); in EnumWindowsProc() local
41 std::string sOfficeImageDir = GetOfficeInstallationPath( hMSI ) + "program\\"; in EnumWindowsProc()
69 extern "C" UINT __stdcall ShutDownQuickstarter( MSIHANDLE hMSI ) in ShutDownQuickstarter() argument
71 EnumWindows( EnumWindowsProc, hMSI ); in ShutDownQuickstarter()
H A Dremove_quickstart_link.cxx40 extern "C" UINT __stdcall RemoveQuickstarterLink( MSIHANDLE hMSI ) in RemoveQuickstarterLink() argument
49 sQuickstartLinkPath += GetQuickstarterLinkName( hMSI ); in RemoveQuickstarterLink()

Completed in 19 milliseconds