From c8edfc4d712c2f0abf3ba2d6b3fb2a8f0ad94261 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Thu, 23 Jan 2020 12:43:48 -0800 Subject: Expose table definitions from IWindowsInstallerBackendBinderExtension --- .../Services/IWindowsInstallerBackendHelper.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/WixToolset.Extensibility/Services/IWindowsInstallerBackendHelper.cs') diff --git a/src/WixToolset.Extensibility/Services/IWindowsInstallerBackendHelper.cs b/src/WixToolset.Extensibility/Services/IWindowsInstallerBackendHelper.cs index 573620df..4552c7cb 100644 --- a/src/WixToolset.Extensibility/Services/IWindowsInstallerBackendHelper.cs +++ b/src/WixToolset.Extensibility/Services/IWindowsInstallerBackendHelper.cs @@ -2,6 +2,7 @@ namespace WixToolset.Extensibility.Services { + using System.Collections.Generic; using WixToolset.Data; using WixToolset.Data.WindowsInstaller; @@ -10,8 +11,8 @@ namespace WixToolset.Extensibility.Services /// public interface IWindowsInstallerBackendHelper { - bool TryAddTupleToOutputMatchingTableDefinitions(IntermediateTuple tuple, WindowsInstallerData output, TableDefinition[] tableDefinitions); + bool TryAddTupleToOutputMatchingTableDefinitions(IntermediateTuple tuple, WindowsInstallerData output, IEnumerable tableDefinitions); - bool TryAddTupleToOutputMatchingTableDefinitions(IntermediateTuple tuple, WindowsInstallerData output, TableDefinition[] tableDefinitions, bool columnZeroIsId); + bool TryAddTupleToOutputMatchingTableDefinitions(IntermediateTuple tuple, WindowsInstallerData output, IEnumerable tableDefinitions, bool columnZeroIsId); } } -- cgit v1.2.3-55-g6feb