From e080979186e624ba7fed28ea9a76dfdf4feb635a Mon Sep 17 00:00:00 2001 From: Mike Wey Date: Sun, 9 Jan 2011 22:47:18 +0100 Subject: change const for the funtion params --- dmagick/c/magickModule.d | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'dmagick/c/magickModule.d') 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(); -- cgit v1.2.3