diff options
Diffstat (limited to 'src/burn/stub')
-rw-r--r-- | src/burn/stub/StubSection.cpp | 9 |
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") | 8 | static DWORD dwMagic = BURN_SECTION_MAGIC; |
9 | static DWORD dwMagic = 0x00f14300; | 9 | static DWORD dwVersion = BURN_SECTION_VERSION; |
10 | static DWORD dwVersion = 0x00000003; | ||
11 | 10 | ||
12 | static GUID guidBundleId = { }; | 11 | static GUID guidBundleId = { }; |
13 | 12 | ||