Skip to content

Commit

Permalink
2007-06-21 Sebastien Pouliot <sebastien@ximian.com>
Browse files Browse the repository at this point in the history
	* general.c|h: Fix signature for GdiplusShutdown. Fix bug #81842.

	Patch by Yves Bastide. Fix #81841

svn path=/trunk/libgdiplus/; revision=80447
  • Loading branch information
Sebastien Pouliot committed Jun 21, 2007
1 parent b9005e7 commit 36f14f1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion src/ChangeLog
@@ -1,9 +1,13 @@
2007-06-21 Sebastien Pouliot <sebastien@ximian.com>

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

2007-06-21 Sebastien Pouliot <sebastien@ximian.com> 2007-06-21 Sebastien Pouliot <sebastien@ximian.com>


* bitmap.c, bmpcodec.c, icocodec.c, imageattributes.c, image.c, * bitmap.c, bmpcodec.c, icocodec.c, imageattributes.c, image.c,
jpegcodec.c, pngcodec.c, tiffcodec.c, gdipenums.h: Fix PixelFormat*Rgb jpegcodec.c, pngcodec.c, tiffcodec.c, gdipenums.h: Fix PixelFormat*Rgb
(and Argb) to PixelFormat*RGB (and ARGB) to match MS GDI+ definitions. (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 <sebastien@ximian.com> 2007-06-05 Sebastien Pouliot <sebastien@ximian.com>


Expand Down
2 changes: 1 addition & 1 deletion src/general.c
Expand Up @@ -53,7 +53,7 @@ GdiplusStartup (ULONG_PTR *token, const GdiplusStartupInput *input, GdiplusStart
} }


void void
GdiplusShutdown (ULONG *token) GdiplusShutdown (ULONG_PTR token)
{ {
if (startup) { if (startup) {
releaseCodecList (); releaseCodecList ();
Expand Down
2 changes: 1 addition & 1 deletion src/general.h
Expand Up @@ -39,7 +39,7 @@ typedef struct {
} GdiplusStartupOutput; } GdiplusStartupOutput;


GpStatus GdiplusStartup (ULONG_PTR *token, const GdiplusStartupInput *input, GdiplusStartupOutput *output); GpStatus GdiplusStartup (ULONG_PTR *token, const GdiplusStartupInput *input, GdiplusStartupOutput *output);
void GdiplusShutdown (ULONG_PTR *token); void GdiplusShutdown (ULONG_PTR token);


/* Memory / public API */ /* Memory / public API */
void* GdipAlloc (size_t size); void* GdipAlloc (size_t size);
Expand Down

0 comments on commit 36f14f1

Please sign in to comment.