gdiplus: Make gdiplustypes.h C++ compatible.
Add GetThumbnailImageAbort.
This commit is contained in:
parent
2b89102127
commit
0bf3f1d9f1
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue