mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 07:02:56 +00:00
[SDK][INCLUDE] Formatting gdiplus headers (#2190)
Just code formatting. CORE-16585 $ clang-format -style=file -i sdk/include/psdk/gdiplus[a-z]*
This commit is contained in:
parent
8faf38ed22
commit
e7814f19fb
23 changed files with 6651 additions and 5056 deletions
|
@ -19,137 +19,136 @@
|
|||
#ifndef _GDIPLUSLINECAPS_H
|
||||
#define _GDIPLUSLINECAPS_H
|
||||
|
||||
inline
|
||||
CustomLineCap::CustomLineCap(const GraphicsPath *fillPath,
|
||||
const GraphicsPath *strokePath, LineCap baseCap, REAL baseInset)
|
||||
inline CustomLineCap::CustomLineCap(
|
||||
const GraphicsPath *fillPath,
|
||||
const GraphicsPath *strokePath,
|
||||
LineCap baseCap,
|
||||
REAL baseInset)
|
||||
{
|
||||
}
|
||||
|
||||
inline CustomLineCap *
|
||||
CustomLineCap::Clone(VOID)
|
||||
inline CustomLineCap *CustomLineCap::Clone(VOID)
|
||||
{
|
||||
return NULL;
|
||||
return NULL;
|
||||
}
|
||||
|
||||
inline LineCap
|
||||
CustomLineCap::GetBaseCap(VOID)
|
||||
inline LineCap CustomLineCap::GetBaseCap(VOID)
|
||||
{
|
||||
return LineCapFlat;
|
||||
return LineCapFlat;
|
||||
}
|
||||
|
||||
inline REAL
|
||||
CustomLineCap::GetBaseInset(VOID)
|
||||
inline REAL CustomLineCap::GetBaseInset(VOID)
|
||||
{
|
||||
return 0;
|
||||
return 0;
|
||||
}
|
||||
|
||||
inline Status
|
||||
CustomLineCap::GetLastStatus(VOID)
|
||||
inline Status CustomLineCap::GetLastStatus(VOID)
|
||||
{
|
||||
return Ok;
|
||||
return Ok;
|
||||
}
|
||||
|
||||
inline Status
|
||||
CustomLineCap::GetStrokeCaps(LineCap *startCap, LineCap *endCap)
|
||||
{
|
||||
return Ok;
|
||||
return Ok;
|
||||
}
|
||||
|
||||
inline LineJoin
|
||||
CustomLineCap::GetStrokeJoin(VOID)
|
||||
inline LineJoin CustomLineCap::GetStrokeJoin(VOID)
|
||||
{
|
||||
return LineJoinMiter;
|
||||
return LineJoinMiter;
|
||||
}
|
||||
|
||||
inline REAL
|
||||
CustomLineCap::GetWidthScale(VOID)
|
||||
inline REAL CustomLineCap::GetWidthScale(VOID)
|
||||
{
|
||||
return 0;
|
||||
return 0;
|
||||
}
|
||||
|
||||
inline Status
|
||||
CustomLineCap::SetBaseCap(LineCap baseCap)
|
||||
{
|
||||
return Ok;
|
||||
return Ok;
|
||||
}
|
||||
|
||||
inline Status
|
||||
CustomLineCap::SetBaseInset(REAL inset)
|
||||
{
|
||||
return Ok;
|
||||
return Ok;
|
||||
}
|
||||
|
||||
inline Status
|
||||
CustomLineCap::SetStrokeCap(LineCap strokeCap)
|
||||
{
|
||||
return Ok;
|
||||
return Ok;
|
||||
}
|
||||
|
||||
inline Status
|
||||
CustomLineCap::SetStrokeCaps(LineCap startCap, LineCap endCap)
|
||||
{
|
||||
return Ok;
|
||||
return Ok;
|
||||
}
|
||||
|
||||
inline Status
|
||||
CustomLineCap::SetStrokeJoin(LineJoin lineJoin)
|
||||
{
|
||||
return Ok;
|
||||
return Ok;
|
||||
}
|
||||
|
||||
inline Status
|
||||
CustomLineCap::SetWidthScale(IN REAL widthScale)
|
||||
{
|
||||
return Ok;
|
||||
return Ok;
|
||||
}
|
||||
|
||||
|
||||
class AdjustableArrowCap : public CustomLineCap
|
||||
{
|
||||
public:
|
||||
AdjustableArrowCap(REAL height, REAL width, BOOL isFilled)
|
||||
{
|
||||
}
|
||||
public:
|
||||
AdjustableArrowCap(REAL height, REAL width, BOOL isFilled)
|
||||
{
|
||||
}
|
||||
|
||||
REAL GetHeight(VOID)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
REAL GetHeight(VOID)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
REAL GetMiddleInset(VOID)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
REAL GetMiddleInset(VOID)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
REAL GetWidth(VOID)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
REAL GetWidth(VOID)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
BOOL IsFilled(VOID)
|
||||
{
|
||||
return FALSE;
|
||||
}
|
||||
BOOL IsFilled(VOID)
|
||||
{
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
Status SetFillState(BOOL isFilled)
|
||||
{
|
||||
return Ok;
|
||||
}
|
||||
Status
|
||||
SetFillState(BOOL isFilled)
|
||||
{
|
||||
return Ok;
|
||||
}
|
||||
|
||||
Status SetHeight(REAL height)
|
||||
{
|
||||
return Ok;
|
||||
}
|
||||
Status
|
||||
SetHeight(REAL height)
|
||||
{
|
||||
return Ok;
|
||||
}
|
||||
|
||||
Status SetMiddleInset(REAL middleInset)
|
||||
{
|
||||
return Ok;
|
||||
}
|
||||
Status
|
||||
SetMiddleInset(REAL middleInset)
|
||||
{
|
||||
return Ok;
|
||||
}
|
||||
|
||||
Status SetWidth(REAL width)
|
||||
{
|
||||
return Ok;
|
||||
}
|
||||
Status
|
||||
SetWidth(REAL width)
|
||||
{
|
||||
return Ok;
|
||||
}
|
||||
};
|
||||
|
||||
#endif /* _GDIPLUSLINECAPS_H */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue