summaryrefslogtreecommitdiff
path: root/src/zap/common.h
blob: b3db657f87d4a403309a8280d3ada9fb21cee498 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
//*****************************************************************************
// common.h
//

//
// Precompiled headers.
//
//*****************************************************************************
#ifndef __COMMON_H__
#define __COMMON_H__

#include <stdint.h>
#include <winwrap.h>
#include <windows.h>
#include <stdlib.h>
#include <objbase.h>
#include <stddef.h>
#include <float.h>
#include <limits.h>

#if !defined(_TARGET_X86_) || defined(FEATURE_PAL)
#ifndef WIN64EXCEPTIONS
#define WIN64EXCEPTIONS
#endif
#endif // !_TARGET_X86_ || FEATURE_PAL

#include "utilcode.h"
#include "corjit.h"
#include "jithost.h"
#include "corcompile.h"
#include "iceefilegen.h"
#ifdef FEATURE_FUSION
#include "fusionbind.h"
#endif
#include "corpriv.h"

#include "holder.h"
#include "strongname.h"
#include "ex.h"
#include "corbbtprof.h"
#include "clrnt.h"
#include "contract.h"
#include "psapi.h"
#include "log.h"
#include "ngen.h"
#include "pedecoder.h"
#include "guidfromname.h"
#include "../dlls/mscorrc/resource.h"
#include "zaplog.h"
#ifndef FEATURE_CORECLR
#include "eventmsg.h"
#endif // FEATURE_CORECLR
#include "ndpversion.h"

#include "loaderheap.h"

#include "zapper.h"
#include "zapwriter.h"
#include "zapimage.h"

#include "zapperstats.h"

#endif  // __COMMON_H__