Commit 1ef0fca7 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

msxml3: Mark internal symbols as hidden.

parent 44856962
......@@ -46,11 +46,11 @@ typedef struct _parser_param {
#define YYSTYPE xmlChar*
#define YY_EXTRA_TYPE parser_param*
int xslpattern_lex(xmlChar**, void*);
int xslpattern_lex_init(void**);
int xslpattern_lex_destroy(void*);
void xslpattern_set_extra(parser_param*, void*);
int xslpattern_parse(parser_param*, void*);
int xslpattern_lex(xmlChar**, void*) DECLSPEC_HIDDEN;
int xslpattern_lex_init(void**) DECLSPEC_HIDDEN;
int xslpattern_lex_destroy(void*) DECLSPEC_HIDDEN;
void xslpattern_set_extra(parser_param*, void*) DECLSPEC_HIDDEN;
int xslpattern_parse(parser_param*, void*) DECLSPEC_HIDDEN;
#endif /* __XSLPATTERN__ */
......@@ -21,6 +21,8 @@
%{
#include "config.h"
#include "wine/port.h"
#include "windef.h"
#include "winnt.h"
#ifdef HAVE_LIBXML2
......
......@@ -21,6 +21,8 @@
%{
#include "config.h"
#include "wine/port.h"
#include "windef.h"
#include "winnt.h"
#ifdef HAVE_LIBXML2
#include "xslpattern.h"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment