aboutsummaryrefslogtreecommitdiff
path: root/src/ext/Bal/Samples/bafunctions/bafunctions.cpp
diff options
context:
space:
mode:
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: