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
5e947df1
Commit
5e947df1
authored
Jan 23, 2018
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jan 23, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: Register msxsl:node-set() extension function.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
92513a9e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
main.c
dlls/msxml3/main.c
+10
-0
No files found.
dlls/msxml3/main.c
View file @
5e947df1
...
...
@@ -40,6 +40,8 @@
# include <libxslt/variables.h>
# include <libxslt/xsltInternals.h>
# include <libxslt/documents.h>
# include <libxslt/extensions.h>
# include <libxslt/extra.h>
# endif
#endif
...
...
@@ -172,10 +174,12 @@ DECL_FUNCPTR(xsltApplyStylesheetUser);
DECL_FUNCPTR
(
xsltCleanupGlobals
);
DECL_FUNCPTR
(
xsltFreeStylesheet
);
DECL_FUNCPTR
(
xsltFreeTransformContext
);
DECL_FUNCPTR
(
xsltFunctionNodeSet
);
DECL_FUNCPTR
(
xsltNewTransformContext
);
DECL_FUNCPTR
(
xsltNextImport
);
DECL_FUNCPTR
(
xsltParseStylesheetDoc
);
DECL_FUNCPTR
(
xsltQuoteUserParams
);
DECL_FUNCPTR
(
xsltRegisterExtModuleFunction
);
DECL_FUNCPTR
(
xsltSaveResultTo
);
DECL_FUNCPTR
(
xsltSetLoaderFunc
);
# undef DECL_FUNCPTR
...
...
@@ -199,10 +203,12 @@ static void init_libxslt(void)
LOAD_FUNCPTR
(
xsltCleanupGlobals
,
1
);
LOAD_FUNCPTR
(
xsltFreeStylesheet
,
1
);
LOAD_FUNCPTR
(
xsltFreeTransformContext
,
1
);
LOAD_FUNCPTR
(
xsltFunctionNodeSet
,
1
);
LOAD_FUNCPTR
(
xsltNewTransformContext
,
1
);
LOAD_FUNCPTR
(
xsltNextImport
,
1
);
LOAD_FUNCPTR
(
xsltParseStylesheetDoc
,
1
);
LOAD_FUNCPTR
(
xsltQuoteUserParams
,
1
);
LOAD_FUNCPTR
(
xsltRegisterExtModuleFunction
,
1
);
LOAD_FUNCPTR
(
xsltSaveResultTo
,
1
);
LOAD_FUNCPTR
(
xsltSetLoaderFunc
,
1
);
#undef LOAD_FUNCPTR
...
...
@@ -211,6 +217,10 @@ static void init_libxslt(void)
pxsltInit
();
pxsltSetLoaderFunc
(
xslt_doc_default_loader
);
pxsltRegisterExtModuleFunction
(
(
const
xmlChar
*
)
"node-set"
,
(
const
xmlChar
*
)
"urn:schemas-microsoft-com:xslt"
,
pxsltFunctionNodeSet
);
return
;
...
...
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