winex11.drv: Make X11DRV_XROPfunction static.
This commit is contained in:
parent
ba6e4ff66e
commit
c223994b7a
|
@ -51,7 +51,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(graphics);
|
|||
#define ABS(x) ((x)<0?(-(x)):(x))
|
||||
|
||||
/* ROP code to GC function conversion */
|
||||
const int X11DRV_XROPfunction[16] =
|
||||
static const int X11DRV_XROPfunction[16] =
|
||||
{
|
||||
GXclear, /* R2_BLACK */
|
||||
GXnor, /* R2_NOTMERGEPEN */
|
||||
|
|
|
@ -214,8 +214,6 @@ extern BOOL X11DRV_SetupGCForBrush( X11DRV_PDEVICE *physDev ) DECLSPEC_HIDDEN;
|
|||
extern INT X11DRV_XWStoDS( HDC hdc, INT width ) DECLSPEC_HIDDEN;
|
||||
extern INT X11DRV_YWStoDS( HDC hdc, INT height ) DECLSPEC_HIDDEN;
|
||||
|
||||
extern const int X11DRV_XROPfunction[];
|
||||
|
||||
extern BOOL client_side_graphics DECLSPEC_HIDDEN;
|
||||
extern BOOL client_side_with_render DECLSPEC_HIDDEN;
|
||||
extern BOOL shape_layered_windows DECLSPEC_HIDDEN;
|
||||
|
|
Loading…
Reference in New Issue