Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FreeRDP/GdiTest.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'GdiTest/GDI.cs')
-rw-r--r--GdiTest/GDI.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/GdiTest/GDI.cs b/GdiTest/GDI.cs
index df17f6e..6b2a39d 100644
--- a/GdiTest/GDI.cs
+++ b/GdiTest/GDI.cs
@@ -67,6 +67,8 @@ namespace GdiTest
public abstract IntPtr CreateBitmap(int nWidth, int nHeight, uint cPlanes, uint cBitsPerPel, IntPtr lpvBits);
public abstract bool Ellipse(IntPtr hdc, int nLeftRect, int nTopRect, int nRightRect, int nBottomRect);
public abstract bool Polygon(IntPtr hdc, POINT [] lpPoints, int nCount);
+ public abstract IntPtr CreateRectRgn(int nLeftRect, int nTopRect, int nRightRect, int nBottomRect);
+ public abstract int SelectClipRgn(IntPtr hdc, IntPtr hrgn);
public abstract int BitBlt(IntPtr hdcDest, int nXDest, int nYDest, int nWidth, int nHeight,
IntPtr hdcSrc, int nXSrc, int nYSrc, System.Int32 dwRop);
}