D | tag.cc | 22 #define TAG(a, b, c, d) ((a << 24) | (b << 16) | (c << 8) | d); macro 26 const int32_t Tag::ttcf = TAG('t', 't', 'c', 'f'); 27 const int32_t Tag::cmap = TAG('c', 'm', 'a', 'p'); 28 const int32_t Tag::head = TAG('h', 'e', 'a', 'd'); 29 const int32_t Tag::hhea = TAG('h', 'h', 'e', 'a'); 30 const int32_t Tag::hmtx = TAG('h', 'm', 't', 'x'); 31 const int32_t Tag::maxp = TAG('m', 'a', 'x', 'p'); 32 const int32_t Tag::name = TAG('n', 'a', 'm', 'e'); 33 const int32_t Tag::OS_2 = TAG('O', 'S', '/', '2'); 34 const int32_t Tag::post = TAG('p', 'o', 's', 't'); [all …]
|