version.h

Go to the documentation of this file.
00001 /*
00002   Copyright 1999-2010 ImageMagick Studio LLC, a non-profit organization
00003   dedicated to making software imaging solutions freely available.
00004   
00005   You may not use this file except in compliance with the License.
00006   obtain a copy of the License at
00007   
00008     http://www.imagemagick.org/script/license.php
00009   
00010   Unless required by applicable law or agreed to in writing, software
00011   distributed under the License is distributed on an "AS IS" BASIS,
00012   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
00013   See the License for the specific language governing permissions and
00014   limitations under the License.
00015 
00016   MagickCore version methods.
00017 */
00018 #ifndef _MAGICKCORE_VERSION_H
00019 #define _MAGICKCORE_VERSION_H
00020 
00021 #if defined(__cplusplus) || defined(c_plusplus)
00022 extern "C" {
00023 #endif
00024 
00025 /*
00026   Define declarations.
00027 */
00028 #define MagickPackageName "ImageMagick"
00029 #define MagickCopyright  "Copyright (C) 1999-2010 ImageMagick Studio LLC"
00030 #define MagickLibVersion  0x654
00031 #define MagickLibVersionText  "6.5.4"
00032 #define MagickLibVersionNumber  2,0,0
00033 #define MagickLibSubversion  "-3"
00034 #define MagickReleaseDate  "2009-07-01"
00035 #define MagickChangeDate   "20090701"
00036 #define MagickAuthoritativeURL  "http://www.imagemagick.org"
00037 #define MagickHomeURL  "file:
00038 #if (MAGICKCORE_QUANTUM_DEPTH == 8)
00039 #define MagickQuantumDepth  "Q8"
00040 #define MagickQuantumRange  "255"
00041 #elif (MAGICKCORE_QUANTUM_DEPTH == 16)
00042 #define MagickQuantumDepth  "Q16"
00043 #define MagickQuantumRange  "65535"
00044 #elif (MAGICKCORE_QUANTUM_DEPTH == 32)
00045 #define MagickQuantumDepth  "Q32"
00046 #define MagickQuantumRange  "4294967295"
00047 #elif (MAGICKCORE_QUANTUM_DEPTH == 64)
00048 #define MagickQuantumDepth  "Q64"
00049 #define MagickQuantumRange  "18446744073709551615"
00050 #else
00051 #define MagickQuantumDepth  "Q?"
00052 #define MagickQuantumRange  "?"
00053 #endif
00054 #if !defined(MAGICKCORE_HDRI_SUPPORT)
00055 #define MagickHDRISupport ""
00056 #else
00057 #define MagickHDRISupport "HDRI "
00058 #endif
00059 #if !defined(_OPENMP)
00060 #define MagickOPENMPSupport ""
00061 #else
00062 #define MagickOPENMPSupport "OpenMP "
00063 #endif
00064 #define MagickSupport MagickHDRISupport MagickOPENMPSupport
00065 #define MagickVersion MagickPackageName " " MagickLibVersionText \
00066   MagickLibSubversion " " MagickReleaseDate " " MagickQuantumDepth " " \
00067   MagickSupport MagickAuthoritativeURL
00068 
00069 extern MagickExport char
00070   *GetMagickHomeURL(void);
00071 
00072 extern MagickExport const char
00073   *GetMagickCopyright(void),
00074   *GetMagickPackageName(void),
00075   *GetMagickQuantumDepth(unsigned long *),
00076   *GetMagickQuantumRange(unsigned long *),
00077   *GetMagickReleaseDate(void),
00078   *GetMagickVersion(unsigned long *);
00079 
00080 #if defined(__cplusplus) || defined(c_plusplus)
00081 }
00082 #endif
00083 
00084 #endif

Generated on Thu Jul 2 12:03:22 2009 for MagickCore by  doxygen 1.5.8