aboutsummaryrefslogtreecommitdiff
path: root/src/ext/Bal/Samples/bafunctions/bafunctions.cpp
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2024-01-11 18:26:20 -0800
committerRob Mensching <rob@firegiant.com>2024-03-06 18:03:38 -0800
commit0d3d54992104288e9ee0c834d0b96e8502fd2d42 (patch)
tree9efa49c4983cd2ba1becab64bd1f2faccac88acf /src/ext/Bal/Samples/bafunctions/bafunctions.cpp
parent2824298d9dd817a47527c920363556b54ead5d5d (diff)
downloadwix-0d3d54992104288e9ee0c834d0b96e8502fd2d42.tar.gz
wix-0d3d54992104288e9ee0c834d0b96e8502fd2d42.tar.bz2
wix-0d3d54992104288e9ee0c834d0b96e8502fd2d42.zip
Move the BootstrapperApplication out of proc
Diffstat (limited to 'src/ext/Bal/Samples/bafunctions/bafunctions.cpp')
-rw-r--r--src/ext/Bal/Samples/bafunctions/bafunctions.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ext/Bal/Samples/bafunctions/bafunctions.cpp b/src/ext/Bal/Samples/bafunctions/bafunctions.cpp
index fc9d1177..d26e7cce 100644
--- a/src/ext/Bal/Samples/bafunctions/bafunctions.cpp
+++ b/src/ext/Bal/Samples/bafunctions/bafunctions.cpp
@@ -26,13 +26,13 @@ extern "C" BOOL WINAPI DllMain(
26} 26}
27 27
28extern "C" HRESULT WINAPI BAFunctionsCreate( 28extern "C" HRESULT WINAPI BAFunctionsCreate(
29 __in const BA_FUNCTIONS_CREATE_ARGS* pArgs, 29 __in const BA_FUNCTIONS_CREATE_ARGS* /*pArgs*/,
30 __inout BA_FUNCTIONS_CREATE_RESULTS* pResults 30 __inout BA_FUNCTIONS_CREATE_RESULTS* /*pResults*/
31 ) 31 )
32{ 32{
33 HRESULT hr = S_OK; 33 HRESULT hr = S_OK;
34 34
35 hr = CreateBAFunctions(vhInstance, pArgs, pResults); 35 //hr = CreateBAFunctions(vhInstance, pArgs, pResults);
36 BalExitOnFailure(hr, "Failed to create BAFunctions interface."); 36 BalExitOnFailure(hr, "Failed to create BAFunctions interface.");
37 37
38LExit: 38LExit: