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
a8695bae
Commit
a8695bae
authored
Apr 02, 2007
by
Francois Gouget
Committed by
Alexandre Julliard
Apr 03, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32/tests: Spelling fix.
parent
f4f4eb24
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
moniker.c
dlls/ole32/tests/moniker.c
+6
-6
No files found.
dlls/ole32/tests/moniker.c
View file @
a8695bae
...
...
@@ -1596,7 +1596,7 @@ static void test_bind_context(void)
IUnknown
*
param_obj
;
ULONG
refs
;
static
const
WCHAR
wszParamName
[]
=
{
'G'
,
'e'
,
'm'
,
'm'
,
'a'
,
0
};
static
const
WCHAR
wszNonExist
ant
[]
=
{
'N'
,
'o'
,
'n'
,
'E'
,
'x'
,
'i'
,
's'
,
't'
,
'a
'
,
'n'
,
't'
,
0
};
static
const
WCHAR
wszNonExist
ent
[]
=
{
'N'
,
'o'
,
'n'
,
'E'
,
'x'
,
'i'
,
's'
,
't'
,
'e
'
,
'n'
,
't'
,
0
};
hr
=
CreateBindCtx
(
0
,
NULL
);
ok
(
hr
==
E_INVALIDARG
,
"CreateBindCtx with NULL ppbc should have returned E_INVALIDARG instead of 0x%08x
\n
"
,
hr
);
...
...
@@ -1647,12 +1647,12 @@ static void test_bind_context(void)
ok_ole_success
(
hr
,
"IBindCtx_GetObjectParam"
);
IUnknown_Release
(
param_obj
);
hr
=
IBindCtx_GetObjectParam
(
pBindCtx
,
(
WCHAR
*
)
wszNonExist
a
nt
,
&
param_obj
);
ok
(
hr
==
E_FAIL
,
"IBindCtx_GetObjectParam with non
-existing
key should have failed with E_FAIL instead of 0x%08x
\n
"
,
hr
);
ok
(
param_obj
==
NULL
,
"IBindCtx_GetObjectParam with non
-existing
key should have set output parameter to NULL instead of %p
\n
"
,
param_obj
);
hr
=
IBindCtx_GetObjectParam
(
pBindCtx
,
(
WCHAR
*
)
wszNonExist
e
nt
,
&
param_obj
);
ok
(
hr
==
E_FAIL
,
"IBindCtx_GetObjectParam with non
existent
key should have failed with E_FAIL instead of 0x%08x
\n
"
,
hr
);
ok
(
param_obj
==
NULL
,
"IBindCtx_GetObjectParam with non
existent
key should have set output parameter to NULL instead of %p
\n
"
,
param_obj
);
hr
=
IBindCtx_RevokeObjectParam
(
pBindCtx
,
(
WCHAR
*
)
wszNonExist
a
nt
);
ok
(
hr
==
E_FAIL
,
"IBindCtx_RevokeObjectParam with non
-existing
key should have failed with E_FAIL instead of 0x%08x
\n
"
,
hr
);
hr
=
IBindCtx_RevokeObjectParam
(
pBindCtx
,
(
WCHAR
*
)
wszNonExist
e
nt
);
ok
(
hr
==
E_FAIL
,
"IBindCtx_RevokeObjectParam with non
existent
key should have failed with E_FAIL instead of 0x%08x
\n
"
,
hr
);
hr
=
IBindCtx_EnumObjectParam
(
pBindCtx
,
&
pEnumString
);
ok
(
hr
==
E_NOTIMPL
,
"IBindCtx_EnumObjectParam should have returned E_NOTIMPL instead of 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