Author: spouliot
Date: 2007-06-21 08:22:43 -0400 (Thu, 21 Jun 2007)
New Revision: 80447

Modified:
   trunk/libgdiplus/src/ChangeLog
   trunk/libgdiplus/src/general.c
   trunk/libgdiplus/src/general.h
Log:
2007-06-21  Sebastien Pouliot  <[EMAIL PROTECTED]> 

        * general.c|h: Fix signature for GdiplusShutdown. Fix bug #81842.

        Patch by Yves Bastide. Fix #81841


Modified: trunk/libgdiplus/src/ChangeLog
===================================================================
--- trunk/libgdiplus/src/ChangeLog      2007-06-21 12:14:13 UTC (rev 80446)
+++ trunk/libgdiplus/src/ChangeLog      2007-06-21 12:22:43 UTC (rev 80447)
@@ -1,3 +1,7 @@
+2007-06-21  Sebastien Pouliot  <[EMAIL PROTECTED]> 
+
+       * general.c|h: Fix signature for GdiplusShutdown. Fix bug #81842.
+
 2007-06-21  Sebastien Pouliot  <[EMAIL PROTECTED]>
 
        * bitmap.c, bmpcodec.c, icocodec.c, imageattributes.c, image.c,
@@ -3,5 +7,5 @@
        jpegcodec.c, pngcodec.c, tiffcodec.c, gdipenums.h: Fix PixelFormat*Rgb
        (and Argb) to PixelFormat*RGB (and ARGB) to match MS GDI+ definitions.
-       Patch by Yves Bastide.
+       Patch by Yves Bastide. Fix #81841
 
 2007-06-05  Sebastien Pouliot  <[EMAIL PROTECTED]> 

Modified: trunk/libgdiplus/src/general.c
===================================================================
--- trunk/libgdiplus/src/general.c      2007-06-21 12:14:13 UTC (rev 80446)
+++ trunk/libgdiplus/src/general.c      2007-06-21 12:22:43 UTC (rev 80447)
@@ -53,7 +53,7 @@
 }
 
 void 
-GdiplusShutdown (ULONG *token)
+GdiplusShutdown (ULONG_PTR token)
 {
        if (startup) {
                releaseCodecList ();

Modified: trunk/libgdiplus/src/general.h
===================================================================
--- trunk/libgdiplus/src/general.h      2007-06-21 12:14:13 UTC (rev 80446)
+++ trunk/libgdiplus/src/general.h      2007-06-21 12:22:43 UTC (rev 80447)
@@ -39,7 +39,7 @@
 } GdiplusStartupOutput;
 
 GpStatus GdiplusStartup (ULONG_PTR *token, const GdiplusStartupInput *input, 
GdiplusStartupOutput *output);
-void GdiplusShutdown (ULONG_PTR *token);
+void GdiplusShutdown (ULONG_PTR token);
 
 /* Memory / public API */
 void* GdipAlloc (size_t size);

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to