2007-09-27 18:37:22 +00:00
|
|
|
extern "C" {
|
|
|
|
|
|
|
|
#include <ntddk.h>
|
|
|
|
|
|
|
|
};
|
|
|
|
#include "stddef.h"
|
|
|
|
#include "stdarg.h"
|
|
|
|
|
2007-09-28 11:01:10 +00:00
|
|
|
#include "inc/CrossNt.h"
|
2007-09-27 18:37:22 +00:00
|
|
|
|
|
|
|
#include "atapi.h" // includes scsi.h
|
|
|
|
#include "ntdddisk.h"
|
|
|
|
#include "ntddscsi.h"
|
|
|
|
#include "bsmaster.h"
|
|
|
|
#include "uniata_ver.h"
|
|
|
|
#include "id_sata.h"
|
|
|
|
|
|
|
|
#ifndef UNIATA_CORE
|
|
|
|
|
|
|
|
#include "id_queue.h"
|
|
|
|
|
2008-03-24 21:35:52 +00:00
|
|
|
#ifdef ExAllocatePool
|
|
|
|
#undef ExAllocatePool
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define TAG(A, B, C, D) (ULONG)(((A)<<0) + ((B)<<8) + ((C)<<16) + ((D)<<24))
|
|
|
|
#define TAG_UNIATA TAG('a', 't', 'a', 'U')
|
|
|
|
|
|
|
|
#define ExAllocatePool(a,b) ExAllocatePoolWithTag(a,b,TAG_UNIATA)
|
|
|
|
|
2007-09-27 18:37:22 +00:00
|
|
|
#endif //UNIATA_CORE
|
|
|
|
|
|
|
|
#include "badblock.h"
|
|
|
|
|
2008-03-24 21:35:52 +00:00
|
|
|
|