aboutsummaryrefslogtreecommitdiff
path: root/src/test/burn/TestData/PrereqBaTests/PrereqBaf/PrereqBaf.cpp
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2024-03-21 00:59:21 -0700
committerRob Mensching <rob@firegiant.com>2024-03-21 13:07:14 -0700
commit90cdebbe94c7f60db86965ffb97d9ba51d0bc9fc (patch)
tree8701442f92b68fc5d7d24ebc09449419b6824cd5 /src/test/burn/TestData/PrereqBaTests/PrereqBaf/PrereqBaf.cpp
parenta2b75ebed82be8c488f2840c359a512e865d682c (diff)
downloadwix-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/burn/TestData/PrereqBaTests/PrereqBaf/PrereqBaf.cpp')
-rw-r--r--src/test/burn/TestData/PrereqBaTests/PrereqBaf/PrereqBaf.cpp4
1 files changed, 2 insertions, 2 deletions
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
9public: // IBAFunctions 9public: // IBAFunctions
10 10
11public: //IBootstrapperApplication 11public: //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");