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
3bf289ae
Commit
3bf289ae
authored
Aug 05, 2008
by
Andrew Talbot
Committed by
Alexandre Julliard
Aug 18, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmime: Indirection levels fix.
parent
e8eb6d1b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
performance.c
dlls/dmime/performance.c
+4
-4
No files found.
dlls/dmime/performance.c
View file @
3bf289ae
...
@@ -620,13 +620,13 @@ static HRESULT WINAPI IDirectMusicPerformance8Impl_GetGlobalParam (LPDIRECTMUSIC
...
@@ -620,13 +620,13 @@ static HRESULT WINAPI IDirectMusicPerformance8Impl_GetGlobalParam (LPDIRECTMUSIC
TRACE
(
"(%p, %s, %p, %d): stub
\n
"
,
This
,
debugstr_dmguid
(
rguidType
),
pParam
,
dwSize
);
TRACE
(
"(%p, %s, %p, %d): stub
\n
"
,
This
,
debugstr_dmguid
(
rguidType
),
pParam
,
dwSize
);
if
(
IsEqualGUID
(
rguidType
,
&
GUID_PerfAutoDownload
))
if
(
IsEqualGUID
(
rguidType
,
&
GUID_PerfAutoDownload
))
memcpy
(
pParam
,
&
This
->
fAutoDownload
,
sizeof
(
&
This
->
fAutoDownload
));
memcpy
(
pParam
,
&
This
->
fAutoDownload
,
sizeof
(
This
->
fAutoDownload
));
if
(
IsEqualGUID
(
rguidType
,
&
GUID_PerfMasterGrooveLevel
))
if
(
IsEqualGUID
(
rguidType
,
&
GUID_PerfMasterGrooveLevel
))
memcpy
(
pParam
,
&
This
->
cMasterGrooveLevel
,
sizeof
(
&
This
->
cMasterGrooveLevel
));
memcpy
(
pParam
,
&
This
->
cMasterGrooveLevel
,
sizeof
(
This
->
cMasterGrooveLevel
));
if
(
IsEqualGUID
(
rguidType
,
&
GUID_PerfMasterTempo
))
if
(
IsEqualGUID
(
rguidType
,
&
GUID_PerfMasterTempo
))
memcpy
(
pParam
,
&
This
->
fMasterTempo
,
sizeof
(
&
This
->
fMasterTempo
));
memcpy
(
pParam
,
&
This
->
fMasterTempo
,
sizeof
(
This
->
fMasterTempo
));
if
(
IsEqualGUID
(
rguidType
,
&
GUID_PerfMasterVolume
))
if
(
IsEqualGUID
(
rguidType
,
&
GUID_PerfMasterVolume
))
memcpy
(
pParam
,
&
This
->
lMasterVolume
,
sizeof
(
&
This
->
lMasterVolume
));
memcpy
(
pParam
,
&
This
->
lMasterVolume
,
sizeof
(
This
->
lMasterVolume
));
return
S_OK
;
return
S_OK
;
}
}
...
...
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