agl / otc

OpenType Condom

This URL has Read+Write access

Adam Langley (author)
Thu Apr 09 14:55:48 -0700 2009
otc / src / head.h
100644 20 lines (15 sloc) 0.307 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef OTC_HEAD_H_
#define OTC_HEAD_H_
 
struct OpenTypeHEAD {
  uint32_t revision;
  uint16_t flags;
  uint16_t ppem;
  uint64_t created;
  uint64_t modified;
 
  int16_t xmin, xmax;
  int16_t ymin, ymax;
 
  uint16_t mac_style;
  uint16_t min_ppem;
  int16_t index_to_loc_format;
};
 
#endif // OTC_HEAD_H_