mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 00:55:37 +00:00
d8718273b5
generate config.h (based on nspr defines) and libart-features.h. Its the only way this will work on win/mac, too.
15 lines
416 B
C
15 lines
416 B
C
#ifndef LIBART_FEATURES_H
|
|
#define LIBART_FEATURES_H 1
|
|
|
|
#define LIBART_MAJOR_VERSION (2)
|
|
#define LIBART_MINOR_VERSION (3)
|
|
#define LIBART_MICRO_VERSION (7)
|
|
#define LIBART_VERSION "2.3.7"
|
|
|
|
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
|