/* $XFree86: xc/programs/Xserver/hw/xfree86/xf86Version.h,v 3.543.2.1 2003/05/10 01:10:10 dawes Exp $ */ #ifndef XF86_VERSION_CURRENT #define XF86_VERSION_MAJOR 4 #define XF86_VERSION_MINOR 3 #define XF86_VERSION_PATCH 0 #define XF86_VERSION_SNAP 1 /* This has five arguments for compatibilty reasons */ #define XF86_VERSION_NUMERIC(major,minor,patch,snap,dummy) \ (((major) * 10000000) + ((minor) * 100000) + ((patch) * 1000) + snap) #define XF86_GET_MAJOR_VERSION(vers) ((vers) / 10000000) #define XF86_GET_MINOR_VERSION(vers) (((vers) % 10000000) / 100000) #define XF86_GET_PATCH_VERSION(vers) (((vers) % 100000) / 1000) #define XF86_GET_SNAP_VERSION(vers) ((vers) % 1000) /* Define these for compatibility. They'll be removed at some point. */ #define XF86_VERSION_SUBMINOR XF86_VERSION_PATCH #define XF86_VERSION_BETA 0 #define XF86_VERSION_ALPHA XF86_VERSION_SNAP #define XF86_VERSION_CURRENT \ XF86_VERSION_NUMERIC(XF86_VERSION_MAJOR, \ XF86_VERSION_MINOR, \ XF86_VERSION_PATCH, \ XF86_VERSION_SNAP, \ 0) #endif /* $XConsortium: xf86Version.h /main/78 1996/10/28 05:42:10 kaleb $ */