summaryrefslogtreecommitdiff
path: root/dmagick/c/magickModule.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/magickModule.d
parent0bd6744310e0b209f3c5911a4e68d453e867914a (diff)
change const for the funtion params
Diffstat (limited to 'dmagick/c/magickModule.d')
-rw-r--r--dmagick/c/magickModule.d12
1 files changed, 6 insertions, 6 deletions
diff --git a/dmagick/c/magickModule.d b/dmagick/c/magickModule.d
index b6efd41..364d511 100644
--- a/dmagick/c/magickModule.d
+++ b/dmagick/c/magickModule.d
@@ -44,20 +44,20 @@ extern(C)
signature;
}
- size_t ImageFilterHandler(Image**, const int, const char**, ExceptionInfo*);
+ size_t ImageFilterHandler(Image**, const int, const(char)**, ExceptionInfo*);
- char** GetModuleList(const char*, const MagickModuleType, size_t*, ExceptionInfo*);
+ char** GetModuleList(const(char)*, const MagickModuleType, size_t*, ExceptionInfo*);
- const(ModuleInfo)** GetModuleInfoList(const char*, size_t*, ExceptionInfo*);
+ const(ModuleInfo)** GetModuleInfoList(const(char)*, size_t*, ExceptionInfo*);
MagickBooleanType InitializeModuleList(ExceptionInfo*);
- MagickBooleanType InvokeDynamicImageFilter(const char*, Image**, const int, const char**, ExceptionInfo*);
+ MagickBooleanType InvokeDynamicImageFilter(const(char)*, Image**, const int, const(char)**, ExceptionInfo*);
MagickBooleanType ListModuleInfo(FILE*, ExceptionInfo*);
MagickBooleanType ModuleComponentGenesis();
- MagickBooleanType OpenModule(const char*, ExceptionInfo*);
+ MagickBooleanType OpenModule(const(char)*, ExceptionInfo*);
MagickBooleanType OpenModules(ExceptionInfo*);
- ModuleInfo* GetModuleInfo(const char*, ExceptionInfo*);
+ ModuleInfo* GetModuleInfo(const(char)*, ExceptionInfo*);
void DestroyModuleList();
void ModuleComponentTerminus();