aboutsummaryrefslogtreecommitdiff
path: root/src/burn/engine/EngineForApplication.h
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2024-01-11 18:26:20 -0800
committerRob Mensching <rob@firegiant.com>2024-03-06 18:03:38 -0800
commit0d3d54992104288e9ee0c834d0b96e8502fd2d42 (patch)
tree9efa49c4983cd2ba1becab64bd1f2faccac88acf /src/burn/engine/EngineForApplication.h
parent2824298d9dd817a47527c920363556b54ead5d5d (diff)
downloadwix-0d3d54992104288e9ee0c834d0b96e8502fd2d42.tar.gz
wix-0d3d54992104288e9ee0c834d0b96e8502fd2d42.tar.bz2
wix-0d3d54992104288e9ee0c834d0b96e8502fd2d42.zip
Move the BootstrapperApplication out of proc
Diffstat (limited to 'src/burn/engine/EngineForApplication.h')
-rw-r--r--src/burn/engine/EngineForApplication.h59
1 files changed, 0 insertions, 59 deletions
diff --git a/src/burn/engine/EngineForApplication.h b/src/burn/engine/EngineForApplication.h
deleted file mode 100644
index bf86b7ee..00000000
--- a/src/burn/engine/EngineForApplication.h
+++ /dev/null
@@ -1,59 +0,0 @@
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.
3
4
5#if defined(__cplusplus)
6extern "C" {
7#endif
8
9// structs
10
11typedef struct _BOOTSTRAPPER_ENGINE_CONTEXT
12{
13 BURN_ENGINE_STATE* pEngineState;
14 QUEUTIL_QUEUE_HANDLE hQueue;
15 HANDLE hQueueSemaphore;
16 CRITICAL_SECTION csQueue;
17} BOOTSTRAPPER_ENGINE_CONTEXT;
18
19typedef struct _BOOTSTRAPPER_ENGINE_ACTION
20{
21 WM_BURN dwMessage;
22 union
23 {
24 struct
25 {
26 HWND hwndParent;
27 } detect;
28 struct
29 {
30 BOOTSTRAPPER_ACTION action;
31 } plan;
32 struct
33 {
34 HWND hwndParent;
35 } elevate;
36 struct
37 {
38 HWND hwndParent;
39 } apply;
40 BURN_LAUNCH_APPROVED_EXE launchApprovedExe;
41 struct
42 {
43 DWORD dwExitCode;
44 } quit;
45 };
46} BOOTSTRAPPER_ENGINE_ACTION;
47
48// function declarations
49
50HRESULT WINAPI EngineForApplicationProc(
51 __in BOOTSTRAPPER_ENGINE_MESSAGE message,
52 __in const LPVOID pvArgs,
53 __inout LPVOID pvResults,
54 __in_opt LPVOID pvContext
55 );
56
57#if defined(__cplusplus)
58}
59#endif