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
1d52f5f0
Commit
1d52f5f0
authored
Feb 20, 2009
by
Paul Vriens
Committed by
Alexandre Julliard
Feb 20, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
itss/tests: Fix test failures on some Win95 and NT4 boxes.
parent
ac607702
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
protocol.c
dlls/itss/tests/protocol.c
+6
-2
No files found.
dlls/itss/tests/protocol.c
View file @
1d52f5f0
...
...
@@ -571,7 +571,9 @@ static void test_its_protocol(void)
test_protocol
=
ITS_PROTOCOL
;
hres
=
CoGetClassObject
(
&
CLSID_ITSProtocol
,
CLSCTX_INPROC_SERVER
,
NULL
,
&
IID_IUnknown
,
(
void
**
)
&
unk
);
ok
(
hres
==
S_OK
,
"CoGetClassObject failed: %08x
\n
"
,
hres
);
ok
(
hres
==
S_OK
||
broken
(
hres
==
REGDB_E_CLASSNOTREG
),
/* Some W95 and NT4 */
"CoGetClassObject failed: %08x
\n
"
,
hres
);
if
(
FAILED
(
hres
))
return
;
...
...
@@ -629,7 +631,9 @@ static void test_mk_protocol(void)
hres
=
CoGetClassObject
(
&
CLSID_MkProtocol
,
CLSCTX_INPROC_SERVER
,
NULL
,
&
IID_IClassFactory
,
(
void
**
)
&
cf
);
ok
(
hres
==
S_OK
,
"CoGetClassObject failed: %08x
\n
"
,
hres
);
ok
(
hres
==
S_OK
||
broken
(
hres
==
REGDB_E_CLASSNOTREG
),
/* Some W95 and NT4 */
"CoGetClassObject failed: %08x
\n
"
,
hres
);
if
(
FAILED
(
hres
))
return
;
...
...
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