blob: 4d45d57b63ed6a52bef34b9f87ff866174c0d2a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/* pango-arabic module
*
* (C) 2000 K. Koehler <koehler@or.uni-bonn.de>
*
* This file provides a mapping unicode <- urdu nq-font
*/
#ifndef __nqfont_h_
#define __nqfont_h_
#include "pangox.h"
#include "arconv.h"
/*
* create an arabic_fontstruct for the urdu_naqshfont-module
* returns: NULL on failure
*/
ArabicFontInfo*
urdu_naqshinit(PangoFont *font);
/* glyph2 is the next glyph in line; if there is none, put in NULL
*/
void
urdu_naqsh_recode(PangoXSubfont* subfont,int* glyph,int* glyph2,
PangoXSubfont* nqfont);
#endif
|