4 * Windows NT WDM Driver Developer Kit
6 * This file is part of the ReactOS DDK package.
9 * Amine Khaldi (amine.khaldi@reactos.org)
10 * Timo Kreuzer (timo.kreuzer@reactos.org)
12 * THIS SOFTWARE IS NOT COPYRIGHTED
14 * This source code is offered for use in the public domain. You may
15 * use, modify or distribute it freely.
17 * This code is distributed in the hope that it will be useful but
18 * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
19 * DISCLAIMED. This includes but is not limited to warranties of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
28 #define WDM_MAJORVERSION 0x06
29 #define WDM_MINORVERSION 0x00
31 /* Included via ntddk.h? */
34 #define _WDM_INCLUDED_
36 #define NO_INTERLOCKED_INTRINSICS
44 #include <kernelspecs.h>
55 #endif /* _INC_STRING */
61 typedef GUID UOW
, *PUOW
;
66 #if (NTDDI_VERSION >= NTDDI_WINXP)
72 __internal_kernel_driver
73 __drv_Mode_impl(WDM_INCLUDED
)
81 #if !defined(_NTHALDLL_) && !defined(_BLDR_)
82 #define NTHALAPI DECLSPEC_IMPORT
88 #if !defined(_NTOSKRNL_) && !defined(_BLDR_) && !defined(_NTSYSTEM_)
89 #define NTKERNELAPI DECLSPEC_IMPORT
97 #if defined(_X86_) && !defined(_NTHAL_)
98 #define _DECL_HAL_KE_IMPORT DECLSPEC_IMPORT
100 #define _DECL_HAL_KE_IMPORT
102 #define _DECL_HAL_KE_IMPORT NTKERNELAPI
106 #define POINTER_ALIGNMENT DECLSPEC_ALIGN(8)
108 #define POINTER_ALIGNMENT
111 /* Helper macro to enable gcc's extension. */
112 #ifndef __GNU_EXTENSION
114 #define __GNU_EXTENSION __extension__
116 #define __GNU_EXTENSION
120 #if defined(_MSC_VER)
122 /* Disable some warnings */
123 #pragma warning(disable:4115) /* Named type definition in parentheses */
124 #pragma warning(disable:4201) /* Nameless unions and structs */
125 #pragma warning(disable:4214) /* Bit fields of other types than int */
126 #pragma warning(disable:4820) /* Padding added, due to alignment requirement */
128 /* Indicate if #pragma alloc_text() is supported */
129 #if defined(_M_IX86) || defined(_M_AMD64) || defined(_M_IA64)
130 #define ALLOC_PRAGMA 1
133 /* Indicate if #pragma data_seg() is supported */
134 #if defined(_M_IX86) || defined(_M_AMD64)
135 #define ALLOC_DATA_PRAGMA 1
138 #endif /* _MSC_VER */
140 /* These macros are used to create aliases for imported data. We need to do
141 this to have declarations that are compatible with MS DDK */
143 #define __SYMBOL(_Name) "_"#_Name
144 #define __IMPORTSYMBOL(_Name) "__imp__"#_Name
145 #define __IMPORTNAME(_Name) __imp__##_Name
147 #define __SYMBOL(_Name) #_Name
148 #define __IMPORTSYMBOL(_Name) "__imp_"#_Name
149 #define __IMPORTNAME(_Name) __imp_##_Name
152 #define __CREATE_NTOS_DATA_IMPORT_ALIAS(_Name) \
153 __pragma(comment(linker, "/alternatename:"__SYMBOL(_Name) "=" __IMPORTSYMBOL(_Name)))
154 #else /* !_MSC_VER */
156 #define __STRINGIFY(_exp) #_exp
158 #define _Pragma_redefine_extname(_Name, _Target) _Pragma(__STRINGIFY(redefine_extname _Name _Target))
159 #define __CREATE_NTOS_DATA_IMPORT_ALIAS(_Name) \
160 _Pragma_redefine_extname(_Name,__IMPORTNAME(_Name))
164 #if !defined(USE_DMA_MACROS) && !defined(_NTHAL_)
165 #define USE_DMA_MACROS
167 #if !defined(NO_LEGACY_DRIVERS) && !defined(__REACTOS__)
168 #define NO_LEGACY_DRIVERS
170 #endif /* defined(_WIN64) */
172 /* Forward declarations */
179 struct _DEVICE_OBJECT
;
180 struct _DRIVER_OBJECT
;
181 struct _IO_STATUS_BLOCK
;
182 struct _DEVICE_DESCRIPTION
;
183 struct _SCATTER_GATHER_LIST
;
184 struct _DRIVE_LAYOUT_INFORMATION
;
185 struct _COMPRESSED_DATA_INFO
;
186 struct _IO_RESOURCE_DESCRIPTOR
;
188 /* Structures not exposed to drivers */
189 typedef struct _OBJECT_TYPE
*POBJECT_TYPE
;
190 typedef struct _HAL_DISPATCH_TABLE
*PHAL_DISPATCH_TABLE
;
191 typedef struct _HAL_PRIVATE_DISPATCH_TABLE
*PHAL_PRIVATE_DISPATCH_TABLE
;
192 typedef struct _CALLBACK_OBJECT
*PCALLBACK_OBJECT
;
193 typedef struct _EPROCESS
*PEPROCESS
;
194 typedef struct _ETHREAD
*PETHREAD
;
195 typedef struct _IO_TIMER
*PIO_TIMER
;
196 typedef struct _KINTERRUPT
*PKINTERRUPT
;
197 typedef struct _KPROCESS
*PKPROCESS
;
198 typedef struct _KTHREAD
*PKTHREAD
, *PRKTHREAD
;
199 typedef struct _CONTEXT
*PCONTEXT
;
201 #if defined(USE_DMA_MACROS) && !defined(_NTHAL_)
202 typedef struct _DMA_ADAPTER
*PADAPTER_OBJECT
;
203 #elif defined(_WDM_INCLUDED_)
204 typedef struct _DMA_ADAPTER
*PADAPTER_OBJECT
;
206 typedef struct _ADAPTER_OBJECT
*PADAPTER_OBJECT
;
209 #ifndef DEFINE_GUIDEX
211 #define DEFINE_GUIDEX(name) EXTERN_C const CDECL GUID name
213 #define DEFINE_GUIDEX(name) EXTERN_C const GUID name
215 #endif /* DEFINE_GUIDEX */
218 #define STATICGUIDOF(guid) STATIC_##guid
221 /* GUID Comparison */
222 #ifndef __IID_ALIGNED__
223 #define __IID_ALIGNED__
225 inline int IsEqualGUIDAligned(REFGUID guid1
, REFGUID guid2
)
227 return ( (*(PLONGLONG
)(&guid1
) == *(PLONGLONG
)(&guid2
)) &&
228 (*((PLONGLONG
)(&guid1
) + 1) == *((PLONGLONG
)(&guid2
) + 1)) );
231 #define IsEqualGUIDAligned(guid1, guid2) \
232 ( (*(PLONGLONG)(guid1) == *(PLONGLONG)(guid2)) && \
233 (*((PLONGLONG)(guid1) + 1) == *((PLONGLONG)(guid2) + 1)) )
234 #endif /* __cplusplus */
235 #endif /* !__IID_ALIGNED__ */
239 $
include (interlocked
.h
)
240 $
include (rtltypes
.h
)
250 $
include (wmitypes
.h
)
253 $
include (rtlfuncs
.h
)
262 $
include (wmifuncs
.h
)
264 $
include (halfuncs
.h
)
272 #endif /* !_WDMDDK_ */