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
fa9e4781
Commit
fa9e4781
authored
Jan 30, 2014
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Jan 30, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmband: Remove the redundant "IDirectMusicBand" from method names.
parent
e2ced54e
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
12 deletions
+22
-12
band.c
dlls/dmband/band.c
+22
-12
No files found.
dlls/dmband/band.c
View file @
fa9e4781
...
...
@@ -86,46 +86,56 @@ static const IUnknownVtbl DirectMusicBand_Unknown_Vtbl = {
};
/* IDirectMusicBandImpl IDirectMusicBand part: */
static
HRESULT
WINAPI
IDirectMusicBandImpl_IDirectMusicBand_QueryInterface
(
LPDIRECTMUSICBAND
iface
,
REFIID
riid
,
LPVOID
*
ppobj
)
{
static
HRESULT
WINAPI
IDirectMusicBandImpl_QueryInterface
(
IDirectMusicBand
*
iface
,
REFIID
riid
,
void
**
ppobj
)
{
ICOM_THIS_MULTI
(
IDirectMusicBandImpl
,
BandVtbl
,
iface
);
return
IUnknown_QueryInterface
((
LPUNKNOWN
)
&
This
->
UnknownVtbl
,
riid
,
ppobj
);
}
static
ULONG
WINAPI
IDirectMusicBandImpl_IDirectMusicBand_AddRef
(
LPDIRECTMUSICBAND
iface
)
{
static
ULONG
WINAPI
IDirectMusicBandImpl_AddRef
(
IDirectMusicBand
*
iface
)
{
ICOM_THIS_MULTI
(
IDirectMusicBandImpl
,
BandVtbl
,
iface
);
return
IUnknown_AddRef
((
LPUNKNOWN
)
&
This
->
UnknownVtbl
);
}
static
ULONG
WINAPI
IDirectMusicBandImpl_IDirectMusicBand_Release
(
LPDIRECTMUSICBAND
iface
)
{
static
ULONG
WINAPI
IDirectMusicBandImpl_Release
(
IDirectMusicBand
*
iface
)
{
ICOM_THIS_MULTI
(
IDirectMusicBandImpl
,
BandVtbl
,
iface
);
return
IUnknown_Release
((
LPUNKNOWN
)
&
This
->
UnknownVtbl
);
}
static
HRESULT
WINAPI
IDirectMusicBandImpl_IDirectMusicBand_CreateSegment
(
LPDIRECTMUSICBAND
iface
,
IDirectMusicSegment
**
ppSegment
)
{
static
HRESULT
WINAPI
IDirectMusicBandImpl_CreateSegment
(
IDirectMusicBand
*
iface
,
IDirectMusicSegment
**
ppSegment
)
{
ICOM_THIS_MULTI
(
IDirectMusicBandImpl
,
BandVtbl
,
iface
);
FIXME
(
"(%p, %p): stub
\n
"
,
This
,
ppSegment
);
return
S_OK
;
}
static
HRESULT
WINAPI
IDirectMusicBandImpl_IDirectMusicBand_Download
(
LPDIRECTMUSICBAND
iface
,
IDirectMusicPerformance
*
pPerformance
)
{
static
HRESULT
WINAPI
IDirectMusicBandImpl_Download
(
IDirectMusicBand
*
iface
,
IDirectMusicPerformance
*
pPerformance
)
{
ICOM_THIS_MULTI
(
IDirectMusicBandImpl
,
BandVtbl
,
iface
);
FIXME
(
"(%p, %p): stub
\n
"
,
This
,
pPerformance
);
return
S_OK
;
}
static
HRESULT
WINAPI
IDirectMusicBandImpl_IDirectMusicBand_Unload
(
LPDIRECTMUSICBAND
iface
,
IDirectMusicPerformance
*
pPerformance
)
{
static
HRESULT
WINAPI
IDirectMusicBandImpl_Unload
(
IDirectMusicBand
*
iface
,
IDirectMusicPerformance
*
pPerformance
)
{
ICOM_THIS_MULTI
(
IDirectMusicBandImpl
,
BandVtbl
,
iface
);
FIXME
(
"(%p, %p): stub
\n
"
,
This
,
pPerformance
);
return
S_OK
;
}
static
const
IDirectMusicBandVtbl
DirectMusicBand_Band_Vtbl
=
{
IDirectMusicBandImpl_IDirectMusicBand
_QueryInterface
,
IDirectMusicBandImpl_IDirectMusicBand
_AddRef
,
IDirectMusicBandImpl_IDirectMusicBand
_Release
,
IDirectMusicBandImpl_IDirectMusicBand
_CreateSegment
,
IDirectMusicBandImpl_IDirectMusicBand
_Download
,
IDirectMusicBandImpl_IDirectMusicBand
_Unload
IDirectMusicBandImpl
_QueryInterface
,
IDirectMusicBandImpl
_AddRef
,
IDirectMusicBandImpl
_Release
,
IDirectMusicBandImpl
_CreateSegment
,
IDirectMusicBandImpl
_Download
,
IDirectMusicBandImpl
_Unload
};
/* IDirectMusicBandImpl IDirectMusicObject part: */
...
...
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