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.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/GdiTest/GDI.cs b/GdiTest/GDI.cs
index 9272bb9..8aa8351 100644
--- a/GdiTest/GDI.cs
+++ b/GdiTest/GDI.cs
@@ -33,8 +33,8 @@ namespace GdiTest
public abstract int ReleaseDC(IntPtr hWnd, IntPtr hDC);
public abstract IntPtr SelectObject(IntPtr hdc, IntPtr hgdiobj);
public abstract bool DeleteObject(IntPtr hObject);
- public abstract int GetPixel(IntPtr hdc, int X, int Y);
- public abstract int SetPixel(IntPtr hdc, int X, int Y, int crColor);
+ public abstract uint GetPixel(IntPtr hdc, int X, int Y);
+ public abstract uint SetPixel(IntPtr hdc, int X, int Y, int crColor);
public abstract bool MoveToEx(IntPtr hdc, int X, int Y, IntPtr lpPoint);
public abstract bool LineTo(IntPtr hdc, int nXEnd, int nYEnd);
public abstract IntPtr CreatePen(int fnPenStyle, int nWidth, int crColor);