main
cs 14 lines 508 Bytes
Raw
1 // 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.
2
3 namespace WixToolset.Core.Burn
4 {
5 using System.Xml;
6 using WixToolset.Extensibility.Services;
7
8 internal interface IInternalBurnBackendHelper : IBurnBackendHelper
9 {
10 void WriteBootstrapperApplicationData(XmlWriter writer);
11
12 void WriteBootstrapperExtensionData(XmlWriter writer);
13 }
14 }