gdiplus: Add GdipSetPenMode stub.
This commit is contained in:
parent
9d36b416a7
commit
9f0f97706d
|
@ -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)
|
||||||
@ stub GdipSetPenMode
|
@ stdcall GdipSetPenMode(ptr long)
|
||||||
@ stdcall GdipSetPenStartCap(ptr long)
|
@ stdcall GdipSetPenStartCap(ptr long)
|
||||||
@ stub GdipSetPenTransform
|
@ stub GdipSetPenTransform
|
||||||
@ stub GdipSetPenUnit
|
@ stub GdipSetPenUnit
|
||||||
|
|
|
@ -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;
|
||||||
|
}
|
||||||
|
|
|
@ -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;
|
||||||
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 */
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue