4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-19 04:49:25 +08:00

2012-01-03 Chris Sutcliffe <ir0nh34d@users.sf.net>

Return value, identified by 'make test'.

        * include/gdiplus/gdiplustypes.h (Gdiplus::GdiplusAbort::Abort()): Return
        NO_ERROR in virtual definition.
This commit is contained in:
Chris Sutcliffe 2012-01-04 02:32:08 +00:00
parent b018c06fa9
commit 70284e10d0
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,10 @@
2012-01-03 Chris Sutcliffe <ir0nh34d@users.sf.net>
Return value, identified by 'make test'.
* include/gdiplus/gdiplustypes.h (Gdiplus::GdiplusAbort::Abort()): Return
NO_ERROR in virtual definition.
2012-01-03 Chris Sutcliffe <ir0nh34d@users.sf.net> 2012-01-03 Chris Sutcliffe <ir0nh34d@users.sf.net>
Remove duplicate definitions, identified by 'make test'. Remove duplicate definitions, identified by 'make test'.

View File

@ -404,7 +404,7 @@ typedef struct RectF {
binary compatible with MSVC++ code (especially GDIPLUS.DLL of course)? */ binary compatible with MSVC++ code (especially GDIPLUS.DLL of course)? */
#ifdef __cplusplus #ifdef __cplusplus
struct GdiplusAbort { struct GdiplusAbort {
virtual HRESULT __stdcall Abort(void) {} virtual HRESULT __stdcall Abort(void) { return NO_ERROR; }
}; };
#else #else
typedef struct GdiplusAbort GdiplusAbort; /* incomplete type */ typedef struct GdiplusAbort GdiplusAbort; /* incomplete type */