Commit 0bf3f1d9 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

gdiplus: Make gdiplustypes.h C++ compatible.

Add GetThumbnailImageAbort.
parent 2b891021
......@@ -21,9 +21,6 @@
typedef float REAL;
typedef BOOL (CALLBACK * ImageAbort)(VOID *);
typedef ImageAbort DrawImageAbort;
enum Status{
Ok = 0,
GenericError = 1,
......@@ -48,6 +45,20 @@ enum Status{
PropertyNotSupported = 20
};
#ifdef __cplusplus
extern "C" {
#endif
typedef BOOL (CALLBACK * ImageAbort)(VOID *);
typedef ImageAbort DrawImageAbort;
typedef ImageAbort GetThumbnailImageAbort;
#ifdef __cplusplus
}
#endif
#ifdef __cplusplus
class Point
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment