MagickCore 7.0.10
version.c
Go to the documentation of this file.
1/*
2%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3% %
4% %
5% %
6% V V EEEEE RRRR SSSSS IIIII OOO N N %
7% V V E R R SS I O O NN N %
8% V V EEE RRRR SSS I O O N N N %
9% V V E R R SS I O O N NN %
10% V EEEEE R R SSSSS IIIII OOO N N %
11% %
12% %
13% Wizard's Toolkit Version Methods %
14% %
15% Software Design %
16% Cristy %
17% March 2002 %
18% %
19% %
20% Copyright @ 1999 ImageMagick Studio LLC, a non-profit organization %
21% dedicated to making software imaging solutions freely available. %
22% %
23% You may not use this file except in compliance with the License. You may %
24% obtain a copy of the License at %
25% %
26% https://imagemagick.org/script/license.php %
27% %
28% Unless required by applicable law or agreed to in writing, software %
29% distributed under the License is distributed on an "AS IS" BASIS, %
30% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. %
31% See the License for the specific language governing permissions and %
32% limitations under the License. %
33% %
34%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
35%
36%
37*/
38
39/*
40 Include declarations.
41*/
42#include "wizard/studio.h"
43#include "wizard/version.h"
44
45/*
46%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
47% %
48% %
49% %
50% G e t W i z a r d C o p y r i g h t %
51% %
52% %
53% %
54%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
55%
56% GetWizardCopyright() returns the Wizard API copyright as a string.
57%
58% The format of the GetWizardCopyright method is:
59%
60% const char *GetWizardCopyright(void)
61%
62*/
64{
65 return(WizardCopyright);
66}
67
68/*
69%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
70% %
71% %
72% %
73% G e t W i z a r d V e r s i o n %
74% %
75% %
76% %
77%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
78%
79% GetWizardVersion() returns the Wizard API version as a string and
80% as a number.
81%
82% The format of the GetWizardVersion method is:
83%
84% const char *GetWizardVersion(size_t *version)
85%
86% A description of each parameter follows:
87%
88% o version: The Wizard version is returned as a number.
89%
90*/
91WizardExport const char *GetWizardVersion(size_t *version)
92{
93 if (version != (size_t *) NULL)
94 *version=WizardLibVersion;
95 return(WizardVersion);
96}
#define WizardExport
WizardExport const char * GetWizardVersion(size_t *version)
Definition version.c:91
WizardExport const char * GetWizardCopyright(void)
Definition version.c:63
#define WizardCopyright
Definition version.h:29
#define WizardLibVersion
Definition version.h:30
#define WizardVersion
Definition version.h:39