|
Revision 1, 1.3 KB
(checked in by cristy, 3 months ago)
|
|
|
| Line | |
|---|
| 1 | |
|---|
| 2 | |
|---|
| 3 | |
|---|
| 4 | |
|---|
| 5 | |
|---|
| 6 | |
|---|
| 7 | |
|---|
| 8 | |
|---|
| 9 | |
|---|
| 10 | |
|---|
| 11 | |
|---|
| 12 | |
|---|
| 13 | |
|---|
| 14 | |
|---|
| 15 | |
|---|
| 16 | |
|---|
| 17 | |
|---|
| 18 | #ifndef _MAGICKCORE_ARTIFACT_H |
|---|
| 19 | #define _MAGICKCORE_ARTIFACT_H |
|---|
| 20 | |
|---|
| 21 | #if defined(__cplusplus) || defined(c_plusplus) |
|---|
| 22 | extern "C" { |
|---|
| 23 | #endif |
|---|
| 24 | |
|---|
| 25 | extern MagickExport char |
|---|
| 26 | *GetNextImageArtifact(const Image *), |
|---|
| 27 | *RemoveImageArtifact(Image *,const char *); |
|---|
| 28 | |
|---|
| 29 | extern MagickExport const char |
|---|
| 30 | *GetImageArtifact(const Image *,const char *); |
|---|
| 31 | |
|---|
| 32 | extern MagickExport MagickBooleanType |
|---|
| 33 | CloneImageArtifacts(Image *,const Image *), |
|---|
| 34 | DefineImageArtifact(Image *,const char *), |
|---|
| 35 | DeleteImageArtifact(Image *,const char *), |
|---|
| 36 | SetImageArtifact(Image *,const char *,const char *); |
|---|
| 37 | |
|---|
| 38 | extern MagickExport void |
|---|
| 39 | DestroyImageArtifacts(Image *), |
|---|
| 40 | ResetImageArtifactIterator(const Image *); |
|---|
| 41 | |
|---|
| 42 | #if defined(__cplusplus) || defined(c_plusplus) |
|---|
| 43 | } |
|---|
| 44 | #endif |
|---|
| 45 | |
|---|
| 46 | #endif |
|---|