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
8a8c8bbd
Commit
8a8c8bbd
authored
May 03, 2011
by
Francois Gouget
Committed by
Alexandre Julliard
May 03, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: Make a bunch of XSLPattern_*() functions static.
parent
ca268b19
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
selection.c
dlls/msxml3/selection.c
+9
-9
No files found.
dlls/msxml3/selection.c
View file @
8a8c8bbd
...
...
@@ -500,7 +500,7 @@ static dispex_static_data_t domselection_dispex = {
}
void
XSLPattern_index
(
xmlXPathParserContextPtr
pctx
,
int
nargs
)
static
void
XSLPattern_index
(
xmlXPathParserContextPtr
pctx
,
int
nargs
)
{
XSLPATTERN_CHECK_ARGS
(
0
);
...
...
@@ -508,7 +508,7 @@ void XSLPattern_index(xmlXPathParserContextPtr pctx, int nargs)
xmlXPathReturnNumber
(
pctx
,
xmlXPathPopNumber
(
pctx
)
-
1
.
0
);
}
void
XSLPattern_end
(
xmlXPathParserContextPtr
pctx
,
int
nargs
)
static
void
XSLPattern_end
(
xmlXPathParserContextPtr
pctx
,
int
nargs
)
{
double
pos
,
last
;
XSLPATTERN_CHECK_ARGS
(
0
);
...
...
@@ -520,13 +520,13 @@ void XSLPattern_end(xmlXPathParserContextPtr pctx, int nargs)
xmlXPathReturnBoolean
(
pctx
,
pos
==
last
);
}
void
XSLPattern_nodeType
(
xmlXPathParserContextPtr
pctx
,
int
nargs
)
static
void
XSLPattern_nodeType
(
xmlXPathParserContextPtr
pctx
,
int
nargs
)
{
XSLPATTERN_CHECK_ARGS
(
0
);
xmlXPathReturnNumber
(
pctx
,
pctx
->
context
->
node
->
type
);
}
void
XSLPattern_OP_IEq
(
xmlXPathParserContextPtr
pctx
,
int
nargs
)
static
void
XSLPattern_OP_IEq
(
xmlXPathParserContextPtr
pctx
,
int
nargs
)
{
xmlChar
*
arg1
,
*
arg2
;
XSLPATTERN_CHECK_ARGS
(
2
);
...
...
@@ -538,7 +538,7 @@ void XSLPattern_OP_IEq(xmlXPathParserContextPtr pctx, int nargs)
xmlFree
(
arg2
);
}
void
XSLPattern_OP_INEq
(
xmlXPathParserContextPtr
pctx
,
int
nargs
)
static
void
XSLPattern_OP_INEq
(
xmlXPathParserContextPtr
pctx
,
int
nargs
)
{
xmlChar
*
arg1
,
*
arg2
;
XSLPATTERN_CHECK_ARGS
(
2
);
...
...
@@ -550,7 +550,7 @@ void XSLPattern_OP_INEq(xmlXPathParserContextPtr pctx, int nargs)
xmlFree
(
arg2
);
}
void
XSLPattern_OP_ILt
(
xmlXPathParserContextPtr
pctx
,
int
nargs
)
static
void
XSLPattern_OP_ILt
(
xmlXPathParserContextPtr
pctx
,
int
nargs
)
{
xmlChar
*
arg1
,
*
arg2
;
XSLPATTERN_CHECK_ARGS
(
2
);
...
...
@@ -562,7 +562,7 @@ void XSLPattern_OP_ILt(xmlXPathParserContextPtr pctx, int nargs)
xmlFree
(
arg2
);
}
void
XSLPattern_OP_ILEq
(
xmlXPathParserContextPtr
pctx
,
int
nargs
)
static
void
XSLPattern_OP_ILEq
(
xmlXPathParserContextPtr
pctx
,
int
nargs
)
{
xmlChar
*
arg1
,
*
arg2
;
XSLPATTERN_CHECK_ARGS
(
2
);
...
...
@@ -574,7 +574,7 @@ void XSLPattern_OP_ILEq(xmlXPathParserContextPtr pctx, int nargs)
xmlFree
(
arg2
);
}
void
XSLPattern_OP_IGt
(
xmlXPathParserContextPtr
pctx
,
int
nargs
)
static
void
XSLPattern_OP_IGt
(
xmlXPathParserContextPtr
pctx
,
int
nargs
)
{
xmlChar
*
arg1
,
*
arg2
;
XSLPATTERN_CHECK_ARGS
(
2
);
...
...
@@ -586,7 +586,7 @@ void XSLPattern_OP_IGt(xmlXPathParserContextPtr pctx, int nargs)
xmlFree
(
arg2
);
}
void
XSLPattern_OP_IGEq
(
xmlXPathParserContextPtr
pctx
,
int
nargs
)
static
void
XSLPattern_OP_IGEq
(
xmlXPathParserContextPtr
pctx
,
int
nargs
)
{
xmlChar
*
arg1
,
*
arg2
;
XSLPATTERN_CHECK_ARGS
(
2
);
...
...
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