update for HEAD-2003050101
[reactos.git] / lib / gdi32 / objects / line.c
1 #ifdef UNICODE
2 #undef UNICODE
3 #endif
4
5 #undef WIN32_LEAN_AND_MEAN
6 #include <windows.h>
7 #include <ddk/ntddk.h>
8 #include <win32k/kapi.h>
9
10 BOOL
11 STDCALL
12 LineTo(HDC hDC, int XEnd, int YEnd)
13 {
14    return W32kLineTo(hDC, XEnd, YEnd);
15 }
16
17 BOOL  
18 STDCALL 
19 MoveToEx(HDC hDC, int X, int Y, LPPOINT Point)
20 {
21    return W32kMoveToEx(hDC, X, Y, Point);
22 }
23
24 BOOL
25 STDCALL
26 Polyline( HDC hdc, CONST POINT *lppt, int cPoints )
27 {
28    return W32kPolyline(hdc, (CONST LPPOINT) lppt, cPoints);
29 }