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
cef15983
Commit
cef15983
authored
May 08, 2009
by
Stefan Leichter
Committed by
Alexandre Julliard
May 08, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Add stub for GdipImageRotateFlip.
parent
754b97c7
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
39 additions
and
1 deletion
+39
-1
gdiplus.spec
dlls/gdiplus/gdiplus.spec
+1
-1
image.c
dlls/gdiplus/image.c
+9
-0
gdiplusflat.h
include/gdiplusflat.h
+1
-0
gdiplusimaging.h
include/gdiplusimaging.h
+28
-0
No files found.
dlls/gdiplus/gdiplus.spec
View file @
cef15983
...
...
@@ -409,7 +409,7 @@
@ stdcall GdipImageGetFrameCount(ptr ptr ptr)
@ stdcall GdipImageGetFrameDimensionsCount(ptr ptr)
@ stdcall GdipImageGetFrameDimensionsList(ptr ptr long)
@ st
ub GdipImageRotateFlip
@ st
dcall GdipImageRotateFlip(ptr long)
@ stdcall GdipImageSelectActiveFrame(ptr ptr long)
@ stub GdipImageSetAbort
@ stub GdipInitializePalette
...
...
dlls/gdiplus/image.c
View file @
cef15983
...
...
@@ -1675,3 +1675,12 @@ GpStatus WINGDIPAPI GdipGetImageThumbnail(GpImage *image, UINT width, UINT heigh
image
,
width
,
height
,
ret_image
,
cb
,
cb_data
);
return
NotImplemented
;
}
/*****************************************************************************
* GdipImageRotateFlip [GDIPLUS.@]
*/
GpStatus
WINGDIPAPI
GdipImageRotateFlip
(
GpImage
*
image
,
RotateFlipType
type
)
{
FIXME
(
"(%p %u) stub
\n
"
,
image
,
type
);
return
NotImplemented
;
}
include/gdiplusflat.h
View file @
cef15983
...
...
@@ -340,6 +340,7 @@ GpStatus WINGDIPAPI GdipGetPropertySize(GpImage*,UINT*,UINT*);
GpStatus
WINGDIPAPI
GdipImageGetFrameCount
(
GpImage
*
,
GDIPCONST
GUID
*
,
UINT
*
);
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
GdipLoadImageFromFile
(
GDIPCONST
WCHAR
*
,
GpImage
**
);
GpStatus
WINGDIPAPI
GdipLoadImageFromFileICM
(
GDIPCONST
WCHAR
*
,
GpImage
**
);
...
...
include/gdiplusimaging.h
View file @
cef15983
...
...
@@ -38,6 +38,33 @@ enum ImageLockMode
ImageLockModeUserInputBuf
=
4
};
enum
RotateFlipType
{
RotateNoneFlipNone
=
0
,
Rotate180FlipXY
=
RotateNoneFlipNone
,
Rotate90FlipNone
=
1
,
Rotate270FlipXY
=
Rotate90FlipNone
,
Rotate180FlipNone
=
2
,
RotateNoneFlipXY
=
Rotate180FlipNone
,
Rotate270FlipNone
=
3
,
Rotate90FlipXY
=
Rotate270FlipNone
,
RotateNoneFlipX
=
4
,
Rotate180FlipY
=
RotateNoneFlipX
,
Rotate90FlipX
=
5
,
Rotate270FlipY
=
Rotate90FlipX
,
Rotate180FlipX
=
6
,
RotateNoneFlipY
=
Rotate180FlipX
,
Rotate270FlipX
=
7
,
Rotate90FlipY
=
Rotate270FlipX
};
#ifdef __cplusplus
class
EncoderParameter
{
...
...
@@ -108,6 +135,7 @@ public:
#else
/* end of c++ typedefs */
typedef
enum
ImageLockMode
ImageLockMode
;
typedef
enum
RotateFlipType
RotateFlipType
;
typedef
struct
EncoderParameter
{
...
...
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