diff options
Diffstat (limited to 'fontconfig/src/fcint.h')
-rw-r--r-- | fontconfig/src/fcint.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/fontconfig/src/fcint.h b/fontconfig/src/fcint.h index 1ed2df3e1..defbd7acb 100644 --- a/fontconfig/src/fcint.h +++ b/fontconfig/src/fcint.h @@ -246,6 +246,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 { |