diff options
| author | Sean Hall <r.sean.hall@gmail.com> | 2018-12-29 22:12:08 -0600 |
|---|---|---|
| committer | Sean Hall <r.sean.hall@gmail.com> | 2018-12-29 22:12:08 -0600 |
| commit | 61847dddd4fd497057c780658e383c4627de19ec (patch) | |
| tree | f85a845182922538ab9aa6ee85b0db3ab40c1f6e /src/engine/precomp.h | |
| parent | 8295f5f8fd28042e1a0a172d5afbba79178064c2 (diff) | |
| download | wix-61847dddd4fd497057c780658e383c4627de19ec.tar.gz wix-61847dddd4fd497057c780658e383c4627de19ec.tar.bz2 wix-61847dddd4fd497057c780658e383c4627de19ec.zip | |
Import code from old v4 repo
Diffstat (limited to 'src/engine/precomp.h')
| -rw-r--r-- | src/engine/precomp.h | 100 |
1 files changed, 100 insertions, 0 deletions
diff --git a/src/engine/precomp.h b/src/engine/precomp.h new file mode 100644 index 00000000..d3ebe354 --- /dev/null +++ b/src/engine/precomp.h | |||
| @@ -0,0 +1,100 @@ | |||
| 1 | #pragma once | ||
| 2 | // 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. | ||
| 3 | |||
| 4 | |||
| 5 | #define ExitTrace LogErrorString | ||
| 6 | |||
| 7 | #include <wixver.h> | ||
| 8 | |||
| 9 | #include <windows.h> | ||
| 10 | #include <aclapi.h> | ||
| 11 | #include <Bits.h> | ||
| 12 | #include <gdiplus.h> | ||
| 13 | #include <math.h> | ||
| 14 | #include <msiquery.h> | ||
| 15 | #include <sddl.h> | ||
| 16 | #include <shlobj.h> | ||
| 17 | #include <shlwapi.h> | ||
| 18 | #include <softpub.h> | ||
| 19 | #include <strsafe.h> | ||
| 20 | #include <intsafe.h> | ||
| 21 | #include <mscat.h> | ||
| 22 | #include <lmcons.h> | ||
| 23 | #include <wininet.h> | ||
| 24 | #include <stddef.h> | ||
| 25 | |||
| 26 | #include <dutil.h> | ||
| 27 | #include <aclutil.h> | ||
| 28 | #include <apputil.h> | ||
| 29 | #include <buffutil.h> | ||
| 30 | #include <cabutil.h> | ||
| 31 | #include <certutil.h> | ||
| 32 | #include <cryputil.h> | ||
| 33 | #include <dirutil.h> | ||
| 34 | #include <fileutil.h> | ||
| 35 | #include <gdiputil.h> | ||
| 36 | #include <guidutil.h> | ||
| 37 | #include <logutil.h> | ||
| 38 | #include <memutil.h> | ||
| 39 | #include <osutil.h> | ||
| 40 | #include <pathutil.h> | ||
| 41 | #include <polcutil.h> | ||
| 42 | #include <procutil.h> | ||
| 43 | #include <regutil.h> | ||
| 44 | #include <resrutil.h> | ||
| 45 | #include <shelutil.h> | ||
| 46 | #include <srputil.h> | ||
| 47 | #include <strutil.h> | ||
| 48 | #include <svcutil.h> | ||
| 49 | #include <userutil.h> | ||
| 50 | #include <wiutil.h> | ||
| 51 | #include <wuautil.h> | ||
| 52 | #include <xmlutil.h> | ||
| 53 | #include <dictutil.h> | ||
| 54 | #include <deputil.h> | ||
| 55 | #include <dlutil.h> | ||
| 56 | #include <atomutil.h> | ||
| 57 | #include <apuputil.h> | ||
| 58 | |||
| 59 | #include "BootstrapperEngine.h" | ||
| 60 | #include "BootstrapperApplication.h" | ||
| 61 | |||
| 62 | #include "platform.h" | ||
| 63 | #include "variant.h" | ||
| 64 | #include "variable.h" | ||
| 65 | #include "condition.h" | ||
| 66 | #include "search.h" | ||
| 67 | #include "section.h" | ||
| 68 | #include "approvedexe.h" | ||
| 69 | #include "container.h" | ||
| 70 | #include "catalog.h" | ||
| 71 | #include "payload.h" | ||
| 72 | #include "cabextract.h" | ||
| 73 | #include "userexperience.h" | ||
| 74 | #include "package.h" | ||
| 75 | #include "update.h" | ||
| 76 | #include "pseudobundle.h" | ||
| 77 | #include "registration.h" | ||
| 78 | #include "relatedbundle.h" | ||
| 79 | #include "detect.h" | ||
| 80 | #include "plan.h" | ||
| 81 | #include "logging.h" | ||
| 82 | #include "pipe.h" | ||
| 83 | #include "core.h" | ||
| 84 | #include "cache.h" | ||
| 85 | #include "apply.h" | ||
| 86 | #include "exeengine.h" | ||
| 87 | #include "msiengine.h" | ||
| 88 | #include "mspengine.h" | ||
| 89 | #include "msuengine.h" | ||
| 90 | #include "dependency.h" | ||
| 91 | #include "elevation.h" | ||
| 92 | #include "embedded.h" | ||
| 93 | #include "manifest.h" | ||
| 94 | #include "splashscreen.h" | ||
| 95 | #include "uithread.h" | ||
| 96 | #include "bitsengine.h" | ||
| 97 | #include "netfxchainer.h" | ||
| 98 | |||
| 99 | #include "EngineForApplication.h" | ||
| 100 | #include "engine.messages.h" | ||
