reactos/reactos/subsys/win32k/objects/cliprgn.c
Emanuele Aliberti 7d3fded0ba Added little prog. that builds the WIN32K.SYS service table
and the stubs to be used in GDI32.DLL.
Converted to __stdcall every W32k... call in WIN32K.SYS.
Fixed the entry point in GDI32.DLL.
WARNING: the thing compiles, but Jason reports it does not work as is
(he tested a preliminary stub piece of code).
Perhaps changing it (as Phillip proposes) or fixing it to make WIN32K.SYS
work the NT way is required (Hernan, are you there: I did not understand
well how the additional service tables work). Feel free to change it.

svn path=/trunk/; revision=993
2000-02-20 22:52:50 +00:00

86 lines
1.5 KiB
C

#undef WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <ddk/ntddk.h>
#include <win32k/cliprgn.h>
// #define NDEBUG
#include <internal/debug.h>
int STDCALL W32kExcludeClipRect(HDC hDC,
int LeftRect,
int TopRect,
int RightRect,
int BottomRect)
{
UNIMPLEMENTED;
}
int STDCALL W32kExtSelectClipRgn(HDC hDC,
HRGN hrgn,
int fnMode)
{
UNIMPLEMENTED;
}
int STDCALL W32kGetClipBox(HDC hDC,
LPRECT rc)
{
UNIMPLEMENTED;
}
int STDCALL W32kGetMetaRgn(HDC hDC,
HRGN hrgn)
{
UNIMPLEMENTED;
}
int STDCALL W32kIntersectClipRect(HDC hDC,
int LeftRect,
int TopRect,
int RightRect,
int BottomRect)
{
UNIMPLEMENTED;
}
int STDCALL W32kOffsetClipRgn(HDC hDC,
int XOffset,
int YOffset)
{
UNIMPLEMENTED;
}
BOOL STDCALL W32kPtVisible(HDC hDC,
int X,
int Y)
{
UNIMPLEMENTED;
}
BOOL STDCALL W32kRectVisible(HDC hDC,
CONST PRECT rc)
{
UNIMPLEMENTED;
}
BOOL STDCALL W32kSelectClipPath(HDC hDC,
int Mode)
{
UNIMPLEMENTED;
}
int STDCALL W32kSelectClipRgn(HDC hDC,
HRGN hrgn)
{
UNIMPLEMENTED;
}
int STDCALL W32kSetMetaRgn(HDC hDC)
{
UNIMPLEMENTED;
}