Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sebastian Mayr
wine
Commits
9f0f9770
Commit
9f0f9770
authored
17 years ago
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
17 years ago
Browse files
Options
Downloads
Patches
Plain Diff
gdiplus: Add GdipSetPenMode stub.
parent
9d36b416
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
dlls/gdiplus/gdiplus.spec
+1
-1
1 addition, 1 deletion
dlls/gdiplus/gdiplus.spec
dlls/gdiplus/pen.c
+10
-0
10 additions, 0 deletions
dlls/gdiplus/pen.c
include/gdiplusenums.h
+7
-0
7 additions, 0 deletions
include/gdiplusenums.h
with
18 additions
and
1 deletion
dlls/gdiplus/gdiplus.spec
+
1
−
1
View file @
9f0f9770
...
...
@@ -575,7 +575,7 @@
@ stdcall GdipSetPenLineCap197819(ptr long long long)
@ stdcall GdipSetPenLineJoin(ptr long)
@ stdcall GdipSetPenMiterLimit(ptr long)
@ st
ub
GdipSetPenMode
@ st
dcall
GdipSetPenMode
(ptr long)
@ stdcall GdipSetPenStartCap(ptr long)
@ stub GdipSetPenTransform
@ stub GdipSetPenUnit
...
...
This diff is collapsed.
Click to expand it.
dlls/gdiplus/pen.c
+
10
−
0
View file @
9f0f9770
...
...
@@ -380,3 +380,13 @@ GpStatus WINGDIPAPI GdipSetPenWidth(GpPen *pen, REAL width)
return
Ok
;
}
GpStatus
WINGDIPAPI
GdipSetPenMode
(
GpPen
*
pen
,
GpPenAlignment
penAlignment
)
{
if
(
!
pen
)
return
InvalidParameter
;
FIXME
(
"stub (%d)
\n
"
,
penAlignment
);
return
Ok
;
}
This diff is collapsed.
Click to expand it.
include/gdiplusenums.h
+
7
−
0
View file @
9f0f9770
...
...
@@ -124,6 +124,12 @@ enum InterpolationMode
InterpolationModeHighQualityBicubic
};
enum
PenAlignment
{
PenAlignmentCenter
=
0
,
PenAlignmentInset
=
1
};
enum
PixelOffsetMode
{
PixelOffsetModeInvalid
=
QualityModeInvalid
,
...
...
@@ -279,6 +285,7 @@ typedef enum StringAlignment StringAlignment;
typedef
enum
StringTrimming
StringTrimming
;
typedef
enum
StringFormatFlags
StringFormatFlags
;
typedef
enum
HotkeyPrefix
HotkeyPrefix
;
typedef
enum
PenAlignment
GpPenAlignment
;
#endif
/* end of c typedefs */
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment