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
b2a8de3d
Commit
b2a8de3d
authored
Aug 24, 2010
by
David Hedberg
Committed by
Alexandre Julliard
Aug 24, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32/tests: Add some event tests to ExplorerBrowser tests.
parent
ab63bc05
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
0 deletions
+15
-0
ebrowser.c
dlls/shell32/tests/ebrowser.c
+15
-0
No files found.
dlls/shell32/tests/ebrowser.c
View file @
b2a8de3d
...
...
@@ -631,6 +631,11 @@ static void test_Advise(void)
ok
(
ebev
.
ref
==
10
,
"Got %d
\n
"
,
ebev
.
ref
);
ebev
.
completed
=
0
;
ebrowser_browse_to_desktop
(
peb
);
process_msgs
();
ok
(
ebev
.
completed
==
10
,
"Got %d
\n
"
,
ebev
.
completed
);
/* Remove a bunch somewhere in the middle */
for
(
i
=
4
;
i
<
8
;
i
++
)
{
...
...
@@ -638,6 +643,11 @@ static void test_Advise(void)
ok
(
hr
==
S_OK
,
"got (0x%08x)
\n
"
,
hr
);
}
ebev
.
completed
=
0
;
ebrowser_browse_to_desktop
(
peb
);
process_msgs
();
ok
(
ebev
.
completed
==
6
,
"Got %d
\n
"
,
ebev
.
completed
);
if
(
0
)
{
/* Using unadvise with a previously unadvised cookie results
...
...
@@ -657,6 +667,11 @@ static void test_Advise(void)
ok
(
ebev
.
ref
==
0
,
"Got %d
\n
"
,
ebev
.
ref
);
ebev
.
completed
=
0
;
ebrowser_browse_to_desktop
(
peb
);
process_msgs
();
ok
(
ebev
.
completed
==
0
,
"Got %d
\n
"
,
ebev
.
completed
);
/* ::Destroy implies ::Unadvise. */
hr
=
IExplorerBrowser_Advise
(
peb
,
pebe
,
&
cookies
[
0
]);
ok
(
hr
==
S_OK
,
"Got 0x%08x
\n
"
,
hr
);
...
...
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