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
40c60e8c
Commit
40c60e8c
authored
Feb 04, 2010
by
Paul Chitescu
Committed by
Alexandre Julliard
Feb 04, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
qedit: Mostly stubbed out implementation of SampleGrabber filter.
parent
9fab263d
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
1 deletion
+10
-1
Makefile.in
dlls/qedit/Makefile.in
+2
-1
main.c
dlls/qedit/main.c
+1
-0
qedit_private.h
dlls/qedit/qedit_private.h
+1
-0
regsvr.c
dlls/qedit/regsvr.c
+6
-0
samplegrabber.c
dlls/qedit/samplegrabber.c
+0
-0
No files found.
dlls/qedit/Makefile.in
View file @
40c60e8c
...
@@ -8,7 +8,8 @@ IMPORTS = strmiids uuid oleaut32 ole32 advapi32 kernel32
...
@@ -8,7 +8,8 @@ IMPORTS = strmiids uuid oleaut32 ole32 advapi32 kernel32
C_SRCS
=
\
C_SRCS
=
\
main.c
\
main.c
\
mediadet.c
\
mediadet.c
\
regsvr.c
regsvr.c
\
samplegrabber.c
@MAKE_DLL_RULES@
@MAKE_DLL_RULES@
...
...
dlls/qedit/main.c
View file @
40c60e8c
...
@@ -53,6 +53,7 @@ struct object_creation_info
...
@@ -53,6 +53,7 @@ struct object_creation_info
static
const
struct
object_creation_info
object_creation
[]
=
static
const
struct
object_creation_info
object_creation
[]
=
{
{
{
&
CLSID_MediaDet
,
MediaDet_create
},
{
&
CLSID_MediaDet
,
MediaDet_create
},
{
&
CLSID_SampleGrabber
,
SampleGrabber_create
},
};
};
static
HRESULT
WINAPI
static
HRESULT
WINAPI
...
...
dlls/qedit/qedit_private.h
View file @
40c60e8c
...
@@ -36,5 +36,6 @@
...
@@ -36,5 +36,6 @@
#include "qedit.h"
#include "qedit.h"
HRESULT
MediaDet_create
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppObj
);
HRESULT
MediaDet_create
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppObj
);
HRESULT
SampleGrabber_create
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppObj
);
#endif
/* __QEDIT_PRIVATE_INCLUDED__ */
#endif
/* __QEDIT_PRIVATE_INCLUDED__ */
dlls/qedit/regsvr.c
View file @
40c60e8c
...
@@ -294,6 +294,12 @@ static struct regsvr_coclass const coclass_list[] = {
...
@@ -294,6 +294,12 @@ static struct regsvr_coclass const coclass_list[] = {
"qedit.dll"
,
"qedit.dll"
,
"Both"
"Both"
},
},
{
&
CLSID_SampleGrabber
,
"Sample Grabber"
,
NULL
,
"qedit.dll"
,
"Both"
},
{
NULL
}
/* list terminator */
{
NULL
}
/* list terminator */
};
};
...
...
dlls/qedit/samplegrabber.c
0 → 100644
View file @
40c60e8c
This diff is collapsed.
Click to expand it.
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