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
56dbf7fb
Commit
56dbf7fb
authored
Jan 09, 2005
by
Robert Reif
Committed by
Alexandre Julliard
Jan 09, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Initialize and uninitialize COM properly.
parent
4854f847
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
18 additions
and
0 deletions
+18
-0
capture.c
dlls/dsound/tests/capture.c
+4
-0
ds3d.c
dlls/dsound/tests/ds3d.c
+4
-0
ds3d8.c
dlls/dsound/tests/ds3d8.c
+2
-0
dsound.c
dlls/dsound/tests/dsound.c
+2
-0
dsound8.c
dlls/dsound/tests/dsound8.c
+2
-0
propset.c
dlls/dsound/tests/propset.c
+4
-0
No files found.
dlls/dsound/tests/capture.c
View file @
56dbf7fb
...
...
@@ -513,6 +513,8 @@ START_TEST(capture)
{
HMODULE
hDsound
;
CoInitialize
(
NULL
);
hDsound
=
LoadLibraryA
(
"dsound.dll"
);
if
(
!
hDsound
)
{
trace
(
"dsound.dll not found
\n
"
);
...
...
@@ -527,4 +529,6 @@ START_TEST(capture)
}
capture_tests
();
CoUninitialize
();
}
dlls/dsound/tests/ds3d.c
View file @
56dbf7fb
...
...
@@ -1198,5 +1198,9 @@ static void ds3d_tests()
START_TEST
(
ds3d
)
{
CoInitialize
(
NULL
);
ds3d_tests
();
CoUninitialize
();
}
dlls/dsound/tests/ds3d8.c
View file @
56dbf7fb
...
...
@@ -1130,4 +1130,6 @@ START_TEST(ds3d8)
}
ds3d8_tests
();
CoUninitialize
();
}
dlls/dsound/tests/dsound.c
View file @
56dbf7fb
...
...
@@ -756,4 +756,6 @@ START_TEST(dsound)
IDirectSound_tests
();
dsound_tests
();
CoUninitialize
();
}
dlls/dsound/tests/dsound8.c
View file @
56dbf7fb
...
...
@@ -791,4 +791,6 @@ START_TEST(dsound8)
IDirectSound8_tests
();
dsound8_tests
();
CoUninitialize
();
}
dlls/dsound/tests/propset.c
View file @
56dbf7fb
...
...
@@ -408,6 +408,10 @@ static void propset_buffer_tests()
START_TEST
(
propset
)
{
CoInitialize
(
NULL
);
propset_private_tests
();
propset_buffer_tests
();
CoUninitialize
();
}
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