1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-08 03:45:57 +00:00

xmllite: Eliminate DECLSPEC_HIDDEN.

This commit is contained in:
Jinoh Kang 2023-07-01 16:02:49 +09:00 committed by Alexandre Julliard
parent f185161235
commit 062ef22c45

View File

@ -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)