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
fd04e770
Commit
fd04e770
authored
Jan 17, 2012
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Jan 17, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dsound: Drop "Buffer" from the IKsPropertySet method names.
parent
fe30990e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
36 deletions
+20
-36
buffer.c
dlls/dsound/buffer.c
+20
-36
No files found.
dlls/dsound/buffer.c
View file @
fd04e770
...
...
@@ -1130,14 +1130,12 @@ HRESULT IDirectSoundBufferImpl_Duplicate(
}
/*******************************************************************************
* IKs
Buffer
PropertySet
* IKsPropertySet
*/
/* IUnknown methods */
static
HRESULT
WINAPI
IKsBufferPropertySetImpl_QueryInterface
(
LPKSPROPERTYSET
iface
,
REFIID
riid
,
LPVOID
*
ppobj
)
static
HRESULT
WINAPI
IKsPropertySetImpl_QueryInterface
(
IKsPropertySet
*
iface
,
REFIID
riid
,
void
**
ppobj
)
{
IKsBufferPropertySetImpl
*
This
=
(
IKsBufferPropertySetImpl
*
)
iface
;
TRACE
(
"(%p,%s,%p)
\n
"
,
This
,
debugstr_guid
(
riid
),
ppobj
);
...
...
@@ -1145,7 +1143,7 @@ static HRESULT WINAPI IKsBufferPropertySetImpl_QueryInterface(
return
IDirectSoundBuffer_QueryInterface
((
LPDIRECTSOUNDBUFFER8
)
This
->
dsb
,
riid
,
ppobj
);
}
static
ULONG
WINAPI
IKs
BufferPropertySetImpl_AddRef
(
LPKSPROPERTYSET
iface
)
static
ULONG
WINAPI
IKs
PropertySetImpl_AddRef
(
IKsPropertySet
*
iface
)
{
IKsBufferPropertySetImpl
*
This
=
(
IKsBufferPropertySetImpl
*
)
iface
;
ULONG
ref
=
InterlockedIncrement
(
&
(
This
->
ref
));
...
...
@@ -1153,7 +1151,7 @@ static ULONG WINAPI IKsBufferPropertySetImpl_AddRef(LPKSPROPERTYSET iface)
return
ref
;
}
static
ULONG
WINAPI
IKs
BufferPropertySetImpl_Release
(
LPKSPROPERTYSET
iface
)
static
ULONG
WINAPI
IKs
PropertySetImpl_Release
(
IKsPropertySet
*
iface
)
{
IKsBufferPropertySetImpl
*
This
=
(
IKsBufferPropertySetImpl
*
)
iface
;
ULONG
ref
=
InterlockedDecrement
(
&
(
This
->
ref
));
...
...
@@ -1168,15 +1166,9 @@ static ULONG WINAPI IKsBufferPropertySetImpl_Release(LPKSPROPERTYSET iface)
return
ref
;
}
static
HRESULT
WINAPI
IKsBufferPropertySetImpl_Get
(
LPKSPROPERTYSET
iface
,
REFGUID
guidPropSet
,
ULONG
dwPropID
,
LPVOID
pInstanceData
,
ULONG
cbInstanceData
,
LPVOID
pPropData
,
ULONG
cbPropData
,
PULONG
pcbReturned
)
static
HRESULT
WINAPI
IKsPropertySetImpl_Get
(
IKsPropertySet
*
iface
,
REFGUID
guidPropSet
,
ULONG
dwPropID
,
void
*
pInstanceData
,
ULONG
cbInstanceData
,
void
*
pPropData
,
ULONG
cbPropData
,
ULONG
*
pcbReturned
)
{
IKsBufferPropertySetImpl
*
This
=
(
IKsBufferPropertySetImpl
*
)
iface
;
...
...
@@ -1186,14 +1178,9 @@ static HRESULT WINAPI IKsBufferPropertySetImpl_Get(
return
E_PROP_ID_UNSUPPORTED
;
}
static
HRESULT
WINAPI
IKsBufferPropertySetImpl_Set
(
LPKSPROPERTYSET
iface
,
REFGUID
guidPropSet
,
ULONG
dwPropID
,
LPVOID
pInstanceData
,
ULONG
cbInstanceData
,
LPVOID
pPropData
,
ULONG
cbPropData
)
static
HRESULT
WINAPI
IKsPropertySetImpl_Set
(
IKsPropertySet
*
iface
,
REFGUID
guidPropSet
,
ULONG
dwPropID
,
void
*
pInstanceData
,
ULONG
cbInstanceData
,
void
*
pPropData
,
ULONG
cbPropData
)
{
IKsBufferPropertySetImpl
*
This
=
(
IKsBufferPropertySetImpl
*
)
iface
;
...
...
@@ -1202,11 +1189,8 @@ static HRESULT WINAPI IKsBufferPropertySetImpl_Set(
return
E_PROP_ID_UNSUPPORTED
;
}
static
HRESULT
WINAPI
IKsBufferPropertySetImpl_QuerySupport
(
LPKSPROPERTYSET
iface
,
REFGUID
guidPropSet
,
ULONG
dwPropID
,
PULONG
pTypeSupport
)
static
HRESULT
WINAPI
IKsPropertySetImpl_QuerySupport
(
IKsPropertySet
*
iface
,
REFGUID
guidPropSet
,
ULONG
dwPropID
,
ULONG
*
pTypeSupport
)
{
IKsBufferPropertySetImpl
*
This
=
(
IKsBufferPropertySetImpl
*
)
iface
;
...
...
@@ -1216,12 +1200,12 @@ static HRESULT WINAPI IKsBufferPropertySetImpl_QuerySupport(
}
static
const
IKsPropertySetVtbl
iksbvt
=
{
IKs
Buffer
PropertySetImpl_QueryInterface
,
IKs
Buffer
PropertySetImpl_AddRef
,
IKs
Buffer
PropertySetImpl_Release
,
IKs
Buffer
PropertySetImpl_Get
,
IKs
Buffer
PropertySetImpl_Set
,
IKs
Buffer
PropertySetImpl_QuerySupport
IKsPropertySetImpl_QueryInterface
,
IKsPropertySetImpl_AddRef
,
IKsPropertySetImpl_Release
,
IKsPropertySetImpl_Get
,
IKsPropertySetImpl_Set
,
IKsPropertySetImpl_QuerySupport
};
HRESULT
IKsBufferPropertySetImpl_Create
(
...
...
@@ -1255,7 +1239,7 @@ HRESULT IKsBufferPropertySetImpl_Destroy(
{
TRACE
(
"(%p)
\n
"
,
piks
);
while
(
IKs
Buffer
PropertySetImpl_Release
((
LPKSPROPERTYSET
)
piks
)
>
0
);
while
(
IKsPropertySetImpl_Release
((
LPKSPROPERTYSET
)
piks
)
>
0
);
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