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
c3b8ce93
Commit
c3b8ce93
authored
May 20, 2004
by
Francois Gouget
Committed by
Alexandre Julliard
May 20, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Split off the winmm capture test.
parent
16fe2242
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
36 additions
and
0 deletions
+36
-0
.cvsignore
dlls/winmm/tests/.cvsignore
+1
-0
Makefile.in
dlls/winmm/tests/Makefile.in
+1
-0
capture.c
dlls/winmm/tests/capture.c
+0
-0
wave.c
dlls/winmm/tests/wave.c
+0
-0
winmm_test.h
dlls/winmm/tests/winmm_test.h
+34
-0
No files found.
dlls/winmm/tests/.cvsignore
View file @
c3b8ce93
Makefile
capture.ok
testlist.c
wave.ok
dlls/winmm/tests/Makefile.in
View file @
c3b8ce93
...
...
@@ -6,6 +6,7 @@ TESTDLL = winmm.dll
IMPORTS
=
winmm kernel32
CTESTS
=
\
capture.c
\
wave.c
@MAKE_TEST_RULES@
...
...
dlls/winmm/tests/capture.c
0 → 100644
View file @
c3b8ce93
This diff is collapsed.
Click to expand it.
dlls/winmm/tests/wave.c
View file @
c3b8ce93
This diff is collapsed.
Click to expand it.
dlls/winmm/tests/winmm_test.h
0 → 100644
View file @
c3b8ce93
/*
* Copyright (c) 2002 Francois Gouget
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef WAVE_FORMAT_48M08
#define WAVE_FORMAT_48M08 0x00001000
/* 48 kHz, Mono, 8-bit */
#define WAVE_FORMAT_48S08 0x00002000
/* 48 kHz, Stereo, 8-bit */
#define WAVE_FORMAT_48M16 0x00004000
/* 48 kHz, Mono, 16-bit */
#define WAVE_FORMAT_48S16 0x00008000
/* 48 kHz, Stereo, 16-bit */
#define WAVE_FORMAT_96M08 0x00010000
/* 96 kHz, Mono, 8-bit */
#define WAVE_FORMAT_96S08 0x00020000
/* 96 kHz, Stereo, 8-bit */
#define WAVE_FORMAT_96M16 0x00040000
/* 96 kHz, Mono, 16-bit */
#define WAVE_FORMAT_96S16 0x00080000
/* 96 kHz, Stereo, 16-bit */
#endif
#define NB_WIN_FORMATS 20
extern
const
unsigned
int
win_formats
[
NB_WIN_FORMATS
][
4
];
extern
const
char
*
wave_open_flags
(
DWORD
);
extern
const
char
*
mmsys_error
(
DWORD
);
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