summaryrefslogtreecommitdiff
path: root/src/pshinter/pshglob.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/pshinter/pshglob.h')
-rw-r--r--src/pshinter/pshglob.h15
1 files changed, 5 insertions, 10 deletions
diff --git a/src/pshinter/pshglob.h b/src/pshinter/pshglob.h
index cce4ed2e8..9622f1c76 100644
--- a/src/pshinter/pshglob.h
+++ b/src/pshinter/pshglob.h
@@ -141,19 +141,14 @@ FT_BEGIN_HEADER
} PSH_GlobalsRec;
- typedef enum
- {
- PSH_BLUE_ALIGN_TOP = 1,
- PSH_BLUE_ALIGN_BOT = 2
-
- } PSH_Blue_Align;
-
+#define PSH_BLUE_ALIGN_TOP 1
+#define PSH_BLUE_ALIGN_BOT 2
typedef struct PSH_AlignmentRec_
{
- PSH_Blue_Align align;
- FT_Pos align_top;
- FT_Pos align_bot;
+ int align;
+ FT_Pos align_top;
+ FT_Pos align_bot;
} PSH_AlignmentRec, *PSH_Alignment;