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
a18ee211
Commit
a18ee211
authored
Jan 12, 2010
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jan 14, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3/xmldoc: Fix IPersistStreamInit::GetClassID() for IXMLDocument.
parent
1b2f1867
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
2 deletions
+16
-2
xmldoc.c
dlls/msxml3/tests/xmldoc.c
+9
-0
xmldoc.c
dlls/msxml3/xmldoc.c
+7
-2
No files found.
dlls/msxml3/tests/xmldoc.c
View file @
a18ee211
...
@@ -361,6 +361,7 @@ static void test_persiststreaminit(void)
...
@@ -361,6 +361,7 @@ static void test_persiststreaminit(void)
HRESULT
hr
;
HRESULT
hr
;
ULARGE_INTEGER
size
;
ULARGE_INTEGER
size
;
CHAR
path
[
MAX_PATH
];
CHAR
path
[
MAX_PATH
];
CLSID
id
;
hr
=
CoCreateInstance
(
&
CLSID_XMLDocument
,
NULL
,
CLSCTX_INPROC_SERVER
,
hr
=
CoCreateInstance
(
&
CLSID_XMLDocument
,
NULL
,
CLSCTX_INPROC_SERVER
,
&
IID_IXMLDocument
,
(
LPVOID
*
)
&
doc
);
&
IID_IXMLDocument
,
(
LPVOID
*
)
&
doc
);
...
@@ -380,6 +381,9 @@ static void test_persiststreaminit(void)
...
@@ -380,6 +381,9 @@ static void test_persiststreaminit(void)
hr
=
IPersistStreamInit_Save
(
psi
,
NULL
,
FALSE
);
hr
=
IPersistStreamInit_Save
(
psi
,
NULL
,
FALSE
);
todo_wine
ok
(
hr
==
E_INVALIDARG
,
"Expected E_INVALIDARG, got %08x
\n
"
,
hr
);
todo_wine
ok
(
hr
==
E_INVALIDARG
,
"Expected E_INVALIDARG, got %08x
\n
"
,
hr
);
hr
=
IPersistStreamInit_GetClassID
(
psi
,
NULL
);
ok
(
hr
==
E_POINTER
,
"Expected E_INVALIDARG, got %08x
\n
"
,
hr
);
create_xml_file
(
"bank.xml"
);
create_xml_file
(
"bank.xml"
);
GetFullPathNameA
(
"bank.xml"
,
MAX_PATH
,
path
,
NULL
);
GetFullPathNameA
(
"bank.xml"
,
MAX_PATH
,
path
,
NULL
);
create_stream_on_file
(
&
stream
,
path
);
create_stream_on_file
(
&
stream
,
path
);
...
@@ -426,6 +430,11 @@ static void test_persiststreaminit(void)
...
@@ -426,6 +430,11 @@ static void test_persiststreaminit(void)
todo_wine
ok
(
stat
.
cbSize
.
QuadPart
>
0
,
"Expected >0
\n
"
);
todo_wine
ok
(
stat
.
cbSize
.
QuadPart
>
0
,
"Expected >0
\n
"
);
IStream_Release
(
stream
);
IStream_Release
(
stream
);
memset
(
&
id
,
0
,
sizeof
(
id
));
hr
=
IPersistStreamInit_GetClassID
(
psi
,
&
id
);
ok
(
hr
==
S_OK
,
"Expected S_OK, got %08x
\n
"
,
hr
);
ok
(
IsEqualCLSID
(
&
id
,
&
CLSID_XMLDocument
),
"Expected CLSID_XMLDocument
\n
"
);
cleanup:
cleanup:
IPersistStreamInit_Release
(
psi
);
IPersistStreamInit_Release
(
psi
);
IXMLDocument_Release
(
doc
);
IXMLDocument_Release
(
doc
);
...
...
dlls/msxml3/xmldoc.c
View file @
a18ee211
...
@@ -574,8 +574,13 @@ static ULONG WINAPI xmldoc_IPersistStreamInit_Release(
...
@@ -574,8 +574,13 @@ static ULONG WINAPI xmldoc_IPersistStreamInit_Release(
static
HRESULT
WINAPI
xmldoc_IPersistStreamInit_GetClassID
(
static
HRESULT
WINAPI
xmldoc_IPersistStreamInit_GetClassID
(
IPersistStreamInit
*
iface
,
CLSID
*
classid
)
IPersistStreamInit
*
iface
,
CLSID
*
classid
)
{
{
FIXME
(
"(%p,%p): stub!
\n
"
,
iface
,
classid
);
xmldoc
*
this
=
impl_from_IPersistStreamInit
(
iface
);
return
E_NOTIMPL
;
TRACE
(
"(%p,%p)
\n
"
,
this
,
classid
);
if
(
!
classid
)
return
E_POINTER
;
*
classid
=
CLSID_XMLDocument
;
return
S_OK
;
}
}
static
HRESULT
WINAPI
xmldoc_IPersistStreamInit_IsDirty
(
static
HRESULT
WINAPI
xmldoc_IPersistStreamInit_IsDirty
(
...
...
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