version.h

Go to the documentation of this file.
00001 /*
00002   Copyright 1999-2019 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     https://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  "© 1999-2019 ImageMagick Studio LLC"
00030 #define MagickLibVersion  0x708
00031 #define MagickLibVersionText  "7.0.8"
00032 #define MagickLibVersionNumber  6,0,0
00033 #define MagickLibAddendum  "-56"
00034 #define MagickLibInterface  6
00035 #define MagickLibMinInterface  6
00036 #if defined(_WINDOWS)
00037 #  if defined(_WIN64)
00038 #    define MagickPlatform "x64"
00039 #  else
00040 #    define MagickPlatform "x86"
00041 #  endif
00042 #else
00043 #define MagickPlatform  "x86_64"
00044 #endif
00045 #define MagickppLibVersionText  "7.0.8"
00046 #define MagickppLibVersionNumber  4:0:0
00047 #define MagickppLibAddendum  "-56"
00048 #define MagickppLibInterface  4
00049 #define MagickppLibMinInterface  4
00050 #define MagickReleaseDate  "2019-07-22"
00051 #define MagickAuthoritativeLicense  \
00052   "https://imagemagick.org/script/license.php"
00053 #define MagickAuthoritativeURL  "https://imagemagick.org"
00054 #define MagickHomeURL  "file:
00055 #if (MAGICKCORE_QUANTUM_DEPTH == 8)
00056 #define MagickQuantumDepth  "Q8"
00057 #define MagickQuantumRange  "255"
00058 #elif (MAGICKCORE_QUANTUM_DEPTH == 16)
00059 #define MagickQuantumDepth  "Q16"
00060 #define MagickQuantumRange  "65535"
00061 #elif (MAGICKCORE_QUANTUM_DEPTH == 32)
00062 #define MagickQuantumDepth  "Q32"
00063 #define MagickQuantumRange  "4294967295"
00064 #elif (MAGICKCORE_QUANTUM_DEPTH == 64)
00065 #define MagickQuantumDepth  "Q64"
00066 #define MagickQuantumRange  "65535"
00067 #else
00068 #define MagickQuantumDepth  "Q?"
00069 #define MagickQuantumRange  "?"
00070 #endif
00071 #define MagickVersion  \
00072   MagickPackageName " " MagickLibVersionText MagickLibAddendum " " \
00073   MagickQuantumDepth " " MagickPlatform " " MagickReleaseDate " " \
00074   MagickAuthoritativeURL
00075 
00076 extern MagickExport char
00077   *GetMagickHomeURL(void);
00078 
00079 extern MagickExport const char
00080   *GetMagickCopyright(void) magick_attribute((__const__)),
00081   *GetMagickDelegates(void) magick_attribute((__const__)),
00082   *GetMagickFeatures(void) magick_attribute((__const__)),
00083   *GetMagickLicense(void) magick_attribute((__const__)),
00084   *GetMagickPackageName(void) magick_attribute((__const__)),
00085   *GetMagickQuantumDepth(size_t *),
00086   *GetMagickQuantumRange(size_t *),
00087   *GetMagickReleaseDate(void) magick_attribute((__const__)),
00088   *GetMagickVersion(size_t *);
00089 
00090 extern MagickExport void
00091   ListMagickVersion(FILE *);
00092 
00093 #if defined(__cplusplus) || defined(c_plusplus)
00094 }
00095 #endif
00096 
00097 #endif

Generated on 22 Jul 2019 for MagickCore by  doxygen 1.6.1