aboutsummaryrefslogtreecommitdiff
path: root/src/ext/Bal/WixToolset.Dnc.Host/IBootstrapperApplicationFactory.cs
blob: 9673119231567556726b04f3639d1c0b37a1f477 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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.Dnc.Host
{
    using System;
    using System.Runtime.InteropServices;

    [InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
    public interface IBootstrapperApplicationFactory
    {
        void Create(
            IntPtr pArgs,
            IntPtr pResults
            );
    }
}