mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
35 lines
598 B
C
35 lines
598 B
C
extern "C" {
|
|
|
|
#include <ntddk.h>
|
|
|
|
};
|
|
#include "stddef.h"
|
|
#include "stdarg.h"
|
|
|
|
#include "inc/CrossNt.h"
|
|
|
|
#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"
|
|
|
|
#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)
|
|
|
|
#endif //UNIATA_CORE
|
|
|
|
#include "badblock.h"
|
|
|
|
|