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
fd350842
Commit
fd350842
authored
Aug 30, 2010
by
Nikolay Sivov
Committed by
Alexandre Julliard
Aug 30, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: Silence FIXME for supported properties.
parent
42020c94
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
10 deletions
+12
-10
saxreader.c
dlls/msxml3/saxreader.c
+12
-10
No files found.
dlls/msxml3/saxreader.c
View file @
fd350842
...
...
@@ -2146,10 +2146,7 @@ static HRESULT internal_putProperty(
'x'
,
'm'
,
'l'
,
'd'
,
'e'
,
'c'
,
'l'
,
'-'
,
'v'
,
'e'
,
'r'
,
's'
,
'i'
,
'o'
,
'n'
,
0
};
FIXME
(
"(%p)->(%s): semi-stub
\n
"
,
This
,
debugstr_w
(
pProp
));
if
(
!
memcmp
(
pProp
,
wszCharset
,
sizeof
(
wszCharset
)))
return
E_NOTIMPL
;
TRACE
(
"(%p)->(%s)
\n
"
,
This
,
debugstr_w
(
pProp
));
if
(
!
memcmp
(
pProp
,
wszDeclarationHandler
,
sizeof
(
wszDeclarationHandler
)))
{
...
...
@@ -2177,12 +2174,6 @@ static HRESULT internal_putProperty(
return
S_OK
;
}
if
(
!
memcmp
(
pProp
,
wszDomNode
,
sizeof
(
wszDomNode
)))
return
E_FAIL
;
if
(
!
memcmp
(
pProp
,
wszInputSource
,
sizeof
(
wszInputSource
)))
return
E_NOTIMPL
;
if
(
!
memcmp
(
pProp
,
wszLexicalHandler
,
sizeof
(
wszLexicalHandler
)))
{
if
(
This
->
isParsing
)
return
E_FAIL
;
...
...
@@ -2211,6 +2202,17 @@ static HRESULT internal_putProperty(
return
S_OK
;
}
FIXME
(
"(%p)->(%s): unsupported property
\n
"
,
This
,
debugstr_w
(
pProp
));
if
(
!
memcmp
(
pProp
,
wszCharset
,
sizeof
(
wszCharset
)))
return
E_NOTIMPL
;
if
(
!
memcmp
(
pProp
,
wszDomNode
,
sizeof
(
wszDomNode
)))
return
E_FAIL
;
if
(
!
memcmp
(
pProp
,
wszInputSource
,
sizeof
(
wszInputSource
)))
return
E_NOTIMPL
;
if
(
!
memcmp
(
pProp
,
wszMaxElementDepth
,
sizeof
(
wszMaxElementDepth
)))
return
E_NOTIMPL
;
...
...
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