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/policy.d | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'dmagick/c/policy.d') diff --git a/dmagick/c/policy.d b/dmagick/c/policy.d index e5f742b..27e4e36 100644 --- a/dmagick/c/policy.d +++ b/dmagick/c/policy.d @@ -29,12 +29,12 @@ extern(C) struct PolicyInfo {} - char* GetPolicyValue(const char* name); - char** GetPolicyList(const char*, size_t*, ExceptionInfo*); + char* GetPolicyValue(const(char)* name); + char** GetPolicyList(const(char)*, size_t*, ExceptionInfo*); - const(PolicyInfo)** GetPolicyInfoList(const char*, size_t*, ExceptionInfo*); + const(PolicyInfo)** GetPolicyInfoList(const(char)*, size_t*, ExceptionInfo*); - MagickBooleanType IsRightsAuthorized(const PolicyDomain, const PolicyRights, const char*); + MagickBooleanType IsRightsAuthorized(const PolicyDomain, const PolicyRights, const(char)*); MagickBooleanType ListPolicyInfo(FILE*, ExceptionInfo*); MagickBooleanType PolicyComponentGenesis(); -- cgit v1.2.3