From 1a71b50696cc230cd055905a5f9fdbd3fa7c89af Mon Sep 17 00:00:00 2001 From: marha Date: Mon, 14 May 2012 16:52:51 +0200 Subject: fontconfig libX11 mesa xkeyboard-config pixman git update 14 May 2012 --- fontconfig/src/fcint.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'fontconfig/src/fcint.h') diff --git a/fontconfig/src/fcint.h b/fontconfig/src/fcint.h index a982b7710..a89aae1ad 100644 --- a/fontconfig/src/fcint.h +++ b/fontconfig/src/fcint.h @@ -244,6 +244,14 @@ typedef enum _FcOp { FcOpInvalid } FcOp; +typedef enum _FcOpFlags { + FcOpFlagIgnoreBlanks = 1 << 0 +} FcOpFlags; + +#define FC_OP_GET_OP(_x_) ((_x_) & 0xffff) +#define FC_OP_GET_FLAGS(_x_) (((_x_) & 0xffff0000) >> 16) +#define FC_OP(_x_,_f_) (FC_OP_GET_OP (_x_) | ((_f_) << 16)) + typedef struct _FcExpr { FcOp op; union { -- cgit v1.2.3