summaryrefslogtreecommitdiff
path: root/dmagick/c/magickModule.d
diff options
context:
space:
mode:
authorMike Wey2017-05-19 20:29:37 +0200
committerMike Wey2017-05-19 20:31:44 +0200
commit87c811161c608f8428ff8e399c60f9672c6cfc7e (patch)
tree59f2d3656e14e13c32354a835a5251bea864a174 /dmagick/c/magickModule.d
parent1f55c1eaf58bd2bcdb8d11656e816db2e9f05682 (diff)
Swith to using a config file.
This is hopefully a first step to supporting dub. See #12
Diffstat (limited to 'dmagick/c/magickModule.d')
-rw-r--r--dmagick/c/magickModule.d8
1 files changed, 4 insertions, 4 deletions
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();