diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2020-04-23 12:17:32 +1000 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2020-04-23 12:43:38 +1000 |
commit | bd3ee565f342bc0bb015594f303d13b67285a958 (patch) | |
tree | 1994e37e385851a7cfdd69b3f7cf03b3bfaa8a7b /src/test/examples/TestEngine/TestEngine.h | |
parent | 05edba00dc08b74a6d9b32b4e56f4da6ef90c638 (diff) | |
download | wix-bd3ee565f342bc0bb015594f303d13b67285a958.tar.gz wix-bd3ee565f342bc0bb015594f303d13b67285a958.tar.bz2 wix-bd3ee565f342bc0bb015594f303d13b67285a958.zip |
Update ManagedHost tests to run off of a bundle.
Diffstat (limited to 'src/test/examples/TestEngine/TestEngine.h')
-rw-r--r-- | src/test/examples/TestEngine/TestEngine.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/test/examples/TestEngine/TestEngine.h b/src/test/examples/TestEngine/TestEngine.h index 52872100..e5db9480 100644 --- a/src/test/examples/TestEngine/TestEngine.h +++ b/src/test/examples/TestEngine/TestEngine.h | |||
@@ -7,6 +7,7 @@ class TestEngine | |||
7 | { | 7 | { |
8 | public: | 8 | public: |
9 | HRESULT LoadBA( | 9 | HRESULT LoadBA( |
10 | __in LPCWSTR wzBundleFilePath, | ||
10 | __in LPCWSTR wzBAFilePath | 11 | __in LPCWSTR wzBAFilePath |
11 | ); | 12 | ); |
12 | 13 | ||
@@ -18,6 +19,10 @@ public: | |||
18 | __in BOOTSTRAPPER_SHUTDOWN_ACTION defaultAction | 19 | __in BOOTSTRAPPER_SHUTDOWN_ACTION defaultAction |
19 | ); | 20 | ); |
20 | 21 | ||
22 | HRESULT SendStartupEvent(); | ||
23 | |||
24 | void UnloadBA(); | ||
25 | |||
21 | private: | 26 | private: |
22 | static HRESULT BAEngineLog( | 27 | static HRESULT BAEngineLog( |
23 | __in TestEngine* pContext, | 28 | __in TestEngine* pContext, |
@@ -38,5 +43,6 @@ public: | |||
38 | ~TestEngine(); | 43 | ~TestEngine(); |
39 | 44 | ||
40 | private: | 45 | private: |
46 | HMODULE m_hBAModule; | ||
41 | BOOTSTRAPPER_CREATE_RESULTS* m_pCreateResults; | 47 | BOOTSTRAPPER_CREATE_RESULTS* m_pCreateResults; |
42 | }; \ No newline at end of file | 48 | }; \ No newline at end of file |