diff options
author | Rob Mensching <rob@firegiant.com> | 2024-01-11 18:26:20 -0800 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2024-03-06 18:03:38 -0800 |
commit | 0d3d54992104288e9ee0c834d0b96e8502fd2d42 (patch) | |
tree | 9efa49c4983cd2ba1becab64bd1f2faccac88acf /src/api/burn/WixToolset.Mba.Core/MbaNative.cs | |
parent | 2824298d9dd817a47527c920363556b54ead5d5d (diff) | |
download | wix-0d3d54992104288e9ee0c834d0b96e8502fd2d42.tar.gz wix-0d3d54992104288e9ee0c834d0b96e8502fd2d42.tar.bz2 wix-0d3d54992104288e9ee0c834d0b96e8502fd2d42.zip |
Move the BootstrapperApplication out of proc
Diffstat (limited to 'src/api/burn/WixToolset.Mba.Core/MbaNative.cs')
-rw-r--r-- | src/api/burn/WixToolset.Mba.Core/MbaNative.cs | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/api/burn/WixToolset.Mba.Core/MbaNative.cs b/src/api/burn/WixToolset.Mba.Core/MbaNative.cs index a68a3907..e8e9d576 100644 --- a/src/api/burn/WixToolset.Mba.Core/MbaNative.cs +++ b/src/api/burn/WixToolset.Mba.Core/MbaNative.cs | |||
@@ -8,14 +8,10 @@ namespace WixToolset.Mba.Core | |||
8 | internal static class MbaNative | 8 | internal static class MbaNative |
9 | { | 9 | { |
10 | [DllImport("mbanative.dll", ExactSpelling = true, PreserveSig = false)] | 10 | [DllImport("mbanative.dll", ExactSpelling = true, PreserveSig = false)] |
11 | internal static extern IBootstrapperEngine InitializeFromCreateArgs( | 11 | internal static extern void BootstrapperApplicationDebuggerCheck(); |
12 | IntPtr pArgs, | ||
13 | ref Command pCommand | ||
14 | ); | ||
15 | 12 | ||
16 | [DllImport("mbanative.dll", ExactSpelling = true)] | 13 | [DllImport("mbanative.dll", ExactSpelling = true, PreserveSig = false)] |
17 | internal static extern void StoreBAInCreateResults( | 14 | internal static extern void BootstrapperApplicationRun( |
18 | IntPtr pResults, | ||
19 | [MarshalAs(UnmanagedType.Interface)] IBootstrapperApplication pBA | 15 | [MarshalAs(UnmanagedType.Interface)] IBootstrapperApplication pBA |
20 | ); | 16 | ); |
21 | } | 17 | } |