#ifdef UNICODE #undef UNICODE #endif #undef WIN32_LEAN_AND_MEAN #include #include #include BOOL STDCALL LineTo(HDC hDC, int XEnd, int YEnd) { return W32kLineTo(hDC, XEnd, YEnd); } BOOL STDCALL MoveToEx(HDC hDC, int X, int Y, LPPOINT Point) { return W32kMoveToEx(hDC, X, Y, Point); } BOOL STDCALL Polyline( HDC hdc, CONST POINT *lppt, int cPoints ) { return W32kPolyline(hdc, (CONST LPPOINT) lppt, cPoints); }