Main Page   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members   Related Pages  

version.h

Go to the documentation of this file.
00001 #ifndef __UPF_VERSION_H__
00002 #define __UPF_VERSION_H__
00003 
00009 
00010 #define UPF_VERSION_MAJOR     0
00011 
00012 #define UPF_VERSION_MINOR     1
00013 
00014 #define UPF_VERSION_RELEASE   4
00015 
00016 #define UPF_VERSION_STRING    "0.1.4"
00017 
00019 #define UPF_ABI_VERSION       2
00020 
00021 
00022 
00026 #define UPF_CHECK_VERSION(major,minor,release) \
00027     ( \
00028      (UPF_VERSION_MAJOR > (major)) || \
00029      (UPF_VERSION_MAJOR == (major) && UPF_VERSION_MINOR > (minor)) || \
00030      (UPF_VERSION_MAJOR == (major) && UPF_VERSION_MINOR == (minor) && \
00031       UPF_VERSION_RELEASE >= (release)) \
00032     )
00033 
00040 #define UPF_CHECK_ABI_VERSION(ver) \
00041     ((ver) == UPF_ABI_VERSION)
00042 
00043 #endif
00044     /* __UPF_VERSION_H__ */

Generated on Wed Jan 15 23:10:55 2003 for Universal Plugins Framework by doxygen1.2.18