- Arch broke it

svn path=/trunk/; revision=42590
This commit is contained in:
Johannes Anderwald 2009-08-10 13:07:05 +00:00
parent 22769d6876
commit f82ee64534

View file

@ -0,0 +1,44 @@
#ifndef PRECOMP_H__
#define PRECOMP_H__
#include <ntddk.h>
#include <windef.h>
#include <ks.h>
#include <bdatypes.h>
#include <bdamedia.h>
#include <bdasup.h>
#define NDEBUG
#include <debug.h>
typedef struct
{
LIST_ENTRY Entry;
PKSFILTERFACTORY FilterFactoryInstance;
PBDA_FILTER_TEMPLATE FilterTemplate;
}BDA_FILTER_INSTANCE_ENTRY, *PBDA_FILTER_INSTANCE_ENTRY;
typedef struct
{
BOOLEAN Initialized;
KSPIN_LOCK FilterFactoryInstanceListLock;
LIST_ENTRY FilterFactoryInstanceList;
}BDA_GLOBAL, *PBDA_GLOBAL;
extern BDA_GLOBAL g_Settings;
PVOID
AllocateItem(
IN POOL_TYPE PoolType,
IN SIZE_T NumberOfBytes);
VOID
FreeItem(
IN PVOID Item);
#endif