blob: c932a141a9e1cc31f1c9f259247161d6e8566db7 (
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
|
/*++
Copyright (c) 1999 - 2002 Microsoft Corporation
Module Name:
pch.h
Abstract:
This module includes all the headers which need to be
precompiled & are included by all the source files in this
project
Environment:
Kernel mode
--*/
#ifndef __CDO_PCH_H__
#define __CDO_PCH_H__
//
// Enabled warnings
//
#pragma warning(error:4100) // Enable-Unreferenced formal parameter
#pragma warning(error:4101) // Enable-Unreferenced local variable
#pragma warning(error:4061) // Eenable-missing enumeration in switch statement
#pragma warning(error:4505) // Enable-identify dead functions
//
// Includes
//
#include <fltKernel.h>
#include <dontuse.h>
#include <suppress.h>
#include "CdoStruct.h"
#include "CdoProc.h"
#pragma prefast(disable:__WARNING_ENCODE_MEMBER_FUNCTION_POINTER, "Not valid for kernel mode drivers")
#endif __CDO_PCH_H__
|