Revert "Imported Upstream version 1.2.7"
[platform/upstream/harfbuzz.git] / src / hb-version.h
index c90db6b..648a46f 100644 (file)
 HB_BEGIN_DECLS
 
 
-#define HB_VERSION_MAJOR 1
-#define HB_VERSION_MINOR 2
-#define HB_VERSION_MICRO 7
+#define HB_VERSION_MAJOR 0
+#define HB_VERSION_MINOR 9
+#define HB_VERSION_MICRO 40
 
-#define HB_VERSION_STRING "1.2.7"
+#define HB_VERSION_STRING "0.9.40"
 
 #define HB_VERSION_ATLEAST(major,minor,micro) \
        ((major)*10000+(minor)*100+(micro) <= \
         HB_VERSION_MAJOR*10000+HB_VERSION_MINOR*100+HB_VERSION_MICRO)
 
 
-HB_EXTERN void
+void
 hb_version (unsigned int *major,
            unsigned int *minor,
            unsigned int *micro);
 
-HB_EXTERN const char *
+const char *
 hb_version_string (void);
 
-HB_EXTERN hb_bool_t
+hb_bool_t
 hb_version_atleast (unsigned int major,
                    unsigned int minor,
                    unsigned int micro);