aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Extensibility/Services/IWindowsInstallerBackendHelper.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Extensibility/Services/IWindowsInstallerBackendHelper.cs')
-rw-r--r--src/WixToolset.Extensibility/Services/IWindowsInstallerBackendHelper.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/WixToolset.Extensibility/Services/IWindowsInstallerBackendHelper.cs b/src/WixToolset.Extensibility/Services/IWindowsInstallerBackendHelper.cs
index 23e046fa..80d49d54 100644
--- a/src/WixToolset.Extensibility/Services/IWindowsInstallerBackendHelper.cs
+++ b/src/WixToolset.Extensibility/Services/IWindowsInstallerBackendHelper.cs
@@ -15,10 +15,10 @@ namespace WixToolset.Extensibility.Services
15 /// </summary> 15 /// </summary>
16 /// <param name="section">Parent section.</param> 16 /// <param name="section">Parent section.</param>
17 /// <param name="symbol">Symbol with line information for the row.</param> 17 /// <param name="symbol">Symbol with line information for the row.</param>
18 /// <param name="output">Current context.</param> 18 /// <param name="data">Windows Installer data.</param>
19 /// <param name="tableDefinition">Table definition for the row.</param> 19 /// <param name="tableDefinition">Table definition for the row.</param>
20 /// <returns></returns> 20 /// <returns></returns>
21 Row CreateRow(IntermediateSection section, IntermediateSymbol symbol, WindowsInstallerData output, TableDefinition tableDefinition); 21 Row CreateRow(IntermediateSection section, IntermediateSymbol symbol, WindowsInstallerData data, TableDefinition tableDefinition);
22 22
23 /// <summary> 23 /// <summary>
24 /// Looks up the registered <see cref="TableDefinition"/> for the given <see cref="IntermediateSymbol"/> and creates a <see cref="Row"/> in that table. 24 /// Looks up the registered <see cref="TableDefinition"/> for the given <see cref="IntermediateSymbol"/> and creates a <see cref="Row"/> in that table.
@@ -27,9 +27,9 @@ namespace WixToolset.Extensibility.Services
27 /// </summary> 27 /// </summary>
28 /// <param name="section">Parent section.</param> 28 /// <param name="section">Parent section.</param>
29 /// <param name="symbol">Symbol to create the row from.</param> 29 /// <param name="symbol">Symbol to create the row from.</param>
30 /// <param name="output">Current context.</param> 30 /// <param name="data">Windows Installer data.</param>
31 /// <param name="tableDefinitions">Table definitions that have been registered with the binder.</param> 31 /// <param name="tableDefinitions">Table definitions that have been registered with the binder.</param>
32 /// <returns>True if a row was created.</returns> 32 /// <returns>True if a row was created.</returns>
33 bool TryAddSymbolToOutputMatchingTableDefinitions(IntermediateSection section, IntermediateSymbol symbol, WindowsInstallerData output, TableDefinitionCollection tableDefinitions); 33 bool TryAddSymbolToMatchingTableDefinitions(IntermediateSection section, IntermediateSymbol symbol, WindowsInstallerData data, TableDefinitionCollection tableDefinitions);
34 } 34 }
35} 35}