diff options
Diffstat (limited to 'src/WixToolset.Extensibility/Services/IParseHelper.cs')
-rw-r--r-- | src/WixToolset.Extensibility/Services/IParseHelper.cs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/WixToolset.Extensibility/Services/IParseHelper.cs b/src/WixToolset.Extensibility/Services/IParseHelper.cs index 36caf192..a4eb3ce7 100644 --- a/src/WixToolset.Extensibility/Services/IParseHelper.cs +++ b/src/WixToolset.Extensibility/Services/IParseHelper.cs | |||
@@ -6,6 +6,7 @@ namespace WixToolset.Extensibility.Services | |||
6 | using System.Collections.Generic; | 6 | using System.Collections.Generic; |
7 | using System.Xml.Linq; | 7 | using System.Xml.Linq; |
8 | using WixToolset.Data; | 8 | using WixToolset.Data; |
9 | using WixToolset.Data.Tuples; | ||
9 | using WixToolset.Extensibility.Data; | 10 | using WixToolset.Extensibility.Data; |
10 | 11 | ||
11 | /// <summary> | 12 | /// <summary> |
@@ -89,7 +90,7 @@ namespace WixToolset.Extensibility.Services | |||
89 | /// <param name="value">The registry entry value.</param> | 90 | /// <param name="value">The registry entry value.</param> |
90 | /// <param name="componentId">The component which will control installation/uninstallation of the registry entry.</param> | 91 | /// <param name="componentId">The component which will control installation/uninstallation of the registry entry.</param> |
91 | /// <param name="escapeLeadingHash">If true, "escape" leading '#' characters so the value is written as a REG_SZ.</param> | 92 | /// <param name="escapeLeadingHash">If true, "escape" leading '#' characters so the value is written as a REG_SZ.</param> |
92 | Identifier CreateRegistryRow(IntermediateSection section, SourceLineNumber sourceLineNumbers, int root, string key, string name, string value, string componentId, bool escapeLeadingHash); | 93 | Identifier CreateRegistryRow(IntermediateSection section, SourceLineNumber sourceLineNumbers, RegistryRootType root, string key, string name, string value, string componentId, bool escapeLeadingHash); |
93 | 94 | ||
94 | /// <summary> | 95 | /// <summary> |
95 | /// Creates a short file/directory name using an identifier and long file/directory name as input. | 96 | /// Creates a short file/directory name using an identifier and long file/directory name as input. |
@@ -220,13 +221,13 @@ namespace WixToolset.Extensibility.Services | |||
220 | string GetAttributeLongFilename(SourceLineNumber sourceLineNumbers, XAttribute attribute, bool allowWildcards = false, bool allowRelative = false); | 221 | string GetAttributeLongFilename(SourceLineNumber sourceLineNumbers, XAttribute attribute, bool allowWildcards = false, bool allowRelative = false); |
221 | 222 | ||
222 | /// <summary> | 223 | /// <summary> |
223 | /// Gets a RegistryRoot as a MsiInterop.MsidbRegistryRoot value and displays an error for an illegal value. | 224 | /// Gets a RegistryRootType value and displays an error for an illegal value. |
224 | /// </summary> | 225 | /// </summary> |
225 | /// <param name="sourceLineNumbers">Source line information about the owner element.</param> | 226 | /// <param name="sourceLineNumbers">Source line information about the owner element.</param> |
226 | /// <param name="attribute">The attribute containing the value to get.</param> | 227 | /// <param name="attribute">The attribute containing the value to get.</param> |
227 | /// <param name="allowHkmu">Whether HKMU is returned as -1 (true), or treated as an error (false).</param> | 228 | /// <param name="allowHkmu">Whether HKMU is returned as -1 (true), or treated as an error (false).</param> |
228 | /// <returns>The attribute's RegisitryRootType value.</returns> | 229 | /// <returns>The attribute's RegisitryRootType value.</returns> |
229 | int GetAttributeMsidbRegistryRootValue(SourceLineNumber sourceLineNumbers, XAttribute attribute, bool allowHkmu); | 230 | RegistryRootType? GetAttributeRegistryRootValue(SourceLineNumber sourceLineNumbers, XAttribute attribute, bool allowHkmu); |
230 | 231 | ||
231 | /// <summary> | 232 | /// <summary> |
232 | /// Gets a version value or possibly a binder variable and displays an error for an illegal version value. | 233 | /// Gets a version value or possibly a binder variable and displays an error for an illegal version value. |