aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core.Burn/Bundles/BurnWriter.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Core.Burn/Bundles/BurnWriter.cs')
-rw-r--r--src/WixToolset.Core.Burn/Bundles/BurnWriter.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/WixToolset.Core.Burn/Bundles/BurnWriter.cs b/src/WixToolset.Core.Burn/Bundles/BurnWriter.cs
index 83b73a61..be9b8eaa 100644
--- a/src/WixToolset.Core.Burn/Bundles/BurnWriter.cs
+++ b/src/WixToolset.Core.Burn/Bundles/BurnWriter.cs
@@ -29,8 +29,8 @@ namespace WixToolset.Core.Burn.Bundles
29 /// <summary> 29 /// <summary>
30 /// Creates a BurnWriter for re-writing a PE file. 30 /// Creates a BurnWriter for re-writing a PE file.
31 /// </summary> 31 /// </summary>
32 /// <param name="messaging"></param>
32 /// <param name="fileExe">File to modify in-place.</param> 33 /// <param name="fileExe">File to modify in-place.</param>
33 /// <param name="bundleGuid">GUID for the bundle.</param>
34 private BurnWriter(IMessaging messaging, string fileExe) 34 private BurnWriter(IMessaging messaging, string fileExe)
35 : base(messaging, fileExe) 35 : base(messaging, fileExe)
36 { 36 {
@@ -39,6 +39,7 @@ namespace WixToolset.Core.Burn.Bundles
39 /// <summary> 39 /// <summary>
40 /// Opens a Burn writer. 40 /// Opens a Burn writer.
41 /// </summary> 41 /// </summary>
42 /// <param name="messaging"></param>
42 /// <param name="fileExe">Path to file.</param> 43 /// <param name="fileExe">Path to file.</param>
43 /// <returns>Burn writer.</returns> 44 /// <returns>Burn writer.</returns>
44 public static BurnWriter Open(IMessaging messaging, string fileExe) 45 public static BurnWriter Open(IMessaging messaging, string fileExe)
@@ -197,7 +198,9 @@ namespace WixToolset.Core.Burn.Bundles
197 /// Appends a container to the exe and updates the ".wixburn" section data to point to it. 198 /// Appends a container to the exe and updates the ".wixburn" section data to point to it.
198 /// </summary> 199 /// </summary>
199 /// <param name="containerStream">File stream to append to the current exe.</param> 200 /// <param name="containerStream">File stream to append to the current exe.</param>
201 /// <param name="containerSize">Size of the container.</param>
200 /// <param name="burnSectionOffsetSize">Offset of size field for this container in ".wixburn" section data.</param> 202 /// <param name="burnSectionOffsetSize">Offset of size field for this container in ".wixburn" section data.</param>
203 /// <param name="burnSectionCount">Number of Burn sections.</param>
201 /// <returns>true if the container data is successfully appended; false otherwise</returns> 204 /// <returns>true if the container data is successfully appended; false otherwise</returns>
202 private bool AppendContainer(Stream containerStream, UInt32 containerSize, UInt32 burnSectionOffsetSize, UInt32 burnSectionCount) 205 private bool AppendContainer(Stream containerStream, UInt32 containerSize, UInt32 burnSectionOffsetSize, UInt32 burnSectionCount)
203 { 206 {