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
82abeeea
Commit
82abeeea
authored
Jul 23, 2007
by
Evan Stade
Committed by
Alexandre Julliard
Jul 24, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Added GdipSetSolidFillColor and GdipGetSolidFillColor stubs.
parent
37598f81
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
2 deletions
+20
-2
brush.c
dlls/gdiplus/brush.c
+16
-0
gdiplus.spec
dlls/gdiplus/gdiplus.spec
+2
-2
gdiplusflat.h
include/gdiplusflat.h
+2
-0
No files found.
dlls/gdiplus/brush.c
View file @
82abeeea
...
...
@@ -74,3 +74,19 @@ GpStatus WINGDIPAPI GdipDeleteBrush(GpBrush *brush)
return
Ok
;
}
GpStatus
WINGDIPAPI
GdipGetSolidFillColor
(
GpSolidFill
*
sf
,
ARGB
*
argb
)
{
if
(
!
sf
||
!
argb
)
return
InvalidParameter
;
return
NotImplemented
;
}
GpStatus
WINGDIPAPI
GdipSetSolidFillColor
(
GpSolidFill
*
sf
,
ARGB
argb
)
{
if
(
!
sf
)
return
InvalidParameter
;
return
NotImplemented
;
}
dlls/gdiplus/gdiplus.spec
View file @
82abeeea
...
...
@@ -369,7 +369,7 @@
@ stub GdipGetRegionScansI
@ stub GdipGetRenderingOrigin
@ stdcall GdipGetSmoothingMode(ptr ptr)
@ st
ub GdipGetSolidFillColor
@ st
dcall GdipGetSolidFillColor(ptr ptr)
@ stub GdipGetStringFormatAlign
@ stub GdipGetStringFormatDigitSubstitution
@ stub GdipGetStringFormatFlags
...
...
@@ -563,7 +563,7 @@
@ stub GdipSetPropertyItem
@ stub GdipSetRenderingOrigin
@ stdcall GdipSetSmoothingMode(ptr long)
@ st
ub GdipSetSolidFillColor
@ st
dcall GdipSetSolidFillColor(ptr ptr)
@ stub GdipSetStringFormatAlign
@ stub GdipSetStringFormatDigitSubstitution
@ stub GdipSetStringFormatFlags
...
...
include/gdiplusflat.h
View file @
82abeeea
...
...
@@ -72,6 +72,8 @@ GpStatus WINGDIPAPI GdipCloneBrush(GpBrush*,GpBrush**);
GpStatus
WINGDIPAPI
GdipCreateSolidFill
(
ARGB
,
GpSolidFill
**
);
GpStatus
WINGDIPAPI
GdipGetBrushType
(
GpBrush
*
,
GpBrushType
*
);
GpStatus
WINGDIPAPI
GdipDeleteBrush
(
GpBrush
*
);
GpStatus
WINGDIPAPI
GdipGetSolidFillColor
(
GpSolidFill
*
,
ARGB
*
);
GpStatus
WINGDIPAPI
GdipSetSolidFillColor
(
GpSolidFill
*
,
ARGB
);
GpStatus
WINGDIPAPI
GdipAddPathArc
(
GpPath
*
,
REAL
,
REAL
,
REAL
,
REAL
,
REAL
,
REAL
);
GpStatus
WINGDIPAPI
GdipAddPathBeziers
(
GpPath
*
,
GDIPCONST
GpPointF
*
,
INT
);
...
...
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