Haru Free PDF Library
hpdf_version.h
Go to the documentation of this file.
1 #define HPDF_MAJOR_VERSION 2
2 #define HPDF_MINOR_VERSION 4
3 #define HPDF_BUGFIX_VERSION 4
4 #define HPDF_EXTRA_VERSION ""
5 
6 #define hpdf_vquote(x) #x
7 #define hpdf_vexp(x) hpdf_vquote(x)
8 
9 #define HPDF_VERSION_TEXT (hpdf_vexp(HPDF_MAJOR_VERSION) "." hpdf_vexp(HPDF_MINOR_VERSION) "." hpdf_vexp(HPDF_BUGFIX_VERSION) HPDF_EXTRA_VERSION)
10 #define HPDF_VERSION_ID ((HPDF_MAJOR_VERSION) * 10000 + (HPDF_MINOR_VERSION) * 100 + (HPDF_BUGFIX_VERSION))