Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
0359eaa8
Commit
0359eaa8
authored
May 05, 2004
by
Raphael Junqueira
Committed by
Alexandre Julliard
May 05, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implemented SystemClock (IReferenceClock by dshow).
parent
eed647d0
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
12 additions
and
2 deletions
+12
-2
Makefile.in
dlls/quartz/Makefile.in
+3
-2
main.c
dlls/quartz/main.c
+2
-0
quartz_private.h
dlls/quartz/quartz_private.h
+1
-0
regsvr.c
dlls/quartz/regsvr.c
+6
-0
systemclock.c
dlls/quartz/systemclock.c
+0
-0
No files found.
dlls/quartz/Makefile.in
View file @
0359eaa8
...
...
@@ -4,7 +4,7 @@ SRCDIR = @srcdir@
VPATH
=
@srcdir@
MODULE
=
quartz.dll
IMPORTS
=
ole32 oleaut32 advapi32 kernel32 user32
EXTRALIBS
=
-luuid
$(LIBUNICODE)
EXTRALIBS
=
-l
dxguid
-l
uuid
$(LIBUNICODE)
C_SRCS
=
\
avisplit.c
\
...
...
@@ -20,7 +20,8 @@ C_SRCS = \
main.c
\
memallocator.c
\
pin.c
\
regsvr.c
regsvr.c
\
systemclock.c
RC_SRCS
=
version.rc
...
...
dlls/quartz/main.c
View file @
0359eaa8
...
...
@@ -66,6 +66,8 @@ static const struct object_creation_info object_creation[] =
{
&
CLSID_AsyncReader
,
AsyncReader_create
},
{
&
CLSID_MemoryAllocator
,
StdMemAllocator_create
},
{
&
CLSID_AviSplitter
,
AVISplitter_create
},
{
&
CLSID_SystemClock
,
&
QUARTZ_CreateSystemClock
}
};
static
HRESULT
WINAPI
...
...
dlls/quartz/quartz_private.h
View file @
0359eaa8
...
...
@@ -42,6 +42,7 @@ HRESULT FilterMapper2_create(IUnknown *pUnkOuter, LPVOID *ppObj);
HRESULT
AsyncReader_create
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppv
);
HRESULT
StdMemAllocator_create
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppv
);
HRESULT
AVISplitter_create
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppv
);
HRESULT
QUARTZ_CreateSystemClock
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppv
);
HRESULT
EnumMonikerImpl_Create
(
IMoniker
**
ppMoniker
,
ULONG
nMonikerCount
,
IEnumMoniker
**
ppEnum
);
...
...
dlls/quartz/regsvr.c
View file @
0359eaa8
...
...
@@ -521,6 +521,12 @@ static struct regsvr_coclass const coclass_list[] = {
"quartz.dll"
,
"Both"
},
{
&
CLSID_SystemClock
,
"System Clock"
,
NULL
,
"quartz.dll"
,
"Both"
},
{
NULL
}
/* list terminator */
};
...
...
dlls/quartz/systemclock.c
0 → 100644
View file @
0359eaa8
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