mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
5c676d4a47
backends, text support on Windows (GDI+), rudimentary text support on Linux (libart/freetype2), presentation attributes, lots of bug fixes (see bug 182533 for dependency list). Not part of default build; code is #ifdef'ed out. r=sicking, sr=jst for dom and htmlparser changes r=bsmedberg, sr=tor for config changes r=dbaron, sr=bzbarsky for content and layout changes r=tor, sr=bzbarsky for gfx changes
15 lines
490 B
C
15 lines
490 B
C
#ifndef LIBART_FEATURES_H
|
|
#define LIBART_FEATURES_H 1
|
|
|
|
#define LIBART_MAJOR_VERSION (@LIBART_MAJOR_VERSION@)
|
|
#define LIBART_MINOR_VERSION (@LIBART_MINOR_VERSION@)
|
|
#define LIBART_MICRO_VERSION (@LIBART_MICRO_VERSION@)
|
|
#define LIBART_VERSION "@LIBART_VERSION@"
|
|
|
|
extern const unsigned int libart_major_version, libart_minor_version, libart_micro_version;
|
|
extern const char *libart_version;
|
|
|
|
void libart_preinit(void *app, void *modinfo);
|
|
void libart_postinit(void *app, void *modinfo);
|
|
#endif
|