Module: wine Branch: master Commit: 421dca6a96dcf1e38ad49c57342efab537b86262 URL: http://source.winehq.org/git/wine.git/?a=commit;h=421dca6a96dcf1e38ad49c5734...
Author: Alistair Leslie-Hughes leslie_alistair@hotmail.com Date: Wed Jan 14 08:29:27 2009 +1100
msxml3: Add fixme for unsupported parameter.
---
dlls/msxml3/domdoc.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/dlls/msxml3/domdoc.c b/dlls/msxml3/domdoc.c index a24f16f..11136ab 100644 --- a/dlls/msxml3/domdoc.c +++ b/dlls/msxml3/domdoc.c @@ -1312,6 +1312,9 @@ static HRESULT WINAPI domdoc_createNode(
TRACE("(%p)->(type,%s,%s,%p)\n", This, debugstr_w(name), debugstr_w(namespaceURI), node);
+ if(namespaceURI && namespaceURI[0]) + FIXME("nodes with namespaces currently not supported.\n"); + hr = get_node_type(Type, &node_type); if(FAILED(hr)) return hr;