summaryrefslogtreecommitdiff
path: root/dmagick/c/registry.d
diff options
context:
space:
mode:
authorMike Wey2011-01-09 22:47:18 +0100
committerMike Wey2011-01-09 22:47:18 +0100
commite080979186e624ba7fed28ea9a76dfdf4feb635a (patch)
treeccec2234fba81a86733f341cadb69ae5ce6ff84b /dmagick/c/registry.d
parent0bd6744310e0b209f3c5911a4e68d453e867914a (diff)
change const for the funtion params
Diffstat (limited to 'dmagick/c/registry.d')
-rw-r--r--dmagick/c/registry.d10
1 files changed, 5 insertions, 5 deletions
diff --git a/dmagick/c/registry.d b/dmagick/c/registry.d
index 38ae2fe..d8b528c 100644
--- a/dmagick/c/registry.d
+++ b/dmagick/c/registry.d
@@ -15,13 +15,13 @@ extern(C)
char* GetNextImageRegistry();
- MagickBooleanType DefineImageRegistry(const RegistryType, const char*, ExceptionInfo*);
- MagickBooleanType DeleteImageRegistry(const char*);
+ MagickBooleanType DefineImageRegistry(const RegistryType, const(char)*, ExceptionInfo*);
+ MagickBooleanType DeleteImageRegistry(const(char)*);
MagickBooleanType RegistryComponentGenesis();
- MagickBooleanType SetImageRegistry(const RegistryType, const char*, const void*, ExceptionInfo*);
+ MagickBooleanType SetImageRegistry(const RegistryType, const(char)*, const(void)*, ExceptionInfo*);
- void* GetImageRegistry(const RegistryType, const char*, ExceptionInfo*);
+ void* GetImageRegistry(const RegistryType, const(char)*, ExceptionInfo*);
void RegistryComponentTerminus();
- void* RemoveImageRegistry(const char*);
+ void* RemoveImageRegistry(const(char)*);
void ResetImageRegistryIterator();
}