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
57582b37
Commit
57582b37
authored
Jan 20, 2015
by
Francois Gouget
Committed by
Alexandre Julliard
Jan 20, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dsound: Make some DirectSoundDevice_*() functions static.
parent
dfaef530
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
dsound.c
dlls/dsound/dsound.c
+4
-4
No files found.
dlls/dsound/dsound.c
View file @
57582b37
...
...
@@ -199,7 +199,7 @@ static ULONG DirectSoundDevice_AddRef(DirectSoundDevice * device)
return
ref
;
}
ULONG
DirectSoundDevice_Release
(
DirectSoundDevice
*
device
)
static
ULONG
DirectSoundDevice_Release
(
DirectSoundDevice
*
device
)
{
HRESULT
hr
;
ULONG
ref
=
InterlockedDecrement
(
&
(
device
->
ref
));
...
...
@@ -271,7 +271,7 @@ BOOL DSOUND_check_supported(IAudioClient *client, DWORD rate,
return
hr
==
S_OK
;
}
HRESULT
DirectSoundDevice_Initialize
(
DirectSoundDevice
**
ppDevice
,
LPCGUID
lpcGUID
)
static
HRESULT
DirectSoundDevice_Initialize
(
DirectSoundDevice
**
ppDevice
,
LPCGUID
lpcGUID
)
{
HRESULT
hr
=
DS_OK
;
GUID
devGUID
;
...
...
@@ -398,7 +398,7 @@ HRESULT DirectSoundDevice_Initialize(DirectSoundDevice ** ppDevice, LPCGUID lpcG
return
hr
;
}
HRESULT
DirectSoundDevice_CreateSoundBuffer
(
static
HRESULT
DirectSoundDevice_CreateSoundBuffer
(
DirectSoundDevice
*
device
,
LPCDSBUFFERDESC
dsbd
,
LPLPDIRECTSOUNDBUFFER
ppdsb
,
...
...
@@ -539,7 +539,7 @@ HRESULT DirectSoundDevice_CreateSoundBuffer(
return
hres
;
}
HRESULT
DirectSoundDevice_DuplicateSoundBuffer
(
static
HRESULT
DirectSoundDevice_DuplicateSoundBuffer
(
DirectSoundDevice
*
device
,
LPDIRECTSOUNDBUFFER
psb
,
LPLPDIRECTSOUNDBUFFER
ppdsb
)
...
...
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