diff options
Diffstat (limited to 'src/ext/Bal/Samples/bafunctions/WixSampleBAFunctions.cpp')
-rw-r--r-- | src/ext/Bal/Samples/bafunctions/WixSampleBAFunctions.cpp | 3 |
1 files changed, 2 insertions, 1 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 |