blob: e93d8118f05ec108e4d16400a807d4287615e5b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* pango-arabic module
*
* (C) 2000 K. Koehler <koehler@or.uni-bonn.de>
*
* This file provides a mapping unicode <- mulefont
*/
#ifndef __mulefont_h_
#define __mulefont_h_
#include "pango-layout.h"
#include "pangox.h"
#include "arconv.h"
/*
* create an arabic_fontstruct for the mulefont-module
* returns: NULL on failure
*/
ArabicFontInfo*
arabic_muleinit(PangoFont *font);
void
arabic_mule_recode(PangoXSubfont* subfont,gunichar* glyph,PangoXSubfont* mulefonts);
#endif
|