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
95b6e6b3
Commit
95b6e6b3
authored
Mar 30, 2011
by
Francois Gouget
Committed by
Alexandre Julliard
Mar 30, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: Make xslpattern_error() static.
parent
09ba4265
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
19 deletions
+18
-19
xslpattern.h
dlls/msxml3/xslpattern.h
+1
-1
xslpattern.y
dlls/msxml3/xslpattern.y
+17
-18
No files found.
dlls/msxml3/xslpattern.h
View file @
95b6e6b3
...
...
@@ -51,6 +51,6 @@ int xslpattern_lex_init(void**);
int
xslpattern_lex_destroy
(
void
*
);
void
xslpattern_set_extra
(
parser_param
*
,
void
*
);
int
xslpattern_parse
(
parser_param
*
,
void
*
);
void
xslpattern_error
(
parser_param
*
param
,
void
const
*
scanner
,
char
const
*
msg
);
#endif
/* __XSLPATTERN__ */
dlls/msxml3/xslpattern.y
View file @
95b6e6b3
...
...
@@ -42,6 +42,23 @@ static inline BOOL is_literal(xmlChar const* tok)
(tok[0] == '\'' || tok[0] == '"'));
}
static void xslpattern_error(parser_param* param, void const* scanner, char const* msg)
{
FIXME("%s:\n"
" param {\n"
" yyscanner=%p\n"
" ctx=%p\n"
" in=\"%s\"\n"
" pos=%i\n"
" len=%i\n"
" out=\"%s\"\n"
" err=%i\n"
" }\n"
" scanner=%p\n",
msg, param->yyscanner, param->ctx, param->in, param->pos,
param->len, param->out, ++param->err, scanner);
}
%}
%token TOK_Parent TOK_Self TOK_DblFSlash TOK_FSlash TOK_Axis TOK_Colon
...
...
@@ -728,22 +745,4 @@ static inline BOOL is_literal(xmlChar const* tok)
%%
void xslpattern_error(parser_param* param, void const* scanner, char const* msg)
{
FIXME("%s:\n"
" param {\n"
" yyscanner=%p\n"
" ctx=%p\n"
" in=\"%s\"\n"
" pos=%i\n"
" len=%i\n"
" out=\"%s\"\n"
" err=%i\n"
" }\n"
" scanner=%p\n",
msg, param->yyscanner, param->ctx, param->in, param->pos,
param->len, param->out, ++param->err, scanner);
}
#endif /* HAVE_LIBXML2 */
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