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
20a8cf64
Commit
20a8cf64
authored
Apr 09, 2008
by
Lei Zhang
Committed by
Alexandre Julliard
Apr 10, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Add a stub for GdipSetEffectParameters.
parent
a1394d4d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
1 deletion
+14
-1
gdiplus.spec
dlls/gdiplus/gdiplus.spec
+1
-1
image.c
dlls/gdiplus/image.c
+11
-0
gdiplusgpstubs.h
include/gdiplusgpstubs.h
+2
-0
No files found.
dlls/gdiplus/gdiplus.spec
View file @
20a8cf64
...
...
@@ -519,7 +519,7 @@
@ stdcall GdipSetCustomLineCapStrokeCaps(ptr long long)
@ stdcall GdipSetCustomLineCapStrokeJoin(ptr long)
@ stdcall GdipSetCustomLineCapWidthScale(ptr long)
@ st
ub GdipSetEffectParameters
@ st
dcall GdipSetEffectParameters(ptr ptr long)
@ stub GdipSetEmpty
@ stub GdipSetImageAttributesCachedBackground
@ stdcall GdipSetImageAttributesColorKeys(ptr long long long long)
...
...
dlls/gdiplus/image.c
View file @
20a8cf64
...
...
@@ -1096,3 +1096,14 @@ GpStatus WINGDIPAPI GdipCreateBitmapFromHBITMAP(HBITMAP hbm, HPALETTE hpal, GpBi
return
retval
;
}
GpStatus
WINGDIPAPI
GdipSetEffectParameters
(
CGpEffect
*
effect
,
const
VOID
*
params
,
const
UINT
size
)
{
static
int
calls
;
if
(
!
(
calls
++
))
FIXME
(
"not implemented
\n
"
);
return
NotImplemented
;
}
include/gdiplusgpstubs.h
View file @
20a8cf64
...
...
@@ -39,6 +39,7 @@ class GpTexture : public GpBrush {};
class
GpFont
{};
class
GpStringFormat
{};
class
GpRegion
{};
class
CGpEffect
{};
#else
/* end of c++ declarations */
...
...
@@ -60,6 +61,7 @@ typedef struct GpTexture GpTexture;
typedef
struct
GpFont
GpFont
;
typedef
struct
GpStringFormat
GpStringFormat
;
typedef
struct
GpRegion
GpRegion
;
typedef
struct
CGpEffect
CGpEffect
;
#endif
/* end of c declarations */
...
...
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