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/utility.d | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'dmagick/c/utility.d') diff --git a/dmagick/c/utility.d b/dmagick/c/utility.d index bc4e2db..eb35e44 100644 --- a/dmagick/c/utility.d +++ b/dmagick/c/utility.d @@ -21,31 +21,31 @@ extern(C) CanonicalPath } - char* Base64Encode(const ubyte*, const size_t, size_t*); - char** GetPathComponents(const char*, size_t*); - char** ListFiles(const char*, const char*, size_t*); + char* Base64Encode(const(ubyte)*, const size_t, size_t*); + char** GetPathComponents(const(char)*, size_t*); + char** ListFiles(const(char)*, const(char)*, size_t*); - FILE* OpenMagickStream(const char*, const char*); + FILE* OpenMagickStream(const(char)*, const(char)*); - int SystemCommand(const MagickBooleanType, const MagickBooleanType, const char*, ExceptionInfo*); + int SystemCommand(const MagickBooleanType, const MagickBooleanType, const(char)*, ExceptionInfo*); MagickBooleanType AcquireUniqueFilename(char*); - MagickBooleanType AcquireUniqueSymbolicLink(const char*, char*); + MagickBooleanType AcquireUniqueSymbolicLink(const(char)*, char*); MagickBooleanType ExpandFilenames(int*, char***); - MagickBooleanType GetPathAttributes(const char*, void*); + MagickBooleanType GetPathAttributes(const(char)*, void*); MagickBooleanType GetExecutionPath(char*, const size_t); - MagickBooleanType IsMagickTrue(const char*); - MagickBooleanType IsPathAccessible(const char*); + MagickBooleanType IsMagickTrue(const(char)*); + MagickBooleanType IsPathAccessible(const(char)*); - size_t MultilineCensus(const char*); + size_t MultilineCensus(const(char)*); ssize_t GetMagickPageSize(); - ubyte* Base64Decode(const char*, size_t*); + ubyte* Base64Decode(const(char)*, size_t*); - void AppendImageFormat(const char*, char*); + void AppendImageFormat(const(char)*, char*); void ChopPathComponents(char*, const size_t); void ExpandFilename(char*); - void GetPathComponent(const char*, PathType, char*); + void GetPathComponent(const(char)*, PathType, char*); void MagickDelay(const MagickSizeType); } -- cgit v1.2.3