blob: e8e9d576f424e954a3ebfcacc32378685426a6a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// 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.
namespace WixToolset.Mba.Core
{
using System;
using System.Runtime.InteropServices;
internal static class MbaNative
{
[DllImport("mbanative.dll", ExactSpelling = true, PreserveSig = false)]
internal static extern void BootstrapperApplicationDebuggerCheck();
[DllImport("mbanative.dll", ExactSpelling = true, PreserveSig = false)]
internal static extern void BootstrapperApplicationRun(
[MarshalAs(UnmanagedType.Interface)] IBootstrapperApplication pBA
);
}
}
|