ReactOS 0.4.15-dev-7842-g558ab78
fxtypedefs.hpp
Go to the documentation of this file.
1/*++
2
3Copyright (c) Microsoft Corporation
4
5Module Name:
6
7 fxtypedefs.hpp
8
9Abstract:
10
11 Contains defines for types that are different in KMDF and UMDF
12 Respective defines are in km\fxtypedefsKm.hpp and um\fxtypedefsUm.hpp
13
14 For example CfxDevice is defined as
15 FxDevice in km
16 AWDFDevice in um
17
18Author:
19
20
21
22Environment:
23
24 Both kernel and user mode
25
26Revision History:
27
28--*/
29
30#pragma once
31
32#if (FX_CORE_MODE==FX_CORE_KERNEL_MODE)
33
34#include "fxtypedefskm.hpp"
35
36#else
37
38#include "fxtypedefsum.hpp"
39
40#endif
41