Lines Matching refs:hMSI
43 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()
134 if ( GetMsiProp( hMSI, L"OLDPRODUCTSPATCH", &pVal ) && pVal ) in CheckVersions()