Xft.h | Xft.h | |||
---|---|---|---|---|
skipping to change at line 36 | skipping to change at line 36 | |||
#define _XFT_H_ | #define _XFT_H_ | |||
/* | /* | |||
* Current Xft version number. This same number | * Current Xft version number. This same number | |||
* must appear in the Xft configure.ac file. Yes, | * must appear in the Xft configure.ac file. Yes, | |||
* it'a a pain to synchronize version numbers like this. | * it'a a pain to synchronize version numbers like this. | |||
*/ | */ | |||
#define XFT_MAJOR 2 | #define XFT_MAJOR 2 | |||
#define XFT_MINOR 1 | #define XFT_MINOR 1 | |||
#define XFT_REVISION 8 | #define XFT_REVISION 9 | |||
#define XFT_VERSION ((XFT_MAJOR * 10000) + (XFT_MINOR * 100) + (XFT_REVI SION)) | #define XFT_VERSION ((XFT_MAJOR * 10000) + (XFT_MINOR * 100) + (XFT_REVI SION)) | |||
#define XftVersion XFT_VERSION | #define XftVersion XFT_VERSION | |||
#include <stdarg.h> | #include <stdarg.h> | |||
#include <ft2build.h> | #include <ft2build.h> | |||
#include FT_FREETYPE_H | #include FT_FREETYPE_H | |||
#include <fontconfig/fontconfig.h> | #include <fontconfig/fontconfig.h> | |||
#include <X11/extensions/Xrender.h> | #include <X11/extensions/Xrender.h> | |||
#include <X11/Xfuncproto.h> | #include <X11/Xfuncproto.h> | |||
skipping to change at line 428 | skipping to change at line 428 | |||
FcBool | FcBool | |||
XftCharExists (Display *dpy, | XftCharExists (Display *dpy, | |||
XftFont *pub, | XftFont *pub, | |||
FcChar32 ucs4); | FcChar32 ucs4); | |||
FT_UInt | FT_UInt | |||
XftCharIndex (Display *dpy, | XftCharIndex (Display *dpy, | |||
XftFont *pub, | XftFont *pub, | |||
FcChar32 ucs4); | FcChar32 ucs4); | |||
/* xftgram.y */ | ||||
/* xftinit.c */ | /* xftinit.c */ | |||
FcBool | FcBool | |||
XftInit (_Xconst char *config); | XftInit (_Xconst char *config); | |||
int | int | |||
XftGetVersion (void); | XftGetVersion (void); | |||
/* xftlex.l */ | ||||
/* xftlist.c */ | /* xftlist.c */ | |||
FcFontSet * | FcFontSet * | |||
XftListFonts (Display *dpy, | XftListFonts (Display *dpy, | |||
int screen, | int screen, | |||
...) _X_SENTINEL(0); | ...) _X_SENTINEL(0); | |||
/* xftmatch.c */ | ||||
/* xftmatrix.c */ | ||||
/* xftname.c */ | /* xftname.c */ | |||
FcPattern | FcPattern | |||
*XftNameParse (_Xconst char *name); | *XftNameParse (_Xconst char *name); | |||
/* xftpat.c */ | ||||
/* xftrender.c */ | /* xftrender.c */ | |||
void | void | |||
XftGlyphRender (Display *dpy, | XftGlyphRender (Display *dpy, | |||
int op, | int op, | |||
Picture src, | Picture src, | |||
XftFont *pub, | XftFont *pub, | |||
Picture dst, | Picture dst, | |||
int srcx, | int srcx, | |||
int srcy, | int srcy, | |||
int x, | int x, | |||
End of changes. 5 change blocks. | ||||
11 lines changed or deleted | 1 lines changed or added | |||