Add a few more things that might be helpful when moving more files over from xserver.

This commit is contained in:
Carl Worth 2005-03-03 13:54:40 +00:00
parent f482f2be49
commit e533d2faeb
2 changed files with 15 additions and 4 deletions

View file

@ -1,3 +1,9 @@
2005-03-03 Carl Worth <cworth@cworth.org>
* src/pixman-xserver-compat.h (BoxRec, BoxPtr, Bool, TRUE, FALSE):
Add a few more things that might be helpful when moving more files
over from xserver.
2005-03-03 Carl Worth <cworth@cworth.org>
* src/icint.h:

View file

@ -49,14 +49,19 @@
/* Then, define any names that the server code will be expecting in
* terms of libpixman names. */
typedef pixman_bits_t FbBits;
typedef pixman_image_t* PicturePtr;
typedef uint8_t CARD8;
typedef uint16_t CARD16;
typedef int16_t INT16;
typedef int Bool;
#define FALSE 0
#define TRUE 1
typedef pixman_bits_t FbBits;
typedef pixman_image_t* PicturePtr;
typedef pixman_box16_t BoxRec;
typedef pixman_box16_t* BoxPtr;
typedef pixman_point_fixed_t xPointFixed;
typedef pixman_line_fixed_t xLineFixed;
typedef pixman_trapezoid_t xTrapezoid;