Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
a5ab896a
Commit
a5ab896a
authored
Jun 08, 2015
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jun 09, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Added GdipImageSetAbort stub.
parent
5742497a
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
1 deletion
+12
-1
gdiplus.spec
dlls/gdiplus/gdiplus.spec
+1
-1
image.c
dlls/gdiplus/image.c
+9
-0
gdiplusflat.h
include/gdiplusflat.h
+1
-0
gdiplustypes.h
include/gdiplustypes.h
+1
-0
No files found.
dlls/gdiplus/gdiplus.spec
View file @
a5ab896a
...
...
@@ -621,7 +621,7 @@
621 stub GdipBitmapGetHistogram
622 stub GdipBitmapGetHistogramSize
623 stub GdipBitmapConvertFormat
624 st
ub GdipImageSetAbort
624 st
dcall GdipImageSetAbort(ptr ptr)
625 stub GdipGraphicsSetAbort
626 stub GdipDrawImageFX
627 stdcall GdipConvertToEmfPlus(ptr ptr ptr long ptr ptr)
...
...
dlls/gdiplus/image.c
View file @
a5ab896a
...
...
@@ -5235,3 +5235,12 @@ GpStatus WINGDIPAPI GdipImageRotateFlip(GpImage *image, RotateFlipType type)
return
stat
;
}
/*****************************************************************************
* GdipImageSetAbort [GDIPLUS.@]
*/
GpStatus
WINGDIPAPI
GdipImageSetAbort
(
GpImage
*
image
,
GdiplusAbort
*
pabort
)
{
FIXME
(
"(%p, %p): stub
\n
"
,
image
,
pabort
);
return
NotImplemented
;
}
include/gdiplusflat.h
View file @
a5ab896a
...
...
@@ -421,6 +421,7 @@ GpStatus WINGDIPAPI GdipImageGetFrameDimensionsCount(GpImage*,UINT*);
GpStatus
WINGDIPAPI
GdipImageGetFrameDimensionsList
(
GpImage
*
,
GUID
*
,
UINT
);
GpStatus
WINGDIPAPI
GdipImageRotateFlip
(
GpImage
*
,
RotateFlipType
);
GpStatus
WINGDIPAPI
GdipImageSelectActiveFrame
(
GpImage
*
,
GDIPCONST
GUID
*
,
UINT
);
GpStatus
WINGDIPAPI
GdipImageSetAbort
(
GpImage
*
,
GdiplusAbort
*
);
GpStatus
WINGDIPAPI
GdipLoadImageFromFile
(
GDIPCONST
WCHAR
*
,
GpImage
**
);
GpStatus
WINGDIPAPI
GdipLoadImageFromFileICM
(
GDIPCONST
WCHAR
*
,
GpImage
**
);
GpStatus
WINGDIPAPI
GdipLoadImageFromStream
(
IStream
*
,
GpImage
**
);
...
...
include/gdiplustypes.h
View file @
a5ab896a
...
...
@@ -54,6 +54,7 @@ extern "C" {
typedef
BOOL
(
CALLBACK
*
ImageAbort
)(
VOID
*
);
typedef
ImageAbort
DrawImageAbort
;
typedef
ImageAbort
GetThumbnailImageAbort
;
typedef
struct
GdiplusAbort
GdiplusAbort
;
typedef
BOOL
(
CALLBACK
*
EnumerateMetafileProc
)(
EmfPlusRecordType
,
UINT
,
UINT
,
const
BYTE
*
,
VOID
*
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment