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
ea2387b2
Commit
ea2387b2
authored
Jun 10, 2015
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jun 11, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oledb32/tests: Improve IDataSourceLocator tests a bit.
parent
725e4733
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
5 deletions
+3
-5
database.c
dlls/oledb32/tests/database.c
+3
-5
No files found.
dlls/oledb32/tests/database.c
View file @
ea2387b2
...
...
@@ -737,10 +737,8 @@ static void test_dslocator(void)
{
COMPATIBLE_LONG
hwnd
=
0
;
/* Crashes under Window 7
hr = IDataSourceLocator_get_hWnd(dslocator, NULL);
ok(hr == E_INVALIDARG, "got %08x\n", hr);
*/
if
(
0
)
/* Crashes under Window 7 */
hr
=
IDataSourceLocator_get_hWnd
(
dslocator
,
NULL
);
hr
=
IDataSourceLocator_get_hWnd
(
dslocator
,
&
hwnd
);
ok
(
hr
==
S_OK
,
"got %08x
\n
"
,
hr
);
...
...
@@ -755,7 +753,7 @@ static void test_dslocator(void)
hr
=
IDataSourceLocator_put_hWnd
(
dslocator
,
hwnd
);
ok
(
hr
==
S_OK
,
"got %08x
\n
"
,
hr
);
hwnd
=
0
xDEADBEEF
;
hwnd
=
0
;
hr
=
IDataSourceLocator_get_hWnd
(
dslocator
,
&
hwnd
);
ok
(
hr
==
S_OK
,
"got %08x
\n
"
,
hr
);
ok
(
hwnd
==
0xDEADBEEF
,
"got %p
\n
"
,
(
HWND
)
hwnd
);
...
...
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