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
e1e1f792
Commit
e1e1f792
authored
Jan 27, 2006
by
Huw Davies
Committed by
Alexandre Julliard
Jan 27, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml: Issue a fixme if the interface is not implemented.
parent
9aa55562
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
17 additions
and
0 deletions
+17
-0
domdoc.c
dlls/msxml3/domdoc.c
+3
-0
element.c
dlls/msxml3/element.c
+3
-0
factory.c
dlls/msxml3/factory.c
+1
-0
node.c
dlls/msxml3/node.c
+1
-0
nodelist.c
dlls/msxml3/nodelist.c
+3
-0
nodemap.c
dlls/msxml3/nodemap.c
+3
-0
parseerror.c
dlls/msxml3/parseerror.c
+3
-0
No files found.
dlls/msxml3/domdoc.c
View file @
e1e1f792
...
...
@@ -95,7 +95,10 @@ static HRESULT WINAPI domdoc_QueryInterface( IXMLDOMDocument *iface, REFIID riid
return
IUnknown_QueryInterface
(
This
->
node_unk
,
riid
,
ppvObject
);
}
else
{
FIXME
(
"interface %s not implemented
\n
"
,
debugstr_guid
(
riid
));
return
E_NOINTERFACE
;
}
IXMLDOMDocument_AddRef
(
iface
);
...
...
dlls/msxml3/element.c
View file @
e1e1f792
...
...
@@ -74,7 +74,10 @@ static HRESULT WINAPI domelem_QueryInterface(
return
IUnknown_QueryInterface
(
This
->
node_unk
,
riid
,
ppvObject
);
}
else
{
FIXME
(
"interface %s not implemented
\n
"
,
debugstr_guid
(
riid
));
return
E_NOINTERFACE
;
}
IXMLDOMElement_AddRef
(
iface
);
...
...
dlls/msxml3/factory.c
View file @
e1e1f792
...
...
@@ -63,6 +63,7 @@ static HRESULT WINAPI xmlcf_QueryInterface(
return
S_OK
;
}
FIXME
(
"interface %s not implemented
\n
"
,
debugstr_guid
(
riid
));
return
E_NOINTERFACE
;
}
...
...
dlls/msxml3/node.c
View file @
e1e1f792
...
...
@@ -775,6 +775,7 @@ static HRESULT WINAPI Internal_QueryInterface(
*
ppvObject
=
&
This
->
lpVtbl
;
else
{
FIXME
(
"interface %s not implemented
\n
"
,
debugstr_guid
(
riid
));
*
ppvObject
=
NULL
;
return
E_NOINTERFACE
;
}
...
...
dlls/msxml3/nodelist.c
View file @
e1e1f792
...
...
@@ -167,7 +167,10 @@ static HRESULT WINAPI xmlnodelist_QueryInterface(
*
ppvObject
=
iface
;
}
else
{
FIXME
(
"interface %s not implemented
\n
"
,
debugstr_guid
(
riid
));
return
E_NOINTERFACE
;
}
IXMLDOMNodeList_AddRef
(
iface
);
...
...
dlls/msxml3/nodemap.c
View file @
e1e1f792
...
...
@@ -64,7 +64,10 @@ static HRESULT WINAPI xmlnodemap_QueryInterface(
*
ppvObject
=
iface
;
}
else
{
FIXME
(
"interface %s not implemented
\n
"
,
debugstr_guid
(
riid
));
return
E_NOINTERFACE
;
}
IXMLDOMElement_AddRef
(
iface
);
...
...
dlls/msxml3/parseerror.c
View file @
e1e1f792
...
...
@@ -63,7 +63,10 @@ static HRESULT WINAPI parseError_QueryInterface(
*
ppvObject
=
iface
;
}
else
{
FIXME
(
"interface %s not implemented
\n
"
,
debugstr_guid
(
riid
));
return
E_NOINTERFACE
;
}
IXMLDOMParseError_AddRef
(
iface
);
...
...
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