From d778de357858e69e146d67d40dbd898a11848f54 Mon Sep 17 00:00:00 2001 From: Aleksey Bragin Date: Mon, 22 May 2006 14:46:31 +0000 Subject: [PATCH] - Fix compiling of win32k without compilation units svn path=/trunk/; revision=21977 --- reactos/subsystems/win32/win32k/include/intgdi.h | 6 ++++++ reactos/subsystems/win32/win32k/objects/path.c | 4 ++++ 2 files changed, 10 insertions(+) diff --git a/reactos/subsystems/win32/win32k/include/intgdi.h b/reactos/subsystems/win32/win32k/include/intgdi.h index 70a4edb09eb..d7c46fe5ca5 100644 --- a/reactos/subsystems/win32/win32k/include/intgdi.h +++ b/reactos/subsystems/win32/win32k/include/intgdi.h @@ -225,5 +225,11 @@ IntChangeDisplaySettings( IN DWORD dwflags, IN PVOID lParam OPTIONAL); +HBITMAP +FASTCALL +IntCreateCompatibleBitmap(PDC Dc, + INT Width, + INT Height); + #endif /* _WIN32K_INTGDI_H */ diff --git a/reactos/subsystems/win32/win32k/objects/path.c b/reactos/subsystems/win32/win32k/objects/path.c index 734997189fb..ccfb3f3cd62 100644 --- a/reactos/subsystems/win32/win32k/objects/path.c +++ b/reactos/subsystems/win32/win32k/objects/path.c @@ -43,6 +43,10 @@ VOID FASTCALL PATH_ScaleNormalizedPoint (FLOAT_POINT corners[], double x, double INT FASTCALL IntGdiGetArcDirection(DC *dc); +VOID FASTCALL +IntGetCurrentPositionEx(PDC dc, LPPOINT pt); + + BOOL STDCALL NtGdiAbortPath(HDC hDC)