Removed prototype for nonexisting function.
[reactos.git] / reactos / subsys / win32k / include / painting.h
1 #ifndef _WIN32K_PAINTING_H
2 #define _WIN32K_PAINTING_H
3
4 #include <windows.h>
5 #include <ddk/ntddk.h>
6 #include <include/class.h>
7 #include <include/msgqueue.h>
8 #include <include/window.h>
9
10 VOID FASTCALL
11 IntValidateParent(PWINDOW_OBJECT Child, HRGN ValidRegion);
12 BOOL FASTCALL
13 IntRedrawWindow(PWINDOW_OBJECT Wnd, const RECT* UpdateRect, HRGN UpdateRgn, ULONG Flags);
14 BOOL FASTCALL
15 IntGetPaintMessage(HWND hWnd, PW32THREAD Thread, MSG *Message, BOOL Remove);
16 BOOL STDCALL
17 NtUserValidateRgn(HWND hWnd, HRGN hRgn);
18
19 #endif /* _WIN32K_PAINTING_H */