Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
9f0f9770
Commit
9f0f9770
authored
Jan 30, 2008
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Feb 05, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Add GdipSetPenMode stub.
parent
9d36b416
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
1 deletion
+18
-1
gdiplus.spec
dlls/gdiplus/gdiplus.spec
+1
-1
pen.c
dlls/gdiplus/pen.c
+10
-0
gdiplusenums.h
include/gdiplusenums.h
+7
-0
No files found.
dlls/gdiplus/gdiplus.spec
View file @
9f0f9770
...
@@ -575,7 +575,7 @@
...
@@ -575,7 +575,7 @@
@ stdcall GdipSetPenLineCap197819(ptr long long long)
@ stdcall GdipSetPenLineCap197819(ptr long long long)
@ stdcall GdipSetPenLineJoin(ptr long)
@ stdcall GdipSetPenLineJoin(ptr long)
@ stdcall GdipSetPenMiterLimit(ptr long)
@ stdcall GdipSetPenMiterLimit(ptr long)
@ st
ub GdipSetPenMode
@ st
dcall GdipSetPenMode(ptr long)
@ stdcall GdipSetPenStartCap(ptr long)
@ stdcall GdipSetPenStartCap(ptr long)
@ stub GdipSetPenTransform
@ stub GdipSetPenTransform
@ stub GdipSetPenUnit
@ stub GdipSetPenUnit
...
...
dlls/gdiplus/pen.c
View file @
9f0f9770
...
@@ -380,3 +380,13 @@ GpStatus WINGDIPAPI GdipSetPenWidth(GpPen *pen, REAL width)
...
@@ -380,3 +380,13 @@ GpStatus WINGDIPAPI GdipSetPenWidth(GpPen *pen, REAL width)
return
Ok
;
return
Ok
;
}
}
GpStatus
WINGDIPAPI
GdipSetPenMode
(
GpPen
*
pen
,
GpPenAlignment
penAlignment
)
{
if
(
!
pen
)
return
InvalidParameter
;
FIXME
(
"stub (%d)
\n
"
,
penAlignment
);
return
Ok
;
}
include/gdiplusenums.h
View file @
9f0f9770
...
@@ -124,6 +124,12 @@ enum InterpolationMode
...
@@ -124,6 +124,12 @@ enum InterpolationMode
InterpolationModeHighQualityBicubic
InterpolationModeHighQualityBicubic
};
};
enum
PenAlignment
{
PenAlignmentCenter
=
0
,
PenAlignmentInset
=
1
};
enum
PixelOffsetMode
enum
PixelOffsetMode
{
{
PixelOffsetModeInvalid
=
QualityModeInvalid
,
PixelOffsetModeInvalid
=
QualityModeInvalid
,
...
@@ -279,6 +285,7 @@ typedef enum StringAlignment StringAlignment;
...
@@ -279,6 +285,7 @@ typedef enum StringAlignment StringAlignment;
typedef
enum
StringTrimming
StringTrimming
;
typedef
enum
StringTrimming
StringTrimming
;
typedef
enum
StringFormatFlags
StringFormatFlags
;
typedef
enum
StringFormatFlags
StringFormatFlags
;
typedef
enum
HotkeyPrefix
HotkeyPrefix
;
typedef
enum
HotkeyPrefix
HotkeyPrefix
;
typedef
enum
PenAlignment
GpPenAlignment
;
#endif
/* end of c typedefs */
#endif
/* end of c typedefs */
...
...
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