diff options
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 | } |