mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 14:32:56 +00:00
[SDK][INCLUDE] Total refinement of Gdiplus headers (#2223)
Missing functions added. CORE-16585
This commit is contained in:
parent
265a890d7c
commit
1e83f8b5fd
7 changed files with 56 additions and 80 deletions
|
@ -1084,11 +1084,7 @@ class Graphics : public GdiplusBase
|
|||
Status
|
||||
GetRenderingOrigin(INT *x, INT *y) const
|
||||
{
|
||||
#if 1
|
||||
return SetStatus(NotImplemented); // FIXME
|
||||
#else
|
||||
return SetStatus(DllExports::GdipGetRenderingOrigin(nativeGraphics, x, y));
|
||||
#endif
|
||||
}
|
||||
|
||||
SmoothingMode
|
||||
|
@ -1240,13 +1236,9 @@ class Graphics : public GdiplusBase
|
|||
BOOL
|
||||
IsVisibleClipEmpty() const
|
||||
{
|
||||
#if 1
|
||||
return FALSE; // FIXME
|
||||
#else
|
||||
BOOL flag = FALSE;
|
||||
SetStatus(DllExports::GdipIsVisibleClipEmpty(nativeGraphics, &flag));
|
||||
return flag;
|
||||
#endif
|
||||
}
|
||||
|
||||
Status
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue