GDI PLUS headers from Win32 API

Originals available from

	URL: http://www.mingw.org

    THIS SOFTWARE IS NOT COPYRIGHTED

    This source code is offered for use in the public domain.  You may use,
    modify or distribute it freely.

    This source code is distributed in the hope that it will be useful but
    WITHOUT ANY WARRANTY.  ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
    DISCLAIMED.  This includes but is not limited to warranties of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.


Adapted for mingw-w64:

added to gdiplus/gdiplus.h

  #include <basetyps.h>
 
+ #ifndef _COM_interface
+ #define _COM_interface struct
+ #endif
 
  typedef _COM_interface IStream IStream;
  
  
To make libgdiplus.a:

gcc -O2 -g -c gdiplus.c
dlltool --as=as -k --output-lib libgdiplus.a --input-def gdiplus32.def
ar r libgdiplus.a gdiplus.o 
ranlib libgdiplus.a



