author | sl@SLION-WIN7.fritz.box |
Fri, 15 Jun 2012 03:10:57 +0200 | |
changeset 0 | bde4ae8d615e |
permissions | -rw-r--r-- |
1 /*
2 * @(#)DeviceTables.h 1.5 00/03/15
3 *
4 * (C) Copyright IBM Corp. 1998-2005 - All Rights Reserved
5 *
6 */
8 #ifndef __DEVICETABLES_H
9 #define __DEVICETABLES_H
11 /**
12 * \file
13 * \internal
14 */
16 #include "LETypes.h"
17 #include "OpenTypeTables.h"
19 U_NAMESPACE_BEGIN
21 struct DeviceTable
22 {
23 le_uint16 startSize;
24 le_uint16 endSize;
25 le_uint16 deltaFormat;
26 le_uint16 deltaValues[ANY_NUMBER];
28 le_int16 getAdjustment(le_uint16 ppem) const;
30 private:
31 static const le_uint16 fieldMasks[];
32 static const le_uint16 fieldSignBits[];
33 static const le_uint16 fieldBits[];
34 };
36 U_NAMESPACE_END
37 #endif