Lines Matching refs:hMSI
89 bool WriteRegistry( MSIHANDLE & hMSI, OPERATION op, const wchar_t* componentName) in WriteRegistry() argument
93 UINT ret = MsiGetComponentState( hMSI, componentName, ¤t_state, &comp_state ); in WriteRegistry()
160 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
471 Reg64(hMSI, REMOVE); in DeinstallReg64()