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
62d6a4e9
Commit
62d6a4e9
authored
Jan 03, 2009
by
Andrew Talbot
Committed by
Alexandre Julliard
Jan 03, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dsound: Declare some variables static.
parent
bffe5016
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
4 deletions
+2
-4
dsound_main.c
dlls/dsound/dsound_main.c
+2
-2
dsound_private.h
dlls/dsound/dsound_private.h
+0
-2
No files found.
dlls/dsound/dsound_main.c
View file @
62d6a4e9
...
...
@@ -95,10 +95,10 @@ int ds_snd_queue_max = 10;
int
ds_snd_queue_min
=
6
;
int
ds_snd_shadow_maxsize
=
2
;
int
ds_hw_accel
=
DS_HW_ACCEL_FULL
;
int
ds_default_playback
=
0
;
int
ds_default_capture
=
0
;
int
ds_default_sample_rate
=
44100
;
int
ds_default_bits_per_sample
=
16
;
static
int
ds_default_playback
;
static
int
ds_default_capture
;
/*
* Get a config key from either the app-specific or the default config
...
...
dlls/dsound/dsound_private.h
View file @
62d6a4e9
...
...
@@ -37,8 +37,6 @@ extern int ds_snd_queue_max;
extern
int
ds_snd_queue_min
;
extern
int
ds_snd_shadow_maxsize
;
extern
int
ds_hw_accel
;
extern
int
ds_default_playback
;
extern
int
ds_default_capture
;
extern
int
ds_default_sample_rate
;
extern
int
ds_default_bits_per_sample
;
...
...
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