aboutsummaryrefslogtreecommitdiff
path: root/src/test/examples/TestEngine/TestEngine.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/examples/TestEngine/TestEngine.h')
-rw-r--r--src/test/examples/TestEngine/TestEngine.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/test/examples/TestEngine/TestEngine.h b/src/test/examples/TestEngine/TestEngine.h
index e5db9480..cf1c8aac 100644
--- a/src/test/examples/TestEngine/TestEngine.h
+++ b/src/test/examples/TestEngine/TestEngine.h
@@ -1,13 +1,15 @@
1#pragma once 1#pragma once
2// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. 2// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
3 3
4#include "precomp.h"
5 4
6class TestEngine 5class TestEngine
7{ 6{
8public: 7public:
8 HRESULT Initialize(
9 __in LPCWSTR wzBundleFilePath
10 );
11
9 HRESULT LoadBA( 12 HRESULT LoadBA(
10 __in LPCWSTR wzBundleFilePath,
11 __in LPCWSTR wzBAFilePath 13 __in LPCWSTR wzBAFilePath
12 ); 14 );
13 15