mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 19:26:32 +00:00
- Arch broke it
svn path=/trunk/; revision=42590
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user