blob: 4e4501195d9eaa721569d61c0ce687c2dd217fa5 (
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
|
/*++
Module Name:
Driver.h
Abstract:
This file contains the driver declarations.
Environment:
Kernel-mode Driver Framework
--*/
#include <ntddk.h>
#include <wdf.h>
#include <initguid.h>
#include <wdmguid.h>
#define RESHUB_USE_HELPER_ROUTINES
#include <reshub.h>
#include <spb.h>
#include <UcmTcpciCx.h>
#include "I2C.h"
#include "Device.h"
#include "Alert.h"
#include "PortControllerInterface.h"
#include "Queue.h"
#include "Register.h"
#include "Trace.h"
EXTERN_C_START
DRIVER_INITIALIZE
DriverEntry;
EVT_WDF_DRIVER_DEVICE_ADD
EvtDeviceAdd;
EVT_WDF_OBJECT_CONTEXT_CLEANUP
EvtDriverContextCleanup;
EXTERN_C_END
|