mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-30 12:23:28 +00:00
Moved implementation of Rectangle to here.
Added Polygon svn path=/trunk/; revision=4360
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
#ifdef UNICODE
|
||||
#undef UNICODE
|
||||
#endif
|
||||
|
||||
#undef WIN32_LEAN_AND_MEAN
|
||||
#include <windows.h>
|
||||
#include <ddk/ntddk.h>
|
||||
#include <win32k/kapi.h>
|
||||
|
||||
BOOL
|
||||
STDCALL
|
||||
Polygon(HDC hDC,
|
||||
CONST POINT *lpPoints,
|
||||
int nCount)
|
||||
{
|
||||
return W32kPolygon(hDC, (CONST PPOINT)lpPoints, nCount);
|
||||
}
|
||||
|
||||
BOOL
|
||||
STDCALL
|
||||
Rectangle(HDC hDC,
|
||||
int LeftRect,
|
||||
int TopRect,
|
||||
int RightRect,
|
||||
int BottomRect)
|
||||
{
|
||||
return W32kRectangle(hDC, LeftRect, TopRect, RightRect, BottomRect);
|
||||
}
|
||||
Reference in New Issue
Block a user