Change hb_feature_t to keep tag/int instead of string

This commit is contained in:
Behdad Esfahbod 2010-05-20 13:30:09 +01:00
parent 0a4399ca22
commit 0db299ccad
1 changed files with 2 additions and 2 deletions

View File

@ -34,8 +34,8 @@
HB_BEGIN_DECLS
typedef struct _hb_feature_t {
const char *name;
const char *value;
hb_tag_t tag;
uint32_t value;
unsigned int start;
unsigned int end;
} hb_feature_t;