From 87c811161c608f8428ff8e399c60f9672c6cfc7e Mon Sep 17 00:00:00 2001 From: Mike Wey Date: Fri, 19 May 2017 20:29:37 +0200 Subject: Swith to using a config file. This is hopefully a first step to supporting dub. See #12 --- dmagick/c/magickModule.d | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'dmagick/c/magickModule.d') diff --git a/dmagick/c/magickModule.d b/dmagick/c/magickModule.d index 8aa3a6e..a40ce0c 100644 --- a/dmagick/c/magickModule.d +++ b/dmagick/c/magickModule.d @@ -16,7 +16,7 @@ extern(C) MagickImageFilterModule } - struct ModuleInfo + struct MagickModuleInfo { char* path, @@ -37,7 +37,7 @@ extern(C) MagickBooleanType stealth; - ModuleInfo* + MagickModuleInfo* previous, next; @@ -49,7 +49,7 @@ extern(C) char** GetModuleList(const(char)*, const MagickModuleType, size_t*, ExceptionInfo*); - const(ModuleInfo)** GetModuleInfoList(const(char)*, size_t*, ExceptionInfo*); + const(MagickModuleInfo)** GetModuleInfoList(const(char)*, size_t*, ExceptionInfo*); static if ( MagickLibVersion < 0x689 ) { @@ -62,7 +62,7 @@ extern(C) MagickBooleanType OpenModule(const(char)*, ExceptionInfo*); MagickBooleanType OpenModules(ExceptionInfo*); - ModuleInfo* GetModuleInfo(const(char)*, ExceptionInfo*); + MagickModuleInfo* GetModuleInfo(const(char)*, ExceptionInfo*); void DestroyModuleList(); void ModuleComponentTerminus(); -- cgit v1.2.3