OLD | NEW |
(Empty) | |
| 1 #pragma once |
| 2 //------------------------------------------------------------------------------
------------------- |
| 3 // <copyright file="precomp.h" company="Outercurve Foundation"> |
| 4 // Copyright (c) 2004, Outercurve Foundation. |
| 5 // This software is released under Microsoft Reciprocal License (MS-RL). |
| 6 // The license and further copyright text can be found in the file |
| 7 // LICENSE.TXT at the root directory of the distribution. |
| 8 // </copyright> |
| 9 // |
| 10 // <summary> |
| 11 // Precompiled header for WiX CA |
| 12 // </summary> |
| 13 //------------------------------------------------------------------------------
------------------- |
| 14 |
| 15 #if _WIN32_MSI < 150 |
| 16 #define _WIN32_MSI 150 |
| 17 #endif |
| 18 |
| 19 #include <windows.h> |
| 20 #include <msiquery.h> |
| 21 #include <msidefs.h> |
| 22 #include <shlobj.h> |
| 23 #include <richedit.h> |
| 24 #include <msxml2.h> |
| 25 #include <shobjidl.h> |
| 26 #include <intshcut.h> |
| 27 #include <sddl.h> |
| 28 // System libraries for dutil |
| 29 #include <intsafe.h> |
| 30 #include <TlHelp32.h> |
| 31 #include <Strsafe.h> |
| 32 |
| 33 #include "wcautil.h" |
| 34 #include "wcalog.h" |
| 35 |
| 36 #include "dutil/dutil.h" |
| 37 #include "dutil/fileutil.h" |
| 38 #include "dutil/memutil.h" |
| 39 #include "dutil/procutil.h" |
| 40 #include "dutil/strutil.h" |
| 41 |
| 42 #include "cost.h" |
| 43 #include "caSuffix.h" |
| 44 |
| 45 // From ca/wcauti/precomp.h |
| 46 const WCHAR MAGIC_MULTISZ_DELIM = 128; |
| 47 |
| 48 // From dutil/inc/regutil.h |
| 49 #define ReleaseRegKey(h) if (h) { ::RegCloseKey(h); h = NULL; } |
OLD | NEW |