summaryrefslogtreecommitdiffstats
path: root/libart-features.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-07 18:20:23 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-07 18:20:23 -0600
commita9eaee5264ab9f85e01789409ff3c6239262fe82 (patch)
tree2f3f4114a8a97613c81392c69fa26a2353716f37 /libart-features.h
downloadlibart-lgpl-a9eaee5264ab9f85e01789409ff3c6239262fe82.tar.gz
libart-lgpl-a9eaee5264ab9f85e01789409ff3c6239262fe82.zip
Initial import of libart 2.3.21
Diffstat (limited to 'libart-features.h')
-rw-r--r--libart-features.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/libart-features.h b/libart-features.h
new file mode 100644
index 0000000..cff970a
--- /dev/null
+++ b/libart-features.h
@@ -0,0 +1,24 @@
+#ifndef LIBART_FEATURES_H
+#define LIBART_FEATURES_H 1
+
+#define LIBART_MAJOR_VERSION (2)
+#define LIBART_MINOR_VERSION (3)
+#define LIBART_MICRO_VERSION (21)
+#define LIBART_VERSION "2.3.21"
+
+#ifdef _WIN32
+# ifdef LIBART_COMPILATION
+# define LIBART_VAR __declspec(dllexport)
+# else
+# define LIBART_VAR extern __declspec(dllimport)
+# endif
+#else
+# define LIBART_VAR extern
+#endif
+
+LIBART_VAR const unsigned int libart_major_version, libart_minor_version, libart_micro_version;
+LIBART_VAR const char *libart_version;
+
+void libart_preinit(void *app, void *modinfo);
+void libart_postinit(void *app, void *modinfo);
+#endif