blob: 868f53ae2292e11e0830a404ad0b4f38690d353e (
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
|
/*++
Copyright (c) Microsoft Corporation. All rights reserved.
Module Name:
Pch.h
Abstract:
Precompiled header.
Environment:
Kernel-mode only.
--*/
#pragma once
#include <initguid.h>
#include <ntddk.h>
#include <wdmguid.h>
#include <wdf.h>
#include <intsafe.h>
#include <ntstrsafe.h>
#include <acpiioct.h>
#include <acpitabl.h>
#include <UcmCx.h>
#include <UcsiInterface.h>
#include <Ucsi.h>
#include "Trace.h"
#include "Driver.h"
#include "Acpi.h"
#include "UcmCallbacks.h"
#include "Ppm.h"
#include "Fdo.h"
#include "UcsiUcmConvert.h"
#include "UcmNotifications.h"
|