diff options
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*); + } } |
