Commit 5a9b6232 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

winex11.drv: Mark internal symbols with hidden visibility.

parent b396886e
...@@ -67,7 +67,7 @@ static CRITICAL_SECTION_DEBUG critsect_debug = ...@@ -67,7 +67,7 @@ static CRITICAL_SECTION_DEBUG critsect_debug =
}; };
static CRITICAL_SECTION X11DRV_CritSection = { &critsect_debug, -1, 0, 0, 0, 0 }; static CRITICAL_SECTION X11DRV_CritSection = { &critsect_debug, -1, 0, 0, 0, 0 };
Screen *screen; static Screen *screen;
Visual *visual; Visual *visual;
unsigned int screen_width; unsigned int screen_width;
unsigned int screen_height; unsigned int screen_height;
......
...@@ -219,8 +219,8 @@ typedef struct ...@@ -219,8 +219,8 @@ typedef struct
WORD internal_charset; WORD internal_charset;
} fontMatch; } fontMatch;
extern fontObject* XFONT_GetFontObject( X_PHYSFONT pFont ); extern fontObject* XFONT_GetFontObject( X_PHYSFONT pFont ) DECLSPEC_HIDDEN;
extern XFontStruct* XFONT_GetFontStruct( X_PHYSFONT pFont ); extern XFontStruct* XFONT_GetFontStruct( X_PHYSFONT pFont ) DECLSPEC_HIDDEN;
/* internal charset(hibyte must be set) */ /* internal charset(hibyte must be set) */
/* lobyte is DEFAULT_CHARSET(=0). */ /* lobyte is DEFAULT_CHARSET(=0). */
...@@ -244,6 +244,6 @@ typedef struct tagX11DRV_CP ...@@ -244,6 +244,6 @@ typedef struct tagX11DRV_CP
void (*pGetTextMetricsW)( fontObject* pfo, LPTEXTMETRICW pTM ); void (*pGetTextMetricsW)( fontObject* pfo, LPTEXTMETRICW pTM );
} X11DRV_CP; } X11DRV_CP;
extern const X11DRV_CP X11DRV_cptable[X11DRV_CPTABLE_COUNT]; extern const X11DRV_CP X11DRV_cptable[X11DRV_CPTABLE_COUNT] DECLSPEC_HIDDEN;
#endif /* __WINE_X11FONT_H */ #endif /* __WINE_X11FONT_H */
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
#ifdef SONAME_LIBXCOMPOSITE #ifdef SONAME_LIBXCOMPOSITE
#include <X11/extensions/Xcomposite.h> #include <X11/extensions/Xcomposite.h>
#define MAKE_FUNCPTR(f) extern typeof(f) * p##f; #define MAKE_FUNCPTR(f) extern typeof(f) * p##f DECLSPEC_HIDDEN;
MAKE_FUNCPTR(XCompositeQueryExtension) MAKE_FUNCPTR(XCompositeQueryExtension)
MAKE_FUNCPTR(XCompositeQueryVersion) MAKE_FUNCPTR(XCompositeQueryVersion)
MAKE_FUNCPTR(XCompositeVersion) MAKE_FUNCPTR(XCompositeVersion)
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
#ifdef SONAME_LIBXRANDR #ifdef SONAME_LIBXRANDR
void X11DRV_XRandR_Init(void); void X11DRV_XRandR_Init(void) DECLSPEC_HIDDEN;
#endif /* SONAME_LIBXRANDR */ #endif /* SONAME_LIBXRANDR */
#endif /* __WINE_XRANDR_H */ #endif /* __WINE_XRANDR_H */
...@@ -31,8 +31,8 @@ ...@@ -31,8 +31,8 @@
#include "wingdi.h" #include "wingdi.h"
#include "ddrawi.h" #include "ddrawi.h"
void X11DRV_XF86VM_Init(void); void X11DRV_XF86VM_Init(void) DECLSPEC_HIDDEN;
void X11DRV_XF86VM_Cleanup(void); void X11DRV_XF86VM_Cleanup(void) DECLSPEC_HIDDEN;
#endif /* SONAME_LIBXXF86VM */ #endif /* SONAME_LIBXXF86VM */
#endif /* __WINE_XVIDMODE_H */ #endif /* __WINE_XVIDMODE_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