From 0d3d54992104288e9ee0c834d0b96e8502fd2d42 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Thu, 11 Jan 2024 18:26:20 -0800 Subject: Move the BootstrapperApplication out of proc --- src/ext/Bal/Samples/bafunctions/bafunctions.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/ext/Bal/Samples/bafunctions/bafunctions.cpp') 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( } extern "C" HRESULT WINAPI BAFunctionsCreate( - __in const BA_FUNCTIONS_CREATE_ARGS* pArgs, - __inout BA_FUNCTIONS_CREATE_RESULTS* pResults + __in const BA_FUNCTIONS_CREATE_ARGS* /*pArgs*/, + __inout BA_FUNCTIONS_CREATE_RESULTS* /*pResults*/ ) { HRESULT hr = S_OK; - hr = CreateBAFunctions(vhInstance, pArgs, pResults); + //hr = CreateBAFunctions(vhInstance, pArgs, pResults); BalExitOnFailure(hr, "Failed to create BAFunctions interface."); LExit: -- cgit v1.2.3-55-g6feb