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 839615a..fc99058 100644
--- a/GdiTest/GDI.cs
+++ b/GdiTest/GDI.cs
@@ -63,6 +63,8 @@ namespace GdiTest
public abstract bool PolylineTo(IntPtr hdc, POINT [] lppt, uint cCount);
public abstract IntPtr CreatePen(int fnPenStyle, int nWidth, int crColor);
public abstract IntPtr CreateSolidBrush(int crColor);
+ public abstract IntPtr CreatePatternBrush(IntPtr hbmp);
+ 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 int BitBlt(IntPtr hdcDest, int nXDest, int nYDest, int nWidth, int nHeight,
IntPtr hdcSrc, int nXSrc, int nYSrc, System.Int32 dwRop);