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
062ef22c
Commit
062ef22c
authored
Jul 01, 2023
by
Jinoh Kang
Committed by
Alexandre Julliard
Jul 24, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
xmllite: Eliminate DECLSPEC_HIDDEN.
parent
f1851612
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
xmllite_private.h
dlls/xmllite/xmllite_private.h
+8
-8
No files found.
dlls/xmllite/xmllite_private.h
View file @
062ef22c
...
...
@@ -53,15 +53,15 @@ typedef enum
XmlEncoding_Unknown
}
xml_encoding
;
xml_encoding
parse_encoding_name
(
const
WCHAR
*
,
int
)
DECLSPEC_HIDDEN
;
HRESULT
get_code_page
(
xml_encoding
,
UINT
*
)
DECLSPEC_HIDDEN
;
const
WCHAR
*
get_encoding_name
(
xml_encoding
)
DECLSPEC_HIDDEN
;
xml_encoding
get_encoding_from_codepage
(
UINT
)
DECLSPEC_HIDDEN
;
xml_encoding
parse_encoding_name
(
const
WCHAR
*
,
int
);
HRESULT
get_code_page
(
xml_encoding
,
UINT
*
);
const
WCHAR
*
get_encoding_name
(
xml_encoding
);
xml_encoding
get_encoding_from_codepage
(
UINT
);
BOOL
is_ncnamechar
(
WCHAR
ch
)
DECLSPEC_HIDDEN
;
BOOL
is_pubchar
(
WCHAR
ch
)
DECLSPEC_HIDDEN
;
BOOL
is_namestartchar
(
WCHAR
ch
)
DECLSPEC_HIDDEN
;
BOOL
is_namechar
(
WCHAR
ch
)
DECLSPEC_HIDDEN
;
BOOL
is_ncnamechar
(
WCHAR
ch
);
BOOL
is_pubchar
(
WCHAR
ch
);
BOOL
is_namestartchar
(
WCHAR
ch
);
BOOL
is_namechar
(
WCHAR
ch
);
/* [2] Char ::= #x9 | #xA | #xD | [#x20-#xD7FF] | [#xE000-#xFFFD] | [#x10000-#x10FFFF] */
static
inline
BOOL
is_char
(
WCHAR
ch
)
...
...
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