summaryrefslogtreecommitdiff
path: root/network/netadaptercx/netvadapterlibrary/code/pch.hpp
blob: cf2f0f22eb7627568ccf0e342ada3ccabd8cc34d (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
// Copyright (c) Microsoft Corporation. All rights reserved
#pragma once

#include <initguid.h>

#ifndef _KERNEL_MODE
// This is a user-mode driver
#include <windows.h>

#else
// This is a kernel-mode driver
#include <ntddk.h>
#define NTSTRSAFE_LIB
#include <ntstrsafe.h>
#endif

// This is a common WDF header (for both KMDF and UMDF)
#include <wdf.h>

#include <netadaptercx.h>
//#include <wdftriage.h>
#include "net/netringiterator.h"
#include "net/netpacketlibrary.h"
#include <net/rsc.h>
#include <net/gso.h>
#include <net/checksum.h>
#include <net/databuffer.h>
#include <net/returncontext.h>

#include "enlthreads.h"
#include "enl.h"

#include "trace.h"