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
6631e6bc
Commit
6631e6bc
authored
Oct 16, 2023
by
Rémi Bernon
Committed by
Alexandre Julliard
Oct 18, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmime: Remove FIXME from methods now mostly implemented.
parent
8a4989f3
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
performance.c
dlls/dmime/performance.c
+8
-4
No files found.
dlls/dmime/performance.c
View file @
6631e6bc
...
...
@@ -468,7 +468,7 @@ static HRESULT WINAPI performance_SendPMsg(IDirectMusicPerformance8 *iface, DMUS
struct
message
*
message
,
*
next
;
HRESULT
hr
;
FIXME
(
"(%p, %p): semi-stub
\n
"
,
This
,
msg
);
TRACE
(
"(%p, %p)
\n
"
,
This
,
msg
);
if
(
!
(
message
=
message_from_DMUS_PMSG
(
msg
)))
return
E_POINTER
;
if
(
!
This
->
dmusic
)
return
DMUS_E_NO_MASTER_CLOCK
;
...
...
@@ -519,9 +519,11 @@ done:
static
HRESULT
WINAPI
performance_MusicToReferenceTime
(
IDirectMusicPerformance8
*
iface
,
MUSIC_TIME
music_time
,
REFERENCE_TIME
*
time
)
{
static
int
once
;
struct
performance
*
This
=
impl_from_IDirectMusicPerformance8
(
iface
);
FIXME
(
"(%p, %ld, %p): semi-stub
\n
"
,
This
,
music_time
,
time
);
if
(
!
once
++
)
FIXME
(
"(%p, %ld, %p): semi-stub
\n
"
,
This
,
music_time
,
time
);
else
TRACE
(
"(%p, %ld, %p)
\n
"
,
This
,
music_time
,
time
);
if
(
!
time
)
return
E_POINTER
;
*
time
=
0
;
...
...
@@ -538,9 +540,11 @@ static HRESULT WINAPI performance_MusicToReferenceTime(IDirectMusicPerformance8
static
HRESULT
WINAPI
performance_ReferenceToMusicTime
(
IDirectMusicPerformance8
*
iface
,
REFERENCE_TIME
time
,
MUSIC_TIME
*
music_time
)
{
static
int
once
;
struct
performance
*
This
=
impl_from_IDirectMusicPerformance8
(
iface
);
FIXME
(
"(%p, %I64d, %p): semi-stub
\n
"
,
This
,
time
,
music_time
);
if
(
!
once
++
)
FIXME
(
"(%p, %I64d, %p): semi-stub
\n
"
,
This
,
time
,
music_time
);
else
TRACE
(
"(%p, %I64d, %p)
\n
"
,
This
,
time
,
music_time
);
if
(
!
music_time
)
return
E_POINTER
;
*
music_time
=
0
;
...
...
@@ -1657,7 +1661,7 @@ static HRESULT WINAPI performance_tool_ProcessPMsg(IDirectMusicTool *iface,
struct
message
*
message
=
message_from_DMUS_PMSG
(
msg
);
HRESULT
hr
;
FIXME
(
"(%p, %p, %p): semi-stub
\n
"
,
This
,
performance
,
msg
);
TRACE
(
"(%p, %p, %p)
\n
"
,
This
,
performance
,
msg
);
switch
(
msg
->
dwType
)
{
...
...
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