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
ba081eb2
Commit
ba081eb2
authored
Dec 22, 2008
by
Christian Costa
Committed by
Alexandre Julliard
Dec 22, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmusic: Improve IDirectMusicPortDownloadImpl_GetBuffer stub.
parent
f86b6e87
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
port.c
dlls/dmusic/port.c
+6
-1
No files found.
dlls/dmusic/port.c
View file @
ba081eb2
...
...
@@ -276,8 +276,13 @@ static ULONG WINAPI IDirectMusicPortDownloadImpl_Release (LPDIRECTMUSICPORTDOWNL
/* IDirectMusicPortDownload Interface follow: */
static
HRESULT
WINAPI
IDirectMusicPortDownloadImpl_GetBuffer
(
LPDIRECTMUSICPORTDOWNLOAD
iface
,
DWORD
dwDLId
,
IDirectMusicDownload
**
ppIDMDownload
)
{
ICOM_THIS_MULTI
(
IDirectMusicPortImpl
,
lpDownloadVtbl
,
iface
);
FIXME
(
"(%p/%p)->(%d, %p): stub
\n
"
,
This
,
iface
,
dwDLId
,
ppIDMDownload
);
return
S_OK
;
if
(
!
ppIDMDownload
)
return
E_POINTER
;
return
DMUSIC_CreateDirectMusicDownloadImpl
(
&
IID_IDirectMusicDownload
,
(
LPVOID
*
)
ppIDMDownload
,
NULL
);
}
static
HRESULT
WINAPI
IDirectMusicPortDownloadImpl_AllocateBuffer
(
LPDIRECTMUSICPORTDOWNLOAD
iface
,
DWORD
dwSize
,
IDirectMusicDownload
**
ppIDMDownload
)
{
...
...
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