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
34ec3a63
Commit
34ec3a63
authored
Jan 16, 2006
by
Robert Reif
Committed by
Alexandre Julliard
Jan 16, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dsound: Make some capture functions global.
parent
48cbfd7e
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
6 deletions
+17
-6
capture.c
dlls/dsound/capture.c
+3
-6
dsound_private.h
dlls/dsound/dsound_private.h
+14
-0
No files found.
dlls/dsound/capture.c
View file @
34ec3a63
...
...
@@ -447,8 +447,7 @@ IDirectSoundCaptureImpl_Release( LPDIRECTSOUNDCAPTURE iface )
return
ref
;
}
static
HRESULT
WINAPI
IDirectSoundCaptureImpl_CreateCaptureBuffer
(
HRESULT
WINAPI
IDirectSoundCaptureImpl_CreateCaptureBuffer
(
LPDIRECTSOUNDCAPTURE
iface
,
LPCDSCBUFFERDESC
lpcDSCBufferDesc
,
LPDIRECTSOUNDCAPTUREBUFFER
*
lplpDSCaptureBuffer
,
...
...
@@ -494,8 +493,7 @@ IDirectSoundCaptureImpl_CreateCaptureBuffer(
return
hr
;
}
static
HRESULT
WINAPI
IDirectSoundCaptureImpl_GetCaps
(
HRESULT
WINAPI
IDirectSoundCaptureImpl_GetCaps
(
LPDIRECTSOUNDCAPTURE
iface
,
LPDSCCAPS
lpDSCCaps
)
{
...
...
@@ -528,8 +526,7 @@ IDirectSoundCaptureImpl_GetCaps(
return
DS_OK
;
}
static
HRESULT
WINAPI
IDirectSoundCaptureImpl_Initialize
(
HRESULT
WINAPI
IDirectSoundCaptureImpl_Initialize
(
LPDIRECTSOUNDCAPTURE
iface
,
LPCGUID
lpcGUID
)
{
...
...
dlls/dsound/dsound_private.h
View file @
34ec3a63
...
...
@@ -527,6 +527,20 @@ void CALLBACK DSOUND_callback(HWAVEOUT hwo, UINT msg, DWORD dwUser, DWORD dw1, D
void
DSOUND_Calc3DBuffer
(
IDirectSoundBufferImpl
*
dsb
);
/* capture.c */
HRESULT
WINAPI
IDirectSoundCaptureImpl_CreateCaptureBuffer
(
LPDIRECTSOUNDCAPTURE
iface
,
LPCDSCBUFFERDESC
lpcDSCBufferDesc
,
LPDIRECTSOUNDCAPTUREBUFFER
*
lplpDSCaptureBuffer
,
LPUNKNOWN
pUnk
);
HRESULT
WINAPI
IDirectSoundCaptureImpl_GetCaps
(
LPDIRECTSOUNDCAPTURE
iface
,
LPDSCCAPS
lpDSCCaps
);
HRESULT
WINAPI
IDirectSoundCaptureImpl_Initialize
(
LPDIRECTSOUNDCAPTURE
iface
,
LPCGUID
lpcGUID
);
#define STATE_STOPPED 0
#define STATE_STARTING 1
#define STATE_PLAYING 2
...
...
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