blob: 12f1a7aa99791bd4643f3fef9474392cc1caa4af (
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
|
/*++
Copyright (c) 2004 Microsoft Corporation
Module Name:
precomp.h
Abstract:
Precompiled header file for Microsoft Device Specific Module (DSM).
Revision History:
--*/
#pragma once
#define DEBUG_MAIN_SOURCE 1
#define POOL_ZERO_DOWN_LEVEL_SUPPORT
#include <stdio.h>
#include <stdarg.h>
#include "dsm.h"
#include "mpiodisk.h"
#include "msdsm.h"
#include "prototypes.h"
#include "trace.h"
#include "srbhelper.h"
#include <ntstrsafe.h>
#include <ntintsafe.h>
|