Commit 69eafe63 authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

qedit: Stub out AMTimeline.

parent 9c2f28cf
...@@ -4,6 +4,7 @@ IMPORTS = strmiids strmbase uuid oleaut32 ole32 advapi32 ...@@ -4,6 +4,7 @@ IMPORTS = strmiids strmbase uuid oleaut32 ole32 advapi32
C_SRCS = \ C_SRCS = \
main.c \ main.c \
mediadet.c \ mediadet.c \
samplegrabber.c samplegrabber.c \
timeline.c
IDL_SRCS = qedit_classes.idl IDL_SRCS = qedit_classes.idl
...@@ -58,6 +58,7 @@ struct object_creation_info ...@@ -58,6 +58,7 @@ struct object_creation_info
static const struct object_creation_info object_creation[] = static const struct object_creation_info object_creation[] =
{ {
{ &CLSID_AMTimeline, AMTimeline_create },
{ &CLSID_MediaDet, MediaDet_create }, { &CLSID_MediaDet, MediaDet_create },
{ &CLSID_SampleGrabber, SampleGrabber_create }, { &CLSID_SampleGrabber, SampleGrabber_create },
}; };
......
...@@ -22,6 +22,12 @@ ...@@ -22,6 +22,12 @@
[ [
threading(both), threading(both),
uuid(78530B75-61F9-11D2-8CAD-00A024580902)
]
coclass AMTimeline { interface IAMTimeline; interface IPersistStream; interface IAMSetErrorLog; }
[
threading(both),
uuid(65bd0711-24d2-4ff7-9324-ed2e5d3abafa) uuid(65bd0711-24d2-4ff7-9324-ed2e5d3abafa)
] ]
coclass MediaDet { interface IMediaDet; } coclass MediaDet { interface IMediaDet; }
......
...@@ -32,6 +32,7 @@ ...@@ -32,6 +32,7 @@
#include "dshow.h" #include "dshow.h"
#include "qedit.h" #include "qedit.h"
HRESULT AMTimeline_create(IUnknown *pUnkOuter, LPVOID *ppObj) DECLSPEC_HIDDEN;
HRESULT MediaDet_create(IUnknown *pUnkOuter, LPVOID *ppObj) DECLSPEC_HIDDEN; HRESULT MediaDet_create(IUnknown *pUnkOuter, LPVOID *ppObj) DECLSPEC_HIDDEN;
HRESULT SampleGrabber_create(IUnknown *pUnkOuter, LPVOID *ppObj) DECLSPEC_HIDDEN; HRESULT SampleGrabber_create(IUnknown *pUnkOuter, LPVOID *ppObj) DECLSPEC_HIDDEN;
......
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