diff options
Diffstat (limited to 'src/ext/Iis/ca/precomp.h')
-rw-r--r-- | src/ext/Iis/ca/precomp.h | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/src/ext/Iis/ca/precomp.h b/src/ext/Iis/ca/precomp.h new file mode 100644 index 00000000..85ee0890 --- /dev/null +++ b/src/ext/Iis/ca/precomp.h | |||
@@ -0,0 +1,66 @@ | |||
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 | #if _WIN32_MSI < 150 | ||
6 | #define _WIN32_MSI 150 | ||
7 | #endif | ||
8 | |||
9 | #include <windows.h> | ||
10 | #include <msiquery.h> | ||
11 | #include <msidefs.h> | ||
12 | #include <strsafe.h> | ||
13 | |||
14 | #include <lm.h> // NetApi32.lib | ||
15 | |||
16 | #include <Dsgetdc.h> | ||
17 | #include <ComAdmin.h> | ||
18 | #include <ahadmin.h> // IIS 7 config | ||
19 | |||
20 | #define MAXUINT USHRT_MAX | ||
21 | |||
22 | #include "wcautil.h" | ||
23 | #include "wcawow64.h" | ||
24 | #include "wcawrapquery.h" | ||
25 | |||
26 | #include "certutil.h" | ||
27 | #include "cryputil.h" | ||
28 | #include "fileutil.h" | ||
29 | #include "iis7util.h" | ||
30 | #include "memutil.h" | ||
31 | #include "metautil.h" | ||
32 | #include "strutil.h" | ||
33 | #include "userutil.h" | ||
34 | #include "wiutil.h" | ||
35 | |||
36 | #include "CustomMsiErrors.h" | ||
37 | #include "sca.h" | ||
38 | #include "scacost.h" | ||
39 | #include "scacert.h" | ||
40 | #include "scafilter.h" | ||
41 | |||
42 | #include "scaiis.h" | ||
43 | #include "scaiis7.h" | ||
44 | #include "scaproperty.h" | ||
45 | #include "scaweb.h" | ||
46 | #include "scawebdir.h" | ||
47 | #include "scawebsvcext.h" | ||
48 | #include "scavdir.h" | ||
49 | #include "scaweb7.h" | ||
50 | #include "scaapppool7.h" | ||
51 | #include "scavdir7.h" | ||
52 | #include "scawebapp7.h" | ||
53 | #include "scawebappext7.h" | ||
54 | #include "scamimemap7.h" | ||
55 | #include "scawebprop7.h" | ||
56 | #include "scaweblog7.h" | ||
57 | #include "scafilter7.h" | ||
58 | #include "scahttpheader7.h" | ||
59 | #include "scaweberr7.h" | ||
60 | #include "scawebsvcext7.h" | ||
61 | #include "scaproperty7.h" | ||
62 | #include "scawebdir7.h" | ||
63 | #include "scassl7.h" | ||
64 | #include "scaexecIIS7.h" | ||
65 | |||
66 | #include "caDecor.h" | ||