mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 21:09:15 +00:00
4102c22bc1
svn path=/trunk/; revision=27079
85 lines
1.3 KiB
C
Executable file
85 lines
1.3 KiB
C
Executable file
#include <ddk/ntddk.h>
|
|
#include <debug.h>
|
|
#include <ks.h>
|
|
|
|
/* Where do we go? */
|
|
#ifndef SIZEOF_ARRAY
|
|
#define SIZEOF_ARRAY(array) \
|
|
(sizeof(array) / sizeof(array[0]))
|
|
#endif
|
|
|
|
/* Not in the DDK but hey! */
|
|
#define DEFINE_KSFILTER_DISPATCH(name) \
|
|
const KSFILTER_DISPATCH name =
|
|
|
|
/* To be put in KS.H */
|
|
#define DEFINE_KSFILTER_DESCRIPTOR(name) \
|
|
const KSFILTER_DESCRIPTOR name =
|
|
|
|
#define DEFINE_KSFILTER_DESCRIPTOR_TABLE(name) \
|
|
const KSFILTER_DESCRIPTOR* const name[] =
|
|
|
|
|
|
|
|
NTSTATUS FilterCreate(
|
|
IN OUT PKSFILTER Filter,
|
|
IN PIRP Irp)
|
|
{
|
|
return STATUS_SUCCESS;
|
|
}
|
|
|
|
NTSTATUS FilterClose(
|
|
IN OUT PKSFILTER Filter,
|
|
IN PIRP Irp)
|
|
{
|
|
return STATUS_SUCCESS;
|
|
}
|
|
|
|
NTSTATUS Process(
|
|
IN PKSFILTER Filter,
|
|
IN PKSPROCESSPIN_INDEXENTRY ProcessPinsIndex)
|
|
{
|
|
return STATUS_SUCCESS;
|
|
}
|
|
|
|
|
|
DEFINE_KSFILTER_DISPATCH(FilterDispatch)
|
|
{
|
|
FilterCreate,
|
|
FilterClose,
|
|
Process,
|
|
NULL // Reset
|
|
};
|
|
|
|
DEFINE_KSFILTER_DESCRIPTOR(FilterDesc)
|
|
{
|
|
};
|
|
|
|
DEFINE_KSFILTER_DESCRIPTOR_TABLE(FilterDescs)
|
|
{
|
|
&FilterDesc
|
|
};
|
|
|
|
|
|
|
|
const KSDEVICE_DESCRIPTOR DeviceDescriptor =
|
|
{
|
|
NULL,
|
|
SIZEOF_ARRAY(FilterDescs),
|
|
FilterDescs
|
|
};
|
|
|
|
|
|
/* Funcs */
|
|
|
|
NTSTATUS STDCALL
|
|
DriverEntry(
|
|
IN PDRIVER_OBJECT DriverObject,
|
|
IN PUNICODE_STRING RegistryPathName)
|
|
{
|
|
DPRINT1("AVStream test component loaded!\n");
|
|
|
|
return KsInitializeDriver(DriverObject, RegistryPathName,
|
|
&DeviceDescriptor);
|
|
}
|