]> granicus.if.org Git - imagemagick/commitdiff
(no commit message)
authorcristy <urban-warrior@git.imagemagick.org>
Thu, 13 Oct 2011 17:32:44 +0000 (17:32 +0000)
committercristy <urban-warrior@git.imagemagick.org>
Thu, 13 Oct 2011 17:32:44 +0000 (17:32 +0000)
MagickCore/nt-base-private.h
MagickCore/nt-base.c
MagickCore/nt-base.h

index 6f884df80cf455165d93716e187ea067c55c2ddd..9680669a19851a709e9aa74fac8fe0ae2ef61df3 100644 (file)
@@ -352,11 +352,7 @@ typedef UINT
 #endif
 
 extern MagickPrivate char
-  *NTGetLastError(void),
-  **NTArgvToUTF8(const int argc,wchar_t **);
-
-extern MagickPrivate const GhostInfo
-  *NTGhostscriptDLLVectors(void);
+  *NTGetLastError(void);
 
 #if !defined(MAGICKCORE_LTDL_DELEGATE)
 extern MagickPrivate const char
@@ -389,7 +385,6 @@ extern MagickPrivate int
   NTGhostscriptEXE(char *,int),
   NTGhostscriptFonts(char *,int),
   NTGhostscriptLoadDLL(void),
-  NTGhostscriptUnLoadDLL(void),
   NTInitializeLibrary(void),
   NTSetSearchPath(const char *),
   NTSyncMemory(void *,size_t,int),
index b0dbb9bec58f4e34e37c6e601c8946c69c7e7ff0..4ba6a9d138cb26af8303f1982f06732cd80106d7 100644 (file)
@@ -650,7 +650,7 @@ MagickPrivate int IsWindows95(void)
 %    o argv:  the  wide-character command line arguments.
 %
 */
-MagickPrivate char **NTArgvToUTF8(const int argc,wchar_t **argv)
+MagickExport char **NTArgvToUTF8(const int argc,wchar_t **argv)
 {
   char
     **utf8;
@@ -1689,7 +1689,7 @@ MagickPrivate int NTGhostscriptDLL(char *path,int length)
 %      const GhostInfo *NTGhostscriptDLLVectors(void)
 %
 */
-MagickPrivate const GhostInfo *NTGhostscriptDLLVectors(void)
+MagickExport const GhostInfo *NTGhostscriptDLLVectors(void)
 {
   if (NTGhostscriptLoadDLL() == FALSE)
     return((GhostInfo *) NULL);
@@ -1865,7 +1865,7 @@ MagickPrivate int NTGhostscriptLoadDLL(void)
 %      int NTGhostscriptUnLoadDLL(void)
 %
 */
-MagickPrivate int NTGhostscriptUnLoadDLL(void)
+MagickExport int NTGhostscriptUnLoadDLL(void)
 {
   int
     status;
index 08c111ff31784ba9e2353d56f310773d82d59835..ba63216769fb16c542dc3009bd4e3ccc475db53c 100644 (file)
@@ -25,6 +25,18 @@ extern "C" {
 #include "MagickCore/geometry.h"
 
 #if defined(MAGICKCORE_WINDOWS_SUPPORT)
+typedef struct _GhostInfo
+  GhostInfo_;
+
+extern MagickExport char
+  **NTArgvToUTF8(const int argc,wchar_t **);
+
+extern MagickExport const GhostInfo_
+  *NTGhostscriptDLLVectors(void);
+
+extern MagickExport int
+  NTGhostscriptUnLoadDLL(void);
+
 extern MagickExport void
   *CropImageToHBITMAP(Image *,const RectangleInfo *,ExceptionInfo *),
   *ImageToHBITMAP(Image *),