From 8b55203c8b5a66362464f0738380932ac49918be Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Thu, 11 Jan 2024 00:17:24 -0800 Subject: Correctly prefix the functions exposed from burnpipe.h --- src/burn/test/BurnUnitTest/EmbeddedTest.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/burn/test/BurnUnitTest/EmbeddedTest.cpp') diff --git a/src/burn/test/BurnUnitTest/EmbeddedTest.cpp b/src/burn/test/BurnUnitTest/EmbeddedTest.cpp index 7560fe25..8d70cbab 100644 --- a/src/burn/test/BurnUnitTest/EmbeddedTest.cpp +++ b/src/burn/test/BurnUnitTest/EmbeddedTest.cpp @@ -133,7 +133,7 @@ static DWORD CALLBACK EmbeddedTest_ThreadProc( engineState.internalCommand.mode = BURN_MODE_EMBEDDED; - PipeConnectionInitialize(pConnection); + BurnPipeConnectionInitialize(pConnection); StrAlloc(&pConnection->sczName, MAX_PATH); StrAlloc(&pConnection->sczSecret, MAX_PATH); @@ -145,11 +145,11 @@ static DWORD CALLBACK EmbeddedTest_ThreadProc( } // set up connection with parent bundle runner - hr = PipeChildConnect(pConnection, FALSE); + hr = BurnPipeChildConnect(pConnection, FALSE); ExitOnFailure(hr, "Failed to connect to parent bundle runner."); // post unknown message - hr = PipeSendMessage(pConnection->hPipe, TEST_UNKNOWN_MESSAGE_ID, NULL, 0, NULL, NULL, &dwResult); + hr = BurnPipeSendMessage(pConnection->hPipe, TEST_UNKNOWN_MESSAGE_ID, NULL, 0, NULL, NULL, &dwResult); ExitOnFailure(hr, "Failed to post unknown message to parent bundle runner."); if (E_NOTIMPL != dwResult) @@ -162,7 +162,7 @@ static DWORD CALLBACK EmbeddedTest_ThreadProc( ExitOnFailure(hr, "Failed to post known message to parent bundle runner."); LExit: - PipeConnectionUninitialize(pConnection); + BurnPipeConnectionUninitialize(pConnection); ReleaseStr(sczArguments); return FAILED(hr) ? (DWORD)hr : dwResult; @@ -179,7 +179,7 @@ static int EmbeddedTest_GenericMessageHandler( if (GENERIC_EXECUTE_MESSAGE_ERROR == pMessage->type) { // post unknown message - HRESULT hr = PipeSendMessage(pContext->connection.hPipe, TEST_UNKNOWN_MESSAGE_ID, NULL, 0, NULL, NULL, &dwResult); + HRESULT hr = BurnPipeSendMessage(pContext->connection.hPipe, TEST_UNKNOWN_MESSAGE_ID, NULL, 0, NULL, NULL, &dwResult); ExitOnFailure(hr, "Failed to post unknown message to embedded bundle."); if (E_NOTIMPL != dwResult) -- cgit v1.2.3-55-g6feb