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
70c20d7d
Commit
70c20d7d
authored
Sep 25, 2007
by
EA Durbin
Committed by
Alexandre Julliard
Sep 26, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winecfg: Implement audio test.
parent
000736ae
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
1 deletion
+6
-1
audio.c
programs/winecfg/audio.c
+2
-1
idw_testsound.wav
programs/winecfg/idw_testsound.wav
+0
-0
resource.h
programs/winecfg/resource.h
+1
-0
winecfg.rc
programs/winecfg/winecfg.rc
+3
-0
No files found.
programs/winecfg/audio.c
View file @
70c20d7d
...
...
@@ -730,7 +730,8 @@ AudioDlgProc (HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
configureAudioDriver
(
hDlg
);
break
;
case
IDC_AUDIO_TEST
:
MessageBox
(
NULL
,
"Audio Test not implemented yet!"
,
"Fixme"
,
MB_OK
|
MB_ICONERROR
);
if
(
!
PlaySound
(
MAKEINTRESOURCE
(
IDW_TESTSOUND
),
NULL
,
SND_RESOURCE
|
SND_SYNC
))
MessageBox
(
NULL
,
"Audio test failed!"
,
"Error"
,
MB_OK
|
MB_ICONERROR
);
break
;
case
IDC_AUDIO_CONTROL_PANEL
:
MessageBox
(
NULL
,
"Launching audio control panel not implemented yet!"
,
"Fixme"
,
MB_OK
|
MB_ICONERROR
);
...
...
programs/winecfg/idw_testsound.wav
0 → 100644
View file @
70c20d7d
File added
programs/winecfg/resource.h
View file @
70c20d7d
...
...
@@ -173,6 +173,7 @@
#define IDS_AUDIO_MISSING 1309
#define IDC_DSOUND_RATES 1310
#define IDC_DSOUND_BITS 1311
#define IDW_TESTSOUND 1312
#define IDS_ACCEL_FULL 8300
#define IDS_ACCEL_STANDARD 8301
#define IDS_ACCEL_BASIC 8302
...
...
programs/winecfg/winecfg.rc
View file @
70c20d7d
...
...
@@ -56,3 +56,6 @@ IDB_WINE BITMAP idb_wine.bmp
/* @makedep: idb_checkbox.bmp */
IDB_CHECKBOX BITMAP idb_checkbox.bmp
/* @makedep: idw_testsound.wav */
IDW_TESTSOUND WAVE idw_testsound.wav
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