summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/table/name.h
blob: 8721a1d1245a53759ad2e3f09b935f793a49fa6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef CARYLL_INCLUDE_TABLE_NAME_H
#define CARYLL_INCLUDE_TABLE_NAME_H

#include "table-common.h"

typedef struct {
	uint16_t platformID;
	uint16_t encodingID;
	uint16_t languageID;
	uint16_t nameID;
	sds nameString;
} otfcc_NameRecord;
extern caryll_ElementInterface(otfcc_NameRecord) otfcc_iNameRecord;
typedef caryll_Vector(otfcc_NameRecord) table_name;
extern caryll_VectorInterface(table_name, otfcc_NameRecord) table_iName;

#endif