diff options
| author | Rob Mensching <rob@firegiant.com> | 2020-01-23 12:43:48 -0800 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2020-01-23 12:44:58 -0800 |
| commit | c8edfc4d712c2f0abf3ba2d6b3fb2a8f0ad94261 (patch) | |
| tree | d4fd108cb427029553cf4f5470cca6c7d494bf72 /src/WixToolset.Extensibility/Services/IWindowsInstallerBackendHelper.cs | |
| parent | fdb5b2a2cf0690cebbb449ba47370bdc55928539 (diff) | |
| download | wix-c8edfc4d712c2f0abf3ba2d6b3fb2a8f0ad94261.tar.gz wix-c8edfc4d712c2f0abf3ba2d6b3fb2a8f0ad94261.tar.bz2 wix-c8edfc4d712c2f0abf3ba2d6b3fb2a8f0ad94261.zip | |
Expose table definitions from IWindowsInstallerBackendBinderExtension
Diffstat (limited to 'src/WixToolset.Extensibility/Services/IWindowsInstallerBackendHelper.cs')
| -rw-r--r-- | src/WixToolset.Extensibility/Services/IWindowsInstallerBackendHelper.cs | 5 |
1 files changed, 3 insertions, 2 deletions
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 @@ | |||
| 2 | 2 | ||
| 3 | namespace WixToolset.Extensibility.Services | 3 | namespace WixToolset.Extensibility.Services |
| 4 | { | 4 | { |
| 5 | using System.Collections.Generic; | ||
| 5 | using WixToolset.Data; | 6 | using WixToolset.Data; |
| 6 | using WixToolset.Data.WindowsInstaller; | 7 | using WixToolset.Data.WindowsInstaller; |
| 7 | 8 | ||
| @@ -10,8 +11,8 @@ namespace WixToolset.Extensibility.Services | |||
| 10 | /// </summary> | 11 | /// </summary> |
| 11 | public interface IWindowsInstallerBackendHelper | 12 | public interface IWindowsInstallerBackendHelper |
| 12 | { | 13 | { |
| 13 | bool TryAddTupleToOutputMatchingTableDefinitions(IntermediateTuple tuple, WindowsInstallerData output, TableDefinition[] tableDefinitions); | 14 | bool TryAddTupleToOutputMatchingTableDefinitions(IntermediateTuple tuple, WindowsInstallerData output, IEnumerable<TableDefinition> tableDefinitions); |
| 14 | 15 | ||
| 15 | bool TryAddTupleToOutputMatchingTableDefinitions(IntermediateTuple tuple, WindowsInstallerData output, TableDefinition[] tableDefinitions, bool columnZeroIsId); | 16 | bool TryAddTupleToOutputMatchingTableDefinitions(IntermediateTuple tuple, WindowsInstallerData output, IEnumerable<TableDefinition> tableDefinitions, bool columnZeroIsId); |
| 16 | } | 17 | } |
| 17 | } | 18 | } |
