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
8819156b
Commit
8819156b
authored
Mar 27, 2009
by
Detlef Riekenberg
Committed by
Alexandre Julliard
Mar 30, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dsound/tests: Remove duplicate version dump.
We have the version already in the header of the winetest results.
parent
f02e4dcf
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
0 additions
and
41 deletions
+0
-41
capture.c
dlls/dsound/tests/capture.c
+0
-1
ds3d.c
dlls/dsound/tests/ds3d.c
+0
-1
ds3d8.c
dlls/dsound/tests/ds3d8.c
+0
-1
dsound.c
dlls/dsound/tests/dsound.c
+0
-1
dsound8.c
dlls/dsound/tests/dsound8.c
+0
-34
dsound_test.h
dlls/dsound/tests/dsound_test.h
+0
-1
duplex.c
dlls/dsound/tests/duplex.c
+0
-1
propset.c
dlls/dsound/tests/propset.c
+0
-1
No files found.
dlls/dsound/tests/capture.c
View file @
8819156b
...
...
@@ -687,7 +687,6 @@ START_TEST(capture)
hDsound
=
LoadLibrary
(
"dsound.dll"
);
if
(
hDsound
)
{
trace
(
"DLL Version: %s
\n
"
,
get_file_version
(
"dsound.dll"
));
pDirectSoundCaptureCreate
=
(
void
*
)
GetProcAddress
(
hDsound
,
"DirectSoundCaptureCreate"
);
...
...
dlls/dsound/tests/ds3d.c
View file @
8819156b
...
...
@@ -1280,7 +1280,6 @@ START_TEST(ds3d)
hDsound
=
LoadLibrary
(
"dsound.dll"
);
if
(
hDsound
)
{
trace
(
"DLL Version: %s
\n
"
,
get_file_version
(
"dsound.dll"
));
pDirectSoundEnumerateA
=
(
void
*
)
GetProcAddress
(
hDsound
,
"DirectSoundEnumerateA"
);
...
...
dlls/dsound/tests/ds3d8.c
View file @
8819156b
...
...
@@ -1133,7 +1133,6 @@ START_TEST(ds3d8)
hDsound
=
LoadLibrary
(
"dsound.dll"
);
if
(
hDsound
)
{
trace
(
"DLL Version: %s
\n
"
,
get_file_version
(
"dsound.dll"
));
pDirectSoundEnumerateA
=
(
void
*
)
GetProcAddress
(
hDsound
,
"DirectSoundEnumerateA"
);
...
...
dlls/dsound/tests/dsound.c
View file @
8819156b
...
...
@@ -1083,7 +1083,6 @@ START_TEST(dsound)
hDsound
=
LoadLibrary
(
"dsound.dll"
);
if
(
hDsound
)
{
trace
(
"DLL Version: %s
\n
"
,
get_file_version
(
"dsound.dll"
));
pDirectSoundEnumerateA
=
(
void
*
)
GetProcAddress
(
hDsound
,
"DirectSoundEnumerateA"
);
...
...
dlls/dsound/tests/dsound8.c
View file @
8819156b
...
...
@@ -874,39 +874,6 @@ static void dsound8_tests(void)
ok
(
rc
==
DS_OK
,
"DirectSoundEnumerateA() failed: %08x
\n
"
,
rc
);
}
const
char
*
get_file_version
(
const
char
*
file_name
)
{
static
char
version
[
32
];
static
char
backslash
[]
=
"
\\
"
;
DWORD
size
;
DWORD
handle
;
size
=
GetFileVersionInfoSizeA
(
"dsound.dll"
,
&
handle
);
if
(
size
)
{
char
*
data
=
HeapAlloc
(
GetProcessHeap
(),
0
,
size
);
if
(
data
)
{
if
(
GetFileVersionInfoA
(
"dsound.dll"
,
handle
,
size
,
data
))
{
VS_FIXEDFILEINFO
*
pFixedVersionInfo
;
UINT
len
;
if
(
VerQueryValueA
(
data
,
backslash
,
(
LPVOID
*
)
&
pFixedVersionInfo
,
&
len
))
{
sprintf
(
version
,
"%d.%d.%d.%d"
,
pFixedVersionInfo
->
dwFileVersionMS
>>
16
,
pFixedVersionInfo
->
dwFileVersionMS
&
0xffff
,
pFixedVersionInfo
->
dwFileVersionLS
>>
16
,
pFixedVersionInfo
->
dwFileVersionLS
&
0xffff
);
}
else
sprintf
(
version
,
"not available"
);
}
else
sprintf
(
version
,
"failed"
);
HeapFree
(
GetProcessHeap
(),
0
,
data
);
}
else
sprintf
(
version
,
"failed"
);
}
else
sprintf
(
version
,
"not available"
);
return
version
;
}
START_TEST
(
dsound8
)
{
...
...
@@ -917,7 +884,6 @@ START_TEST(dsound8)
hDsound
=
LoadLibrary
(
"dsound.dll"
);
if
(
hDsound
)
{
trace
(
"DLL Version: %s
\n
"
,
get_file_version
(
"dsound.dll"
));
pDirectSoundEnumerateA
=
(
void
*
)
GetProcAddress
(
hDsound
,
"DirectSoundEnumerateA"
);
...
...
dlls/dsound/tests/dsound_test.h
View file @
8819156b
...
...
@@ -85,5 +85,4 @@ extern void test_buffer8(LPDIRECTSOUND8,LPDIRECTSOUNDBUFFER*,
LPDIRECTSOUND3DLISTENER
,
BOOL
,
BOOL
);
extern
const
char
*
getDSBCAPS
(
DWORD
xmask
);
extern
int
align
(
int
length
,
int
align
);
extern
const
char
*
get_file_version
(
const
char
*
file_name
);
extern
const
char
*
format_string
(
const
WAVEFORMATEX
*
wfx
);
dlls/dsound/tests/duplex.c
View file @
8819156b
...
...
@@ -231,7 +231,6 @@ START_TEST(duplex)
hDsound
=
LoadLibrary
(
"dsound.dll"
);
if
(
hDsound
)
{
trace
(
"DLL Version: %s
\n
"
,
get_file_version
(
"dsound.dll"
));
pDirectSoundFullDuplexCreate
=
(
void
*
)
GetProcAddress
(
hDsound
,
"DirectSoundFullDuplexCreate"
);
...
...
dlls/dsound/tests/propset.c
View file @
8819156b
...
...
@@ -720,7 +720,6 @@ START_TEST(propset)
hDsound
=
LoadLibrary
(
"dsound.dll"
);
if
(
hDsound
)
{
trace
(
"DLL Version: %s
\n
"
,
get_file_version
(
"dsound.dll"
));
pDirectSoundEnumerateA
=
(
void
*
)
GetProcAddress
(
hDsound
,
"DirectSoundEnumerateA"
);
...
...
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