diff options
| author | Mike Wey | 2011-01-09 20:52:03 +0100 |
|---|---|---|
| committer | Mike Wey | 2011-01-09 20:52:03 +0100 |
| commit | 0bd6744310e0b209f3c5911a4e68d453e867914a (patch) | |
| tree | a916a4d8151decbb068a6e002049f8ab32550e2c /dmagick/c/magickVersion.d | |
| parent | cbac78bbec726017355cb455a776f193e7fc3022 (diff) | |
change the constness of the return types
Diffstat (limited to 'dmagick/c/magickVersion.d')
| -rw-r--r-- | dmagick/c/magickVersion.d | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/dmagick/c/magickVersion.d b/dmagick/c/magickVersion.d index eaed81c..46baaac 100644 --- a/dmagick/c/magickVersion.d +++ b/dmagick/c/magickVersion.d @@ -4,11 +4,11 @@ extern(C) { char* GetMagickHomeURL(); - const(char*) GetMagickCopyright(); - const(char*) GetMagickFeatures(); - const(char*) GetMagickPackageName(); - const(char*) GetMagickQuantumDepth(size_t*); - const(char*) GetMagickQuantumRange(size_t*); - const(char*) GetMagickReleaseDate(); - const(char*) GetMagickVersion(size_t*); + const(char)* GetMagickCopyright(); + const(char)* GetMagickFeatures(); + const(char)* GetMagickPackageName(); + const(char)* GetMagickQuantumDepth(size_t*); + const(char)* GetMagickQuantumRange(size_t*); + const(char)* GetMagickReleaseDate(); + const(char)* GetMagickVersion(size_t*); } |
