Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
ad302ff7
Commit
ad302ff7
authored
Aug 06, 2003
by
Robert Shearman
Committed by
Alexandre Julliard
Aug 06, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added File Source (Async) Filter.
parent
b5d2f84f
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
1 deletion
+4
-1
Makefile.in
dlls/quartz/Makefile.in
+2
-1
filesource.c
dlls/quartz/filesource.c
+0
-0
main.c
dlls/quartz/main.c
+1
-0
quartz_private.h
dlls/quartz/quartz_private.h
+1
-0
No files found.
dlls/quartz/Makefile.in
View file @
ad302ff7
...
...
@@ -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
\
...
...
dlls/quartz/filesource.c
0 → 100644
View file @
ad302ff7
This diff is collapsed.
Click to expand it.
dlls/quartz/main.c
View file @
ad302ff7
...
...
@@ -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
...
...
dlls/quartz/quartz_private.h
View file @
ad302ff7
...
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment