diff options
Diffstat (limited to 'src/ext')
-rw-r--r-- | src/ext/Bal/Samples/bafunctions/WixSampleBAFunctions.cpp | 3 | ||||
-rw-r--r-- | src/ext/Bal/wixstdba/WixStandardBootstrapperApplication.cpp | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/ext/Bal/Samples/bafunctions/WixSampleBAFunctions.cpp b/src/ext/Bal/Samples/bafunctions/WixSampleBAFunctions.cpp index 531b86a3..870b219b 100644 --- a/src/ext/Bal/Samples/bafunctions/WixSampleBAFunctions.cpp +++ b/src/ext/Bal/Samples/bafunctions/WixSampleBAFunctions.cpp | |||
@@ -8,6 +8,7 @@ class CWixSampleBAFunctions : public CBalBaseBAFunctions | |||
8 | { | 8 | { |
9 | public: // IBootstrapperApplication | 9 | public: // IBootstrapperApplication |
10 | virtual STDMETHODIMP OnDetectBegin( | 10 | virtual STDMETHODIMP OnDetectBegin( |
11 | __in BOOL fCached, | ||
11 | __in BOOL fInstalled, | 12 | __in BOOL fInstalled, |
12 | __in DWORD cPackages, | 13 | __in DWORD cPackages, |
13 | __inout BOOL* pfCancel | 14 | __inout BOOL* pfCancel |
@@ -15,7 +16,7 @@ public: // IBootstrapperApplication | |||
15 | { | 16 | { |
16 | HRESULT hr = S_OK; | 17 | HRESULT hr = S_OK; |
17 | 18 | ||
18 | BalLog(BOOTSTRAPPER_LOG_LEVEL_STANDARD, "Running detect begin BA function. fInstalled=%d, cPackages=%u, fCancel=%d", fInstalled, cPackages, *pfCancel); | 19 | BalLog(BOOTSTRAPPER_LOG_LEVEL_STANDARD, "Running detect begin BA function. fCached=%d, fInstalled=%d, cPackages=%u, fCancel=%d", fCached, fInstalled, cPackages, *pfCancel); |
19 | 20 | ||
20 | //------------------------------------------------------------------------------------------------- | 21 | //------------------------------------------------------------------------------------------------- |
21 | // YOUR CODE GOES HERE | 22 | // YOUR CODE GOES HERE |
diff --git a/src/ext/Bal/wixstdba/WixStandardBootstrapperApplication.cpp b/src/ext/Bal/wixstdba/WixStandardBootstrapperApplication.cpp index d1b18cb3..4d819c7d 100644 --- a/src/ext/Bal/wixstdba/WixStandardBootstrapperApplication.cpp +++ b/src/ext/Bal/wixstdba/WixStandardBootstrapperApplication.cpp | |||
@@ -275,7 +275,8 @@ public: // IBootstrapperApplication | |||
275 | virtual STDMETHODIMP OnDetectPackageComplete( | 275 | virtual STDMETHODIMP OnDetectPackageComplete( |
276 | __in LPCWSTR wzPackageId, | 276 | __in LPCWSTR wzPackageId, |
277 | __in HRESULT /*hrStatus*/, | 277 | __in HRESULT /*hrStatus*/, |
278 | __in BOOTSTRAPPER_PACKAGE_STATE state | 278 | __in BOOTSTRAPPER_PACKAGE_STATE state, |
279 | __in BOOL /*fCached*/ | ||
279 | ) | 280 | ) |
280 | { | 281 | { |
281 | WIXSTDBA_PACKAGE_INFO* pPackageInfo = NULL; | 282 | WIXSTDBA_PACKAGE_INFO* pPackageInfo = NULL; |