diff options
author | gregory guy <gregory-tde@laposte.net> | 2020-10-02 12:42:44 +0200 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-10-05 21:43:02 +0900 |
commit | c64cc0c3b3778eb17dde2670976d3e5314689143 (patch) | |
tree | 106109eada8037ecf6ca9dd8c1aac403bb0ac633 /src/libart-features.c | |
parent | 000a818a2cc613690ee5ed4d47685722fff39e83 (diff) | |
download | libart-lgpl-c64cc0c3b3778eb17dde2670976d3e5314689143.tar.gz libart-lgpl-c64cc0c3b3778eb17dde2670976d3e5314689143.zip |
Libart-lgpl moved into a 'src' folder for consistency sake with the other
modules.
Add basic cmake build instructions.
Rework of the README file.
Some cosmetics.
Signed-off-by: gregory guy <gregory-tde@laposte.net>
(cherry picked from commit 8349a964c20f96504886ece0f2c8ba0c7489fff3)
Diffstat (limited to 'src/libart-features.c')
-rw-r--r-- | src/libart-features.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/libart-features.c b/src/libart-features.c new file mode 100644 index 0000000..b87511b --- /dev/null +++ b/src/libart-features.c @@ -0,0 +1,19 @@ +#include "config.h" +#include "libart-features.h" + +/* General initialization hooks */ +const unsigned int libart_major_version=LIBART_MAJOR_VERSION, + libart_minor_version=LIBART_MINOR_VERSION, + libart_micro_version=LIBART_MICRO_VERSION; + +const char *libart_version = LIBART_VERSION; + +void +libart_preinit(void *app, void *modinfo) +{ +} + +void +libart_postinit(void *app, void *modinfo) +{ +} |