blob: b373dbe10839d6cdfc4626def8141727bf55696b (
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
|
/*++
Copyright (c) Microsoft Corporation. All rights reserved.
Module Name:
pch.h
Abstract:
This file contains pre-compiled header files.
Environment:
Kernel mode
--*/
#pragma once
#define NT_PROCESSOR_GROUPS 1
#include "common.h" // DDK, WDF headers
#pragma warning(push)
#pragma warning(disable:4214) /* nonstandard extension used: bit field types other then int */
#pragma warning(disable:4201) /* nonstandard extension used: nameless struct/union */
#include <acpitabl.h>
#include <acpiioct.h>
#include "ntpoapi.h" // public PO interfaces
//
// Opt-into V3 PEP interfaces
//
#define PEP_KERNEL_INFORMATION_VERSION PEP_KERNEL_INFORMATION_V3
#include "pepfx.h"
#if defined(EVENT_TRACING)
#include <wpprecorder.h>
#else
//
// Mock version of the handle type used everywhere.
// We set all instances of this type to NULL.
//
typedef PVOID RECORDER_LOG;
#endif
#include "trace.h"
#include "pep.h"
#pragma warning(pop)
#include <ntintsafe.h>
|