BUILD: Updated WIX to v3.7.917.0

This commit is contained in:
ptsurbeleu 2012-09-18 22:21:14 -07:00
parent 92975d7272
commit 2d9c8fd86d
171 changed files with 2597 additions and 200 deletions

View file

@ -91,12 +91,40 @@ public: // IBurnUserExperience
}
virtual STDMETHODIMP_(int) OnDetectBegin(
__in BOOL /*fInstalled*/,
__in DWORD /*cPackages*/
)
{
return CheckCanceled() ? IDCANCEL : IDNOACTION;
}
virtual STDMETHODIMP_(int) OnDetectForwardCompatibleBundle(
__in_z LPCWSTR /*wzBundleId*/,
__in BOOTSTRAPPER_RELATION_TYPE /*relationType*/,
__in_z LPCWSTR /*wzBundleTag*/,
__in BOOL /*fPerMachine*/,
__in DWORD64 /*dw64Version*/,
__in int nRecommendation
)
{
return CheckCanceled() ? IDCANCEL : nRecommendation;
}
virtual STDMETHODIMP_(int) OnDetectUpdateBegin(
__in_z LPCWSTR /*wzUpdateLocation*/,
__in int nRecommendation
)
{
return CheckCanceled() ? IDCANCEL : nRecommendation;
}
virtual STDMETHODIMP_(void) OnDetectUpdateComplete(
__in HRESULT /*hrStatus*/,
__in_z_opt LPCWSTR /*wzUpdateLocation*/
)
{
}
virtual STDMETHODIMP_(int) OnDetectPriorBundle(
__in_z LPCWSTR /*wzBundleId*/
)
@ -113,6 +141,7 @@ public: // IBurnUserExperience
virtual STDMETHODIMP_(int) OnDetectRelatedBundle(
__in_z LPCWSTR /*wzBundleId*/,
__in BOOTSTRAPPER_RELATION_TYPE /*relationType*/,
__in_z LPCWSTR /*wzBundleTag*/,
__in BOOL /*fPerMachine*/,
__in DWORD64 /*dw64Version*/,