mirror of
https://github.com/reactos/reactos.git
synced 2025-01-01 12:04:51 +00:00
- Arch broke it
svn path=/trunk/; revision=42590
This commit is contained in:
parent
22769d6876
commit
f82ee64534
1 changed files with 44 additions and 0 deletions
44
reactos/drivers/multimedia/bdasup/precomp.h
Normal file
44
reactos/drivers/multimedia/bdasup/precomp.h
Normal 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
|
Loading…
Reference in a new issue