main
cpp 22 lines 790 Bytes
Raw
1 // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
2
3 #include "precomp.h"
4
5 #pragma section(BURN_SECTION_NAME,read)
6
7 #pragma data_seg(push, BURN_SECTION_NAME)
8 static DWORD dwMagic = BURN_SECTION_MAGIC;
9 static DWORD dwVersion = BURN_SECTION_VERSION;
10
11 static GUID guidBundleId = { };
12
13 static DWORD dwStubSize = 0;
14 static DWORD dwOriginalChecksum = 0;
15 static DWORD dwOriginalSignatureOffset = 0;
16 static DWORD dwOriginalSignatureSize = 0;
17
18 static DWORD dwContainerFormat = 1;
19 static DWORD dwContainerCount = 0;
20 // (512 (minimum section size) - 48 (size of above data)) / 4 (size of DWORD)
21 static DWORD qwAttachedContainerSizes[116];
22 #pragma data_seg(pop)