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, 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{
8public: 8public:
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
21private: 26private:
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
40private: 45private:
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