saf-version.h

Go to the documentation of this file.
00001 /****************************************************************************
00002  *
00003  * Copyright (C) 2006-2008 Micro Focus (IP) Limited.
00004  * All rights reserved.
00005  *
00006  * The software and information contained herein are proprietary to, and
00007  * comprise valuable trade secrets of, Micro Focus International Ltd., 
00008  * which intends to preserve as trade secrets such software and 
00009  * information. This software is an unpublished copyright of Micro Focus  
00010  * and may not be used, copied, transmitted, or stored in any manner.  
00011  * This software and information or any other copies thereof may not be
00012  * provided or otherwise made available to any other person.
00013  *
00014  *      Enterprise Server SAF (Security) Manager
00015  *      Module Version
00016  *
00017  *      @(#)saf-version.h       $Revision: 1.6 $     
00018  *
00019  *      $Date: 2008/07/01 08:32:51 $
00020  *
00021  ****************************************************************************/
00022 
00023 /* Start of source module saf-version.h */
00024 #if !defined(SafVERSION_H)
00025 #define SafVERSION_H
00026 
00057 #define SafVERSION_MAJOR  1     
00058 #define SafVERSION_MINOR  6     
00059 #define SafVERSION_BUILD  3     
00062 /***
00063 NOTE: When updating the version here, also be sure to update it in the
00064 DLL version below.  It's automatically picked up by the RC file, and
00065 the makefile sets it for the Doxygen documentation.
00066 ***/
00067 
00068 #define SafVERSION ((SafVERSION_MAJOR << 16) \
00069                    |(SafVERSION_MINOR << 8)  \
00070                    |(SafVERSION_BUILD))
00071 
00072 #if defined(WIN32)
00073    #pragma comment(linker, "/version:1.6")
00074 #endif
00075 
00076 
00077 /* String version */
00078 #if !defined SafSTRING
00079    #define SafDO_STR(x) #x
00080    #define SafSTRING(x) SafDO_STR(x)
00081 #endif
00082 
00083 #define SafVERSION_STRING   SafSTRING(SafVERSION_MAJOR) "." \
00084                             SafSTRING(SafVERSION_MINOR) "." \
00085                             SafSTRING(SafVERSION_BUILD)
00086 
00087 
00088 
00089 #endif
00090 
00091 /* End of saf-version.h */
00092