diff options
| author | Mike Wey | 2016-10-15 16:38:55 +0200 |
|---|---|---|
| committer | Mike Wey | 2016-10-15 16:38:55 +0200 |
| commit | 22bfca008f524a7c24f4f84052f78fb43d79f49c (patch) | |
| tree | 5cb9d386db69ee512736087ba8e593aa2b4cbe93 /dmagick/c/token.d | |
| parent | e220c640f08b882c0c5d26ec778b1dbb135a950f (diff) | |
Update the headers for Imagemagick 6.9.3ImageMagick_6.9.4
Diffstat (limited to 'dmagick/c/token.d')
| -rw-r--r-- | dmagick/c/token.d | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/dmagick/c/token.d b/dmagick/c/token.d index 2b6480a..b934826 100644 --- a/dmagick/c/token.d +++ b/dmagick/c/token.d @@ -16,5 +16,13 @@ extern(C) TokenInfo* AcquireTokenInfo(); TokenInfo* DestroyTokenInfo(TokenInfo*); - void GetMagickToken(const(char)*, const(char)**, char*); + static if ( MagickLibVersion < 0x694 ) + { + void GetMagickToken(const(char)*, const(char)**, char*); + } + + static if ( MagickLibVersion >= 0x694 ) + { + void GetNextToken(const(char)*, const(char)**, const size_t, char*); + } } |
