harfbuzz/src/hb-ot-layout.h

18 lines
420 B
C
Raw Normal View History

2008-01-23 11:00:30 +01:00
#ifndef HB_OT_LAYOUT_OPEN_H
#define HB_OT_LAYOUT_OPEN_H
2008-01-23 11:00:30 +01:00
#include "hb-common.h"
2008-01-23 11:00:30 +01:00
HB_BEGIN_DECLS();
typedef uint32_t hb_tag_t;
#define HB_TAG(a,b,c,d) ((hb_tag_t)(((uint8_t)a<<24)|((uint8_t)b<<16)|((uint8_t)c<<8)|(uint8_t)d))
2008-01-23 07:38:10 +01:00
#define HB_TAG_STR(s) (HB_TAG(((const char *) s)[0], \
((const char *) s)[1], \
((const char *) s)[2], \
((const char *) s)[3]))
2008-01-23 11:00:30 +01:00
HB_END_DECLS();
2008-01-23 11:00:30 +01:00
#endif /* HB_OT_LAYOUT_OPEN_H */