Commit ad302ff7 authored by Robert Shearman's avatar Robert Shearman Committed by Alexandre Julliard

Added File Source (Async) Filter.

parent b5d2f84f
......@@ -4,7 +4,7 @@ SRCDIR = @srcdir@
VPATH = @srcdir@
MODULE = quartz.dll
IMPORTS = ole32 oleaut32 advapi32 kernel32
EXTRALIBS = $(LIBUUID)
EXTRALIBS = $(LIBUUID) $(LIBUNICODE)
LDDLLFLAGS = @LDDLLFLAGS@
SYMBOLFILE = $(MODULE).tmp.o
......@@ -13,6 +13,7 @@ C_SRCS = \
enummedia.c \
enummoniker.c \
enumpins.c \
filesource.c \
filtergraph.c \
filtermapper.c \
main.c \
......
......@@ -63,6 +63,7 @@ static const struct object_creation_info object_creation[] =
{ &CLSID_FilterGraph, FILTERGRAPH_create },
{ &CLSID_FilterMapper, FilterMapper2_create },
{ &CLSID_FilterMapper2, FilterMapper2_create },
{ &CLSID_AsyncReader, AsyncReader_create },
};
static HRESULT WINAPI
......
......@@ -31,6 +31,7 @@
HRESULT FILTERGRAPH_create(IUnknown *pUnkOuter, LPVOID *ppObj) ;
HRESULT FilterMapper2_create(IUnknown *pUnkOuter, LPVOID *ppObj);
HRESULT AsyncReader_create(IUnknown * pUnkOuter, LPVOID * ppv);
HRESULT EnumMonikerImpl_Create(IMoniker ** ppMoniker, ULONG nMonikerCount, IEnumMoniker ** ppEnum);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment