diff options
author | Rob Mensching <rob@firegiant.com> | 2024-03-21 00:59:21 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2024-03-21 13:07:14 -0700 |
commit | 90cdebbe94c7f60db86965ffb97d9ba51d0bc9fc (patch) | |
tree | 8701442f92b68fc5d7d24ebc09449419b6824cd5 /src/test | |
parent | a2b75ebed82be8c488f2840c359a512e865d682c (diff) | |
download | wix-90cdebbe94c7f60db86965ffb97d9ba51d0bc9fc.tar.gz wix-90cdebbe94c7f60db86965ffb97d9ba51d0bc9fc.tar.bz2 wix-90cdebbe94c7f60db86965ffb97d9ba51d0bc9fc.zip |
Simplify BootstrapperApplication header files
Take this breaking change opportunity to simplify the header files used by
BA devs.
Diffstat (limited to 'src/test')
4 files changed, 5 insertions, 8 deletions
diff --git a/src/test/burn/TestData/BAFunctionsTests/BafRelatedBundleVariableTesting/precomp.h b/src/test/burn/TestData/BAFunctionsTests/BafRelatedBundleVariableTesting/precomp.h index 2e14786a..95a015ab 100644 --- a/src/test/burn/TestData/BAFunctionsTests/BafRelatedBundleVariableTesting/precomp.h +++ b/src/test/burn/TestData/BAFunctionsTests/BafRelatedBundleVariableTesting/precomp.h | |||
@@ -30,8 +30,7 @@ | |||
30 | #include "regutil.h" | 30 | #include "regutil.h" |
31 | #include "xmlutil.h" | 31 | #include "xmlutil.h" |
32 | 32 | ||
33 | #include "BalBaseBootstrapperApplication.h" | 33 | #include <BootstrapperApplicationBase.h> |
34 | #include "balutil.h" | ||
35 | 34 | ||
36 | #include "BAFunctions.h" | 35 | #include "BAFunctions.h" |
37 | #include "IBAFunctions.h" | 36 | #include "IBAFunctions.h" |
diff --git a/src/test/burn/TestData/Manual/BafThmutilTesting/precomp.h b/src/test/burn/TestData/Manual/BafThmutilTesting/precomp.h index 2e14786a..95a015ab 100644 --- a/src/test/burn/TestData/Manual/BafThmutilTesting/precomp.h +++ b/src/test/burn/TestData/Manual/BafThmutilTesting/precomp.h | |||
@@ -30,8 +30,7 @@ | |||
30 | #include "regutil.h" | 30 | #include "regutil.h" |
31 | #include "xmlutil.h" | 31 | #include "xmlutil.h" |
32 | 32 | ||
33 | #include "BalBaseBootstrapperApplication.h" | 33 | #include <BootstrapperApplicationBase.h> |
34 | #include "balutil.h" | ||
35 | 34 | ||
36 | #include "BAFunctions.h" | 35 | #include "BAFunctions.h" |
37 | #include "IBAFunctions.h" | 36 | #include "IBAFunctions.h" |
diff --git a/src/test/burn/TestData/PrereqBaTests/PrereqBaf/PrereqBaf.cpp b/src/test/burn/TestData/PrereqBaTests/PrereqBaf/PrereqBaf.cpp index 5e26faac..1eaebe63 100644 --- a/src/test/burn/TestData/PrereqBaTests/PrereqBaf/PrereqBaf.cpp +++ b/src/test/burn/TestData/PrereqBaTests/PrereqBaf/PrereqBaf.cpp | |||
@@ -9,7 +9,7 @@ class CPrereqBaf : public CBalBaseBAFunctions | |||
9 | public: // IBAFunctions | 9 | public: // IBAFunctions |
10 | 10 | ||
11 | public: //IBootstrapperApplication | 11 | public: //IBootstrapperApplication |
12 | STDMETHODIMP OnCreate( | 12 | virtual STDMETHODIMP OnCreate( |
13 | __in IBootstrapperEngine* pEngine, | 13 | __in IBootstrapperEngine* pEngine, |
14 | __in BOOTSTRAPPER_COMMAND* pCommand | 14 | __in BOOTSTRAPPER_COMMAND* pCommand |
15 | ) | 15 | ) |
@@ -17,7 +17,7 @@ public: //IBootstrapperApplication | |||
17 | HRESULT hr = S_OK; | 17 | HRESULT hr = S_OK; |
18 | 18 | ||
19 | hr = __super::OnCreate(pEngine, pCommand); | 19 | hr = __super::OnCreate(pEngine, pCommand); |
20 | ExitOnFailure(hr, "CBalBaseBootstrapperApplication initialization failed."); | 20 | ExitOnFailure(hr, "CPrereqBaf initialization failed."); |
21 | 21 | ||
22 | hr = StrAllocString(&m_sczBARuntimeDirectory, pCommand->wzBootstrapperWorkingFolder, 0); | 22 | hr = StrAllocString(&m_sczBARuntimeDirectory, pCommand->wzBootstrapperWorkingFolder, 0); |
23 | ExitOnFailure(hr, "Failed to copy working folder"); | 23 | ExitOnFailure(hr, "Failed to copy working folder"); |
diff --git a/src/test/burn/TestData/PrereqBaTests/PrereqBaf/precomp.h b/src/test/burn/TestData/PrereqBaTests/PrereqBaf/precomp.h index 8320bdd8..f39f9de7 100644 --- a/src/test/burn/TestData/PrereqBaTests/PrereqBaf/precomp.h +++ b/src/test/burn/TestData/PrereqBaTests/PrereqBaf/precomp.h | |||
@@ -18,8 +18,7 @@ | |||
18 | #include "pathutil.h" | 18 | #include "pathutil.h" |
19 | #include "strutil.h" | 19 | #include "strutil.h" |
20 | 20 | ||
21 | #include "BalBaseBootstrapperApplication.h" | 21 | #include <BootstrapperApplicationBase.h> |
22 | #include "balutil.h" | ||
23 | 22 | ||
24 | #include "BAFunctions.h" | 23 | #include "BAFunctions.h" |
25 | #include "IBAFunctions.h" | 24 | #include "IBAFunctions.h" |