~alinuxninja/nginx-edge/trunk

« back to all changes in this revision

Viewing changes to debian/modules/ngx_pagespeed/psol/include/third_party/icu/source/layout/ContextualGlyphSubstitution.h

  • Committer: Vivian
  • Date: 2015-12-04 18:20:11 UTC
  • Revision ID: git-v1:a36f2bc32e884f7473b3a47040e5411306144d7d
* Do not extract psol.tar.gz

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 *
3
 
 * (C) Copyright IBM Corp. 1998-2004 - All Rights Reserved
4
 
 *
5
 
 */
6
 
 
7
 
#ifndef __CONTEXTUALGLYPHSUBSTITUTION_H
8
 
#define __CONTEXTUALGLYPHSUBSTITUTION_H
9
 
 
10
 
/**
11
 
 * \file
12
 
 * \internal
13
 
 */
14
 
 
15
 
#include "LETypes.h"
16
 
#include "LayoutTables.h"
17
 
#include "StateTables.h"
18
 
#include "MorphTables.h"
19
 
 
20
 
U_NAMESPACE_BEGIN
21
 
 
22
 
struct ContextualGlyphSubstitutionHeader : MorphStateTableHeader
23
 
{
24
 
    ByteOffset  substitutionTableOffset;
25
 
};
26
 
 
27
 
enum ContextualGlyphSubstitutionFlags
28
 
{
29
 
    cgsSetMark      = 0x8000,
30
 
    cgsDontAdvance  = 0x4000,
31
 
    cgsReserved     = 0x3FFF
32
 
};
33
 
 
34
 
struct ContextualGlyphSubstitutionStateEntry : StateEntry
35
 
{
36
 
    WordOffset markOffset;
37
 
    WordOffset currOffset;
38
 
};
39
 
 
40
 
U_NAMESPACE_END
41
 
#endif