- Check that all pins have been closed when the last filter reference is gone
[reactos.git] / reactos / drivers / storage / ide / uniata / stdafx.h
1 extern "C" {
2
3 #include <ntddk.h>
4
5 };
6 #include "stddef.h"
7 #include "stdarg.h"
8
9 #include "inc/CrossNt.h"
10
11 #include "atapi.h" // includes scsi.h
12 #include "ntdddisk.h"
13 #include "ntddscsi.h"
14 #include "bsmaster.h"
15 #include "uniata_ver.h"
16 #include "id_sata.h"
17
18 #ifndef UNIATA_CORE
19
20 #include "id_queue.h"
21
22 #ifdef ExAllocatePool
23 #undef ExAllocatePool
24 #endif
25
26 #define TAG(A, B, C, D) (ULONG)(((A)<<0) + ((B)<<8) + ((C)<<16) + ((D)<<24))
27 #define TAG_UNIATA TAG('a', 't', 'a', 'U')
28
29 #define ExAllocatePool(a,b) ExAllocatePoolWithTag(a,b,TAG_UNIATA)
30
31 #endif //UNIATA_CORE
32
33 #include "badblock.h"
34
35