aboutsummaryrefslogtreecommitdiff
path: root/src/burn/stub
diff options
context:
space:
mode:
Diffstat (limited to 'src/burn/stub')
-rw-r--r--src/burn/stub/StubSection.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/burn/stub/StubSection.cpp b/src/burn/stub/StubSection.cpp
index 2191a138..62d3e91e 100644
--- a/src/burn/stub/StubSection.cpp
+++ b/src/burn/stub/StubSection.cpp
@@ -2,12 +2,11 @@
2 2
3#include "precomp.h" 3#include "precomp.h"
4 4
5#pragma section(".wixburn",read) 5#pragma section(BURN_SECTION_NAME,read)
6 6
7// If these defaults ever change, be sure to update constants in burn\engine\section.cpp as well. 7#pragma data_seg(push, BURN_SECTION_NAME)
8#pragma data_seg(push, ".wixburn") 8static DWORD dwMagic = BURN_SECTION_MAGIC;
9static DWORD dwMagic = 0x00f14300; 9static DWORD dwVersion = BURN_SECTION_VERSION;
10static DWORD dwVersion = 0x00000003;
11 10
12static GUID guidBundleId = { }; 11static GUID guidBundleId = { };
13 12