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/FreeRDPGDI.cs')
-rw-r--r--GdiTest/FreeRDPGDI.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/GdiTest/FreeRDPGDI.cs b/GdiTest/FreeRDPGDI.cs
index ab3bd4a..89e8403 100644
--- a/GdiTest/FreeRDPGDI.cs
+++ b/GdiTest/FreeRDPGDI.cs
@@ -102,6 +102,16 @@ namespace GdiTest
return (IntPtr) null;
}
+ public override IntPtr CreateSolidBrush(int crColor)
+ {
+ return (IntPtr) null;
+ }
+
+ public override bool Ellipse(IntPtr hdc, int nLeftRect, int nTopRect, int nRightRect, int nBottomRect)
+ {
+ return false;
+ }
+
public override int BitBlt(IntPtr hdcDest, int nXDest, int nYDest, int nWidth, int nHeight,
IntPtr hdcSrc, int nXSrc, int nYSrc, System.Int32 dwRop)
{