Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lorenzo Ferrillo
wine
Commits
e8f7ddf7
Commit
e8f7ddf7
authored
13 years ago
by
Michael Stefaniuc
Committed by
Alexandre Julliard
13 years ago
Browse files
Options
Downloads
Patches
Plain Diff
dsound: Drop "Capture" from the IDirectSoundNotify method names.
parent
f1d74149
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dlls/dsound/capture.c
+11
-15
11 additions, 15 deletions
dlls/dsound/capture.c
with
11 additions
and
15 deletions
dlls/dsound/capture.c
+
11
−
15
View file @
e8f7ddf7
...
...
@@ -56,12 +56,10 @@ struct IDirectSoundCaptureNotifyImpl
};
/*******************************************************************************
*
IDirectSound
Capture
Notify
*
IDirectSoundNotify
*/
static
HRESULT
WINAPI
IDirectSoundCaptureNotifyImpl_QueryInterface
(
LPDIRECTSOUNDNOTIFY
iface
,
REFIID
riid
,
LPVOID
*
ppobj
)
static
HRESULT
WINAPI
IDirectSoundNotifyImpl_QueryInterface
(
IDirectSoundNotify
*
iface
,
REFIID
riid
,
void
**
ppobj
)
{
IDirectSoundCaptureNotifyImpl
*
This
=
(
IDirectSoundCaptureNotifyImpl
*
)
iface
;
TRACE
(
"(%p,%s,%p)
\n
"
,
This
,
debugstr_guid
(
riid
),
ppobj
);
...
...
@@ -74,7 +72,7 @@ static HRESULT WINAPI IDirectSoundCaptureNotifyImpl_QueryInterface(
return
IDirectSoundCaptureBuffer_QueryInterface
((
LPDIRECTSOUNDCAPTUREBUFFER
)
This
->
dscb
,
riid
,
ppobj
);
}
static
ULONG
WINAPI
IDirectSound
Capture
NotifyImpl_AddRef
(
LPDIRECTSOUNDNOTIFY
iface
)
static
ULONG
WINAPI
IDirectSoundNotifyImpl_AddRef
(
IDirectSoundNotify
*
iface
)
{
IDirectSoundCaptureNotifyImpl
*
This
=
(
IDirectSoundCaptureNotifyImpl
*
)
iface
;
ULONG
ref
=
InterlockedIncrement
(
&
(
This
->
ref
));
...
...
@@ -82,7 +80,7 @@ static ULONG WINAPI IDirectSoundCaptureNotifyImpl_AddRef(LPDIRECTSOUNDNOTIFY ifa
return
ref
;
}
static
ULONG
WINAPI
IDirectSound
Capture
NotifyImpl_Release
(
LPDIRECTSOUNDNOTIFY
iface
)
static
ULONG
WINAPI
IDirectSoundNotifyImpl_Release
(
IDirectSoundNotify
*
iface
)
{
IDirectSoundCaptureNotifyImpl
*
This
=
(
IDirectSoundCaptureNotifyImpl
*
)
iface
;
ULONG
ref
=
InterlockedDecrement
(
&
(
This
->
ref
));
...
...
@@ -97,10 +95,8 @@ static ULONG WINAPI IDirectSoundCaptureNotifyImpl_Release(LPDIRECTSOUNDNOTIFY if
return
ref
;
}
static
HRESULT
WINAPI
IDirectSoundCaptureNotifyImpl_SetNotificationPositions
(
LPDIRECTSOUNDNOTIFY
iface
,
DWORD
howmuch
,
LPCDSBPOSITIONNOTIFY
notify
)
static
HRESULT
WINAPI
IDirectSoundNotifyImpl_SetNotificationPositions
(
IDirectSoundNotify
*
iface
,
DWORD
howmuch
,
const
DSBPOSITIONNOTIFY
*
notify
)
{
IDirectSoundCaptureNotifyImpl
*
This
=
(
IDirectSoundCaptureNotifyImpl
*
)
iface
;
TRACE
(
"(%p,0x%08x,%p)
\n
"
,
This
,
howmuch
,
notify
);
...
...
@@ -144,10 +140,10 @@ static HRESULT WINAPI IDirectSoundCaptureNotifyImpl_SetNotificationPositions(
static
const
IDirectSoundNotifyVtbl
dscnvt
=
{
IDirectSound
Capture
NotifyImpl_QueryInterface
,
IDirectSound
Capture
NotifyImpl_AddRef
,
IDirectSound
Capture
NotifyImpl_Release
,
IDirectSound
Capture
NotifyImpl_SetNotificationPositions
,
IDirectSoundNotifyImpl_QueryInterface
,
IDirectSoundNotifyImpl_AddRef
,
IDirectSoundNotifyImpl_Release
,
IDirectSoundNotifyImpl_SetNotificationPositions
};
static
HRESULT
IDirectSoundCaptureNotifyImpl_Create
(
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment