Moved DC_SetupGC functions to graphics/x11drv/graphics.c.

diff --git a/include/dc.h b/include/dc.h
index 74eadcd..a422ce9 100644
--- a/include/dc.h
+++ b/include/dc.h
@@ -17,13 +17,8 @@
 extern DC * DC_AllocDC( const DC_FUNCTIONS *funcs );
 extern DC * DC_GetDCPtr( HDC32 hdc );
 extern void DC_InitDC( DC * dc );
-extern BOOL32 DC_SetupGCForPatBlt( DC * dc, GC gc, BOOL32 fMapColors );
-extern BOOL32 DC_SetupGCForBrush( DC * dc );
-extern BOOL32 DC_SetupGCForPen( DC * dc );
-extern BOOL32 DC_SetupGCForText( DC * dc );
 extern void DC_UpdateXforms( DC * dc );
 
-extern const int DC_XROPfunction[];
 
 /* objects/clipping.c */
 INT32 CLIPPING_IntersectClipRect( DC * dc, INT32 left, INT32 top,
diff --git a/include/x11drv.h b/include/x11drv.h
index bd22e08..1f7aef2 100644
--- a/include/x11drv.h
+++ b/include/x11drv.h
@@ -150,6 +150,14 @@
 extern BOOL32 X11DRV_DIB_Init(void);
 extern X11DRV_PHYSBITMAP *X11DRV_AllocBitmap( struct tagBITMAPOBJ *bmp );
 
+extern BOOL32 X11DRV_SetupGCForPatBlt( struct tagDC *dc, GC gc,
+				       BOOL32 fMapColors );
+extern BOOL32 X11DRV_SetupGCForBrush( struct tagDC *dc );
+extern BOOL32 X11DRV_SetupGCForPen( struct tagDC *dc );
+extern BOOL32 X11DRV_SetupGCForText( struct tagDC *dc );
+
+extern const int X11DRV_XROPfunction[];
+
 /* Xlib critical section */
 
 extern CRITICAL_SECTION X11DRV_CritSection;