diff options
Diffstat (limited to 'xserver/include/miscstruct.h')
-rw-r--r-- | xserver/include/miscstruct.h | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/xserver/include/miscstruct.h b/xserver/include/miscstruct.h index c39f03ce8..409b102c0 100644 --- a/xserver/include/miscstruct.h +++ b/xserver/include/miscstruct.h @@ -50,29 +50,17 @@ SOFTWARE. #include "misc.h" #include <X11/Xprotostr.h> -#include "gc.h" +#include <pixman.h> typedef xPoint DDXPointRec; -typedef struct _Box { - short x1, y1, x2, y2; -} BoxRec; +typedef struct pixman_box16 BoxRec; typedef union _DevUnion { pointer ptr; long val; unsigned long uval; - RegionPtr (*fptr)( - DrawablePtr /* pSrcDrawable */, - DrawablePtr /* pDstDrawable */, - GCPtr /* pGC */, - int /* srcx */, - int /* srcy */, - int /* width */, - int /* height */, - int /* dstx */, - int /* dsty */, - unsigned long /* bitPlane */); + pointer (*fptr)(void); } DevUnion; #endif /* MISCSTRUCT_H */ |