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
84e292c6
Commit
84e292c6
authored
Jul 06, 2004
by
Robert Reif
Committed by
Alexandre Julliard
Jul 06, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix IDirectSoundBuffer8_Initialize function prototype and use.
parent
1f787ca6
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
buffer.c
dlls/dsound/buffer.c
+2
-2
primary.c
dlls/dsound/primary.c
+1
-1
dsound.h
include/dsound.h
+1
-1
No files found.
dlls/dsound/buffer.c
View file @
84e292c6
...
...
@@ -886,7 +886,7 @@ static HRESULT WINAPI IDirectSoundBufferImpl_GetObjectInPath(
}
static
HRESULT
WINAPI
IDirectSoundBufferImpl_Initialize
(
LPDIRECTSOUNDBUFFER8
iface
,
LPDIRECTSOUND
8
dsound
,
LPCDSBUFFERDESC
dbsd
LPDIRECTSOUNDBUFFER8
iface
,
LPDIRECTSOUND
dsound
,
LPCDSBUFFERDESC
dbsd
)
{
ICOM_THIS
(
IDirectSoundBufferImpl
,
iface
);
FIXME
(
"(%p,%p,%p):stub
\n
"
,
This
,
dsound
,
dbsd
);
...
...
@@ -1325,7 +1325,7 @@ static HRESULT WINAPI SecondaryBufferImpl_GetStatus(
}
static
HRESULT
WINAPI
SecondaryBufferImpl_Initialize
(
LPDIRECTSOUNDBUFFER8
iface
,
LPDIRECTSOUND
8
dsound
,
LPCDSBUFFERDESC
dbsd
)
LPDIRECTSOUNDBUFFER8
iface
,
LPDIRECTSOUND
dsound
,
LPCDSBUFFERDESC
dbsd
)
{
ICOM_THIS
(
SecondaryBufferImpl
,
iface
);
TRACE
(
"(%p,%p,%p)
\n
"
,
This
,
dsound
,
dbsd
);
...
...
dlls/dsound/primary.c
View file @
84e292c6
...
...
@@ -932,7 +932,7 @@ static HRESULT WINAPI PrimaryBufferImpl_GetObjectInPath(
}
static
HRESULT
WINAPI
PrimaryBufferImpl_Initialize
(
LPDIRECTSOUNDBUFFER8
iface
,
LPDIRECTSOUND
8
dsound
,
LPCDSBUFFERDESC
dbsd
LPDIRECTSOUNDBUFFER8
iface
,
LPDIRECTSOUND
dsound
,
LPCDSBUFFERDESC
dbsd
)
{
ICOM_THIS
(
PrimaryBufferImpl
,
iface
);
FIXME
(
"(%p,%p,%p):stub
\n
"
,
This
,
dsound
,
dbsd
);
...
...
include/dsound.h
View file @
84e292c6
...
...
@@ -554,7 +554,7 @@ ICOM_DEFINE(IDirectSoundBuffer,IUnknown)
STDMETHOD(GetPan)(THIS_ LPLONG lplpan) PURE; \
STDMETHOD(GetFrequency)(THIS_ LPDWORD lpdwFrequency) PURE; \
STDMETHOD(GetStatus)(THIS_ LPDWORD lpdwStatus) PURE; \
STDMETHOD(Initialize)(THIS_ LPDIRECTSOUND
8
lpDirectSound, LPCDSBUFFERDESC lpcDSBufferDesc) PURE; \
STDMETHOD(Initialize)(THIS_ LPDIRECTSOUND lpDirectSound, LPCDSBUFFERDESC lpcDSBufferDesc) PURE; \
STDMETHOD(Lock)(THIS_ DWORD dwWriteCursor, DWORD dwWriteBytes, LPVOID lplpvAudioPtr1, LPDWORD lpdwAudioBytes1, LPVOID lplpvAudioPtr2, LPDWORD lpdwAudioBytes2, DWORD dwFlags) PURE; \
STDMETHOD(Play)(THIS_ DWORD dwReserved1, DWORD dwReserved2, DWORD dwFlags) PURE; \
STDMETHOD(SetCurrentPosition)(THIS_ DWORD dwNewPosition) PURE; \
...
...
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