blob: e07f2171852370b4fe3c1407bd5c1c72cc47191d (
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
|
/*++
Copyright (c) Microsoft Corporation. All rights reserved.
Module Name:
precomp.h
Abstract:
This module contains the common type definitions and includes.
Environment:
Windows User-Mode Driver Framework
--*/
#pragma once
//
// Include the type specific headers.
//
#include <windows.h>
#include <wdf.h>
#include <initguid.h>
#include <sstream>
#include <vector>
#include <gnssdriver.h>
|