Lines Matching refs:hMSI
82 bool WriteRegistry( MSIHANDLE & hMSI, OPERATION op, const wchar_t* componentName) in WriteRegistry() argument
86 UINT ret = MsiGetComponentState( hMSI, componentName, ¤t_state, &comp_state ); in WriteRegistry()
153 BOOL GetMsiProp( MSIHANDLE hMSI, const wchar_t* pPropName, wchar_t** ppValue ) in GetMsiProp() argument
157 UINT ret = MsiGetProperty( hMSI, pPropName, L"", &sz ); in GetMsiProp()
164 MsiGetProperty( hMSI, pPropName, buff, &sz ); in GetMsiProp()
187 bool IsInstallForAllUsers( MSIHANDLE hMSI ) in IsInstallForAllUsers() argument
192 if ( GetMsiProp( hMSI, L"ALLUSERS", &pVal ) && pVal ) in IsInstallForAllUsers()
202 wchar_t* GetBasisInstallLocation( MSIHANDLE hMSI ) in GetBasisInstallLocation() argument
207 GetMsiProp( hMSI, L"INSTALLLOCATION", &pVal); in GetBasisInstallLocation()
451 extern "C" UINT __stdcall InstallReg64(MSIHANDLE hMSI) in InstallReg64() argument
454 Reg64(hMSI, SET); in InstallReg64()
458 extern "C" UINT __stdcall DeinstallReg64(MSIHANDLE hMSI) in DeinstallReg64() argument
461 Reg64(hMSI, REMOVE); in DeinstallReg64()