aboutsummaryrefslogtreecommitdiff
path: root/src/test/examples/TestEngine/TestEngine.h
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-04-23 12:26:07 +1000
committerSean Hall <r.sean.hall@gmail.com>2020-04-23 12:43:38 +1000
commitab495395492055c8c016e54ab0b1f7af2e9f164c (patch)
treef7f86e82cb463303c5bf2e501065ea09a9b62af0 /src/test/examples/TestEngine/TestEngine.h
parentbd3ee565f342bc0bb015594f303d13b67285a958 (diff)
downloadwix-ab495395492055c8c016e54ab0b1f7af2e9f164c.tar.gz
wix-ab495395492055c8c016e54ab0b1f7af2e9f164c.tar.bz2
wix-ab495395492055c8c016e54ab0b1f7af2e9f164c.zip
Add reload engine and test.
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